initial commit
This commit is contained in:
23
packages/db/shared/schemas/objects/ServiceLineTransactionAvgAggregateInput.schema.d.ts
vendored
Normal file
23
packages/db/shared/schemas/objects/ServiceLineTransactionAvgAggregateInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const ServiceLineTransactionAvgAggregateInputObjectSchema: z.ZodType<Prisma.ServiceLineTransactionAvgAggregateInputType>;
|
||||
export declare const ServiceLineTransactionAvgAggregateInputObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
paymentId: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
serviceLineId: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
paidAmount: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
adjustedAmount: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
id?: true | undefined;
|
||||
paymentId?: true | undefined;
|
||||
paidAmount?: true | undefined;
|
||||
adjustedAmount?: true | undefined;
|
||||
serviceLineId?: true | undefined;
|
||||
}, {
|
||||
id?: true | undefined;
|
||||
paymentId?: true | undefined;
|
||||
paidAmount?: true | undefined;
|
||||
adjustedAmount?: true | undefined;
|
||||
serviceLineId?: true | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=ServiceLineTransactionAvgAggregateInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user