import type { Prisma } from '../../generated/prisma'; import * as z from 'zod'; import { ServiceLineSelectObjectSchema as ServiceLineSelectObjectSchema } from './objects/ServiceLineSelect.schema'; import { ServiceLineIncludeObjectSchema as ServiceLineIncludeObjectSchema } from './objects/ServiceLineInclude.schema'; import { ServiceLineCreateInputObjectSchema as ServiceLineCreateInputObjectSchema } from './objects/ServiceLineCreateInput.schema'; import { ServiceLineUncheckedCreateInputObjectSchema as ServiceLineUncheckedCreateInputObjectSchema } from './objects/ServiceLineUncheckedCreateInput.schema'; export const ServiceLineCreateOneSchema: z.ZodType = z.object({ select: ServiceLineSelectObjectSchema.optional(), include: ServiceLineIncludeObjectSchema.optional(), data: z.union([ServiceLineCreateInputObjectSchema, ServiceLineUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; export const ServiceLineCreateOneZodSchema = z.object({ select: ServiceLineSelectObjectSchema.optional(), include: ServiceLineIncludeObjectSchema.optional(), data: z.union([ServiceLineCreateInputObjectSchema, ServiceLineUncheckedCreateInputObjectSchema]) }).strict();