import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { ProcedureTimeslotWhereUniqueInputObjectSchema as ProcedureTimeslotWhereUniqueInputObjectSchema } from './ProcedureTimeslotWhereUniqueInput.schema'; import { ProcedureTimeslotCreateWithoutUserInputObjectSchema as ProcedureTimeslotCreateWithoutUserInputObjectSchema } from './ProcedureTimeslotCreateWithoutUserInput.schema'; import { ProcedureTimeslotUncheckedCreateWithoutUserInputObjectSchema as ProcedureTimeslotUncheckedCreateWithoutUserInputObjectSchema } from './ProcedureTimeslotUncheckedCreateWithoutUserInput.schema' const makeSchema = () => z.object({ where: z.lazy(() => ProcedureTimeslotWhereUniqueInputObjectSchema), create: z.union([z.lazy(() => ProcedureTimeslotCreateWithoutUserInputObjectSchema), z.lazy(() => ProcedureTimeslotUncheckedCreateWithoutUserInputObjectSchema)]) }).strict(); export const ProcedureTimeslotCreateOrConnectWithoutUserInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const ProcedureTimeslotCreateOrConnectWithoutUserInputObjectZodSchema = makeSchema();