Some checks are pending
E2E / Playwright e2e (push) Waiting to run
- Replaced hardcoded "Agenda" labels with dynamic ULTICAL_APP_NAME in various components for consistency. - Introduced new AiUsageSection and CompteAiUsageSection components to track AI usage and costs. - Updated settings and metadata to reflect changes in AI cost policies and usage limits. - Enhanced user interface elements for better accessibility and user experience across admin settings.
47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
import type { PluginEntry } from "@/lib/admin-settings/org-settings-types"
|
|
|
|
export const DEFAULT_ORG_PLUGINS: PluginEntry[] = [
|
|
{
|
|
id: "mail-automation",
|
|
name: "Automatisations mail",
|
|
description: "Règles, webhooks et tri IA sur la réception.",
|
|
enabled: true,
|
|
version: "1.0.0",
|
|
},
|
|
{
|
|
id: "contact-discovery",
|
|
name: "Découverte contacts",
|
|
description: "Enrichissement IA et signatures détectées.",
|
|
enabled: true,
|
|
version: "1.0.0",
|
|
},
|
|
{
|
|
id: "public-share",
|
|
name: "Partage public Drive",
|
|
description: "Liens publics et partages externes.",
|
|
enabled: true,
|
|
version: "1.0.0",
|
|
},
|
|
{
|
|
id: "office-editor",
|
|
name: "Édition OnlyOffice",
|
|
description: "Édition collaborative de documents.",
|
|
enabled: false,
|
|
version: "1.0.0",
|
|
},
|
|
{
|
|
id: "richtext-editor",
|
|
name: "Édition rich text TipTap",
|
|
description: "Édition rich text TipTap pour documents Word.",
|
|
enabled: true,
|
|
version: "1.0.0",
|
|
},
|
|
{
|
|
id: "ai-assistant",
|
|
name: "UltiAI",
|
|
description: "Assistant IA intégré avec tools mail, drive, contacts, UltiCal et recherche web.",
|
|
enabled: false,
|
|
version: "1.0.0",
|
|
},
|
|
]
|