import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { ServiceLineTransactionWhereUniqueInputObjectSchema as ServiceLineTransactionWhereUniqueInputObjectSchema } from './ServiceLineTransactionWhereUniqueInput.schema'; import { ServiceLineTransactionCreateWithoutServiceLineInputObjectSchema as ServiceLineTransactionCreateWithoutServiceLineInputObjectSchema } from './ServiceLineTransactionCreateWithoutServiceLineInput.schema'; import { ServiceLineTransactionUncheckedCreateWithoutServiceLineInputObjectSchema as ServiceLineTransactionUncheckedCreateWithoutServiceLineInputObjectSchema } from './ServiceLineTransactionUncheckedCreateWithoutServiceLineInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => ServiceLineTransactionWhereUniqueInputObjectSchema), create: z.union([z.lazy(() => ServiceLineTransactionCreateWithoutServiceLineInputObjectSchema), z.lazy(() => ServiceLineTransactionUncheckedCreateWithoutServiceLineInputObjectSchema)]) }).strict(); export const ServiceLineTransactionCreateOrConnectWithoutServiceLineInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const ServiceLineTransactionCreateOrConnectWithoutServiceLineInputObjectZodSchema = makeSchema();