import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { CommissionBatchItemWhereUniqueInputObjectSchema as CommissionBatchItemWhereUniqueInputObjectSchema } from './CommissionBatchItemWhereUniqueInput.schema'; import { CommissionBatchItemCreateWithoutPaymentInputObjectSchema as CommissionBatchItemCreateWithoutPaymentInputObjectSchema } from './CommissionBatchItemCreateWithoutPaymentInput.schema'; import { CommissionBatchItemUncheckedCreateWithoutPaymentInputObjectSchema as CommissionBatchItemUncheckedCreateWithoutPaymentInputObjectSchema } from './CommissionBatchItemUncheckedCreateWithoutPaymentInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => CommissionBatchItemWhereUniqueInputObjectSchema), create: z.union([z.lazy(() => CommissionBatchItemCreateWithoutPaymentInputObjectSchema), z.lazy(() => CommissionBatchItemUncheckedCreateWithoutPaymentInputObjectSchema)]) }).strict(); export const CommissionBatchItemCreateOrConnectWithoutPaymentInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const CommissionBatchItemCreateOrConnectWithoutPaymentInputObjectZodSchema = makeSchema();