import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { ServiceLineWhereInputObjectSchema as ServiceLineWhereInputObjectSchema } from './ServiceLineWhereInput.schema'; import { ServiceLineUpdateWithoutServiceLineTransactionsInputObjectSchema as ServiceLineUpdateWithoutServiceLineTransactionsInputObjectSchema } from './ServiceLineUpdateWithoutServiceLineTransactionsInput.schema'; import { ServiceLineUncheckedUpdateWithoutServiceLineTransactionsInputObjectSchema as ServiceLineUncheckedUpdateWithoutServiceLineTransactionsInputObjectSchema } from './ServiceLineUncheckedUpdateWithoutServiceLineTransactionsInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => ServiceLineWhereInputObjectSchema).optional(), data: z.union([z.lazy(() => ServiceLineUpdateWithoutServiceLineTransactionsInputObjectSchema), z.lazy(() => ServiceLineUncheckedUpdateWithoutServiceLineTransactionsInputObjectSchema)]) }).strict(); export const ServiceLineUpdateToOneWithWhereWithoutServiceLineTransactionsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const ServiceLineUpdateToOneWithWhereWithoutServiceLineTransactionsInputObjectZodSchema = makeSchema();