@agenticmail/enterprise 0.5.261 → 0.5.263

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,45 @@
1
+ import {
2
+ AgentRuntime,
3
+ EmailChannel,
4
+ FollowUpScheduler,
5
+ SessionManager,
6
+ SubAgentManager,
7
+ ToolRegistry,
8
+ callLLM,
9
+ createAgentRuntime,
10
+ createNoopHooks,
11
+ createRuntimeHooks,
12
+ estimateMessageTokens,
13
+ estimateTokens,
14
+ executeTool,
15
+ runAgentLoop,
16
+ toolsToDefinitions
17
+ } from "./chunk-TN3VSJSA.js";
18
+ import {
19
+ PROVIDER_REGISTRY,
20
+ listAllProviders,
21
+ resolveApiKeyForProvider,
22
+ resolveProvider
23
+ } from "./chunk-UF3ZJMJO.js";
24
+ import "./chunk-KFQGP6VL.js";
25
+ export {
26
+ AgentRuntime,
27
+ EmailChannel,
28
+ FollowUpScheduler,
29
+ PROVIDER_REGISTRY,
30
+ SessionManager,
31
+ SubAgentManager,
32
+ ToolRegistry,
33
+ callLLM,
34
+ createAgentRuntime,
35
+ createNoopHooks,
36
+ createRuntimeHooks,
37
+ estimateMessageTokens,
38
+ estimateTokens,
39
+ executeTool,
40
+ listAllProviders,
41
+ resolveApiKeyForProvider,
42
+ resolveProvider,
43
+ runAgentLoop,
44
+ toolsToDefinitions
45
+ };
@@ -0,0 +1,15 @@
1
+ import {
2
+ createServer
3
+ } from "./chunk-5Y3IDYBB.js";
4
+ import "./chunk-OF4MUWWS.js";
5
+ import "./chunk-UF3ZJMJO.js";
6
+ import "./chunk-3OC6RH7W.js";
7
+ import "./chunk-2DDKGTD6.js";
8
+ import "./chunk-YVK6F5OD.js";
9
+ import "./chunk-MKRNEM5A.js";
10
+ import "./chunk-DRXMYYKN.js";
11
+ import "./chunk-6WSX7QXF.js";
12
+ import "./chunk-KFQGP6VL.js";
13
+ export {
14
+ createServer
15
+ };
@@ -0,0 +1,20 @@
1
+ import {
2
+ promptCompanyInfo,
3
+ promptDatabase,
4
+ promptDeployment,
5
+ promptDomain,
6
+ promptRegistration,
7
+ provision,
8
+ runSetupWizard
9
+ } from "./chunk-TM5DXSW2.js";
10
+ import "./chunk-ULRBF2T7.js";
11
+ import "./chunk-KFQGP6VL.js";
12
+ export {
13
+ promptCompanyInfo,
14
+ promptDatabase,
15
+ promptDeployment,
16
+ promptDomain,
17
+ promptRegistration,
18
+ provision,
19
+ runSetupWizard
20
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agenticmail/enterprise",
3
- "version": "0.5.261",
3
+ "version": "0.5.263",
4
4
  "description": "AgenticMail Enterprise — cloud-hosted AI agent identity, email, auth & compliance for organizations",
5
5
  "type": "module",
6
6
  "bin": {
@@ -95,6 +95,7 @@ const CATEGORY_KEYWORDS: Record<MemoryCategory, string[]> = {
95
95
  context: ['background', 'history', 'context', 'situation', 'project', 'team', 'department'],
96
96
  reflection: ['realized', 'insight', 'lesson', 'takeaway', 'going forward', 'next time', 'reflection', 'learned'],
97
97
  session_learning: ['session', 'conversation', 'learned from', 'during chat'],
98
+ system_notice: ['system', 'notice', 'configuration', 'removed', 'deleted', 'disabled'],
98
99
  };
99
100
 
100
101
  function inferCategory(title: string, content: string): MemoryCategory {
@@ -48,6 +48,13 @@
48
48
  .back:hover { color: var(--text-primary); }
49
49
  strong { color: var(--text-primary); }
50
50
  </style>
51
+ <script>
52
+ // Sync theme with dashboard (reads from localStorage)
53
+ (function() {
54
+ var t = localStorage.getItem('em_theme') || 'dark';
55
+ document.documentElement.setAttribute('data-theme', t);
56
+ })();
57
+ </script>
51
58
  <script>
52
59
  // Sync theme with dashboard preference
53
60
  (function() {
@@ -27,7 +27,8 @@ export type MemoryCategory =
27
27
  | 'skill'
28
28
  | 'context'
29
29
  | 'reflection'
30
- | 'session_learning';
30
+ | 'session_learning'
31
+ | 'system_notice';
31
32
 
32
33
  export type MemoryImportance = 'critical' | 'high' | 'normal' | 'low';
33
34
 
@@ -38,7 +39,8 @@ export type MemorySource =
38
39
  | 'self_reflection'
39
40
  | 'correction'
40
41
  | 'system'
41
- | 'context_compaction';
42
+ | 'context_compaction'
43
+ | 'mcp_server_deletion';
42
44
 
43
45
  export const MEMORY_CATEGORIES: Record<MemoryCategory, { label: string; description: string }> = {
44
46
  org_knowledge: {
@@ -73,6 +75,10 @@ export const MEMORY_CATEGORIES: Record<MemoryCategory, { label: string; descript
73
75
  label: 'Session Learnings',
74
76
  description: 'Insights captured during conversation sessions',
75
77
  },
78
+ system_notice: {
79
+ label: 'System Notices',
80
+ description: 'System-generated notifications about configuration changes',
81
+ },
76
82
  };
77
83
 
78
84
  export interface AgentMemoryEntry {