import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { NpiProviderWhereUniqueInputObjectSchema as NpiProviderWhereUniqueInputObjectSchema } from './NpiProviderWhereUniqueInput.schema'; import { NpiProviderCreateWithoutAppointmentsInputObjectSchema as NpiProviderCreateWithoutAppointmentsInputObjectSchema } from './NpiProviderCreateWithoutAppointmentsInput.schema'; import { NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema as NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema } from './NpiProviderUncheckedCreateWithoutAppointmentsInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => NpiProviderWhereUniqueInputObjectSchema), create: z.union([z.lazy(() => NpiProviderCreateWithoutAppointmentsInputObjectSchema), z.lazy(() => NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema)]) }).strict(); export const NpiProviderCreateOrConnectWithoutAppointmentsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderCreateOrConnectWithoutAppointmentsInputObjectZodSchema = makeSchema();