Add OpenAI, Claude AI, and DentalManagement AI sections to the AI API Setting page, each with a masked API key input and an on/off toggle (defaulting to off). Rename sidebar label from "Google AI Settings" to "AI API Setting". Add provider-key and provider-enabled backend endpoints and extend the AiSettings schema with 6 new fields. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
26 lines
698 B
TypeScript
26 lines
698 B
TypeScript
import * as z from 'zod';
|
|
export const AiSettingsFindManyResultSchema = z.object({
|
|
data: z.array(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(),
|
|
dentalMgmtKey: z.string(),
|
|
dentalMgmtEnabled: z.boolean(),
|
|
afterHoursEnabled: z.boolean(),
|
|
openPhoneReply: z.boolean(),
|
|
user: z.unknown()
|
|
})),
|
|
pagination: z.object({
|
|
page: z.number().int().min(1),
|
|
pageSize: z.number().int().min(1),
|
|
total: z.number().int().min(0),
|
|
totalPages: z.number().int().min(0),
|
|
hasNext: z.boolean(),
|
|
hasPrev: z.boolean()
|
|
})
|
|
}); |