import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { NpiProviderUpdateWithoutAppointmentsInputObjectSchema as NpiProviderUpdateWithoutAppointmentsInputObjectSchema } from './NpiProviderUpdateWithoutAppointmentsInput.schema'; import { NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectSchema as NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectSchema } from './NpiProviderUncheckedUpdateWithoutAppointmentsInput.schema'; import { NpiProviderCreateWithoutAppointmentsInputObjectSchema as NpiProviderCreateWithoutAppointmentsInputObjectSchema } from './NpiProviderCreateWithoutAppointmentsInput.schema'; import { NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema as NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema } from './NpiProviderUncheckedCreateWithoutAppointmentsInput.schema'; import { NpiProviderWhereInputObjectSchema as NpiProviderWhereInputObjectSchema } from './NpiProviderWhereInput.schema' const makeSchema = () => z.object({ update: z.union([z.lazy(() => NpiProviderUpdateWithoutAppointmentsInputObjectSchema), z.lazy(() => NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectSchema)]), create: z.union([z.lazy(() => NpiProviderCreateWithoutAppointmentsInputObjectSchema), z.lazy(() => NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema)]), where: z.lazy(() => NpiProviderWhereInputObjectSchema).optional() }).strict(); export const NpiProviderUpsertWithoutAppointmentsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderUpsertWithoutAppointmentsInputObjectZodSchema = makeSchema();