@agenticmail/enterprise 0.5.523 → 0.5.525
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-2ZXJGHW4.js +518 -0
- package/dist/agent-tools-H2GJSFCH.js +14677 -0
- package/dist/agent-tools-YHFY6TLJ.js +14677 -0
- package/dist/chunk-5I4DKNLC.js +1707 -0
- package/dist/chunk-6ICRHVFC.js +7907 -0
- package/dist/chunk-A6XJB6ZR.js +5941 -0
- package/dist/chunk-BLJLFTPD.js +1687 -0
- package/dist/chunk-CB27JM7S.js +1728 -0
- package/dist/chunk-D7NNXFSM.js +7907 -0
- package/dist/chunk-DWXADN72.js +5703 -0
- package/dist/chunk-EXUNNJ6N.js +5941 -0
- package/dist/chunk-IEYHI57W.js +7908 -0
- package/dist/chunk-J2OF7NJG.js +2281 -0
- package/dist/chunk-K2GKUQSB.js +1387 -0
- package/dist/chunk-MMOVWVKO.js +5703 -0
- package/dist/chunk-MXOYJUQB.js +5703 -0
- package/dist/chunk-MZKHGABP.js +1728 -0
- package/dist/chunk-R3LFL3TN.js +1246 -0
- package/dist/chunk-SBGJQBFU.js +1728 -0
- package/dist/chunk-SG36H3OG.js +1728 -0
- package/dist/chunk-SXARA4VN.js +2281 -0
- package/dist/chunk-TPL2J2U2.js +26395 -0
- package/dist/chunk-Y7JDECBF.js +7907 -0
- package/dist/cli-agent-5RYLZ3ZF.js +2882 -0
- package/dist/cli-agent-BMQCDWXO.js +2882 -0
- package/dist/cli-agent-V63HIF5K.js +2882 -0
- package/dist/cli-serve-3ND3366L.js +322 -0
- package/dist/cli-serve-U3EUIOAJ.js +322 -0
- package/dist/cli-serve-VXLVFQIR.js +322 -0
- package/dist/cli-serve-WOHCBYDW.js +322 -0
- package/dist/cli.js +3 -3
- package/dist/connection-manager-LHEW2K4B.js +9 -0
- package/dist/dashboard/docs/polymarket.html +2 -2
- package/dist/dashboard/pages/polymarket.js +22 -3
- package/dist/index.js +9 -9
- package/dist/polymarket-D6EHSLXL.js +7 -0
- package/dist/polymarket-EBHN2TCK.js +17 -0
- package/dist/polymarket-RQXZPW5P.js +17 -0
- package/dist/polymarket-runtime-5HEONZSO.js +108 -0
- package/dist/polymarket-runtime-TMP25NVU.js +110 -0
- package/dist/polymarket-watcher-GC2REJAL.js +23 -0
- package/dist/polymarket-watcher-J2KLN2BM.js +23 -0
- package/dist/routes-JDDQBS4W.js +94 -0
- package/dist/runtime-AHHTTWXH.js +50 -0
- package/dist/runtime-DMOVYWYB.js +50 -0
- package/dist/runtime-JGOJQMKH.js +50 -0
- package/dist/server-3TXWZQF7.js +36 -0
- package/dist/server-63M3X7WR.js +36 -0
- package/dist/server-MY2TPFDH.js +36 -0
- package/dist/server-SCSJ6NLT.js +36 -0
- package/dist/setup-HDEWM7JA.js +20 -0
- package/dist/setup-OCNSRP2H.js +20 -0
- package/dist/setup-OTUF27AT.js +20 -0
- package/dist/setup-XGWFWSQ4.js +20 -0
- package/dist/system-prompts-CCW35O2B.js +69 -0
- package/indeed-apply.cjs +82 -0
- package/indeed-bot.cjs +296 -0
- package/logs/cloudflared-error.log +228 -0
- package/package.json +1 -1
|
@@ -1986,8 +1986,8 @@ export function PolymarketPage() {
|
|
|
1986
1986
|
h('td', null, (t.size || 0).toFixed(1)),
|
|
1987
1987
|
h('td', null, ((t.fill_price || t.price || 0) * 100).toFixed(1) + '\u00a2'),
|
|
1988
1988
|
h('td', null, '$' + ((t.fill_price || t.price || 0) * (t.size || 0)).toFixed(2)),
|
|
1989
|
-
h('td', null, h('span', { className: 'badge badge-' + (t.status === '
|
|
1990
|
-
h('td', null, t.pnl != null ? pnlCell(t.pnl) : (t.status === '
|
|
1989
|
+
h('td', null, h('span', { className: 'badge badge-' + (t.status === 'filled' ? 'success' : t.status === 'placed' ? 'warning' : t.status === 'failed' || t.status === 'no_wallet' ? 'danger' : 'secondary') }, t.status === 'placed' ? 'pending' : t.status)),
|
|
1990
|
+
h('td', null, t.pnl != null ? pnlCell(t.pnl) : (t.status === 'filled' ? h('span', { className: 'text-muted', style: { fontSize: 11 } }, 'Open') : t.status === 'placed' ? h('span', { className: 'text-muted', style: { fontSize: 11 } }, 'Awaiting fill') : '--')),
|
|
1991
1991
|
h('td', null, fmtDate(t.created_at)),
|
|
1992
1992
|
]; },
|
|
1993
1993
|
{ searchFields: ['market_question', 'token_id', 'outcome'], filters: [
|
|
@@ -2778,7 +2778,26 @@ export function PolymarketPage() {
|
|
|
2778
2778
|
var res = await apiCall('/polymarket/' + selectedAgent + '/wallet/import', { method: 'POST', body: JSON.stringify({ private_key: importKey.trim() }) });
|
|
2779
2779
|
toast('Wallet imported: ' + (res.address || ''), 'success');
|
|
2780
2780
|
setShowImportWallet(false); setImportKey(''); loadAgentData(selectedAgent);
|
|
2781
|
-
} catch (e) {
|
|
2781
|
+
} catch (e) {
|
|
2782
|
+
// If server says existing wallet exists, ask for confirmation before overwriting
|
|
2783
|
+
if (e.message === 'EXISTING_WALLET') {
|
|
2784
|
+
var existAddr = walletBalance?.address || 'unknown';
|
|
2785
|
+
var shortExist = typeof existAddr === 'string' && existAddr.length > 10 ? existAddr.slice(0, 6) + '...' + existAddr.slice(-4) : existAddr;
|
|
2786
|
+
var confirmed = await showConfirm(
|
|
2787
|
+
'This agent already has a wallet at ' + shortExist +
|
|
2788
|
+
'.\n\nIMPORTANT: Export and back up the current private key BEFORE replacing it. Once replaced, the old key is PERMANENTLY LOST and any funds on it will be unrecoverable.\n\nAre you sure you want to replace it?'
|
|
2789
|
+
);
|
|
2790
|
+
if (confirmed) {
|
|
2791
|
+
try {
|
|
2792
|
+
var res2 = await apiCall('/polymarket/' + selectedAgent + '/wallet/import', { method: 'POST', body: JSON.stringify({ private_key: importKey.trim(), confirm_overwrite: true }) });
|
|
2793
|
+
toast('Wallet replaced: ' + (res2.address || ''), 'success');
|
|
2794
|
+
setShowImportWallet(false); setImportKey(''); loadAgentData(selectedAgent);
|
|
2795
|
+
} catch (e2) { toast('Import failed: ' + e2.message, 'error'); }
|
|
2796
|
+
}
|
|
2797
|
+
} else {
|
|
2798
|
+
toast('Import failed: ' + e.message, 'error');
|
|
2799
|
+
}
|
|
2800
|
+
}
|
|
2782
2801
|
setWalletSetupLoading(false);
|
|
2783
2802
|
}
|
|
2784
2803
|
}, 'Import Wallet'),
|
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
import {
|
|
8
8
|
provision,
|
|
9
9
|
runSetupWizard
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-CB27JM7S.js";
|
|
11
11
|
import {
|
|
12
12
|
AgenticMailManager,
|
|
13
13
|
GoogleEmailProvider,
|
|
@@ -28,8 +28,8 @@ import {
|
|
|
28
28
|
executeTool,
|
|
29
29
|
runAgentLoop,
|
|
30
30
|
toolsToDefinitions
|
|
31
|
-
} from "./chunk-
|
|
32
|
-
import "./chunk-
|
|
31
|
+
} from "./chunk-DWXADN72.js";
|
|
32
|
+
import "./chunk-R3LFL3TN.js";
|
|
33
33
|
import {
|
|
34
34
|
ValidationError,
|
|
35
35
|
auditLogger,
|
|
@@ -43,7 +43,7 @@ import {
|
|
|
43
43
|
requireRole,
|
|
44
44
|
securityHeaders,
|
|
45
45
|
validate
|
|
46
|
-
} from "./chunk-
|
|
46
|
+
} from "./chunk-IEYHI57W.js";
|
|
47
47
|
import "./chunk-DJBCRQTD.js";
|
|
48
48
|
import {
|
|
49
49
|
PROVIDER_REGISTRY,
|
|
@@ -83,7 +83,7 @@ import {
|
|
|
83
83
|
init_storage_manager,
|
|
84
84
|
init_tenant,
|
|
85
85
|
init_workforce
|
|
86
|
-
} from "./chunk-
|
|
86
|
+
} from "./chunk-TPL2J2U2.js";
|
|
87
87
|
import "./chunk-TK55CSBH.js";
|
|
88
88
|
import {
|
|
89
89
|
ENGINE_TABLES,
|
|
@@ -104,7 +104,7 @@ import "./chunk-AF3WSNVX.js";
|
|
|
104
104
|
import "./chunk-74ZCQKYU.js";
|
|
105
105
|
import "./chunk-ET6WZFPS.js";
|
|
106
106
|
import "./chunk-FQWJMPKW.js";
|
|
107
|
-
import "./chunk-
|
|
107
|
+
import "./chunk-K2GKUQSB.js";
|
|
108
108
|
import {
|
|
109
109
|
BUILTIN_SKILLS,
|
|
110
110
|
PRESET_PROFILES,
|
|
@@ -117,10 +117,10 @@ import {
|
|
|
117
117
|
init_agent_config,
|
|
118
118
|
init_deployer
|
|
119
119
|
} from "./chunk-PSZU6FMQ.js";
|
|
120
|
-
import "./chunk-
|
|
120
|
+
import "./chunk-EXUNNJ6N.js";
|
|
121
121
|
import "./chunk-X5IZUXDC.js";
|
|
122
122
|
import "./chunk-I5IGHBXW.js";
|
|
123
|
-
import "./chunk-
|
|
123
|
+
import "./chunk-BLJLFTPD.js";
|
|
124
124
|
import {
|
|
125
125
|
SecureVault,
|
|
126
126
|
init_vault
|
|
@@ -128,7 +128,7 @@ import {
|
|
|
128
128
|
import "./chunk-2CDGYMJK.js";
|
|
129
129
|
import "./chunk-V3LPIDTL.js";
|
|
130
130
|
import "./chunk-A4CX3XQS.js";
|
|
131
|
-
import "./chunk-
|
|
131
|
+
import "./chunk-SXARA4VN.js";
|
|
132
132
|
import {
|
|
133
133
|
CircuitBreaker,
|
|
134
134
|
CircuitOpenError,
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import {
|
|
2
|
+
createPolymarketTools,
|
|
3
|
+
executeOrder
|
|
4
|
+
} from "./chunk-A6XJB6ZR.js";
|
|
5
|
+
import "./chunk-X5IZUXDC.js";
|
|
6
|
+
import "./chunk-I5IGHBXW.js";
|
|
7
|
+
import "./chunk-5I4DKNLC.js";
|
|
8
|
+
import "./chunk-WUAWWKTN.js";
|
|
9
|
+
import "./chunk-2CDGYMJK.js";
|
|
10
|
+
import "./chunk-V3LPIDTL.js";
|
|
11
|
+
import "./chunk-A4CX3XQS.js";
|
|
12
|
+
import "./chunk-J2OF7NJG.js";
|
|
13
|
+
import "./chunk-KFQGP6VL.js";
|
|
14
|
+
export {
|
|
15
|
+
createPolymarketTools,
|
|
16
|
+
executeOrder
|
|
17
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import {
|
|
2
|
+
createPolymarketTools,
|
|
3
|
+
executeOrder
|
|
4
|
+
} from "./chunk-EXUNNJ6N.js";
|
|
5
|
+
import "./chunk-X5IZUXDC.js";
|
|
6
|
+
import "./chunk-I5IGHBXW.js";
|
|
7
|
+
import "./chunk-BLJLFTPD.js";
|
|
8
|
+
import "./chunk-WUAWWKTN.js";
|
|
9
|
+
import "./chunk-2CDGYMJK.js";
|
|
10
|
+
import "./chunk-V3LPIDTL.js";
|
|
11
|
+
import "./chunk-A4CX3XQS.js";
|
|
12
|
+
import "./chunk-SXARA4VN.js";
|
|
13
|
+
import "./chunk-KFQGP6VL.js";
|
|
14
|
+
export {
|
|
15
|
+
createPolymarketTools,
|
|
16
|
+
executeOrder
|
|
17
|
+
};
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import {
|
|
2
|
+
autoConnectProxy,
|
|
3
|
+
cancelBracketSibling,
|
|
4
|
+
checkAlerts,
|
|
5
|
+
createBracketAlerts,
|
|
6
|
+
deleteAlert,
|
|
7
|
+
deleteAllAlerts,
|
|
8
|
+
deleteAutoApproveRule,
|
|
9
|
+
deployProxyToVPS,
|
|
10
|
+
ensureSDK,
|
|
11
|
+
flushClobClient,
|
|
12
|
+
getAlerts,
|
|
13
|
+
getAutoApproveRules,
|
|
14
|
+
getBracketConfig,
|
|
15
|
+
getCalibration,
|
|
16
|
+
getClobClient,
|
|
17
|
+
getClobUrl,
|
|
18
|
+
getDailyCounter,
|
|
19
|
+
getPaperPositions,
|
|
20
|
+
getPendingTrades,
|
|
21
|
+
getProxyState,
|
|
22
|
+
getResolvedPredictions,
|
|
23
|
+
getSocksAgent,
|
|
24
|
+
getStrategyPerformance,
|
|
25
|
+
getUnresolvedPredictions,
|
|
26
|
+
importSDK,
|
|
27
|
+
incrementDailyCounter,
|
|
28
|
+
initLearningDB,
|
|
29
|
+
initPolymarketDB,
|
|
30
|
+
isPostgresDB,
|
|
31
|
+
isProxyEnabled,
|
|
32
|
+
loadConfig,
|
|
33
|
+
loadProxyConfig,
|
|
34
|
+
loadWalletCredentials,
|
|
35
|
+
logTrade,
|
|
36
|
+
markLessonsExtracted,
|
|
37
|
+
pauseTrading,
|
|
38
|
+
recallLessons,
|
|
39
|
+
recordPrediction,
|
|
40
|
+
resolvePendingTrade,
|
|
41
|
+
resolvePrediction,
|
|
42
|
+
resumeTrading,
|
|
43
|
+
saveAlert,
|
|
44
|
+
saveAutoApproveRule,
|
|
45
|
+
saveConfig,
|
|
46
|
+
savePaperPosition,
|
|
47
|
+
savePendingTrade,
|
|
48
|
+
saveProxyConfig,
|
|
49
|
+
saveWalletCredentials,
|
|
50
|
+
startProxy,
|
|
51
|
+
stopProxy,
|
|
52
|
+
storeLesson
|
|
53
|
+
} from "./chunk-BLJLFTPD.js";
|
|
54
|
+
import "./chunk-WUAWWKTN.js";
|
|
55
|
+
import "./chunk-KFQGP6VL.js";
|
|
56
|
+
export {
|
|
57
|
+
autoConnectProxy,
|
|
58
|
+
cancelBracketSibling,
|
|
59
|
+
checkAlerts,
|
|
60
|
+
createBracketAlerts,
|
|
61
|
+
deleteAlert,
|
|
62
|
+
deleteAllAlerts,
|
|
63
|
+
deleteAutoApproveRule,
|
|
64
|
+
deployProxyToVPS,
|
|
65
|
+
ensureSDK,
|
|
66
|
+
flushClobClient,
|
|
67
|
+
getAlerts,
|
|
68
|
+
getAutoApproveRules,
|
|
69
|
+
getBracketConfig,
|
|
70
|
+
getCalibration,
|
|
71
|
+
getClobClient,
|
|
72
|
+
getClobUrl,
|
|
73
|
+
getDailyCounter,
|
|
74
|
+
getPaperPositions,
|
|
75
|
+
getPendingTrades,
|
|
76
|
+
getProxyState,
|
|
77
|
+
getResolvedPredictions,
|
|
78
|
+
getSocksAgent,
|
|
79
|
+
getStrategyPerformance,
|
|
80
|
+
getUnresolvedPredictions,
|
|
81
|
+
importSDK,
|
|
82
|
+
incrementDailyCounter,
|
|
83
|
+
initLearningDB,
|
|
84
|
+
initPolymarketDB,
|
|
85
|
+
isPostgresDB,
|
|
86
|
+
isProxyEnabled,
|
|
87
|
+
loadConfig,
|
|
88
|
+
loadProxyConfig,
|
|
89
|
+
loadWalletCredentials,
|
|
90
|
+
logTrade,
|
|
91
|
+
markLessonsExtracted,
|
|
92
|
+
pauseTrading,
|
|
93
|
+
recallLessons,
|
|
94
|
+
recordPrediction,
|
|
95
|
+
resolvePendingTrade,
|
|
96
|
+
resolvePrediction,
|
|
97
|
+
resumeTrading,
|
|
98
|
+
saveAlert,
|
|
99
|
+
saveAutoApproveRule,
|
|
100
|
+
saveConfig,
|
|
101
|
+
savePaperPosition,
|
|
102
|
+
savePendingTrade,
|
|
103
|
+
saveProxyConfig,
|
|
104
|
+
saveWalletCredentials,
|
|
105
|
+
startProxy,
|
|
106
|
+
stopProxy,
|
|
107
|
+
storeLesson
|
|
108
|
+
};
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import {
|
|
2
|
+
autoConnectProxy,
|
|
3
|
+
cancelBracketSibling,
|
|
4
|
+
checkAlerts,
|
|
5
|
+
createBracketAlerts,
|
|
6
|
+
deleteAlert,
|
|
7
|
+
deleteAllAlerts,
|
|
8
|
+
deleteAutoApproveRule,
|
|
9
|
+
deployProxyToVPS,
|
|
10
|
+
ensureSDK,
|
|
11
|
+
flushClobClient,
|
|
12
|
+
generateWallet,
|
|
13
|
+
getAlerts,
|
|
14
|
+
getAutoApproveRules,
|
|
15
|
+
getBracketConfig,
|
|
16
|
+
getCalibration,
|
|
17
|
+
getClobClient,
|
|
18
|
+
getClobUrl,
|
|
19
|
+
getDailyCounter,
|
|
20
|
+
getPaperPositions,
|
|
21
|
+
getPendingTrades,
|
|
22
|
+
getProxyState,
|
|
23
|
+
getResolvedPredictions,
|
|
24
|
+
getSocksAgent,
|
|
25
|
+
getStrategyPerformance,
|
|
26
|
+
getUnresolvedPredictions,
|
|
27
|
+
importSDK,
|
|
28
|
+
incrementDailyCounter,
|
|
29
|
+
initLearningDB,
|
|
30
|
+
initPolymarketDB,
|
|
31
|
+
isPostgresDB,
|
|
32
|
+
isProxyEnabled,
|
|
33
|
+
loadConfig,
|
|
34
|
+
loadProxyConfig,
|
|
35
|
+
loadWalletCredentials,
|
|
36
|
+
logTrade,
|
|
37
|
+
markLessonsExtracted,
|
|
38
|
+
pauseTrading,
|
|
39
|
+
recallLessons,
|
|
40
|
+
recordPrediction,
|
|
41
|
+
resolvePendingTrade,
|
|
42
|
+
resolvePrediction,
|
|
43
|
+
resumeTrading,
|
|
44
|
+
saveAlert,
|
|
45
|
+
saveAutoApproveRule,
|
|
46
|
+
saveConfig,
|
|
47
|
+
savePaperPosition,
|
|
48
|
+
savePendingTrade,
|
|
49
|
+
saveProxyConfig,
|
|
50
|
+
saveWalletCredentials,
|
|
51
|
+
startProxy,
|
|
52
|
+
stopProxy,
|
|
53
|
+
storeLesson
|
|
54
|
+
} from "./chunk-5I4DKNLC.js";
|
|
55
|
+
import "./chunk-WUAWWKTN.js";
|
|
56
|
+
import "./chunk-KFQGP6VL.js";
|
|
57
|
+
export {
|
|
58
|
+
autoConnectProxy,
|
|
59
|
+
cancelBracketSibling,
|
|
60
|
+
checkAlerts,
|
|
61
|
+
createBracketAlerts,
|
|
62
|
+
deleteAlert,
|
|
63
|
+
deleteAllAlerts,
|
|
64
|
+
deleteAutoApproveRule,
|
|
65
|
+
deployProxyToVPS,
|
|
66
|
+
ensureSDK,
|
|
67
|
+
flushClobClient,
|
|
68
|
+
generateWallet,
|
|
69
|
+
getAlerts,
|
|
70
|
+
getAutoApproveRules,
|
|
71
|
+
getBracketConfig,
|
|
72
|
+
getCalibration,
|
|
73
|
+
getClobClient,
|
|
74
|
+
getClobUrl,
|
|
75
|
+
getDailyCounter,
|
|
76
|
+
getPaperPositions,
|
|
77
|
+
getPendingTrades,
|
|
78
|
+
getProxyState,
|
|
79
|
+
getResolvedPredictions,
|
|
80
|
+
getSocksAgent,
|
|
81
|
+
getStrategyPerformance,
|
|
82
|
+
getUnresolvedPredictions,
|
|
83
|
+
importSDK,
|
|
84
|
+
incrementDailyCounter,
|
|
85
|
+
initLearningDB,
|
|
86
|
+
initPolymarketDB,
|
|
87
|
+
isPostgresDB,
|
|
88
|
+
isProxyEnabled,
|
|
89
|
+
loadConfig,
|
|
90
|
+
loadProxyConfig,
|
|
91
|
+
loadWalletCredentials,
|
|
92
|
+
logTrade,
|
|
93
|
+
markLessonsExtracted,
|
|
94
|
+
pauseTrading,
|
|
95
|
+
recallLessons,
|
|
96
|
+
recordPrediction,
|
|
97
|
+
resolvePendingTrade,
|
|
98
|
+
resolvePrediction,
|
|
99
|
+
resumeTrading,
|
|
100
|
+
saveAlert,
|
|
101
|
+
saveAutoApproveRule,
|
|
102
|
+
saveConfig,
|
|
103
|
+
savePaperPosition,
|
|
104
|
+
savePendingTrade,
|
|
105
|
+
saveProxyConfig,
|
|
106
|
+
saveWalletCredentials,
|
|
107
|
+
startProxy,
|
|
108
|
+
stopProxy,
|
|
109
|
+
storeLesson
|
|
110
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import {
|
|
2
|
+
analyzeWithAI,
|
|
3
|
+
controlWatcherEngine,
|
|
4
|
+
createWatcherTools,
|
|
5
|
+
getAIConfig,
|
|
6
|
+
getWatcherEngineStatus,
|
|
7
|
+
initWatcherTables,
|
|
8
|
+
setWatcherRuntime,
|
|
9
|
+
startWatcherEngine,
|
|
10
|
+
stopWatcherEngine
|
|
11
|
+
} from "./chunk-SXARA4VN.js";
|
|
12
|
+
import "./chunk-KFQGP6VL.js";
|
|
13
|
+
export {
|
|
14
|
+
analyzeWithAI,
|
|
15
|
+
controlWatcherEngine,
|
|
16
|
+
createWatcherTools,
|
|
17
|
+
getAIConfig,
|
|
18
|
+
getWatcherEngineStatus,
|
|
19
|
+
initWatcherTables,
|
|
20
|
+
setWatcherRuntime,
|
|
21
|
+
startWatcherEngine,
|
|
22
|
+
stopWatcherEngine
|
|
23
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import {
|
|
2
|
+
analyzeWithAI,
|
|
3
|
+
controlWatcherEngine,
|
|
4
|
+
createWatcherTools,
|
|
5
|
+
getAIConfig,
|
|
6
|
+
getWatcherEngineStatus,
|
|
7
|
+
initWatcherTables,
|
|
8
|
+
setWatcherRuntime,
|
|
9
|
+
startWatcherEngine,
|
|
10
|
+
stopWatcherEngine
|
|
11
|
+
} from "./chunk-J2OF7NJG.js";
|
|
12
|
+
import "./chunk-KFQGP6VL.js";
|
|
13
|
+
export {
|
|
14
|
+
analyzeWithAI,
|
|
15
|
+
controlWatcherEngine,
|
|
16
|
+
createWatcherTools,
|
|
17
|
+
getAIConfig,
|
|
18
|
+
getWatcherEngineStatus,
|
|
19
|
+
initWatcherTables,
|
|
20
|
+
setWatcherRuntime,
|
|
21
|
+
startWatcherEngine,
|
|
22
|
+
stopWatcherEngine
|
|
23
|
+
};
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import {
|
|
2
|
+
activity,
|
|
3
|
+
agentStatus,
|
|
4
|
+
approvals,
|
|
5
|
+
cluster,
|
|
6
|
+
commBus,
|
|
7
|
+
communityRegistry,
|
|
8
|
+
compliance,
|
|
9
|
+
configGen,
|
|
10
|
+
databaseManager,
|
|
11
|
+
deployer,
|
|
12
|
+
dlp,
|
|
13
|
+
engine,
|
|
14
|
+
getChatPoller,
|
|
15
|
+
getEmailPoller,
|
|
16
|
+
getMessagingPoller,
|
|
17
|
+
getRuntime,
|
|
18
|
+
guardrails,
|
|
19
|
+
hierarchyManager,
|
|
20
|
+
init_routes,
|
|
21
|
+
journal,
|
|
22
|
+
knowledgeBase,
|
|
23
|
+
knowledgeContribution,
|
|
24
|
+
lifecycle,
|
|
25
|
+
memoryManager,
|
|
26
|
+
mountRuntimeApp,
|
|
27
|
+
onboarding,
|
|
28
|
+
orgIntegrations,
|
|
29
|
+
permissionEngine,
|
|
30
|
+
policyEngine,
|
|
31
|
+
policyImporter,
|
|
32
|
+
setEngineDb,
|
|
33
|
+
setRuntime,
|
|
34
|
+
skillUpdater,
|
|
35
|
+
storageManager,
|
|
36
|
+
tenants,
|
|
37
|
+
vault,
|
|
38
|
+
workforce
|
|
39
|
+
} from "./chunk-TPL2J2U2.js";
|
|
40
|
+
import "./chunk-TK55CSBH.js";
|
|
41
|
+
import "./chunk-Z7NVD3OQ.js";
|
|
42
|
+
import "./chunk-VSBC4SWO.js";
|
|
43
|
+
import "./chunk-AF3WSNVX.js";
|
|
44
|
+
import "./chunk-74ZCQKYU.js";
|
|
45
|
+
import "./chunk-ET6WZFPS.js";
|
|
46
|
+
import "./chunk-FQWJMPKW.js";
|
|
47
|
+
import "./chunk-K2GKUQSB.js";
|
|
48
|
+
import "./chunk-NCODRQSS.js";
|
|
49
|
+
import "./chunk-PSZU6FMQ.js";
|
|
50
|
+
import "./chunk-WUAWWKTN.js";
|
|
51
|
+
import "./chunk-YDD5TC5Q.js";
|
|
52
|
+
import "./chunk-FLQ5FLHW.js";
|
|
53
|
+
import "./chunk-TOGMCQSJ.js";
|
|
54
|
+
import "./chunk-22U7TZPN.js";
|
|
55
|
+
import "./chunk-KFQGP6VL.js";
|
|
56
|
+
init_routes();
|
|
57
|
+
export {
|
|
58
|
+
activity,
|
|
59
|
+
agentStatus,
|
|
60
|
+
approvals,
|
|
61
|
+
cluster,
|
|
62
|
+
commBus,
|
|
63
|
+
communityRegistry,
|
|
64
|
+
compliance,
|
|
65
|
+
configGen,
|
|
66
|
+
databaseManager,
|
|
67
|
+
deployer,
|
|
68
|
+
dlp,
|
|
69
|
+
engine as engineRoutes,
|
|
70
|
+
getChatPoller,
|
|
71
|
+
getEmailPoller,
|
|
72
|
+
getMessagingPoller,
|
|
73
|
+
getRuntime,
|
|
74
|
+
guardrails,
|
|
75
|
+
hierarchyManager,
|
|
76
|
+
journal,
|
|
77
|
+
knowledgeBase,
|
|
78
|
+
knowledgeContribution,
|
|
79
|
+
lifecycle,
|
|
80
|
+
memoryManager,
|
|
81
|
+
mountRuntimeApp,
|
|
82
|
+
onboarding,
|
|
83
|
+
orgIntegrations,
|
|
84
|
+
permissionEngine,
|
|
85
|
+
policyEngine,
|
|
86
|
+
policyImporter,
|
|
87
|
+
setEngineDb,
|
|
88
|
+
setRuntime,
|
|
89
|
+
skillUpdater,
|
|
90
|
+
storageManager,
|
|
91
|
+
tenants,
|
|
92
|
+
vault,
|
|
93
|
+
workforce
|
|
94
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AgentRuntime,
|
|
3
|
+
EmailChannel,
|
|
4
|
+
FollowUpScheduler,
|
|
5
|
+
SessionManager,
|
|
6
|
+
SubAgentManager,
|
|
7
|
+
ToolRegistry,
|
|
8
|
+
ageStaleMessages,
|
|
9
|
+
callLLM,
|
|
10
|
+
createAgentRuntime,
|
|
11
|
+
createNoopHooks,
|
|
12
|
+
createRuntimeHooks,
|
|
13
|
+
estimateMessageTokens,
|
|
14
|
+
estimateTokens,
|
|
15
|
+
executeTool,
|
|
16
|
+
runAgentLoop,
|
|
17
|
+
toolsToDefinitions,
|
|
18
|
+
truncateToolResults
|
|
19
|
+
} from "./chunk-MMOVWVKO.js";
|
|
20
|
+
import "./chunk-UBXXLAND.js";
|
|
21
|
+
import {
|
|
22
|
+
PROVIDER_REGISTRY,
|
|
23
|
+
listAllProviders,
|
|
24
|
+
resolveApiKeyForProvider,
|
|
25
|
+
resolveProvider
|
|
26
|
+
} from "./chunk-UF3ZJMJO.js";
|
|
27
|
+
import "./chunk-KFQGP6VL.js";
|
|
28
|
+
export {
|
|
29
|
+
AgentRuntime,
|
|
30
|
+
EmailChannel,
|
|
31
|
+
FollowUpScheduler,
|
|
32
|
+
PROVIDER_REGISTRY,
|
|
33
|
+
SessionManager,
|
|
34
|
+
SubAgentManager,
|
|
35
|
+
ToolRegistry,
|
|
36
|
+
ageStaleMessages,
|
|
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
|
+
truncateToolResults
|
|
50
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AgentRuntime,
|
|
3
|
+
EmailChannel,
|
|
4
|
+
FollowUpScheduler,
|
|
5
|
+
SessionManager,
|
|
6
|
+
SubAgentManager,
|
|
7
|
+
ToolRegistry,
|
|
8
|
+
ageStaleMessages,
|
|
9
|
+
callLLM,
|
|
10
|
+
createAgentRuntime,
|
|
11
|
+
createNoopHooks,
|
|
12
|
+
createRuntimeHooks,
|
|
13
|
+
estimateMessageTokens,
|
|
14
|
+
estimateTokens,
|
|
15
|
+
executeTool,
|
|
16
|
+
runAgentLoop,
|
|
17
|
+
toolsToDefinitions,
|
|
18
|
+
truncateToolResults
|
|
19
|
+
} from "./chunk-DWXADN72.js";
|
|
20
|
+
import "./chunk-R3LFL3TN.js";
|
|
21
|
+
import {
|
|
22
|
+
PROVIDER_REGISTRY,
|
|
23
|
+
listAllProviders,
|
|
24
|
+
resolveApiKeyForProvider,
|
|
25
|
+
resolveProvider
|
|
26
|
+
} from "./chunk-UF3ZJMJO.js";
|
|
27
|
+
import "./chunk-KFQGP6VL.js";
|
|
28
|
+
export {
|
|
29
|
+
AgentRuntime,
|
|
30
|
+
EmailChannel,
|
|
31
|
+
FollowUpScheduler,
|
|
32
|
+
PROVIDER_REGISTRY,
|
|
33
|
+
SessionManager,
|
|
34
|
+
SubAgentManager,
|
|
35
|
+
ToolRegistry,
|
|
36
|
+
ageStaleMessages,
|
|
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
|
+
truncateToolResults
|
|
50
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AgentRuntime,
|
|
3
|
+
EmailChannel,
|
|
4
|
+
FollowUpScheduler,
|
|
5
|
+
SessionManager,
|
|
6
|
+
SubAgentManager,
|
|
7
|
+
ToolRegistry,
|
|
8
|
+
ageStaleMessages,
|
|
9
|
+
callLLM,
|
|
10
|
+
createAgentRuntime,
|
|
11
|
+
createNoopHooks,
|
|
12
|
+
createRuntimeHooks,
|
|
13
|
+
estimateMessageTokens,
|
|
14
|
+
estimateTokens,
|
|
15
|
+
executeTool,
|
|
16
|
+
runAgentLoop,
|
|
17
|
+
toolsToDefinitions,
|
|
18
|
+
truncateToolResults
|
|
19
|
+
} from "./chunk-MXOYJUQB.js";
|
|
20
|
+
import "./chunk-UBXXLAND.js";
|
|
21
|
+
import {
|
|
22
|
+
PROVIDER_REGISTRY,
|
|
23
|
+
listAllProviders,
|
|
24
|
+
resolveApiKeyForProvider,
|
|
25
|
+
resolveProvider
|
|
26
|
+
} from "./chunk-UF3ZJMJO.js";
|
|
27
|
+
import "./chunk-KFQGP6VL.js";
|
|
28
|
+
export {
|
|
29
|
+
AgentRuntime,
|
|
30
|
+
EmailChannel,
|
|
31
|
+
FollowUpScheduler,
|
|
32
|
+
PROVIDER_REGISTRY,
|
|
33
|
+
SessionManager,
|
|
34
|
+
SubAgentManager,
|
|
35
|
+
ToolRegistry,
|
|
36
|
+
ageStaleMessages,
|
|
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
|
+
truncateToolResults
|
|
50
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import {
|
|
2
|
+
createServer
|
|
3
|
+
} from "./chunk-Y7JDECBF.js";
|
|
4
|
+
import "./chunk-DJBCRQTD.js";
|
|
5
|
+
import "./chunk-UF3ZJMJO.js";
|
|
6
|
+
import "./chunk-TPL2J2U2.js";
|
|
7
|
+
import "./chunk-TK55CSBH.js";
|
|
8
|
+
import "./chunk-Z7NVD3OQ.js";
|
|
9
|
+
import "./chunk-VSBC4SWO.js";
|
|
10
|
+
import "./chunk-AF3WSNVX.js";
|
|
11
|
+
import "./chunk-74ZCQKYU.js";
|
|
12
|
+
import "./chunk-ET6WZFPS.js";
|
|
13
|
+
import "./chunk-FQWJMPKW.js";
|
|
14
|
+
import "./chunk-K2GKUQSB.js";
|
|
15
|
+
import "./chunk-NCODRQSS.js";
|
|
16
|
+
import "./chunk-PSZU6FMQ.js";
|
|
17
|
+
import "./chunk-EXUNNJ6N.js";
|
|
18
|
+
import "./chunk-X5IZUXDC.js";
|
|
19
|
+
import "./chunk-I5IGHBXW.js";
|
|
20
|
+
import "./chunk-BLJLFTPD.js";
|
|
21
|
+
import "./chunk-WUAWWKTN.js";
|
|
22
|
+
import "./chunk-2CDGYMJK.js";
|
|
23
|
+
import "./chunk-V3LPIDTL.js";
|
|
24
|
+
import "./chunk-A4CX3XQS.js";
|
|
25
|
+
import "./chunk-SXARA4VN.js";
|
|
26
|
+
import "./chunk-YDD5TC5Q.js";
|
|
27
|
+
import "./chunk-37ABTUFU.js";
|
|
28
|
+
import "./chunk-NU657BBQ.js";
|
|
29
|
+
import "./chunk-PGAU3W3M.js";
|
|
30
|
+
import "./chunk-FLQ5FLHW.js";
|
|
31
|
+
import "./chunk-TOGMCQSJ.js";
|
|
32
|
+
import "./chunk-22U7TZPN.js";
|
|
33
|
+
import "./chunk-KFQGP6VL.js";
|
|
34
|
+
export {
|
|
35
|
+
createServer
|
|
36
|
+
};
|