import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { OfficeHoursWhereInputObjectSchema as OfficeHoursWhereInputObjectSchema } from './OfficeHoursWhereInput.schema'; import { OfficeHoursUpdateWithoutUserInputObjectSchema as OfficeHoursUpdateWithoutUserInputObjectSchema } from './OfficeHoursUpdateWithoutUserInput.schema'; import { OfficeHoursUncheckedUpdateWithoutUserInputObjectSchema as OfficeHoursUncheckedUpdateWithoutUserInputObjectSchema } from './OfficeHoursUncheckedUpdateWithoutUserInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => OfficeHoursWhereInputObjectSchema).optional(), data: z.union([z.lazy(() => OfficeHoursUpdateWithoutUserInputObjectSchema), z.lazy(() => OfficeHoursUncheckedUpdateWithoutUserInputObjectSchema)]) }).strict(); export const OfficeHoursUpdateToOneWithWhereWithoutUserInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const OfficeHoursUpdateToOneWithWhereWithoutUserInputObjectZodSchema = makeSchema();