import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { ClaimScalarWhereInputObjectSchema as ClaimScalarWhereInputObjectSchema } from './ClaimScalarWhereInput.schema'; import { ClaimUpdateManyMutationInputObjectSchema as ClaimUpdateManyMutationInputObjectSchema } from './ClaimUpdateManyMutationInput.schema'; import { ClaimUncheckedUpdateManyWithoutPatientInputObjectSchema as ClaimUncheckedUpdateManyWithoutPatientInputObjectSchema } from './ClaimUncheckedUpdateManyWithoutPatientInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => ClaimScalarWhereInputObjectSchema), data: z.union([z.lazy(() => ClaimUpdateManyMutationInputObjectSchema), z.lazy(() => ClaimUncheckedUpdateManyWithoutPatientInputObjectSchema)]) }).strict(); export const ClaimUpdateManyWithWhereWithoutPatientInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const ClaimUpdateManyWithWhereWithoutPatientInputObjectZodSchema = makeSchema();