@pingagent/sdk 0.1.17 → 0.1.18
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/bin/pingagent.js +40 -13
- package/dist/chunk-34F6AUBW.js +6537 -0
- package/dist/chunk-66PVWBOU.js +6412 -0
- package/dist/chunk-DJ5XF3WK.js +7857 -0
- package/dist/chunk-JWBNSM4N.js +7948 -0
- package/dist/chunk-PEKTGNH6.js +7948 -0
- package/dist/chunk-V7NQC6XA.js +7948 -0
- package/dist/index.d.ts +565 -64
- package/dist/index.js +39 -1
- package/dist/web-server.js +322 -47
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1,16 +1,22 @@
|
|
|
1
1
|
import {
|
|
2
2
|
A2AAdapter,
|
|
3
|
+
CallbackResumeManager,
|
|
4
|
+
CapabilityTokenManager,
|
|
3
5
|
CollaborationEventManager,
|
|
4
6
|
CollaborationProjectionOutboxManager,
|
|
5
7
|
ContactManager,
|
|
8
|
+
ExternalEscalationManager,
|
|
6
9
|
HUMAN_DELIVERY_CHANNELS,
|
|
7
10
|
HistoryManager,
|
|
8
11
|
HttpTransport,
|
|
9
12
|
HumanDeliveryBindingManager,
|
|
10
13
|
LocalStore,
|
|
11
14
|
NotificationIntentManager,
|
|
15
|
+
OpenClawExecutionAdapter,
|
|
16
|
+
OpenClawHooksClient,
|
|
12
17
|
OperatorSeenStateManager,
|
|
13
18
|
PingAgentClient,
|
|
19
|
+
RuntimeRunManager,
|
|
14
20
|
SESSION_SUMMARY_FIELDS,
|
|
15
21
|
SessionManager,
|
|
16
22
|
SessionSummaryManager,
|
|
@@ -20,8 +26,16 @@ import {
|
|
|
20
26
|
TrustRecommendationManager,
|
|
21
27
|
UserWakeSubscription,
|
|
22
28
|
WsSubscription,
|
|
29
|
+
actionDeadlineStatus,
|
|
30
|
+
actionRiskRank,
|
|
31
|
+
buildActionContract,
|
|
32
|
+
buildActionContractForDecisionView,
|
|
33
|
+
buildActionContractForNotificationIntent,
|
|
34
|
+
buildActionInboxSummary,
|
|
35
|
+
buildCallbackResumeRequest,
|
|
23
36
|
buildDecisionReminderOutboxMessage,
|
|
24
37
|
buildDeliveryTimeline,
|
|
38
|
+
buildExternalEscalationRequest,
|
|
25
39
|
buildHumanDeliveryBindingCandidate,
|
|
26
40
|
buildHumanDeliveryPayload,
|
|
27
41
|
buildNotificationIntentInputFromProjectionOutbox,
|
|
@@ -55,6 +69,7 @@ import {
|
|
|
55
69
|
getProjectedEventTypes,
|
|
56
70
|
getProjectionDisposition,
|
|
57
71
|
getRootDir,
|
|
72
|
+
getRuntimeAdapterDescriptor,
|
|
58
73
|
getSessionBindingAlertsFilePath,
|
|
59
74
|
getSessionMapFilePath,
|
|
60
75
|
getStorePath,
|
|
@@ -66,6 +81,7 @@ import {
|
|
|
66
81
|
listOpenClawSessionEntries,
|
|
67
82
|
listPendingDecisionViews,
|
|
68
83
|
listRecentBindingsForSession,
|
|
84
|
+
listRuntimeAdapterDescriptors,
|
|
69
85
|
loadIdentity,
|
|
70
86
|
matchesTrustPolicyRule,
|
|
71
87
|
nextActionForOpenClawAgentState,
|
|
@@ -88,26 +104,36 @@ import {
|
|
|
88
104
|
summarizeSinceLastSeen,
|
|
89
105
|
summarizeTrustPolicyAudit,
|
|
90
106
|
switchTransportPreference,
|
|
107
|
+
synthesizeOpenClawRunId,
|
|
108
|
+
synthesizeOpenClawWorkflowId,
|
|
91
109
|
updateStoredToken,
|
|
92
110
|
upsertSessionBindingAlert,
|
|
93
111
|
upsertTrustPolicyRecommendation,
|
|
94
112
|
writeSessionBindingAlerts,
|
|
95
113
|
writeSessionBindings,
|
|
96
114
|
writeTransportPreference
|
|
97
|
-
} from "./chunk-
|
|
115
|
+
} from "./chunk-JWBNSM4N.js";
|
|
98
116
|
export {
|
|
99
117
|
A2AAdapter,
|
|
118
|
+
NotificationIntentManager as ActionCallbackIntentManager,
|
|
119
|
+
CallbackResumeManager,
|
|
120
|
+
CapabilityTokenManager,
|
|
100
121
|
CollaborationEventManager,
|
|
101
122
|
CollaborationProjectionOutboxManager,
|
|
102
123
|
ContactManager,
|
|
124
|
+
ExternalEscalationManager,
|
|
125
|
+
HumanDeliveryBindingManager as ExternalTargetBindingManager,
|
|
103
126
|
HUMAN_DELIVERY_CHANNELS,
|
|
104
127
|
HistoryManager,
|
|
105
128
|
HttpTransport,
|
|
106
129
|
HumanDeliveryBindingManager,
|
|
107
130
|
LocalStore,
|
|
108
131
|
NotificationIntentManager,
|
|
132
|
+
OpenClawExecutionAdapter,
|
|
133
|
+
OpenClawHooksClient,
|
|
109
134
|
OperatorSeenStateManager,
|
|
110
135
|
PingAgentClient,
|
|
136
|
+
RuntimeRunManager,
|
|
111
137
|
SESSION_SUMMARY_FIELDS,
|
|
112
138
|
SessionManager,
|
|
113
139
|
SessionSummaryManager,
|
|
@@ -117,8 +143,16 @@ export {
|
|
|
117
143
|
TrustRecommendationManager,
|
|
118
144
|
UserWakeSubscription,
|
|
119
145
|
WsSubscription,
|
|
146
|
+
actionDeadlineStatus,
|
|
147
|
+
actionRiskRank,
|
|
148
|
+
buildActionContract,
|
|
149
|
+
buildActionContractForDecisionView,
|
|
150
|
+
buildActionContractForNotificationIntent,
|
|
151
|
+
buildActionInboxSummary,
|
|
152
|
+
buildCallbackResumeRequest,
|
|
120
153
|
buildDecisionReminderOutboxMessage,
|
|
121
154
|
buildDeliveryTimeline,
|
|
155
|
+
buildExternalEscalationRequest,
|
|
122
156
|
buildHumanDeliveryBindingCandidate,
|
|
123
157
|
buildHumanDeliveryPayload,
|
|
124
158
|
buildNotificationIntentInputFromProjectionOutbox,
|
|
@@ -152,6 +186,7 @@ export {
|
|
|
152
186
|
getProjectedEventTypes,
|
|
153
187
|
getProjectionDisposition,
|
|
154
188
|
getRootDir,
|
|
189
|
+
getRuntimeAdapterDescriptor,
|
|
155
190
|
getSessionBindingAlertsFilePath,
|
|
156
191
|
getSessionMapFilePath,
|
|
157
192
|
getStorePath,
|
|
@@ -163,6 +198,7 @@ export {
|
|
|
163
198
|
listOpenClawSessionEntries,
|
|
164
199
|
listPendingDecisionViews,
|
|
165
200
|
listRecentBindingsForSession,
|
|
201
|
+
listRuntimeAdapterDescriptors,
|
|
166
202
|
loadIdentity,
|
|
167
203
|
matchesTrustPolicyRule,
|
|
168
204
|
nextActionForOpenClawAgentState,
|
|
@@ -185,6 +221,8 @@ export {
|
|
|
185
221
|
summarizeSinceLastSeen,
|
|
186
222
|
summarizeTrustPolicyAudit,
|
|
187
223
|
switchTransportPreference,
|
|
224
|
+
synthesizeOpenClawRunId,
|
|
225
|
+
synthesizeOpenClawWorkflowId,
|
|
188
226
|
updateStoredToken,
|
|
189
227
|
upsertSessionBindingAlert,
|
|
190
228
|
upsertTrustPolicyRecommendation,
|