import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; const makeSchema = () => z.object({ id: z.number().int().optional(), userId: z.number().int(), apiKey: z.string(), aiEnabled: z.boolean().optional(), openAiKey: z.string().optional(), openAiEnabled: z.boolean().optional(), claudeAiKey: z.string().optional(), claudeAiEnabled: z.boolean().optional(), dentalMgmtKey: z.string().optional(), dentalMgmtEnabled: z.boolean().optional(), afterHoursEnabled: z.boolean().optional(), openPhoneReply: z.boolean().optional() }).strict(); export const AiSettingsUncheckedCreateInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const AiSettingsUncheckedCreateInputObjectZodSchema = makeSchema();