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>
46 lines
3.3 KiB
TypeScript
46 lines
3.3 KiB
TypeScript
import type { Prisma } from '../../generated/prisma';
|
|
import * as z from 'zod';
|
|
import { AiSettingsIncludeObjectSchema as AiSettingsIncludeObjectSchema } from './objects/AiSettingsInclude.schema';
|
|
import { AiSettingsOrderByWithRelationInputObjectSchema as AiSettingsOrderByWithRelationInputObjectSchema } from './objects/AiSettingsOrderByWithRelationInput.schema';
|
|
import { AiSettingsWhereInputObjectSchema as AiSettingsWhereInputObjectSchema } from './objects/AiSettingsWhereInput.schema';
|
|
import { AiSettingsWhereUniqueInputObjectSchema as AiSettingsWhereUniqueInputObjectSchema } from './objects/AiSettingsWhereUniqueInput.schema';
|
|
import { AiSettingsScalarFieldEnumSchema } from './enums/AiSettingsScalarFieldEnum.schema';
|
|
|
|
// Select schema needs to be in file to prevent circular imports
|
|
//------------------------------------------------------
|
|
|
|
export const AiSettingsFindFirstSelectSchema: z.ZodType<Prisma.AiSettingsSelect> = 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.boolean().optional()
|
|
}).strict() as unknown as z.ZodType<Prisma.AiSettingsSelect>;
|
|
|
|
export const AiSettingsFindFirstSelectZodSchema = 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.boolean().optional()
|
|
}).strict();
|
|
|
|
export const AiSettingsFindFirstSchema: z.ZodType<Prisma.AiSettingsFindFirstArgs> = z.object({ select: AiSettingsFindFirstSelectSchema.optional(), include: z.lazy(() => AiSettingsIncludeObjectSchema.optional()), orderBy: z.union([AiSettingsOrderByWithRelationInputObjectSchema, AiSettingsOrderByWithRelationInputObjectSchema.array()]).optional(), where: AiSettingsWhereInputObjectSchema.optional(), cursor: AiSettingsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AiSettingsScalarFieldEnumSchema, AiSettingsScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType<Prisma.AiSettingsFindFirstArgs>;
|
|
|
|
export const AiSettingsFindFirstZodSchema = z.object({ select: AiSettingsFindFirstSelectSchema.optional(), include: z.lazy(() => AiSettingsIncludeObjectSchema.optional()), orderBy: z.union([AiSettingsOrderByWithRelationInputObjectSchema, AiSettingsOrderByWithRelationInputObjectSchema.array()]).optional(), where: AiSettingsWhereInputObjectSchema.optional(), cursor: AiSettingsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AiSettingsScalarFieldEnumSchema, AiSettingsScalarFieldEnumSchema.array()]).optional() }).strict(); |