import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { CommissionBatchItemWhereUniqueInputObjectSchema as CommissionBatchItemWhereUniqueInputObjectSchema } from './CommissionBatchItemWhereUniqueInput.schema'; import { CommissionBatchItemUpdateWithoutPaymentInputObjectSchema as CommissionBatchItemUpdateWithoutPaymentInputObjectSchema } from './CommissionBatchItemUpdateWithoutPaymentInput.schema'; import { CommissionBatchItemUncheckedUpdateWithoutPaymentInputObjectSchema as CommissionBatchItemUncheckedUpdateWithoutPaymentInputObjectSchema } from './CommissionBatchItemUncheckedUpdateWithoutPaymentInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => CommissionBatchItemWhereUniqueInputObjectSchema), data: z.union([z.lazy(() => CommissionBatchItemUpdateWithoutPaymentInputObjectSchema), z.lazy(() => CommissionBatchItemUncheckedUpdateWithoutPaymentInputObjectSchema)]) }).strict(); export const CommissionBatchItemUpdateWithWhereUniqueWithoutPaymentInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const CommissionBatchItemUpdateWithWhereUniqueWithoutPaymentInputObjectZodSchema = makeSchema();