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
984 B
TypeScript
21 lines
984 B
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
import { SortOrderSchema } from '../enums/SortOrder.schema'
|
|
|
|
const makeSchema = () => z.object({
|
|
id: SortOrderSchema.optional(),
|
|
userId: SortOrderSchema.optional(),
|
|
apiKey: SortOrderSchema.optional(),
|
|
aiEnabled: SortOrderSchema.optional(),
|
|
openAiKey: SortOrderSchema.optional(),
|
|
openAiEnabled: SortOrderSchema.optional(),
|
|
claudeAiKey: SortOrderSchema.optional(),
|
|
claudeAiEnabled: SortOrderSchema.optional(),
|
|
dentalMgmtKey: SortOrderSchema.optional(),
|
|
dentalMgmtEnabled: SortOrderSchema.optional(),
|
|
afterHoursEnabled: SortOrderSchema.optional(),
|
|
openPhoneReply: SortOrderSchema.optional()
|
|
}).strict();
|
|
export const AiSettingsMinOrderByAggregateInputObjectSchema: z.ZodType<Prisma.AiSettingsMinOrderByAggregateInput> = makeSchema() as unknown as z.ZodType<Prisma.AiSettingsMinOrderByAggregateInput>;
|
|
export const AiSettingsMinOrderByAggregateInputObjectZodSchema = makeSchema();
|