import * as z from 'zod'; // prettier-ignore export const AiSettingsInputSchema = z.object({ id: z.number().int(), userId: z.number().int(), apiKey: z.string(), aiEnabled: z.boolean(), openAiKey: z.string(), openAiEnabled: z.boolean(), claudeAiKey: z.string(), claudeAiEnabled: z.boolean(), claudeAiModel: z.string(), openAiModel: z.string(), googleAiModel: z.string(), dentalMgmtKey: z.string(), dentalMgmtEnabled: z.boolean(), afterHoursEnabled: z.boolean(), openPhoneReply: z.boolean(), user: z.unknown() }).strict(); export type AiSettingsInputType = z.infer;