@agenticmail/enterprise 0.5.79 → 0.5.80

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.
package/dist/cli.js CHANGED
@@ -48,7 +48,7 @@ Skill Development:
48
48
  break;
49
49
  case "setup":
50
50
  default:
51
- import("./setup-S4Z4PPIJ.js").then((m) => m.runSetupWizard()).catch(fatal);
51
+ import("./setup-AANLREEL.js").then((m) => m.runSetupWizard()).catch(fatal);
52
52
  break;
53
53
  }
54
54
  function fatal(err) {
package/dist/index.js CHANGED
@@ -35,9 +35,8 @@ import {
35
35
  executeTool,
36
36
  runAgentLoop,
37
37
  toolsToDefinitions
38
- } from "./chunk-7RNT4O5T.js";
38
+ } from "./chunk-GWUIYH7I.js";
39
39
  import "./chunk-TYW5XTOW.js";
40
- import "./chunk-VX3VFMVB.js";
41
40
  import {
42
41
  ValidationError,
43
42
  auditLogger,
@@ -51,11 +50,11 @@ import {
51
50
  requireRole,
52
51
  securityHeaders,
53
52
  validate
54
- } from "./chunk-Q3V7VZFQ.js";
53
+ } from "./chunk-7MILGDAA.js";
55
54
  import {
56
55
  provision,
57
56
  runSetupWizard
58
- } from "./chunk-PZA7YOJE.js";
57
+ } from "./chunk-WRPZCOWC.js";
59
58
  import {
60
59
  ENGINE_TABLES,
61
60
  ENGINE_TABLES_POSTGRES,
@@ -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-GWUIYH7I.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-7MILGDAA.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-WRPZCOWC.js";
10
+ import "./chunk-QDXUZP7Y.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.79",
3
+ "version": "0.5.80",
4
4
  "description": "AgenticMail Enterprise — cloud-hosted AI agent identity, email, auth & compliance for organizations",
5
5
  "type": "module",
6
6
  "bin": {
@@ -99,7 +99,8 @@ export { createGrepTool } from './tools/grep.js';
99
99
  export { createWebFetchTool, fetchFirecrawlContent, extractReadableContent } from './tools/web-fetch.js';
100
100
  export { createWebSearchTool } from './tools/web-search.js';
101
101
  export { createBrowserTool } from './tools/browser.js';
102
- export { createEnterpriseBrowserTool } from './tools/browser-tool.js';
102
+ // Enterprise browser tool lazy import to avoid pulling in ws/playwright at module load time
103
+ // Use: const { createEnterpriseBrowserTool } = await import('@agenticmail/enterprise/browser-tool');
103
104
  export type { EnterpriseBrowserToolConfig } from './tools/browser-tool.js';
104
105
  export { createMemoryTool } from './tools/memory.js';
105
106
 
@@ -152,7 +153,7 @@ import { createGrepTool } from './tools/grep.js';
152
153
  import { createWebFetchTool } from './tools/web-fetch.js';
153
154
  import { createWebSearchTool } from './tools/web-search.js';
154
155
  import { createBrowserTool } from './tools/browser.js';
155
- import { createEnterpriseBrowserTool } from './tools/browser-tool.js';
156
+ // createEnterpriseBrowserTool is lazy-loaded — not imported at startup
156
157
  import { createMemoryTool } from './tools/memory.js';
157
158
 
158
159
  // Enterprise tool creators