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>
22 lines
964 B
TypeScript
22 lines
964 B
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
import { UserArgsObjectSchema as UserArgsObjectSchema } from './UserArgs.schema'
|
|
|
|
const makeSchema = () => z.object({
|
|
id: z.boolean().optional(),
|
|
userId: z.boolean().optional(),
|
|
apiKey: z.boolean().optional(),
|
|
aiEnabled: z.boolean().optional(),
|
|
openAiKey: z.boolean().optional(),
|
|
openAiEnabled: z.boolean().optional(),
|
|
claudeAiKey: z.boolean().optional(),
|
|
claudeAiEnabled: z.boolean().optional(),
|
|
dentalMgmtKey: z.boolean().optional(),
|
|
dentalMgmtEnabled: z.boolean().optional(),
|
|
afterHoursEnabled: z.boolean().optional(),
|
|
openPhoneReply: z.boolean().optional(),
|
|
user: z.union([z.boolean(), z.lazy(() => UserArgsObjectSchema)]).optional()
|
|
}).strict();
|
|
export const AiSettingsSelectObjectSchema: z.ZodType<Prisma.AiSettingsSelect> = makeSchema() as unknown as z.ZodType<Prisma.AiSettingsSelect>;
|
|
export const AiSettingsSelectObjectZodSchema = makeSchema();
|