import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { PaymentWhereUniqueInputObjectSchema as PaymentWhereUniqueInputObjectSchema } from './PaymentWhereUniqueInput.schema'; import { PaymentUpdateWithoutNpiProviderInputObjectSchema as PaymentUpdateWithoutNpiProviderInputObjectSchema } from './PaymentUpdateWithoutNpiProviderInput.schema'; import { PaymentUncheckedUpdateWithoutNpiProviderInputObjectSchema as PaymentUncheckedUpdateWithoutNpiProviderInputObjectSchema } from './PaymentUncheckedUpdateWithoutNpiProviderInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => PaymentWhereUniqueInputObjectSchema), data: z.union([z.lazy(() => PaymentUpdateWithoutNpiProviderInputObjectSchema), z.lazy(() => PaymentUncheckedUpdateWithoutNpiProviderInputObjectSchema)]) }).strict(); export const PaymentUpdateWithWhereUniqueWithoutNpiProviderInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const PaymentUpdateWithWhereUniqueWithoutNpiProviderInputObjectZodSchema = makeSchema();