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