7 lines
518 B
TypeScript
7 lines
518 B
TypeScript
import type { Prisma } from '../../generated/prisma';
|
|
import * as z from 'zod';
|
|
import { PaymentWhereInputObjectSchema as PaymentWhereInputObjectSchema } from './objects/PaymentWhereInput.schema';
|
|
|
|
export const PaymentDeleteManySchema: z.ZodType<Prisma.PaymentDeleteManyArgs> = z.object({ where: PaymentWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType<Prisma.PaymentDeleteManyArgs>;
|
|
|
|
export const PaymentDeleteManyZodSchema = z.object({ where: PaymentWhereInputObjectSchema.optional() }).strict(); |