@pingagent/sdk 0.1.9 → 0.1.11

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/index.d.ts CHANGED
@@ -160,6 +160,40 @@ declare class SessionManager {
160
160
  resolveReplyTarget(sessionKey?: string): ReplyTarget | null;
161
161
  }
162
162
 
163
+ interface SessionSummary {
164
+ session_key: string;
165
+ objective?: string;
166
+ context?: string;
167
+ constraints?: string;
168
+ decisions?: string;
169
+ open_questions?: string;
170
+ next_action?: string;
171
+ handoff_ready_text?: string;
172
+ updated_at: number;
173
+ }
174
+ interface SessionSummaryUpsert {
175
+ session_key: string;
176
+ objective?: string | null;
177
+ context?: string | null;
178
+ constraints?: string | null;
179
+ decisions?: string | null;
180
+ open_questions?: string | null;
181
+ next_action?: string | null;
182
+ handoff_ready_text?: string | null;
183
+ updated_at?: number;
184
+ }
185
+ type SessionSummaryFieldKey = 'objective' | 'context' | 'constraints' | 'decisions' | 'open_questions' | 'next_action' | 'handoff_ready_text';
186
+ declare const SESSION_SUMMARY_FIELDS: SessionSummaryFieldKey[];
187
+ declare function buildSessionSummaryHandoffText(summary?: SessionSummary | null): string;
188
+ declare class SessionSummaryManager {
189
+ private store;
190
+ constructor(store: LocalStore);
191
+ upsert(input: SessionSummaryUpsert): SessionSummary;
192
+ get(sessionKey: string): SessionSummary | null;
193
+ listRecent(limit?: number): SessionSummary[];
194
+ clearFields(sessionKey: string, fields: SessionSummaryFieldKey[], updatedAt?: number): SessionSummary;
195
+ }
196
+
163
197
  type TaskThreadStatus = 'queued' | 'running' | 'processed' | 'failed' | 'cancelled';
