@agenticmail/enterprise 0.5.157 → 0.5.158
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/chunk-M3FYDKAX.js +898 -0
- package/dist/chunk-NPQ6LQAB.js +2195 -0
- package/dist/chunk-RZDQNNAA.js +16421 -0
- package/dist/cli-agent-U7IPCDV4.js +867 -0
- package/dist/cli-serve-HJUKIOF3.js +34 -0
- package/dist/cli.js +3 -3
- package/dist/index.js +3 -3
- package/dist/routes-5EYF3VYS.js +6986 -0
- package/dist/runtime-TMYFHMGM.js +49 -0
- package/dist/server-GPLQAVZF.js +12 -0
- package/dist/setup-LKGHGM5X.js +20 -0
- package/package.json +1 -1
- package/src/engine/agent-routes.ts +18 -4
|
@@ -0,0 +1,49 @@
|
|
|
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-RZDQNNAA.js";
|
|
18
|
+
import "./chunk-AQH4DFYV.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-NRF3YRF7.js";
|
|
27
|
+
import "./chunk-TYW5XTOW.js";
|
|
28
|
+
import "./chunk-KFQGP6VL.js";
|
|
29
|
+
export {
|
|
30
|
+
AgentRuntime,
|
|
31
|
+
EmailChannel,
|
|
32
|
+
FollowUpScheduler,
|
|
33
|
+
PROVIDER_REGISTRY,
|
|
34
|
+
SessionManager,
|
|
35
|
+
SubAgentManager,
|
|
36
|
+
ToolRegistry,
|
|
37
|
+
callLLM,
|
|
38
|
+
createAgentRuntime,
|
|
39
|
+
createNoopHooks,
|
|
40
|
+
createRuntimeHooks,
|
|
41
|
+
estimateMessageTokens,
|
|
42
|
+
estimateTokens,
|
|
43
|
+
executeTool,
|
|
44
|
+
listAllProviders,
|
|
45
|
+
resolveApiKeyForProvider,
|
|
46
|
+
resolveProvider,
|
|
47
|
+
runAgentLoop,
|
|
48
|
+
toolsToDefinitions
|
|
49
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import {
|
|
2
|
+
createServer
|
|
3
|
+
} from "./chunk-NPQ6LQAB.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-M3FYDKAX.js";
|
|
10
|
+
import "./chunk-MHIFVS5L.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
|
@@ -36,9 +36,17 @@ export function createAgentRoutes(opts: {
|
|
|
36
36
|
return c.json({ agents, total: agents.length });
|
|
37
37
|
});
|
|
38
38
|
|
|
39
|
-
router.get('/agents/:id', (c) => {
|
|
39
|
+
router.get('/agents/:id', async (c) => {
|
|
40
40
|
const agent = lifecycle.getAgent(c.req.param('id'));
|
|
41
41
|
if (!agent) return c.json({ error: 'Agent not found' }, 404);
|
|
42
|
+
// Refresh state and usage from DB (agent machine writes directly)
|
|
43
|
+
try {
|
|
44
|
+
const fresh = await lifecycle.loadAgentFromDb(c.req.param('id'));
|
|
45
|
+
if (fresh) {
|
|
46
|
+
if (fresh.state) agent.state = fresh.state;
|
|
47
|
+
if (fresh.usage) agent.usage = fresh.usage;
|
|
48
|
+
}
|
|
49
|
+
} catch {}
|
|
42
50
|
return c.json({ agent });
|
|
43
51
|
});
|
|
44
52
|
|
|
@@ -149,11 +157,17 @@ export function createAgentRoutes(opts: {
|
|
|
149
157
|
// Read fresh usage from DB (agent machine writes directly to DB, not to this server's memory)
|
|
150
158
|
try {
|
|
151
159
|
const freshAgent = await lifecycle.loadAgentFromDb(agentId);
|
|
152
|
-
if (freshAgent
|
|
153
|
-
const dbUsage = freshAgent.usage;
|
|
160
|
+
if (freshAgent) {
|
|
161
|
+
const dbUsage = freshAgent.usage || {};
|
|
162
|
+
const freshState = freshAgent.state || agent.state;
|
|
163
|
+
// Also update in-memory state so other endpoints see it
|
|
164
|
+
if (freshAgent.state && freshAgent.state !== agent.state) {
|
|
165
|
+
agent.state = freshAgent.state;
|
|
166
|
+
}
|
|
154
167
|
if (dbUsage.tokensToday > 0 || (dbUsage.lastUpdated && dbUsage.lastUpdated > (agent.usage?.lastUpdated || ''))) {
|
|
155
|
-
return c.json({ usage: dbUsage, health: agent.health, state:
|
|
168
|
+
return c.json({ usage: dbUsage, health: agent.health, state: freshState });
|
|
156
169
|
}
|
|
170
|
+
return c.json({ usage: agent.usage, health: agent.health, state: freshState });
|
|
157
171
|
}
|
|
158
172
|
} catch (err: any) {
|
|
159
173
|
console.error('[usage-api] DB load failed:', err.message);
|