@agenticmail/enterprise 0.5.531 → 0.5.533
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-tools-LJK4SUUZ.js +14677 -0
- package/dist/chunk-2HQACVVK.js +5703 -0
- package/dist/chunk-2VHXTMIZ.js +2309 -0
- package/dist/chunk-KGQJAVN7.js +1728 -0
- package/dist/chunk-NQADUYFR.js +6024 -0
- package/dist/chunk-QY4FR2FK.js +1687 -0
- package/dist/chunk-R47IXZFZ.js +7951 -0
- package/dist/chunk-S37WKKV2.js +1728 -0
- package/dist/chunk-XG4IZ53B.js +7931 -0
- package/dist/cli-agent-TYUJDEX2.js +2882 -0
- package/dist/cli-serve-QAEWNCNP.js +322 -0
- package/dist/cli-serve-W74VFK3H.js +322 -0
- package/dist/cli.js +3 -3
- package/dist/dashboard/pages/polymarket.js +24 -16
- package/dist/index.js +6 -6
- package/dist/polymarket-6PLBZC4J.js +17 -0
- package/dist/polymarket-runtime-JR6TSJ4O.js +108 -0
- package/dist/polymarket-watcher-N4OHQOVD.js +23 -0
- package/dist/runtime-PJ6EKYU2.js +50 -0
- package/dist/server-O5KPYYUN.js +36 -0
- package/dist/server-OHV5ONUB.js +36 -0
- package/dist/setup-DCOSDH73.js +20 -0
- package/dist/setup-HZKTR3X3.js +20 -0
- package/logs/cloudflared-error.log +22 -0
- package/package.json +1 -1
|
@@ -2024,22 +2024,30 @@ export function PolymarketPage() {
|
|
|
2024
2024
|
showArchive.trades ? (
|
|
2025
2025
|
archiveLoading ? h('div', { style: { textAlign: 'center', padding: 40, color: 'var(--text-muted)' } }, 'Loading archive...') :
|
|
2026
2026
|
h('div', null,
|
|
2027
|
-
h('div', { style: { fontSize: 13, fontWeight: 600, marginBottom: 12, color: 'var(--text-muted)'
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2027
|
+
h('div', { style: { fontSize: 13, fontWeight: 600, marginBottom: 12, color: 'var(--text-muted)', display: 'flex', alignItems: 'center', gap: 8 } },
|
|
2028
|
+
I('database'), ' Archived Trades (', (showArchive.trades_data?.total || 0), ')',
|
|
2029
|
+
showArchive.trades_data?.message && h('span', { style: { fontWeight: 400, fontStyle: 'italic' } }, ' — ', showArchive.trades_data.message)
|
|
2030
|
+
),
|
|
2031
|
+
renderFilteredTable('archive', showArchive.trades_data?.rows || [], 'No archived trades yet. Only trades for closed positions (sold or resolved markets) are archived.',
|
|
2032
|
+
['Market', 'Side', 'Outcome', 'Shares', 'Price', 'Cost', 'Status', 'P&L', 'Date'],
|
|
2033
|
+
function(t) { return [
|
|
2034
|
+
h('td', null, h('div', { style: { maxWidth: "220px" } }, t.market_question || shortId(t.token_id))),
|
|
2035
|
+
h('td', null, sideBadge(t.side)),
|
|
2036
|
+
h('td', null, t.outcome
|
|
2037
|
+
? h('span', { className: 'badge ' + (t.outcome.toLowerCase() === 'yes' ? 'badge-success' : t.outcome.toLowerCase() === 'no' ? 'badge-danger' : 'badge-secondary') }, t.outcome)
|
|
2038
|
+
: '--'),
|
|
2039
|
+
h('td', null, (t.size || 0).toFixed(1)),
|
|
2040
|
+
h('td', null, ((t.fill_price || t.price || 0) * 100).toFixed(1) + '\u00a2'),
|
|
2041
|
+
h('td', null, '$' + ((t.fill_price || t.price || 0) * (t.size || 0)).toFixed(2)),
|
|
2042
|
+
h('td', null, h('span', { className: 'badge badge-' + (t.status === 'filled' ? 'success' : t.status === 'failed' || t.status === 'no_wallet' ? 'danger' : 'secondary') }, t.status)),
|
|
2043
|
+
h('td', null, t.pnl != null ? pnlCell(t.pnl) : '--'),
|
|
2044
|
+
h('td', null, fmtDate(t.created_at)),
|
|
2045
|
+
]; },
|
|
2046
|
+
{ searchFields: ['market_question', 'token_id', 'outcome'], filters: [
|
|
2047
|
+
{ key: 'side', label: 'Side', options: ['BUY', 'SELL'] },
|
|
2048
|
+
{ key: 'outcome', label: 'Outcome', options: ['Yes', 'No'] },
|
|
2049
|
+
{ key: 'status', label: 'Status', options: ['filled', 'failed', 'cancelled', 'rejected', 'no_wallet'] }
|
|
2050
|
+
], sortFn: function(a, b) { return new Date(b.created_at || 0).getTime() - new Date(a.created_at || 0).getTime(); } })
|
|
2043
2051
|
)
|
|
2044
2052
|
) :
|
|
2045
2053
|
renderFilteredTable('history', tradeHistory, 'No trade history',
|
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-KGQJAVN7.js";
|
|
11
11
|
import {
|
|
12
12
|
AgenticMailManager,
|
|
13
13
|
GoogleEmailProvider,
|
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
executeTool,
|
|
29
29
|
runAgentLoop,
|
|
30
30
|
toolsToDefinitions
|
|
31
|
-
} from "./chunk-
|
|
31
|
+
} from "./chunk-2HQACVVK.js";
|
|
32
32
|
import "./chunk-HP63Q326.js";
|
|
33
33
|
import {
|
|
34
34
|
ValidationError,
|
|
@@ -43,7 +43,7 @@ import {
|
|
|
43
43
|
requireRole,
|
|
44
44
|
securityHeaders,
|
|
45
45
|
validate
|
|
46
|
-
} from "./chunk-
|
|
46
|
+
} from "./chunk-R47IXZFZ.js";
|
|
47
47
|
import "./chunk-DJBCRQTD.js";
|
|
48
48
|
import {
|
|
49
49
|
PROVIDER_REGISTRY,
|
|
@@ -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-NQADUYFR.js";
|
|
121
121
|
import "./chunk-X5IZUXDC.js";
|
|
122
122
|
import "./chunk-I5IGHBXW.js";
|
|
123
|
-
import "./chunk-
|
|
123
|
+
import "./chunk-QY4FR2FK.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-2VHXTMIZ.js";
|
|
132
132
|
import {
|
|
133
133
|
CircuitBreaker,
|
|
134
134
|
CircuitOpenError,
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import {
|
|
2
|
+
createPolymarketTools,
|
|
3
|
+
executeOrder
|
|
4
|
+
} from "./chunk-NQADUYFR.js";
|
|
5
|
+
import "./chunk-X5IZUXDC.js";
|
|
6
|
+
import "./chunk-I5IGHBXW.js";
|
|
7
|
+
import "./chunk-QY4FR2FK.js";
|
|
8
|
+
import "./chunk-WUAWWKTN.js";
|
|
9
|
+
import "./chunk-2CDGYMJK.js";
|
|
10
|
+
import "./chunk-V3LPIDTL.js";
|
|
11
|
+
import "./chunk-A4CX3XQS.js";
|
|
12
|
+
import "./chunk-2VHXTMIZ.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-QY4FR2FK.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,23 @@
|
|
|
1
|
+
import {
|
|
2
|
+
analyzeWithAI,
|
|
3
|
+
controlWatcherEngine,
|
|
4
|
+
createWatcherTools,
|
|
5
|
+
getAIConfig,
|
|
6
|
+
getWatcherEngineStatus,
|
|
7
|
+
initWatcherTables,
|
|
8
|
+
setWatcherRuntime,
|
|
9
|
+
startWatcherEngine,
|
|
10
|
+
stopWatcherEngine
|
|
11
|
+
} from "./chunk-2VHXTMIZ.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,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-2HQACVVK.js";
|
|
20
|
+
import "./chunk-HP63Q326.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-XG4IZ53B.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-NQADUYFR.js";
|
|
18
|
+
import "./chunk-X5IZUXDC.js";
|
|
19
|
+
import "./chunk-I5IGHBXW.js";
|
|
20
|
+
import "./chunk-QY4FR2FK.js";
|
|
21
|
+
import "./chunk-WUAWWKTN.js";
|
|
22
|
+
import "./chunk-2CDGYMJK.js";
|
|
23
|
+
import "./chunk-V3LPIDTL.js";
|
|
24
|
+
import "./chunk-A4CX3XQS.js";
|
|
25
|
+
import "./chunk-2VHXTMIZ.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
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import {
|
|
2
|
+
createServer
|
|
3
|
+
} from "./chunk-R47IXZFZ.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-NQADUYFR.js";
|
|
18
|
+
import "./chunk-X5IZUXDC.js";
|
|
19
|
+
import "./chunk-I5IGHBXW.js";
|
|
20
|
+
import "./chunk-QY4FR2FK.js";
|
|
21
|
+
import "./chunk-WUAWWKTN.js";
|
|
22
|
+
import "./chunk-2CDGYMJK.js";
|
|
23
|
+
import "./chunk-V3LPIDTL.js";
|
|
24
|
+
import "./chunk-A4CX3XQS.js";
|
|
25
|
+
import "./chunk-2VHXTMIZ.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
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import {
|
|
2
|
+
promptCompanyInfo,
|
|
3
|
+
promptDatabase,
|
|
4
|
+
promptDeployment,
|
|
5
|
+
promptDomain,
|
|
6
|
+
promptRegistration,
|
|
7
|
+
provision,
|
|
8
|
+
runSetupWizard
|
|
9
|
+
} from "./chunk-S37WKKV2.js";
|
|
10
|
+
import "./chunk-5KB5MAZK.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-KGQJAVN7.js";
|
|
10
|
+
import "./chunk-5KB5MAZK.js";
|
|
11
|
+
import "./chunk-KFQGP6VL.js";
|
|
12
|
+
export {
|
|
13
|
+
promptCompanyInfo,
|
|
14
|
+
promptDatabase,
|
|
15
|
+
promptDeployment,
|
|
16
|
+
promptDomain,
|
|
17
|
+
promptRegistration,
|
|
18
|
+
provision,
|
|
19
|
+
runSetupWizard
|
|
20
|
+
};
|
|
@@ -386,3 +386,25 @@
|
|
|
386
386
|
2026-03-15 17:14:39: 2026-03-15T16:14:39Z ERR Request failed error="stream 20493 canceled by remote with error code 0" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.200.23 type=http
|
|
387
387
|
2026-03-15 17:14:44: 2026-03-15T16:14:44Z ERR error="stream 1025 canceled by remote with error code 0" connIndex=2 event=1 ingressRule=0 originService=http://localhost:3100
|
|
388
388
|
2026-03-15 17:14:44: 2026-03-15T16:14:44Z ERR Request failed error="stream 1025 canceled by remote with error code 0" connIndex=2 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.192.167 type=http
|
|
389
|
+
2026-03-15 17:30:59: 2026-03-15T16:30:59Z ERR error="stream 21173 canceled by remote with error code 0" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
390
|
+
2026-03-15 17:30:59: 2026-03-15T16:30:59Z ERR Request failed error="stream 21173 canceled by remote with error code 0" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.200.23 type=http
|
|
391
|
+
2026-03-15 17:31:05: 2026-03-15T16:31:05Z ERR error="stream 21169 canceled by remote with error code 0" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
392
|
+
2026-03-15 17:31:05: 2026-03-15T16:31:05Z ERR Request failed error="stream 21169 canceled by remote with error code 0" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.200.23 type=http
|
|
393
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR error="unexpected EOF" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
394
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR Request failed error="unexpected EOF" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.200.23 type=http
|
|
395
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR error="unexpected EOF" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
396
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR Request failed error="unexpected EOF" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.200.23 type=http
|
|
397
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR error="unexpected EOF" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
398
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR Request failed error="unexpected EOF" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.200.23 type=http
|
|
399
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR error="unexpected EOF" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
400
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR Request failed error="unexpected EOF" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.200.23 type=http
|
|
401
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR error="unexpected EOF" connIndex=0 event=1 ingressRule=0 originService=http://localhost:3100
|
|
402
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR Request failed error="unexpected EOF" connIndex=0 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.192.7 type=http
|
|
403
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR error="unexpected EOF" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
404
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR Request failed error="unexpected EOF" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.200.23 type=http
|
|
405
|
+
2026-03-15 17:31:39: 2026-03-15T16:31:39Z ERR error="Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: dial tcp [::1]:3100: connect: connection refused" connIndex=1 event=1 ingressRule=0 originService=http://localhost:3100
|
|
406
|
+
2026-03-15 17:31:39: 2026-03-15T16:31:39Z ERR Request failed error="Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: dial tcp [::1]:3100: connect: connection refused" connIndex=1 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/wallet/balance event=0 ip=198.41.200.113 type=http
|
|
407
|
+
2026-03-15 17:32:00: 2026-03-15T16:32:00Z ERR error="stream 2917 canceled by remote with error code 0" connIndex=0 event=1 ingressRule=0 originService=http://localhost:3100
|
|
408
|
+
2026-03-15 17:32:00: 2026-03-15T16:32:00Z ERR Request failed error="stream 2917 canceled by remote with error code 0" connIndex=0 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.192.7 type=http
|
|
409
|
+
2026-03-15 17:32:05: 2026-03-15T16:32:05Z ERR error="stream 23201 canceled by remote with error code 0" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
410
|
+
2026-03-15 17:32:05: 2026-03-15T16:32:05Z ERR Request failed error="stream 23201 canceled by remote with error code 0" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.200.23 type=http
|