import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { PaymentWhereUniqueInputObjectSchema as PaymentWhereUniqueInputObjectSchema } from './PaymentWhereUniqueInput.schema'; import { PaymentCreateWithoutNpiProviderInputObjectSchema as PaymentCreateWithoutNpiProviderInputObjectSchema } from './PaymentCreateWithoutNpiProviderInput.schema'; import { PaymentUncheckedCreateWithoutNpiProviderInputObjectSchema as PaymentUncheckedCreateWithoutNpiProviderInputObjectSchema } from './PaymentUncheckedCreateWithoutNpiProviderInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => PaymentWhereUniqueInputObjectSchema), create: z.union([z.lazy(() => PaymentCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => PaymentUncheckedCreateWithoutNpiProviderInputObjectSchema)]) }).strict(); export const PaymentCreateOrConnectWithoutNpiProviderInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const PaymentCreateOrConnectWithoutNpiProviderInputObjectZodSchema = makeSchema();