@agenticmail/enterprise 0.5.55 → 0.5.56

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,47 @@
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-ODD3VA4O.js";
18
+ import "./chunk-TYW5XTOW.js";
19
+ import "./chunk-JLSQOQ5L.js";
20
+ import {
21
+ PROVIDER_REGISTRY,
22
+ listAllProviders,
23
+ resolveApiKeyForProvider,
24
+ resolveProvider
25
+ } from "./chunk-67KZYSLU.js";
26
+ import "./chunk-KFQGP6VL.js";
27
+ export {
28
+ AgentRuntime,
29
+ EmailChannel,
30
+ FollowUpScheduler,
31
+ PROVIDER_REGISTRY,
32
+ SessionManager,
33
+ SubAgentManager,
34
+ ToolRegistry,
35
+ callLLM,
36
+ createAgentRuntime,
37
+ createNoopHooks,
38
+ createRuntimeHooks,
39
+ estimateMessageTokens,
40
+ estimateTokens,
41
+ executeTool,
42
+ listAllProviders,
43
+ resolveApiKeyForProvider,
44
+ resolveProvider,
45
+ runAgentLoop,
46
+ toolsToDefinitions
47
+ };
@@ -0,0 +1,12 @@
1
+ import {
2
+ createServer
3
+ } from "./chunk-JJIW2UKU.js";
4
+ import "./chunk-3SMTCIR4.js";
5
+ import "./chunk-JLSQOQ5L.js";
6
+ import "./chunk-RO537U6H.js";
7
+ import "./chunk-DRXMYYKN.js";
8
+ import "./chunk-67KZYSLU.js";
9
+ import "./chunk-KFQGP6VL.js";
10
+ export {
11
+ createServer
12
+ };
@@ -0,0 +1,20 @@
1
+ import {
2
+ promptCompanyInfo,
3
+ promptDatabase,
4
+ promptDeployment,
5
+ promptDomain,
6
+ promptRegistration,
7
+ provision,
8
+ runSetupWizard
9
+ } from "./chunk-HZKAGQWE.js";
10
+ import "./chunk-M4PRT53C.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.55",
3
+ "version": "0.5.56",
4
4
  "description": "AgenticMail Enterprise — cloud-hosted AI agent identity, email, auth & compliance for organizations",
5
5
  "type": "module",
6
6
  "bin": {
@@ -100,34 +100,54 @@ export function createCommunityRoutes(registry: CommunitySkillRegistry) {
100
100
  });
101
101
 
102
102
  router.delete('/skills/:id/uninstall', async (c) => {
103
- const orgId = c.req.query('orgId') || 'default';
104
- await registry.uninstall(orgId, c.req.param('id'));
105
- return c.json({ ok: true });
103
+ try {
104
+ const orgId = c.req.query('orgId') || 'default';
105
+ await registry.uninstall(orgId, c.req.param('id'));
106
+ return c.json({ ok: true });
107
+ } catch (e: any) {
108
+ return c.json({ error: e?.message || 'Uninstall failed' }, 404);
109
+ }
106
110
  });
107
111
 
108
112
  router.put('/skills/:id/enable', async (c) => {
109
- const { orgId } = await c.req.json().catch(() => ({ orgId: 'default' }));
110
- await registry.enable(orgId || 'default', c.req.param('id'));
111
- return c.json({ ok: true });
113
+ try {
114
+ const { orgId } = await c.req.json().catch(() => ({ orgId: 'default' }));
115
+ await registry.enable(orgId || 'default', c.req.param('id'));
116
+ return c.json({ ok: true });
117
+ } catch (e: any) {
118
+ return c.json({ error: e?.message || 'Enable failed' }, 404);
119
+ }
112
120
  });
113
121
 
114
122
  router.put('/skills/:id/disable', async (c) => {
115
- const { orgId } = await c.req.json().catch(() => ({ orgId: 'default' }));
116
- await registry.disable(orgId || 'default', c.req.param('id'));
117
- return c.json({ ok: true });
123
+ try {
124
+ const { orgId } = await c.req.json().catch(() => ({ orgId: 'default' }));
125
+ await registry.disable(orgId || 'default', c.req.param('id'));
126
+ return c.json({ ok: true });
127
+ } catch (e: any) {
128
+ return c.json({ error: e?.message || 'Disable failed' }, 404);
129
+ }
118
130
  });
119
131
 
120
132
  router.put('/skills/:id/config', async (c) => {
121
- const { orgId, config } = await c.req.json();
122
- if (!config) return c.json({ error: 'config required' }, 400);
123
- await registry.updateConfig(orgId || 'default', c.req.param('id'), config);
124
- return c.json({ ok: true });
133
+ try {
134
+ const { orgId, config } = await c.req.json();
135
+ if (!config) return c.json({ error: 'config required' }, 400);
136
+ await registry.updateConfig(orgId || 'default', c.req.param('id'), config);
137
+ return c.json({ ok: true });
138
+ } catch (e: any) {
139
+ return c.json({ error: e?.message || 'Config update failed' }, 404);
140
+ }
125
141
  });
126
142
 
127
143
  router.post('/skills/:id/upgrade', async (c) => {
128
- const { orgId } = await c.req.json().catch(() => ({ orgId: 'default' }));
129
- const installed = await registry.upgrade(orgId || 'default', c.req.param('id'));
130
- return c.json({ installed });
144
+ try {
145
+ const { orgId } = await c.req.json().catch(() => ({ orgId: 'default' }));
146
+ const installed = await registry.upgrade(orgId || 'default', c.req.param('id'));
147
+ return c.json({ installed });
148
+ } catch (e: any) {
149
+ return c.json({ error: e?.message || 'Upgrade failed' }, 404);
150
+ }
131
151
  });
132
152
 
133
153
  // ─── Admin / Publishing ──────────────────────────────