import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { NpiProviderWhereInputObjectSchema as NpiProviderWhereInputObjectSchema } from './NpiProviderWhereInput.schema'; import { NpiProviderUpdateWithoutAppointmentsInputObjectSchema as NpiProviderUpdateWithoutAppointmentsInputObjectSchema } from './NpiProviderUpdateWithoutAppointmentsInput.schema'; import { NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectSchema as NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectSchema } from './NpiProviderUncheckedUpdateWithoutAppointmentsInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => NpiProviderWhereInputObjectSchema).optional(), data: z.union([z.lazy(() => NpiProviderUpdateWithoutAppointmentsInputObjectSchema), z.lazy(() => NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectSchema)]) }).strict(); export const NpiProviderUpdateToOneWithWhereWithoutAppointmentsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderUpdateToOneWithWhereWithoutAppointmentsInputObjectZodSchema = makeSchema();