import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { OfficeHoursUpdateWithoutUserInputObjectSchema as OfficeHoursUpdateWithoutUserInputObjectSchema } from './OfficeHoursUpdateWithoutUserInput.schema'; import { OfficeHoursUncheckedUpdateWithoutUserInputObjectSchema as OfficeHoursUncheckedUpdateWithoutUserInputObjectSchema } from './OfficeHoursUncheckedUpdateWithoutUserInput.schema'; import { OfficeHoursCreateWithoutUserInputObjectSchema as OfficeHoursCreateWithoutUserInputObjectSchema } from './OfficeHoursCreateWithoutUserInput.schema'; import { OfficeHoursUncheckedCreateWithoutUserInputObjectSchema as OfficeHoursUncheckedCreateWithoutUserInputObjectSchema } from './OfficeHoursUncheckedCreateWithoutUserInput.schema'; import { OfficeHoursWhereInputObjectSchema as OfficeHoursWhereInputObjectSchema } from './OfficeHoursWhereInput.schema' const makeSchema = () => z.object({ update: z.union([z.lazy(() => OfficeHoursUpdateWithoutUserInputObjectSchema), z.lazy(() => OfficeHoursUncheckedUpdateWithoutUserInputObjectSchema)]), create: z.union([z.lazy(() => OfficeHoursCreateWithoutUserInputObjectSchema), z.lazy(() => OfficeHoursUncheckedCreateWithoutUserInputObjectSchema)]), where: z.lazy(() => OfficeHoursWhereInputObjectSchema).optional() }).strict(); export const OfficeHoursUpsertWithoutUserInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const OfficeHoursUpsertWithoutUserInputObjectZodSchema = makeSchema();