@agenticmail/enterprise 0.5.288 → 0.5.290
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/agent-heartbeat-DPIKXNL2.js +510 -0
- package/dist/agent-tools-TZVJESQ3.js +13881 -0
- package/dist/chunk-2YOTK5B7.js +4739 -0
- package/dist/chunk-HE5H6NHI.js +1460 -0
- package/dist/chunk-PG5CNF22.js +3780 -0
- package/dist/chunk-PQR6XE7B.js +1460 -0
- package/dist/cli-agent-QADP7UDK.js +1778 -0
- package/dist/cli-recover-RPXOAQAI.js +478 -0
- package/dist/cli-recover-TIXQPY44.js +423 -0
- package/dist/cli-reset-password-SO5Y6MW7.js +115 -0
- package/dist/cli-serve-VIRN7UCN.js +143 -0
- package/dist/cli.js +9 -5
- package/dist/index.js +3 -3
- package/dist/meetings-RR72OBSV.js +1 -1
- package/dist/routes-3PWOKM6G.js +13695 -0
- package/dist/runtime-VBLQQ7B3.js +45 -0
- package/dist/server-CLPV5R4E.js +15 -0
- package/dist/setup-CGSB4P4S.js +20 -0
- package/dist/setup-CVOU77CE.js +20 -0
- package/package.json +1 -1
- package/src/cli-reset-password.ts +138 -0
- package/src/cli.ts +6 -1
- package/src/domain-lock/cli-recover.ts +101 -3
- package/src/setup/deployment.ts +12 -6
- package/src/setup/provision.ts +29 -4
package/dist/cli.js
CHANGED
|
@@ -14,11 +14,14 @@ switch (command) {
|
|
|
14
14
|
import("./cli-submit-skill-LDFJGSKO.js").then((m) => m.runSubmitSkill(args.slice(1))).catch(fatal);
|
|
15
15
|
break;
|
|
16
16
|
case "recover":
|
|
17
|
-
import("./cli-recover-
|
|
17
|
+
import("./cli-recover-RPXOAQAI.js").then((m) => m.runRecover(args.slice(1))).catch(fatal);
|
|
18
18
|
break;
|
|
19
19
|
case "verify-domain":
|
|
20
20
|
import("./cli-verify-F3KN23M7.js").then((m) => m.runVerifyDomain(args.slice(1))).catch(fatal);
|
|
21
21
|
break;
|
|
22
|
+
case "reset-password":
|
|
23
|
+
import("./cli-reset-password-SO5Y6MW7.js").then((m) => m.runResetPassword(args.slice(1))).catch(fatal);
|
|
24
|
+
break;
|
|
22
25
|
case "--help":
|
|
23
26
|
case "-h":
|
|
24
27
|
console.log(`
|
|
@@ -32,7 +35,8 @@ Commands:
|
|
|
32
35
|
--json Machine-readable output
|
|
33
36
|
build-skill AI-assisted skill scaffolding
|
|
34
37
|
submit-skill <path> Submit a skill as a PR
|
|
35
|
-
recover Recover a domain
|
|
38
|
+
recover Recover a domain/subdomain on a new machine
|
|
39
|
+
reset-password Reset admin password directly in the database
|
|
36
40
|
verify-domain Check DNS verification for your domain
|
|
37
41
|
|
|
38
42
|
Domain Recovery & Verification:
|
|
@@ -53,14 +57,14 @@ Skill Development:
|
|
|
53
57
|
break;
|
|
54
58
|
case "serve":
|
|
55
59
|
case "start":
|
|
56
|
-
import("./cli-serve-
|
|
60
|
+
import("./cli-serve-VIRN7UCN.js").then((m) => m.runServe(args.slice(1))).catch(fatal);
|
|
57
61
|
break;
|
|
58
62
|
case "agent":
|
|
59
|
-
import("./cli-agent-
|
|
63
|
+
import("./cli-agent-QADP7UDK.js").then((m) => m.runAgent(args.slice(1))).catch(fatal);
|
|
60
64
|
break;
|
|
61
65
|
case "setup":
|
|
62
66
|
default:
|
|
63
|
-
import("./setup-
|
|
67
|
+
import("./setup-CGSB4P4S.js").then((m) => m.runSetupWizard()).catch(fatal);
|
|
64
68
|
break;
|
|
65
69
|
}
|
|
66
70
|
function fatal(err) {
|
package/dist/index.js
CHANGED
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
import {
|
|
14
14
|
provision,
|
|
15
15
|
runSetupWizard
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-HE5H6NHI.js";
|
|
17
17
|
import {
|
|
18
18
|
AgentRuntime,
|
|
19
19
|
EmailChannel,
|
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
executeTool,
|
|
29
29
|
runAgentLoop,
|
|
30
30
|
toolsToDefinitions
|
|
31
|
-
} from "./chunk-
|
|
31
|
+
} from "./chunk-2YOTK5B7.js";
|
|
32
32
|
import {
|
|
33
33
|
ValidationError,
|
|
34
34
|
auditLogger,
|
|
@@ -42,7 +42,7 @@ import {
|
|
|
42
42
|
requireRole,
|
|
43
43
|
securityHeaders,
|
|
44
44
|
validate
|
|
45
|
-
} from "./chunk-
|
|
45
|
+
} from "./chunk-PG5CNF22.js";
|
|
46
46
|
import "./chunk-OF4MUWWS.js";
|
|
47
47
|
import {
|
|
48
48
|
PROVIDER_REGISTRY,
|