164
198
  interface TaskThread {
165
199
  task_id: string;
@@ -195,6 +229,64 @@ declare class TaskThreadManager {
195
229
  listRecent(limit?: number): TaskThread[];
196
230
  }
197
231
 
232
+ interface TaskHandoff {
233
+ task_id: string;
234
+ session_key: string;
235
+ conversation_id: string;
236
+ objective?: string;
237
+ carry_forward_summary?: string;
238
+ success_criteria?: string;
239
+ callback_session_key?: string;
240
+ priority?: string;
241
+ delegated_by?: string;
242
+ delegated_to?: string;
243
+ updated_at: number;
244
+ }
245
+ interface TaskHandoffPayload {
246
+ objective?: string;
247
+ carry_forward_summary?: string;
248
+ success_criteria?: string;
249
+ callback_session_key?: string;
250
+ priority?: string;
251
+ delegated_by?: string;
252
+ delegated_to?: string;
253
+ }
254
+ interface TaskHandoffUpsert extends TaskHandoffPayload {
255
+ task_id: string;
256
+ session_key: string;
257
+ conversation_id: string;
258
+ updated_at?: number;
259
+ }
260
+ declare class TaskHandoffManager {
261
+ private store;
262
+ constructor(store: LocalStore);
263
+ upsert(input: TaskHandoffUpsert): TaskHandoff;
264
+ get(taskId: string): TaskHandoff | null;
265
+ listBySession(sessionKey: string, limit?: number): TaskHandoff[];
266
+ }
267
+
268
+ type CapabilityContactMode = 'dm' | 'task' | 'either';
269
+ interface CapabilityCardItem {
270
+ id: string;
271
+ label?: string;
272
+ description?: string;
273
+ accepts_tasks?: boolean;
274
+ accepts_messages?: boolean;
275
+ input_modes?: string[];
276
+ output_modes?: string[];
277
+ examples?: string[];
278
+ }
279
+ interface CapabilityCard {
280
+ version: string;
281
+ summary?: string;
282
+ accepts_new_work?: boolean;
283
+ preferred_contact_mode?: CapabilityContactMode;
284
+ capabilities: CapabilityCardItem[];
285
+ }
286
+ declare function normalizeCapabilityCard(value: unknown): CapabilityCard | undefined;
287
+ declare function capabilityCardToLegacyCapabilities(card?: CapabilityCard | null): string[];
288
+ declare function formatCapabilityCardSummary(card?: CapabilityCard | null): string;
289
+
198
290
  interface EncryptionPublicKeyJwk {
199
291
  kty: 'EC';
200
292
  crv: 'P-256';
@@ -331,9 +423,13 @@ interface ConversationListResponse {
331
423
  interface AgentProfile {
332
424
  did: string;
333
425
  alias?: string;
426
+ public_slug?: string | null;
427
+ public_share_enabled?: boolean;
428
+ public_updated_at?: number | null;
334
429
  display_name?: string;
335
430
  bio?: string;
336
431
  capabilities?: string[];
432
+ capability_card?: CapabilityCard | null;
337
433
  tags?: string[];
338
434
  verification_status?: string;
339
435
  discoverable?: boolean;
@@ -369,6 +465,9 @@ interface AgentDirectoryCard {
369
465
  interface DirectorySelfResponse {
370
466
  did: string;
371
467
  alias?: string | null;
468
+ public_slug?: string | null;
469
+ public_share_enabled?: boolean;
470
+ public_updated_at?: number | null;
372
471
  verification_status?: string;
373
472
  encryption_public_key?: EncryptionPublicKeyJwk | null;
374
473
  mode?: string;
@@ -376,6 +475,66 @@ interface DirectorySelfResponse {
376
475
  billing_primary_did?: string | null;
377
476
  is_billing_primary?: boolean;
378
477
  }
478
+ interface PublicAgentProfile extends AgentProfile {
479
+ public_slug?: string | null;
480
+ public_share_enabled?: boolean;
481
+ public_updated_at?: number | null;
482
+ canonical_slug?: string | null;
483
+ public_url?: string | null;
484
+ noindex?: boolean;
485
+ accepts_new_contacts?: boolean;
486
+ quick_connect?: {
487
+ openclaw: string;
488
+ cli: string;
489
+ web_dm_url: string;
490
+ };
491
+ route_slug?: string | null;
492
+ source?: 'public_slug' | 'alias' | 'demo';
493
+ }
494
+ interface UpdateProfileInput {
495
+ display_name?: string;
496
+ bio?: string;
497
+ capabilities?: string[] | string;
498
+ capability_card?: CapabilityCard | null;
499
+ tags?: string[] | string;
500
+ discoverable?: boolean;
501
+ }
502
+ interface PublicLinkState {
503
+ did: string;
504
+ alias?: string | null;
505
+ public_slug?: string | null;
506
+ public_share_enabled?: boolean;
507
+ public_updated_at?: number | null;
508
+ discoverable?: boolean;
509
+ canonical_slug?: string | null;
510
+ public_url?: string | null;
511
+ }
512
+ interface ContactCardShare {
513
+ id: string;
514
+ target_did: string;
515
+ referrer_did?: string | null;
516
+ intro_note?: string;
517
+ message_template?: string;
518
+ created_by_did: string;
519
+ created_at: number;
520
+ revoked_at?: number | null;
521
+ share_url?: string;
522
+ target?: PublicAgentProfile;
523
+ }
524
+ interface TaskShareEntry {
525
+ id: string;
526
+ owner_did: string;
527
+ task_id?: string | null;
528
+ title?: string | null;
529
+ status: string;
530
+ generated_summary: string;
531
+ redacted_metadata?: Record<string, unknown> | null;
532
+ created_at: number;
533
+ revoked_at?: number | null;
534
+ share_url?: string;
535
+ owner?: PublicAgentProfile;
536
+ noindex?: boolean;
537
+ }
379
538
  declare class PingAgentClient {
380
539
  private opts;
381
540
  private transport;
@@ -383,13 +542,17 @@ declare class PingAgentClient {
383
542
  private contactManager?;
384
543
  private historyManager?;
385
544
  private sessionManager?;
545
+ private sessionSummaryManager?;
386
546
  private taskThreadManager?;
547
+ private taskHandoffManager?;
387
548
  private agentCardCache;
388
549
  constructor(opts: ClientOptions);
389
550
  getContactManager(): ContactManager | undefined;
390
551
  getHistoryManager(): HistoryManager | undefined;
391
552
  getSessionManager(): SessionManager | undefined;
553
+ getSessionSummaryManager(): SessionSummaryManager | undefined;
392
554
  getTaskThreadManager(): TaskThreadManager | undefined;
555
+ getTaskHandoffManager(): TaskHandoffManager | undefined;
393
556
  /** Update the in-memory access token (e.g. after proactive refresh from disk). */
394
557
  setAccessToken(token: string): void;
395
558
  register(developerToken?: string): Promise<ApiResponse>;
@@ -411,6 +574,7 @@ declare class PingAgentClient {
411
574
  description?: string;
412
575
  input?: any;
413
576
  timeout_ms?: number;
577
+ handoff?: TaskHandoffPayload;
414
578
  }): Promise<ApiResponse<SendResponse>>;
415
579
  sendContactRequest(conversationId: string, message?: string): Promise<ApiResponse<SendResponse>>;
416
580
  fetchInbox(conversationId: string, opts?: {
@@ -458,13 +622,33 @@ declare class PingAgentClient {
458
622
  }>>;
459
623
  getProfile(): Promise<ApiResponse<AgentProfile>>;
460
624
  getDirectorySelf(): Promise<ApiResponse<DirectorySelfResponse>>;
461
- updateProfile(profile: {
462
- display_name?: string;
463
- bio?: string;
464
- capabilities?: string[];
465
- tags?: string[];
466
- discoverable?: boolean;
467
- }): Promise<ApiResponse<AgentProfile>>;
625
+ updateProfile(profile: UpdateProfileInput): Promise<ApiResponse<AgentProfile>>;
626
+ createPublicLink(opts?: {
627
+ slug?: string;
628
+ enabled?: boolean;
629
+ }): Promise<ApiResponse<PublicLinkState>>;
630
+ getPublicSelf(): Promise<ApiResponse<PublicLinkState>>;
631
+ getPublicAgent(slug: string): Promise<ApiResponse<PublicAgentProfile>>;
632
+ createContactCard(opts?: {
633
+ target_did?: string;
634
+ referrer_did?: string;
635
+ intro_note?: string;
636
+ message_template?: string;
637
+ }): Promise<ApiResponse<ContactCardShare>>;
638
+ getContactCard(id: string): Promise<ApiResponse<ContactCardShare>>;
639
+ createTaskShare(opts: {
640
+ task_id?: string;
641
+ title?: string;
642
+ status?: string;
643
+ summary: string;
644
+ conversation_id?: string;
645
+ redacted_metadata?: Record<string, unknown>;
646
+ }): Promise<ApiResponse<TaskShareEntry>>;
647
+ getTaskShare(id: string): Promise<ApiResponse<TaskShareEntry>>;
648
+ revokeTaskShare(id: string): Promise<ApiResponse<{
649
+ id: string;
650
+ revoked_at: number;
651
+ }>>;
468
652
  ensureEncryptionKeyPublished(): Promise<ApiResponse<{
469
653
  published: boolean;
470
654
  status: 'already_registered' | 'updated';
@@ -566,6 +750,25 @@ declare class PingAgentClient {
566
750
  timeoutMs?: number;
567
751
  pollIntervalMs?: number;
568
752
  }): Promise<TaskResult>;
753
+ sendHandoff(targetDid: string, handoff: {
754
+ title: string;
755
+ description?: string;
756
+ input?: any;
757
+ objective?: string;
758
+ carry_forward_summary?: string;
759
+ success_criteria?: string;
760
+ callback_session_key?: string;
761
+ priority?: string;
762
+ }, opts?: {
763
+ timeoutMs?: number;
764
+ pollIntervalMs?: number;
765
+ sessionKey?: string;
766
+ conversationId?: string;
767
+ }): Promise<ApiResponse<{
768
+ task_id: string;
769
+ conversation_id: string;
770
+ handoff: TaskHandoffPayload;
771
+ }>>;
569
772
  }
570
773
 
571
774
  declare function ensureIdentityEncryptionKeys(identity: Partial<EncryptionIdentityFields>): EncryptionIdentityFields;
@@ -803,6 +1006,7 @@ interface RecommendationSummary {
803
1006
  total: number;
804
1007
  by_status: Record<string, number>;
805
1008
  }
1009
+ declare function getTrustRecommendationActionLabel(recommendation: Pick<StoredTrustRecommendation, 'policy' | 'action' | 'status'>): string;
806
1010
  declare class TrustRecommendationManager {
807
1011
  private store;
808
1012
  constructor(store: RecommendationStore);
@@ -947,4 +1151,57 @@ declare class WsSubscription {
947
1151
  private syncConnections;
948
1152
  }
949
1153
 
950
- export { A2AAdapter, type A2AAdapterOptions, type A2ATaskResult, type AgentEncryptionCard, type AgentProfile, type ClientOptions, type Contact, ContactManager, type ContactPolicyAction, type ContactPolicyDecision, type ConversationEntry, type ConversationListResponse, type DirectoryBrowseResponse, type DirectorySelfResponse, type EncryptedPayloadWrapper, type EncryptionIdentityFields, type EncryptionPrivateKeyJwk, type EncryptionPublicKeyJwk, type FeedByDidResponse, type FeedPost, type FeedPublicResponse, type FetchResponse, HistoryManager, HttpTransport, LocalStore, PingAgentClient, type RecommendationSummary, type ReplyTarget, type RuntimeMode, type SendResponse, SessionManager, type SessionMessageInput, type SessionState, type StoredMessage, type StoredTrustRecommendation, type SubscriptionResponse, type SubscriptionUsage, type SyncTrustRecommendationsInput, type TaskPolicyAction, type TaskPolicyDecision, type TaskResult, type TaskThread, TaskThreadManager, type TaskThreadStatus, type TaskThreadUpsert, type TransportOptions, type TrustPolicyAuditEvent, type TrustPolicyAuditEventType, type TrustPolicyAuditInput, TrustPolicyAuditManager, type TrustPolicyAuditSummary, type TrustPolicyContext, type TrustPolicyDoc, type TrustPolicyLearningSummary, type TrustPolicyRecommendation, TrustRecommendationManager, type TrustRecommendationStatus, type TrustState, WsSubscription, type WsSubscriptionOptions, buildSessionKey, buildTrustPolicyRecommendations, decideContactPolicy, decideTaskPolicy, decryptPayloadForIdentity, defaultTrustPolicyDoc, encryptPayloadForRecipients, ensureIdentityEncryptionKeys, ensureTokenValid, generateIdentity, getIdentityPath, getProfile, getRootDir, getStorePath, identityExists, isEncryptedPayload, loadIdentity, matchesTrustPolicyRule, normalizeTrustPolicyDoc, previewFromPayload, saveIdentity, shouldEncryptConversationPayload, summarizeTrustPolicyAudit, updateStoredToken, upsertTrustPolicyRecommendation };
1154
+ declare function getActiveSessionFilePath(): string;
1155
+ declare function getSessionMapFilePath(): string;
1156
+ declare function getSessionBindingAlertsFilePath(): string;
1157
+ declare function readCurrentActiveSessionKey(filePath?: string): string | null;
1158
+ interface SessionBindingEntry {
1159
+ conversation_id: string;
1160
+ session_key: string;
1161
+ }
1162
+ interface SessionBindingAlert {
1163
+ conversation_id: string;
1164
+ session_key: string;
1165
+ status: 'missing_session';
1166
+ message: string;
1167
+ detected_at: string;
1168
+ }
1169
+ declare function readSessionBindings(filePath?: string): SessionBindingEntry[];
1170
+ declare function writeSessionBindings(entries: SessionBindingEntry[], filePath?: string): string;
1171
+ declare function setSessionBinding(conversationId: string, sessionKey: string, filePath?: string): {
1172
+ path: string;
1173
+ binding: SessionBindingEntry;
1174
+ };
1175
+ declare function removeSessionBinding(conversationId: string, filePath?: string): {
1176
+ path: string;
1177
+ removed: boolean;
1178
+ };
1179
+ declare function readSessionBindingAlerts(filePath?: string): SessionBindingAlert[];
1180
+ declare function writeSessionBindingAlerts(entries: SessionBindingAlert[], filePath?: string): string;
1181
+ declare function upsertSessionBindingAlert(alert: SessionBindingAlert, filePath?: string): {
1182
+ path: string;
1183
+ alert: SessionBindingAlert;
1184
+ };
1185
+ declare function clearSessionBindingAlert(conversationId: string, filePath?: string): {
1186
+ path: string;
1187
+ removed: boolean;
1188
+ };
1189
+
1190
+ interface OpenClawIngressRuntimeStatus {
1191
+ receive_mode: 'webhook' | 'polling_degraded';
1192
+ reason?: string | null;
1193
+ hooks_url?: string | null;
1194
+ hooks_last_error?: string | null;
1195
+ hooks_last_error_at?: string | null;
1196
+ hooks_last_probe_ok_at?: string | null;
1197
+ fallback_last_injected_at?: string | null;
1198
+ fallback_last_injected_conversation_id?: string | null;
1199
+ active_work_session?: string | null;
1200
+ sessions_send_available?: boolean;
1201
+ hooks_fix_hint?: string | null;
1202
+ status_updated_at?: string | null;
1203
+ }
1204
+ declare function getIngressRuntimeStatusFilePath(): string;
1205
+ declare function readIngressRuntimeStatus(filePath?: string): OpenClawIngressRuntimeStatus | null;
1206
+
1207
+ export { A2AAdapter, type A2AAdapterOptions, type A2ATaskResult, type AgentEncryptionCard, type AgentProfile, type CapabilityCard, type CapabilityCardItem, type CapabilityContactMode, type ClientOptions, type Contact, type ContactCardShare, ContactManager, type ContactPolicyAction, type ContactPolicyDecision, type ConversationEntry, type ConversationListResponse, type DirectoryBrowseResponse, type DirectorySelfResponse, type EncryptedPayloadWrapper, type EncryptionIdentityFields, type EncryptionPrivateKeyJwk, type EncryptionPublicKeyJwk, type FeedByDidResponse, type FeedPost, type FeedPublicResponse, type FetchResponse, HistoryManager, HttpTransport, LocalStore, type OpenClawIngressRuntimeStatus, PingAgentClient, type PublicAgentProfile, type PublicLinkState, type RecommendationSummary, type ReplyTarget, type RuntimeMode, SESSION_SUMMARY_FIELDS, type SendResponse, type SessionBindingAlert, type SessionBindingEntry, SessionManager, type SessionMessageInput, type SessionState, type SessionSummary, type SessionSummaryFieldKey, SessionSummaryManager, type SessionSummaryUpsert, type StoredMessage, type StoredTrustRecommendation, type SubscriptionResponse, type SubscriptionUsage, type SyncTrustRecommendationsInput, type TaskHandoff, TaskHandoffManager, type TaskHandoffPayload, type TaskHandoffUpsert, type TaskPolicyAction, type TaskPolicyDecision, type TaskResult, type TaskShareEntry, type TaskThread, TaskThreadManager, type TaskThreadStatus, type TaskThreadUpsert, type TransportOptions, type TrustPolicyAuditEvent, type TrustPolicyAuditEventType, type TrustPolicyAuditInput, TrustPolicyAuditManager, type TrustPolicyAuditSummary, type TrustPolicyContext, type TrustPolicyDoc, type TrustPolicyLearningSummary, type TrustPolicyRecommendation, TrustRecommendationManager, type TrustRecommendationStatus, type TrustState, type UpdateProfileInput, WsSubscription, type WsSubscriptionOptions, buildSessionKey, buildSessionSummaryHandoffText, buildTrustPolicyRecommendations, capabilityCardToLegacyCapabilities, clearSessionBindingAlert, decideContactPolicy, decideTaskPolicy, decryptPayloadForIdentity, defaultTrustPolicyDoc, encryptPayloadForRecipients, ensureIdentityEncryptionKeys, ensureTokenValid, formatCapabilityCardSummary, generateIdentity, getActiveSessionFilePath, getIdentityPath, getIngressRuntimeStatusFilePath, getProfile, getRootDir, getSessionBindingAlertsFilePath, getSessionMapFilePath, getStorePath, getTrustRecommendationActionLabel, identityExists, isEncryptedPayload, loadIdentity, matchesTrustPolicyRule, normalizeCapabilityCard, normalizeTrustPolicyDoc, previewFromPayload, readCurrentActiveSessionKey, readIngressRuntimeStatus, readSessionBindingAlerts, readSessionBindings, removeSessionBinding, saveIdentity, setSessionBinding, shouldEncryptConversationPayload, summarizeTrustPolicyAudit, updateStoredToken, upsertSessionBindingAlert, upsertTrustPolicyRecommendation, writeSessionBindingAlerts, writeSessionBindings };
package/dist/index.js CHANGED
@@ -5,13 +5,19 @@ import {
5
5
  HttpTransport,
6
6
  LocalStore,
7
7
  PingAgentClient,
8
+ SESSION_SUMMARY_FIELDS,
8
9
  SessionManager,
10
+ SessionSummaryManager,
11
+ TaskHandoffManager,
9
12
  TaskThreadManager,
10
13
  TrustPolicyAuditManager,
11
14
  TrustRecommendationManager,
12
15
  WsSubscription,
13
16
  buildSessionKey,
17
+ buildSessionSummaryHandoffText,
14
18
  buildTrustPolicyRecommendations,
19
+ capabilityCardToLegacyCapabilities,
20
+ clearSessionBindingAlert,
15
21
  decideContactPolicy,
16
22
  decideTaskPolicy,
17
23
  decryptPayloadForIdentity,
@@ -19,23 +25,39 @@ import {
19
25
  encryptPayloadForRecipients,
20
26
  ensureIdentityEncryptionKeys,
21
27
  ensureTokenValid,
28
+ formatCapabilityCardSummary,
22
29
  generateIdentity,
30
+ getActiveSessionFilePath,
23
31
  getIdentityPath,
32
+ getIngressRuntimeStatusFilePath,
24
33
  getProfile,
25
34
  getRootDir,
35
+ getSessionBindingAlertsFilePath,
36
+ getSessionMapFilePath,
26
37
  getStorePath,
38
+ getTrustRecommendationActionLabel,
27
39
  identityExists,
28
40
  isEncryptedPayload,
29
41
  loadIdentity,
30
42
  matchesTrustPolicyRule,
43
+ normalizeCapabilityCard,
31
44
  normalizeTrustPolicyDoc,
32
45
  previewFromPayload,
46
+ readCurrentActiveSessionKey,
47
+ readIngressRuntimeStatus,
48
+ readSessionBindingAlerts,
49
+ readSessionBindings,
50
+ removeSessionBinding,
33
51
  saveIdentity,
52
+ setSessionBinding,
34
53
  shouldEncryptConversationPayload,
35
54
  summarizeTrustPolicyAudit,
36
55
  updateStoredToken,
37
- upsertTrustPolicyRecommendation
38
- } from "./chunk-PFABO4C7.js";
56
+ upsertSessionBindingAlert,
57
+ upsertTrustPolicyRecommendation,
58
+ writeSessionBindingAlerts,
59
+ writeSessionBindings
60
+ } from "./chunk-BLHMTUID.js";
39
61
  export {
40
62
  A2AAdapter,
41
63
  ContactManager,
@@ -43,13 +65,19 @@ export {
43
65
  HttpTransport,
44
66
  LocalStore,
45
67
  PingAgentClient,
68
+ SESSION_SUMMARY_FIELDS,
46
69
  SessionManager,
70
+ SessionSummaryManager,
71
+ TaskHandoffManager,
47
72
  TaskThreadManager,
48
73
  TrustPolicyAuditManager,
49
74
  TrustRecommendationManager,
50
75
  WsSubscription,
51
76
  buildSessionKey,
77
+ buildSessionSummaryHandoffText,
52
78
  buildTrustPolicyRecommendations,
79
+ capabilityCardToLegacyCapabilities,
80
+ clearSessionBindingAlert,
53
81
  decideContactPolicy,
54
82
  decideTaskPolicy,
55
83
  decryptPayloadForIdentity,
@@ -57,20 +85,36 @@ export {
57
85
  encryptPayloadForRecipients,
58
86
  ensureIdentityEncryptionKeys,
59
87
  ensureTokenValid,
88
+ formatCapabilityCardSummary,
60
89
  generateIdentity,
90
+ getActiveSessionFilePath,
61
91
  getIdentityPath,
92
+ getIngressRuntimeStatusFilePath,
62
93
  getProfile,
63
94
  getRootDir,
95
+ getSessionBindingAlertsFilePath,
96
+ getSessionMapFilePath,
64
97
  getStorePath,
98
+ getTrustRecommendationActionLabel,
65
99
  identityExists,
66
100
  isEncryptedPayload,
67
101
  loadIdentity,
68
102
  matchesTrustPolicyRule,
103
+ normalizeCapabilityCard,
69
104
  normalizeTrustPolicyDoc,
70
105
  previewFromPayload,
106
+ readCurrentActiveSessionKey,
107
+ readIngressRuntimeStatus,
108
+ readSessionBindingAlerts,
109
+ readSessionBindings,
110
+ removeSessionBinding,
71
111
  saveIdentity,
112
+ setSessionBinding,
72
113
  shouldEncryptConversationPayload,
73
114
  summarizeTrustPolicyAudit,
74
115
  updateStoredToken,
75
- upsertTrustPolicyRecommendation
116
+ upsertSessionBindingAlert,
117
+ upsertTrustPolicyRecommendation,
118
+ writeSessionBindingAlerts,
119
+ writeSessionBindings
76
120
  };