export type PlanAiActivityType = 'change' | 'renewal' | 'addition' export type PlanAiHistory = { id: string accountId: string activity: PlanAiActivityType name: string magicText: boolean summary: boolean transcription: boolean copilot: boolean csat: boolean agent: boolean createdAt: string updatedAt: string } export type CreatePlanAiHistoryPayload = { activity: PlanAiActivityType name: string magicText?: boolean summary?: boolean transcription?: boolean copilot?: boolean csat?: boolean agent?: boolean } export type UpdatePlanAiHistoryPayload = { activity?: PlanAiActivityType name?: string magicText?: boolean summary?: boolean transcription?: boolean copilot?: boolean csat?: boolean agent?: boolean }