import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { AppointmentWhereUniqueInputObjectSchema as AppointmentWhereUniqueInputObjectSchema } from './AppointmentWhereUniqueInput.schema'; import { AppointmentCreateWithoutProceduresInputObjectSchema as AppointmentCreateWithoutProceduresInputObjectSchema } from './AppointmentCreateWithoutProceduresInput.schema'; import { AppointmentUncheckedCreateWithoutProceduresInputObjectSchema as AppointmentUncheckedCreateWithoutProceduresInputObjectSchema } from './AppointmentUncheckedCreateWithoutProceduresInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => AppointmentWhereUniqueInputObjectSchema), create: z.union([z.lazy(() => AppointmentCreateWithoutProceduresInputObjectSchema), z.lazy(() => AppointmentUncheckedCreateWithoutProceduresInputObjectSchema)]) }).strict(); export const AppointmentCreateOrConnectWithoutProceduresInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const AppointmentCreateOrConnectWithoutProceduresInputObjectZodSchema = makeSchema();