import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { ServiceLineWhereUniqueInputObjectSchema as ServiceLineWhereUniqueInputObjectSchema } from './ServiceLineWhereUniqueInput.schema'; import { ServiceLineCreateWithoutServiceLineTransactionsInputObjectSchema as ServiceLineCreateWithoutServiceLineTransactionsInputObjectSchema } from './ServiceLineCreateWithoutServiceLineTransactionsInput.schema'; import { ServiceLineUncheckedCreateWithoutServiceLineTransactionsInputObjectSchema as ServiceLineUncheckedCreateWithoutServiceLineTransactionsInputObjectSchema } from './ServiceLineUncheckedCreateWithoutServiceLineTransactionsInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => ServiceLineWhereUniqueInputObjectSchema), create: z.union([z.lazy(() => ServiceLineCreateWithoutServiceLineTransactionsInputObjectSchema), z.lazy(() => ServiceLineUncheckedCreateWithoutServiceLineTransactionsInputObjectSchema)]) }).strict(); export const ServiceLineCreateOrConnectWithoutServiceLineTransactionsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const ServiceLineCreateOrConnectWithoutServiceLineTransactionsInputObjectZodSchema = makeSchema();