import * as z from 'zod'; export const AiSettingsUpsertResultSchema = z.object({ id: z.number().int(), userId: z.number().int(), apiKey: z.string(), afterHoursEnabled: z.boolean(), openPhoneReply: z.boolean(), user: z.unknown() });