import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { AiSettingsUpdateWithoutUserInputObjectSchema as AiSettingsUpdateWithoutUserInputObjectSchema } from './AiSettingsUpdateWithoutUserInput.schema'; import { AiSettingsUncheckedUpdateWithoutUserInputObjectSchema as AiSettingsUncheckedUpdateWithoutUserInputObjectSchema } from './AiSettingsUncheckedUpdateWithoutUserInput.schema'; import { AiSettingsCreateWithoutUserInputObjectSchema as AiSettingsCreateWithoutUserInputObjectSchema } from './AiSettingsCreateWithoutUserInput.schema'; import { AiSettingsUncheckedCreateWithoutUserInputObjectSchema as AiSettingsUncheckedCreateWithoutUserInputObjectSchema } from './AiSettingsUncheckedCreateWithoutUserInput.schema'; import { AiSettingsWhereInputObjectSchema as AiSettingsWhereInputObjectSchema } from './AiSettingsWhereInput.schema' const makeSchema = () => z.object({ update: z.union([z.lazy(() => AiSettingsUpdateWithoutUserInputObjectSchema), z.lazy(() => AiSettingsUncheckedUpdateWithoutUserInputObjectSchema)]), create: z.union([z.lazy(() => AiSettingsCreateWithoutUserInputObjectSchema), z.lazy(() => AiSettingsUncheckedCreateWithoutUserInputObjectSchema)]), where: z.lazy(() => AiSettingsWhereInputObjectSchema).optional() }).strict(); export const AiSettingsUpsertWithoutUserInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const AiSettingsUpsertWithoutUserInputObjectZodSchema = makeSchema();