import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { NpiProviderWhereUniqueInputObjectSchema as NpiProviderWhereUniqueInputObjectSchema } from './NpiProviderWhereUniqueInput.schema'; import { NpiProviderCreateWithoutPaymentsInputObjectSchema as NpiProviderCreateWithoutPaymentsInputObjectSchema } from './NpiProviderCreateWithoutPaymentsInput.schema'; import { NpiProviderUncheckedCreateWithoutPaymentsInputObjectSchema as NpiProviderUncheckedCreateWithoutPaymentsInputObjectSchema } from './NpiProviderUncheckedCreateWithoutPaymentsInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => NpiProviderWhereUniqueInputObjectSchema), create: z.union([z.lazy(() => NpiProviderCreateWithoutPaymentsInputObjectSchema), z.lazy(() => NpiProviderUncheckedCreateWithoutPaymentsInputObjectSchema)]) }).strict(); export const NpiProviderCreateOrConnectWithoutPaymentsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderCreateOrConnectWithoutPaymentsInputObjectZodSchema = makeSchema();