@agenticmail/enterprise 0.5.51 → 0.5.53

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.
Files changed (61) hide show
  1. package/dist/chunk-4ZVC4XJY.js +3563 -0
  2. package/dist/chunk-C3WNMW6E.js +13098 -0
  3. package/dist/chunk-DU4NOTV5.js +2115 -0
  4. package/dist/chunk-EORYXW7I.js +2115 -0
  5. package/dist/chunk-G54QH5PZ.js +9085 -0
  6. package/dist/chunk-GI5RMYH6.js +37 -0
  7. package/dist/chunk-HAN6MNXJ.js +374 -0
  8. package/dist/chunk-JJ5UYDTN.js +898 -0
  9. package/dist/chunk-L447KLHG.js +13099 -0
  10. package/dist/chunk-O644HUEE.js +898 -0
  11. package/dist/chunk-ORN3ILZD.js +48 -0
  12. package/dist/chunk-QIBEF5G3.js +898 -0
  13. package/dist/chunk-SNVBXLJC.js +13099 -0
  14. package/dist/chunk-WA6WJN3D.js +2115 -0
  15. package/dist/cidr-MQSAKEA6.js +17 -0
  16. package/dist/cli-build-skill-ZD5FURGY.js +235 -0
  17. package/dist/cli-recover-XKHGIGGR.js +97 -0
  18. package/dist/cli-submit-skill-R7HUAMYR.js +162 -0
  19. package/dist/cli-validate-BDWKT6KH.js +148 -0
  20. package/dist/cli-verify-RTYVUWD7.js +98 -0
  21. package/dist/cli.js +1 -1
  22. package/dist/config-store-44Y6KOVX.js +58 -0
  23. package/dist/db-adapter-FJZ5BESQ.js +7 -0
  24. package/dist/domain-lock-7EMDJXFQ.js +7 -0
  25. package/dist/dynamodb-CDDPVEXF.js +424 -0
  26. package/dist/factory-2SRP3B3U.js +9 -0
  27. package/dist/firewall-RTIDM4NY.js +10 -0
  28. package/dist/imap-flow-QTNT4Y75.js +44953 -0
  29. package/dist/index.js +325 -4
  30. package/dist/managed-2CZ3CSGR.js +17 -0
  31. package/dist/mongodb-UEHZUXYD.js +320 -0
  32. package/dist/mysql-4BBS773W.js +575 -0
  33. package/dist/nodemailer-JCKCTRMI.js +11711 -0
  34. package/dist/postgres-BCVODZLS.js +597 -0
  35. package/dist/providers-VPFJNW4H.js +17 -0
  36. package/dist/resolve-driver-ZLJYEK72.js +27 -0
  37. package/dist/routes-M5J73UQY.js +5783 -0
  38. package/dist/runtime-D2CP45UC.js +47 -0
  39. package/dist/runtime-KQFFAIFR.js +47 -0
  40. package/dist/runtime-RUSVMLTL.js +47 -0
  41. package/dist/server-4FHO44MK.js +12 -0
  42. package/dist/server-522KPRRT.js +12 -0
  43. package/dist/server-APT3ZGC5.js +12 -0
  44. package/dist/setup-RIRKTNTW.js +20 -0
  45. package/dist/setup-RJE5Y2RQ.js +20 -0
  46. package/dist/setup-ZWEA6MUM.js +20 -0
  47. package/dist/skills-WMCZVXBK.js +14 -0
  48. package/dist/sqlite-K6HN7XRU.js +491 -0
  49. package/dist/turso-BBUTZACL.js +496 -0
  50. package/package.json +2 -2
  51. package/src/agent-tools/index.ts +11 -8
  52. package/src/agent-tools/tools/agenticmail.ts +243 -569
  53. package/src/agenticmail/index.ts +2 -0
  54. package/src/agenticmail/providers/imap.ts +454 -0
  55. package/src/agenticmail/providers/index.ts +4 -2
  56. package/src/runtime/index.ts +3 -2
  57. package/src/runtime/types.ts +2 -0
  58. package/src/agenticmail-core/index.ts +0 -36
  59. package/src/agenticmail-core/pending-followup.ts +0 -362
  60. package/src/agenticmail-core/telemetry.ts +0 -164
  61. package/src/agenticmail-core/tools.ts +0 -2395
@@ -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-C3WNMW6E.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,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-L447KLHG.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-GI5RMYH6.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,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-SNVBXLJC.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-WA6WJN3D.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-GI5RMYH6.js";
10
+ export {
11
+ createServer
12
+ };
@@ -0,0 +1,12 @@
1
+ import {
2
+ createServer
3
+ } from "./chunk-DU4NOTV5.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,12 @@
1
+ import {
2
+ createServer
3
+ } from "./chunk-EORYXW7I.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-O644HUEE.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
+ };
@@ -0,0 +1,20 @@
1
+ import {
2
+ promptCompanyInfo,
3
+ promptDatabase,
4
+ promptDeployment,
5
+ promptDomain,
6
+ promptRegistration,
7
+ provision,
8
+ runSetupWizard
9
+ } from "./chunk-JJ5UYDTN.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
+ };
@@ -0,0 +1,20 @@
1
+ import {
2
+ promptCompanyInfo,
3
+ promptDatabase,
4
+ promptDeployment,
5
+ promptDomain,
6
+ promptRegistration,
7
+ provision,
8
+ runSetupWizard
9
+ } from "./chunk-QIBEF5G3.js";
10
+ import "./chunk-ORN3ILZD.js";
11
+ import "./chunk-GI5RMYH6.js";
12
+ export {
13
+ promptCompanyInfo,
14
+ promptDatabase,
15
+ promptDeployment,
16
+ promptDomain,
17
+ promptRegistration,
18
+ provision,
19
+ runSetupWizard
20
+ };
@@ -0,0 +1,14 @@
1
+ import {
2
+ BUILTIN_SKILLS,
3
+ PRESET_PROFILES,
4
+ PermissionEngine,
5
+ SKILL_SUITES
6
+ } from "./chunk-HAN6MNXJ.js";
7
+ import "./chunk-4ZVC4XJY.js";
8
+ import "./chunk-GI5RMYH6.js";
9
+ export {
10
+ BUILTIN_SKILLS,
11
+ PRESET_PROFILES,
12
+ PermissionEngine,
13
+ SKILL_SUITES
14
+ };