import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { PaymentWhereInputObjectSchema as PaymentWhereInputObjectSchema } from './PaymentWhereInput.schema'; import { PaymentUpdateWithoutClaimInputObjectSchema as PaymentUpdateWithoutClaimInputObjectSchema } from './PaymentUpdateWithoutClaimInput.schema'; import { PaymentUncheckedUpdateWithoutClaimInputObjectSchema as PaymentUncheckedUpdateWithoutClaimInputObjectSchema } from './PaymentUncheckedUpdateWithoutClaimInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => PaymentWhereInputObjectSchema).optional(), data: z.union([z.lazy(() => PaymentUpdateWithoutClaimInputObjectSchema), z.lazy(() => PaymentUncheckedUpdateWithoutClaimInputObjectSchema)]) }).strict(); export const PaymentUpdateToOneWithWhereWithoutClaimInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const PaymentUpdateToOneWithWhereWithoutClaimInputObjectZodSchema = makeSchema();