import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { NpiProviderUpdateWithoutPaymentsInputObjectSchema as NpiProviderUpdateWithoutPaymentsInputObjectSchema } from './NpiProviderUpdateWithoutPaymentsInput.schema'; import { NpiProviderUncheckedUpdateWithoutPaymentsInputObjectSchema as NpiProviderUncheckedUpdateWithoutPaymentsInputObjectSchema } from './NpiProviderUncheckedUpdateWithoutPaymentsInput.schema'; import { NpiProviderCreateWithoutPaymentsInputObjectSchema as NpiProviderCreateWithoutPaymentsInputObjectSchema } from './NpiProviderCreateWithoutPaymentsInput.schema'; import { NpiProviderUncheckedCreateWithoutPaymentsInputObjectSchema as NpiProviderUncheckedCreateWithoutPaymentsInputObjectSchema } from './NpiProviderUncheckedCreateWithoutPaymentsInput.schema'; import { NpiProviderWhereInputObjectSchema as NpiProviderWhereInputObjectSchema } from './NpiProviderWhereInput.schema' const makeSchema = () => z.object({ update: z.union([z.lazy(() => NpiProviderUpdateWithoutPaymentsInputObjectSchema), z.lazy(() => NpiProviderUncheckedUpdateWithoutPaymentsInputObjectSchema)]), create: z.union([z.lazy(() => NpiProviderCreateWithoutPaymentsInputObjectSchema), z.lazy(() => NpiProviderUncheckedCreateWithoutPaymentsInputObjectSchema)]), where: z.lazy(() => NpiProviderWhereInputObjectSchema).optional() }).strict(); export const NpiProviderUpsertWithoutPaymentsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderUpsertWithoutPaymentsInputObjectZodSchema = makeSchema();