import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { AppointmentWhereUniqueInputObjectSchema as AppointmentWhereUniqueInputObjectSchema } from './AppointmentWhereUniqueInput.schema'; import { AppointmentUpdateWithoutNpiProviderInputObjectSchema as AppointmentUpdateWithoutNpiProviderInputObjectSchema } from './AppointmentUpdateWithoutNpiProviderInput.schema'; import { AppointmentUncheckedUpdateWithoutNpiProviderInputObjectSchema as AppointmentUncheckedUpdateWithoutNpiProviderInputObjectSchema } from './AppointmentUncheckedUpdateWithoutNpiProviderInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => AppointmentWhereUniqueInputObjectSchema), data: z.union([z.lazy(() => AppointmentUpdateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUncheckedUpdateWithoutNpiProviderInputObjectSchema)]) }).strict(); export const AppointmentUpdateWithWhereUniqueWithoutNpiProviderInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const AppointmentUpdateWithWhereUniqueWithoutNpiProviderInputObjectZodSchema = makeSchema();