import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { PaymentCreateWithoutNpiProviderInputObjectSchema as PaymentCreateWithoutNpiProviderInputObjectSchema } from './PaymentCreateWithoutNpiProviderInput.schema'; import { PaymentUncheckedCreateWithoutNpiProviderInputObjectSchema as PaymentUncheckedCreateWithoutNpiProviderInputObjectSchema } from './PaymentUncheckedCreateWithoutNpiProviderInput.schema'; import { PaymentCreateOrConnectWithoutNpiProviderInputObjectSchema as PaymentCreateOrConnectWithoutNpiProviderInputObjectSchema } from './PaymentCreateOrConnectWithoutNpiProviderInput.schema'; import { PaymentCreateManyNpiProviderInputEnvelopeObjectSchema as PaymentCreateManyNpiProviderInputEnvelopeObjectSchema } from './PaymentCreateManyNpiProviderInputEnvelope.schema'; import { PaymentWhereUniqueInputObjectSchema as PaymentWhereUniqueInputObjectSchema } from './PaymentWhereUniqueInput.schema' const makeSchema = () => z.object({ create: z.union([z.lazy(() => PaymentCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => PaymentCreateWithoutNpiProviderInputObjectSchema).array(), z.lazy(() => PaymentUncheckedCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => PaymentUncheckedCreateWithoutNpiProviderInputObjectSchema).array()]).optional(), connectOrCreate: z.union([z.lazy(() => PaymentCreateOrConnectWithoutNpiProviderInputObjectSchema), z.lazy(() => PaymentCreateOrConnectWithoutNpiProviderInputObjectSchema).array()]).optional(), createMany: z.lazy(() => PaymentCreateManyNpiProviderInputEnvelopeObjectSchema).optional(), connect: z.union([z.lazy(() => PaymentWhereUniqueInputObjectSchema), z.lazy(() => PaymentWhereUniqueInputObjectSchema).array()]).optional() }).strict(); export const PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectZodSchema = makeSchema();