import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { AppointmentCreateWithoutClaimsInputObjectSchema as AppointmentCreateWithoutClaimsInputObjectSchema } from './AppointmentCreateWithoutClaimsInput.schema'; import { AppointmentUncheckedCreateWithoutClaimsInputObjectSchema as AppointmentUncheckedCreateWithoutClaimsInputObjectSchema } from './AppointmentUncheckedCreateWithoutClaimsInput.schema'; import { AppointmentCreateOrConnectWithoutClaimsInputObjectSchema as AppointmentCreateOrConnectWithoutClaimsInputObjectSchema } from './AppointmentCreateOrConnectWithoutClaimsInput.schema'; import { AppointmentUpsertWithoutClaimsInputObjectSchema as AppointmentUpsertWithoutClaimsInputObjectSchema } from './AppointmentUpsertWithoutClaimsInput.schema'; import { AppointmentWhereInputObjectSchema as AppointmentWhereInputObjectSchema } from './AppointmentWhereInput.schema'; import { AppointmentWhereUniqueInputObjectSchema as AppointmentWhereUniqueInputObjectSchema } from './AppointmentWhereUniqueInput.schema'; import { AppointmentUpdateToOneWithWhereWithoutClaimsInputObjectSchema as AppointmentUpdateToOneWithWhereWithoutClaimsInputObjectSchema } from './AppointmentUpdateToOneWithWhereWithoutClaimsInput.schema'; import { AppointmentUpdateWithoutClaimsInputObjectSchema as AppointmentUpdateWithoutClaimsInputObjectSchema } from './AppointmentUpdateWithoutClaimsInput.schema'; import { AppointmentUncheckedUpdateWithoutClaimsInputObjectSchema as AppointmentUncheckedUpdateWithoutClaimsInputObjectSchema } from './AppointmentUncheckedUpdateWithoutClaimsInput.schema' const makeSchema = () => z.object({ create: z.union([z.lazy(() => AppointmentCreateWithoutClaimsInputObjectSchema), z.lazy(() => AppointmentUncheckedCreateWithoutClaimsInputObjectSchema)]).optional(), connectOrCreate: z.lazy(() => AppointmentCreateOrConnectWithoutClaimsInputObjectSchema).optional(), upsert: z.lazy(() => AppointmentUpsertWithoutClaimsInputObjectSchema).optional(), disconnect: z.union([z.boolean(), z.lazy(() => AppointmentWhereInputObjectSchema)]).optional(), delete: z.union([z.boolean(), z.lazy(() => AppointmentWhereInputObjectSchema)]).optional(), connect: z.lazy(() => AppointmentWhereUniqueInputObjectSchema).optional(), update: z.union([z.lazy(() => AppointmentUpdateToOneWithWhereWithoutClaimsInputObjectSchema), z.lazy(() => AppointmentUpdateWithoutClaimsInputObjectSchema), z.lazy(() => AppointmentUncheckedUpdateWithoutClaimsInputObjectSchema)]).optional() }).strict(); export const AppointmentUpdateOneWithoutClaimsNestedInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const AppointmentUpdateOneWithoutClaimsNestedInputObjectZodSchema = makeSchema();