import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { ServiceLineTransactionWhereUniqueInputObjectSchema as ServiceLineTransactionWhereUniqueInputObjectSchema } from './ServiceLineTransactionWhereUniqueInput.schema'; import { ServiceLineTransactionCreateWithoutPaymentInputObjectSchema as ServiceLineTransactionCreateWithoutPaymentInputObjectSchema } from './ServiceLineTransactionCreateWithoutPaymentInput.schema'; import { ServiceLineTransactionUncheckedCreateWithoutPaymentInputObjectSchema as ServiceLineTransactionUncheckedCreateWithoutPaymentInputObjectSchema } from './ServiceLineTransactionUncheckedCreateWithoutPaymentInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => ServiceLineTransactionWhereUniqueInputObjectSchema), create: z.union([z.lazy(() => ServiceLineTransactionCreateWithoutPaymentInputObjectSchema), z.lazy(() => ServiceLineTransactionUncheckedCreateWithoutPaymentInputObjectSchema)]) }).strict(); export const ServiceLineTransactionCreateOrConnectWithoutPaymentInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const ServiceLineTransactionCreateOrConnectWithoutPaymentInputObjectZodSchema = makeSchema();