import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { ClaimWhereInputObjectSchema as ClaimWhereInputObjectSchema } from './ClaimWhereInput.schema'; import { ClaimUpdateWithoutServiceLinesInputObjectSchema as ClaimUpdateWithoutServiceLinesInputObjectSchema } from './ClaimUpdateWithoutServiceLinesInput.schema'; import { ClaimUncheckedUpdateWithoutServiceLinesInputObjectSchema as ClaimUncheckedUpdateWithoutServiceLinesInputObjectSchema } from './ClaimUncheckedUpdateWithoutServiceLinesInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => ClaimWhereInputObjectSchema).optional(), data: z.union([z.lazy(() => ClaimUpdateWithoutServiceLinesInputObjectSchema), z.lazy(() => ClaimUncheckedUpdateWithoutServiceLinesInputObjectSchema)]) }).strict(); export const ClaimUpdateToOneWithWhereWithoutServiceLinesInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const ClaimUpdateToOneWithWhereWithoutServiceLinesInputObjectZodSchema = makeSchema();