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>
21 lines
905 B
TypeScript
21 lines
905 B
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
|
|
|
|
const makeSchema = () => z.object({
|
|
id: z.literal(true).optional(),
|
|
userId: z.literal(true).optional(),
|
|
apiKey: z.literal(true).optional(),
|
|
aiEnabled: z.literal(true).optional(),
|
|
openAiKey: z.literal(true).optional(),
|
|
openAiEnabled: z.literal(true).optional(),
|
|
claudeAiKey: z.literal(true).optional(),
|
|
claudeAiEnabled: z.literal(true).optional(),
|
|
dentalMgmtKey: z.literal(true).optional(),
|
|
dentalMgmtEnabled: z.literal(true).optional(),
|
|
afterHoursEnabled: z.literal(true).optional(),
|
|
openPhoneReply: z.literal(true).optional()
|
|
}).strict();
|
|
export const AiSettingsMaxAggregateInputObjectSchema: z.ZodType<Prisma.AiSettingsMaxAggregateInputType> = makeSchema() as unknown as z.ZodType<Prisma.AiSettingsMaxAggregateInputType>;
|
|
export const AiSettingsMaxAggregateInputObjectZodSchema = makeSchema();
|