import type { Prisma } from '../../generated/prisma'; import * as z from 'zod'; import { ClaimWhereInputObjectSchema as ClaimWhereInputObjectSchema } from './objects/ClaimWhereInput.schema'; export const ClaimDeleteManySchema: z.ZodType = z.object({ where: ClaimWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; export const ClaimDeleteManyZodSchema = z.object({ where: ClaimWhereInputObjectSchema.optional() }).strict();