initial commit
This commit is contained in:
7
packages/db/shared/schemas/createManyPayment.schema.ts
Normal file
7
packages/db/shared/schemas/createManyPayment.schema.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
import { PaymentCreateManyInputObjectSchema as PaymentCreateManyInputObjectSchema } from './objects/PaymentCreateManyInput.schema';
|
||||
|
||||
export const PaymentCreateManySchema: z.ZodType<Prisma.PaymentCreateManyArgs> = z.object({ data: z.union([ PaymentCreateManyInputObjectSchema, z.array(PaymentCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType<Prisma.PaymentCreateManyArgs>;
|
||||
|
||||
export const PaymentCreateManyZodSchema = z.object({ data: z.union([ PaymentCreateManyInputObjectSchema, z.array(PaymentCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
Reference in New Issue
Block a user