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'; import { PaymentCreateWithoutNpiProviderInputObjectSchema as PaymentCreateWithoutNpiProviderInputObjectSchema } from './PaymentCreateWithoutNpiProviderInput.schema'; import { PaymentUncheckedCreateWithoutNpiProviderInputObjectSchema as PaymentUncheckedCreateWithoutNpiProviderInputObjectSchema } from './PaymentUncheckedCreateWithoutNpiProviderInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => PaymentWhereUniqueInputObjectSchema), update: z.union([z.lazy(() => PaymentUpdateWithoutNpiProviderInputObjectSchema), z.lazy(() => PaymentUncheckedUpdateWithoutNpiProviderInputObjectSchema)]), create: z.union([z.lazy(() => PaymentCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => PaymentUncheckedCreateWithoutNpiProviderInputObjectSchema)]) }).strict(); export const PaymentUpsertWithWhereUniqueWithoutNpiProviderInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const PaymentUpsertWithWhereUniqueWithoutNpiProviderInputObjectZodSchema = makeSchema();