@hol-org/rb-client 0.1.182 → 0.1.184

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
@@ -283,6 +283,70 @@ declare enum AIAgentCapability {
283
283
  type JsonValue$1 = string | number | boolean | null | JsonValue$1[] | {
284
284
  [key: string]: JsonValue$1;
285
285
  };
286
+ declare const chatDeliveryStateSchema: z.ZodEnum<["draft", "queued", "persisted", "delivered", "streaming", "responded", "failed", "timeout", "cancelled"]>;
287
+ declare const chatTimelineEntrySchema: z.ZodObject<{
288
+ messageId: z.ZodString;
289
+ kind: z.ZodEnum<["user", "assistant", "system", "tool", "payment", "delivery", "error"]>;
290
+ content: z.ZodString;
291
+ timestamp: z.ZodString;
292
+ deliveryState: z.ZodOptional<z.ZodEnum<["draft", "queued", "persisted", "delivered", "streaming", "responded", "failed", "timeout", "cancelled"]>>;
293
+ errorCode: z.ZodOptional<z.ZodString>;
294
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue$1, z.ZodTypeDef, JsonValue$1>>>;
295
+ attachment: z.ZodOptional<z.ZodObject<{
296
+ supported: z.ZodBoolean;
297
+ status: z.ZodEnum<["unsupported", "available", "selected", "uploading", "scanning", "ready", "failed", "rejected"]>;
298
+ maxBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
299
+ acceptedMimeTypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
300
+ reason: z.ZodOptional<z.ZodString>;
301
+ }, "strip", z.ZodTypeAny, {
302
+ reason?: string;
303
+ status?: "failed" | "rejected" | "unsupported" | "available" | "selected" | "uploading" | "scanning" | "ready";
304
+ supported?: boolean;
305
+ maxBytes?: number;
306
+ acceptedMimeTypes?: string[];
307
+ }, {
308
+ reason?: string;
309
+ status?: "failed" | "rejected" | "unsupported" | "available" | "selected" | "uploading" | "scanning" | "ready";
310
+ supported?: boolean;
311
+ maxBytes?: number;
312
+ acceptedMimeTypes?: string[];
313
+ }>>;
314
+ }, "strip", z.ZodTypeAny, {
315
+ metadata?: Record<string, JsonValue$1>;
316
+ timestamp?: string;
317
+ content?: string;
318
+ messageId?: string;
319
+ kind?: "error" | "user" | "system" | "tool" | "payment" | "delivery" | "assistant";
320
+ deliveryState?: "failed" | "draft" | "queued" | "persisted" | "delivered" | "streaming" | "responded" | "timeout" | "cancelled";
321
+ errorCode?: string;
322
+ attachment?: {
323
+ reason?: string;
324
+ status?: "failed" | "rejected" | "unsupported" | "available" | "selected" | "uploading" | "scanning" | "ready";
325
+ supported?: boolean;
326
+ maxBytes?: number;
327
+ acceptedMimeTypes?: string[];
328
+ };
329
+ }, {
330
+ metadata?: Record<string, JsonValue$1>;
331
+ timestamp?: string;
332
+ content?: string;
333
+ messageId?: string;
334
+ kind?: "error" | "user" | "system" | "tool" | "payment" | "delivery" | "assistant";
335
+ deliveryState?: "failed" | "draft" | "queued" | "persisted" | "delivered" | "streaming" | "responded" | "timeout" | "cancelled";
336
+ errorCode?: string;
337
+ attachment?: {
338
+ reason?: string;
339
+ status?: "failed" | "rejected" | "unsupported" | "available" | "selected" | "uploading" | "scanning" | "ready";
340
+ supported?: boolean;
341
+ maxBytes?: number;
342
+ acceptedMimeTypes?: string[];
343
+ };
344
+ }>;
345
+ declare const chatReadinessStatusSchema: z.ZodEnum<["responsive", "delivery_only", "degraded", "blocked", "unknown"]>;
346
+ declare const chatReplyModeSchema: z.ZodEnum<["direct", "stream", "poll", "delivery_only", "none"]>;
347
+ declare const chatRouteTypeSchema: z.ZodEnum<["a2a", "hcs-10", "mcp", "openrouter", "acp", "xmtp", "moltbook", "agentverse", "nanda", "http", "erc-8004", "x402", "unknown"]>;
348
+ declare const chatSessionStateSchema: z.ZodEnum<["connecting", "ready", "blocked", "ended", "expired"]>;
349
+ declare const chatErrorCodeSchema: z.ZodEnum<["AUTH_REQUIRED", "CREDITS_REQUIRED", "PAYMENT_REQUIRED", "AGENT_UNRESPONSIVE", "ROUTE_UNAVAILABLE", "PROTOCOL_UNSUPPORTED", "BROKER_NOT_EXECUTABLE", "NETWORK_TIMEOUT", "STREAM_STALLED", "HISTORY_UNAVAILABLE", "ENCRYPTION_REQUIRED", "RATE_LIMITED", "VALIDATION_ERROR", "UNKNOWN_ERROR"]>;
286
350
  declare const chatRouteSummarySchema: z.ZodObject<{
287
351
  type: z.ZodEnum<["a2a", "hcs-10", "mcp", "openrouter", "acp", "xmtp", "moltbook", "agentverse", "nanda", "http", "erc-8004", "x402", "unknown"]>;
288
352
  replyMode: z.ZodEnum<["direct", "stream", "poll", "delivery_only", "none"]>;
@@ -399,6 +463,227 @@ declare const chatReadinessResponseSchema: z.ZodObject<{
399
463
  code?: string;
400
464
  };
401
465
  }>;
466
+ declare const chatSessionResumeResponseSchema: z.ZodObject<{
467
+ sessionId: z.ZodString;
468
+ uaid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
469
+ agentUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
470
+ route: z.ZodObject<{
471
+ type: z.ZodEnum<["a2a", "hcs-10", "mcp", "openrouter", "acp", "xmtp", "moltbook", "agentverse", "nanda", "http", "erc-8004", "x402", "unknown"]>;
472
+ replyMode: z.ZodEnum<["direct", "stream", "poll", "delivery_only", "none"]>;
473
+ transport: z.ZodString;
474
+ endpoint: z.ZodOptional<z.ZodString>;
475
+ }, "strip", z.ZodTypeAny, {
476
+ type?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
477
+ transport?: string;
478
+ replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
479
+ endpoint?: string;
480
+ }, {
481
+ type?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
482
+ transport?: string;
483
+ replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
484
+ endpoint?: string;
485
+ }>;
486
+ transport: z.ZodString;
487
+ history: z.ZodArray<z.ZodObject<{
488
+ messageId: z.ZodString;
489
+ role: z.ZodEnum<["user", "agent", "system", "tool", "payment", "delivery", "error"]>;
490
+ content: z.ZodString;
491
+ timestamp: z.ZodString;
492
+ cipherEnvelope: z.ZodOptional<z.ZodObject<{
493
+ algorithm: z.ZodString;
494
+ ciphertext: z.ZodString;
495
+ nonce: z.ZodString;
496
+ associatedData: z.ZodOptional<z.ZodString>;
497
+ keyLocator: z.ZodOptional<z.ZodObject<{
498
+ sessionId: z.ZodOptional<z.ZodString>;
499
+ revision: z.ZodOptional<z.ZodNumber>;
500
+ }, "strip", z.ZodTypeAny, {
501
+ sessionId?: string;
502
+ revision?: number;
503
+ }, {
504
+ sessionId?: string;
505
+ revision?: number;
506
+ }>>;
507
+ recipients: z.ZodArray<z.ZodObject<{
508
+ uaid: z.ZodOptional<z.ZodString>;
509
+ ledgerAccountId: z.ZodOptional<z.ZodString>;
510
+ userId: z.ZodOptional<z.ZodString>;
511
+ email: z.ZodOptional<z.ZodString>;
512
+ encryptedShare: z.ZodString;
513
+ }, "strip", z.ZodTypeAny, {
514
+ uaid?: string;
515
+ ledgerAccountId?: string;
516
+ userId?: string;
517
+ email?: string;
518
+ encryptedShare?: string;
519
+ }, {
520
+ uaid?: string;
521
+ ledgerAccountId?: string;
522
+ userId?: string;
523
+ email?: string;
524
+ encryptedShare?: string;
525
+ }>, "many">;
526
+ }, "strip", z.ZodTypeAny, {
527
+ nonce?: string;
528
+ algorithm?: string;
529
+ ciphertext?: string;
530
+ associatedData?: string;
531
+ keyLocator?: {
532
+ sessionId?: string;
533
+ revision?: number;
534
+ };
535
+ recipients?: {
536
+ uaid?: string;
537
+ ledgerAccountId?: string;
538
+ userId?: string;
539
+ email?: string;
540
+ encryptedShare?: string;
541
+ }[];
542
+ }, {
543
+ nonce?: string;
544
+ algorithm?: string;
545
+ ciphertext?: string;
546
+ associatedData?: string;
547
+ keyLocator?: {
548
+ sessionId?: string;
549
+ revision?: number;
550
+ };
551
+ recipients?: {
552
+ uaid?: string;
553
+ ledgerAccountId?: string;
554
+ userId?: string;
555
+ email?: string;
556
+ encryptedShare?: string;
557
+ }[];
558
+ }>>;
559
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue$1, z.ZodTypeDef, JsonValue$1>>>;
560
+ }, "strip", z.ZodTypeAny, {
561
+ metadata?: Record<string, JsonValue$1>;
562
+ timestamp?: string;
563
+ content?: string;
564
+ role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
565
+ messageId?: string;
566
+ cipherEnvelope?: {
567
+ nonce?: string;
568
+ algorithm?: string;
569
+ ciphertext?: string;
570
+ associatedData?: string;
571
+ keyLocator?: {
572
+ sessionId?: string;
573
+ revision?: number;
574
+ };
575
+ recipients?: {
576
+ uaid?: string;
577
+ ledgerAccountId?: string;
578
+ userId?: string;
579
+ email?: string;
580
+ encryptedShare?: string;
581
+ }[];
582
+ };
583
+ }, {
584
+ metadata?: Record<string, JsonValue$1>;
585
+ timestamp?: string;
586
+ content?: string;
587
+ role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
588
+ messageId?: string;
589
+ cipherEnvelope?: {
590
+ nonce?: string;
591
+ algorithm?: string;
592
+ ciphertext?: string;
593
+ associatedData?: string;
594
+ keyLocator?: {
595
+ sessionId?: string;
596
+ revision?: number;
597
+ };
598
+ recipients?: {
599
+ uaid?: string;
600
+ ledgerAccountId?: string;
601
+ userId?: string;
602
+ email?: string;
603
+ encryptedShare?: string;
604
+ }[];
605
+ };
606
+ }>, "many">;
607
+ historyTtlSeconds: z.ZodOptional<z.ZodNumber>;
608
+ visibility: z.ZodOptional<z.ZodEnum<["private", "public"]>>;
609
+ state: z.ZodEnum<["connecting", "ready", "blocked", "ended", "expired"]>;
610
+ }, "strip", z.ZodTypeAny, {
611
+ state?: "ready" | "blocked" | "connecting" | "ended" | "expired";
612
+ uaid?: string;
613
+ transport?: string;
614
+ sessionId?: string;
615
+ agentUrl?: string;
616
+ route?: {
617
+ type?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
618
+ transport?: string;
619
+ replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
620
+ endpoint?: string;
621
+ };
622
+ history?: {
623
+ metadata?: Record<string, JsonValue$1>;
624
+ timestamp?: string;
625
+ content?: string;
626
+ role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
627
+ messageId?: string;
628
+ cipherEnvelope?: {
629
+ nonce?: string;
630
+ algorithm?: string;
631
+ ciphertext?: string;
632
+ associatedData?: string;
633
+ keyLocator?: {
634
+ sessionId?: string;
635
+ revision?: number;
636
+ };
637
+ recipients?: {
638
+ uaid?: string;
639
+ ledgerAccountId?: string;
640
+ userId?: string;
641
+ email?: string;
642
+ encryptedShare?: string;
643
+ }[];
644
+ };
645
+ }[];
646
+ historyTtlSeconds?: number;
647
+ visibility?: "private" | "public";
648
+ }, {
649
+ state?: "ready" | "blocked" | "connecting" | "ended" | "expired";
650
+ uaid?: string;
651
+ transport?: string;
652
+ sessionId?: string;
653
+ agentUrl?: string;
654
+ route?: {
655
+ type?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
656
+ transport?: string;
657
+ replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
658
+ endpoint?: string;
659
+ };
660
+ history?: {
661
+ metadata?: Record<string, JsonValue$1>;
662
+ timestamp?: string;
663
+ content?: string;
664
+ role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
665
+ messageId?: string;
666
+ cipherEnvelope?: {
667
+ nonce?: string;
668
+ algorithm?: string;
669
+ ciphertext?: string;
670
+ associatedData?: string;
671
+ keyLocator?: {
672
+ sessionId?: string;
673
+ revision?: number;
674
+ };
675
+ recipients?: {
676
+ uaid?: string;
677
+ ledgerAccountId?: string;
678
+ userId?: string;
679
+ email?: string;
680
+ encryptedShare?: string;
681
+ }[];
682
+ };
683
+ }[];
684
+ historyTtlSeconds?: number;
685
+ visibility?: "private" | "public";
686
+ }>;
402
687
  declare const searchResponseSchema: z.ZodObject<{
403
688
  hits: z.ZodArray<z.ZodObject<{
404
689
  id: z.ZodString;
@@ -1128,11 +1413,11 @@ declare const resolveResponseSchema: z.ZodObject<{
1128
1413
  image?: string;
1129
1414
  adapter?: string;
1130
1415
  protocols?: string[];
1416
+ available?: boolean;
1131
1417
  metadataFacet?: Record<string, JsonValue$1 | JsonValue$1[] | Record<string, JsonValue$1>>;
1132
1418
  originalId?: string;
1133
1419
  communicationSupported?: boolean;
1134
1420
  routingSupported?: boolean;
1135
- available?: boolean;
1136
1421
  availabilityStatus?: string;
1137
1422
  availabilityCheckedAt?: string;
1138
1423
  availabilitySource?: string;
@@ -1175,11 +1460,11 @@ declare const resolveResponseSchema: z.ZodObject<{
1175
1460
  image?: string;
1176
1461
  adapter?: string;
1177
1462
  protocols?: string[];
1463
+ available?: boolean;
1178
1464
  metadataFacet?: Record<string, JsonValue$1 | JsonValue$1[] | Record<string, JsonValue$1>>;
1179
1465
  originalId?: string;
1180
1466
  communicationSupported?: boolean;
1181
1467
  routingSupported?: boolean;
1182
- available?: boolean;
1183
1468
  availabilityStatus?: string;
1184
1469
  availabilityCheckedAt?: string;
1185
1470
  availabilitySource?: string;
@@ -2968,7 +3253,7 @@ declare const createSessionResponseSchema: z.ZodObject<{
2968
3253
  traceId: z.ZodOptional<z.ZodString>;
2969
3254
  expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2970
3255
  }, "strip", z.ZodTypeAny, {
2971
- state?: "blocked" | "connecting" | "ready" | "ended" | "expired";
3256
+ state?: "ready" | "blocked" | "connecting" | "ended" | "expired";
2972
3257
  uaid?: string;
2973
3258
  agent?: {
2974
3259
  name?: string;
@@ -2986,6 +3271,12 @@ declare const createSessionResponseSchema: z.ZodObject<{
2986
3271
  estimatedCredits?: number;
2987
3272
  estimatedUsd?: number;
2988
3273
  };
3274
+ route?: {
3275
+ type?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
3276
+ transport?: string;
3277
+ replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
3278
+ endpoint?: string;
3279
+ };
2989
3280
  history?: {
2990
3281
  metadata?: Record<string, JsonValue$1>;
2991
3282
  timestamp?: string;
@@ -3011,6 +3302,7 @@ declare const createSessionResponseSchema: z.ZodObject<{
3011
3302
  };
3012
3303
  }[];
3013
3304
  historyTtlSeconds?: number;
3305
+ visibility?: "private" | "public";
3014
3306
  encryption?: {
3015
3307
  algorithm?: string;
3016
3308
  requester?: {
@@ -3063,14 +3355,7 @@ declare const createSessionResponseSchema: z.ZodObject<{
3063
3355
  expiresAt?: number;
3064
3356
  };
3065
3357
  };
3066
- route?: {
3067
- type?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
3068
- transport?: string;
3069
- replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
3070
- endpoint?: string;
3071
- };
3072
3358
  senderUaid?: string;
3073
- visibility?: "private" | "public";
3074
3359
  readiness?: {
3075
3360
  status?: "unknown" | "responsive" | "delivery_only" | "degraded" | "blocked";
3076
3361
  transport?: string;
@@ -3098,7 +3383,7 @@ declare const createSessionResponseSchema: z.ZodObject<{
3098
3383
  };
3099
3384
  traceId?: string;
3100
3385
  }, {
3101
- state?: "blocked" | "connecting" | "ready" | "ended" | "expired";
3386
+ state?: "ready" | "blocked" | "connecting" | "ended" | "expired";
3102
3387
  uaid?: string;
3103
3388
  agent?: {
3104
3389
  name?: string;
@@ -3116,6 +3401,12 @@ declare const createSessionResponseSchema: z.ZodObject<{
3116
3401
  estimatedCredits?: number;
3117
3402
  estimatedUsd?: number;
3118
3403
  };
3404
+ route?: {
3405
+ type?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
3406
+ transport?: string;
3407
+ replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
3408
+ endpoint?: string;
3409
+ };
3119
3410
  history?: {
3120
3411
  metadata?: Record<string, JsonValue$1>;
3121
3412
  timestamp?: string;
@@ -3141,6 +3432,7 @@ declare const createSessionResponseSchema: z.ZodObject<{
3141
3432
  };
3142
3433
  }[];
3143
3434
  historyTtlSeconds?: number;
3435
+ visibility?: "private" | "public";
3144
3436
  encryption?: {
3145
3437
  algorithm?: string;
3146
3438
  requester?: {
@@ -3193,14 +3485,7 @@ declare const createSessionResponseSchema: z.ZodObject<{
3193
3485
  expiresAt?: number;
3194
3486
  };
3195
3487
  };
3196
- route?: {
3197
- type?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
3198
- transport?: string;
3199
- replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
3200
- endpoint?: string;
3201
- };
3202
3488
  senderUaid?: string;
3203
- visibility?: "private" | "public";
3204
3489
  readiness?: {
3205
3490
  status?: "unknown" | "responsive" | "delivery_only" | "degraded" | "blocked";
3206
3491
  transport?: string;
@@ -3374,6 +3659,8 @@ declare const sendMessageResponseSchema: z.ZodObject<{
3374
3659
  content?: string;
3375
3660
  sessionId?: string;
3376
3661
  messageId?: string;
3662
+ deliveryState?: "failed" | "draft" | "queued" | "persisted" | "delivered" | "streaming" | "responded" | "timeout" | "cancelled";
3663
+ errorCode?: "AUTH_REQUIRED" | "CREDITS_REQUIRED" | "PAYMENT_REQUIRED" | "AGENT_UNRESPONSIVE" | "ROUTE_UNAVAILABLE" | "PROTOCOL_UNSUPPORTED" | "BROKER_NOT_EXECUTABLE" | "NETWORK_TIMEOUT" | "STREAM_STALLED" | "HISTORY_UNAVAILABLE" | "ENCRYPTION_REQUIRED" | "RATE_LIMITED" | "VALIDATION_ERROR" | "UNKNOWN_ERROR";
3377
3664
  replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
3378
3665
  history?: {
3379
3666
  metadata?: Record<string, JsonValue$1>;
@@ -3404,10 +3691,8 @@ declare const sendMessageResponseSchema: z.ZodObject<{
3404
3691
  ops?: Record<string, JsonValue$1>[];
3405
3692
  encrypted?: boolean;
3406
3693
  assistantMessageId?: string;
3407
- deliveryState?: "failed" | "draft" | "queued" | "persisted" | "delivered" | "streaming" | "responded" | "timeout" | "cancelled";
3408
3694
  deliveryConfirmation?: boolean;
3409
3695
  idempotent?: boolean;
3410
- errorCode?: "AUTH_REQUIRED" | "CREDITS_REQUIRED" | "PAYMENT_REQUIRED" | "AGENT_UNRESPONSIVE" | "ROUTE_UNAVAILABLE" | "PROTOCOL_UNSUPPORTED" | "BROKER_NOT_EXECUTABLE" | "NETWORK_TIMEOUT" | "STREAM_STALLED" | "HISTORY_UNAVAILABLE" | "ENCRYPTION_REQUIRED" | "RATE_LIMITED" | "VALIDATION_ERROR" | "UNKNOWN_ERROR";
3411
3696
  }, {
3412
3697
  message?: string;
3413
3698
  metadata?: Record<string, JsonValue$1>;
@@ -3416,6 +3701,8 @@ declare const sendMessageResponseSchema: z.ZodObject<{
3416
3701
  content?: string;
3417
3702
  sessionId?: string;
3418
3703
  messageId?: string;
3704
+ deliveryState?: "failed" | "draft" | "queued" | "persisted" | "delivered" | "streaming" | "responded" | "timeout" | "cancelled";
3705
+ errorCode?: "AUTH_REQUIRED" | "CREDITS_REQUIRED" | "PAYMENT_REQUIRED" | "AGENT_UNRESPONSIVE" | "ROUTE_UNAVAILABLE" | "PROTOCOL_UNSUPPORTED" | "BROKER_NOT_EXECUTABLE" | "NETWORK_TIMEOUT" | "STREAM_STALLED" | "HISTORY_UNAVAILABLE" | "ENCRYPTION_REQUIRED" | "RATE_LIMITED" | "VALIDATION_ERROR" | "UNKNOWN_ERROR";
3419
3706
  replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
3420
3707
  history?: {
3421
3708
  metadata?: Record<string, JsonValue$1>;
@@ -3446,10 +3733,8 @@ declare const sendMessageResponseSchema: z.ZodObject<{
3446
3733
  ops?: Record<string, JsonValue$1>[];
3447
3734
  encrypted?: boolean;
3448
3735
  assistantMessageId?: string;
3449
- deliveryState?: "failed" | "draft" | "queued" | "persisted" | "delivered" | "streaming" | "responded" | "timeout" | "cancelled";
3450
3736
  deliveryConfirmation?: boolean;
3451
3737
  idempotent?: boolean;
3452
- errorCode?: "AUTH_REQUIRED" | "CREDITS_REQUIRED" | "PAYMENT_REQUIRED" | "AGENT_UNRESPONSIVE" | "ROUTE_UNAVAILABLE" | "PROTOCOL_UNSUPPORTED" | "BROKER_NOT_EXECUTABLE" | "NETWORK_TIMEOUT" | "STREAM_STALLED" | "HISTORY_UNAVAILABLE" | "ENCRYPTION_REQUIRED" | "RATE_LIMITED" | "VALIDATION_ERROR" | "UNKNOWN_ERROR";
3453
3738
  }>;
3454
3739
  declare const chatSessionEndResponseSchema: z.ZodObject<{
3455
3740
  message: z.ZodString;
@@ -3457,11 +3742,11 @@ declare const chatSessionEndResponseSchema: z.ZodObject<{
3457
3742
  state: z.ZodOptional<z.ZodEnum<["connecting", "ready", "blocked", "ended", "expired"]>>;
3458
3743
  }, "strip", z.ZodTypeAny, {
3459
3744
  message?: string;
3460
- state?: "blocked" | "connecting" | "ready" | "ended" | "expired";
3745
+ state?: "ready" | "blocked" | "connecting" | "ended" | "expired";
3461
3746
  sessionId?: string;
3462
3747
  }, {
3463
3748
  message?: string;
3464
- state?: "blocked" | "connecting" | "ready" | "ended" | "expired";
3749
+ state?: "ready" | "blocked" | "connecting" | "ended" | "expired";
3465
3750
  sessionId?: string;
3466
3751
  }>;
3467
3752
  declare const chatHistorySnapshotResponseSchema: z.ZodObject<{
@@ -5643,11 +5928,11 @@ declare const vectorSearchResponseSchema: z.ZodObject<{
5643
5928
  image?: string;
5644
5929
  adapter?: string;
5645
5930
  protocols?: string[];
5931
+ available?: boolean;
5646
5932
  metadataFacet?: Record<string, JsonValue$1 | JsonValue$1[] | Record<string, JsonValue$1>>;
5647
5933
  originalId?: string;
5648
5934
  communicationSupported?: boolean;
5649
5935
  routingSupported?: boolean;
5650
- available?: boolean;
5651
5936
  availabilityStatus?: string;
5652
5937
  availabilityCheckedAt?: string;
5653
5938
  availabilitySource?: string;
@@ -5692,11 +5977,11 @@ declare const vectorSearchResponseSchema: z.ZodObject<{
5692
5977
  image?: string;
5693
5978
  adapter?: string;
5694
5979
  protocols?: string[];
5980
+ available?: boolean;
5695
5981
  metadataFacet?: Record<string, JsonValue$1 | JsonValue$1[] | Record<string, JsonValue$1>>;
5696
5982
  originalId?: string;
5697
5983
  communicationSupported?: boolean;
5698
5984
  routingSupported?: boolean;
5699
- available?: boolean;
5700
5985
  availabilityStatus?: string;
5701
5986
  availabilityCheckedAt?: string;
5702
5987
  availabilitySource?: string;
@@ -5749,11 +6034,11 @@ declare const vectorSearchResponseSchema: z.ZodObject<{
5749
6034
  image?: string;
5750
6035
  adapter?: string;
5751
6036
  protocols?: string[];
6037
+ available?: boolean;
5752
6038
  metadataFacet?: Record<string, JsonValue$1 | JsonValue$1[] | Record<string, JsonValue$1>>;
5753
6039
  originalId?: string;
5754
6040
  communicationSupported?: boolean;
5755
6041
  routingSupported?: boolean;
5756
- available?: boolean;
5757
6042
  availabilityStatus?: string;
5758
6043
  availabilityCheckedAt?: string;
5759
6044
  availabilitySource?: string;
@@ -5806,11 +6091,11 @@ declare const vectorSearchResponseSchema: z.ZodObject<{
5806
6091
  image?: string;
5807
6092
  adapter?: string;
5808
6093
  protocols?: string[];
6094
+ available?: boolean;
5809
6095
  metadataFacet?: Record<string, JsonValue$1 | JsonValue$1[] | Record<string, JsonValue$1>>;
5810
6096
  originalId?: string;
5811
6097
  communicationSupported?: boolean;
5812
6098
  routingSupported?: boolean;
5813
- available?: boolean;
5814
6099
  availabilityStatus?: string;
5815
6100
  availabilityCheckedAt?: string;
5816
6101
  availabilitySource?: string;
@@ -38095,6 +38380,7 @@ interface RegistryBrokerClientOptions {
38095
38380
  encryption?: ClientEncryptionOptions;
38096
38381
  }
38097
38382
  type ChatHistoryEntry = z.infer<typeof createSessionResponseSchema>['history'][number];
38383
+ type ChatTimelineEntry = z.infer<typeof chatTimelineEntrySchema>;
38098
38384
  type CipherEnvelope = NonNullable<ChatHistoryEntry['cipherEnvelope']>;
38099
38385
  type CipherEnvelopeRecipient = CipherEnvelope['recipients'][number];
38100
38386
  interface EphemeralKeyPair {
@@ -38344,11 +38630,18 @@ type RegistriesResponse = z.infer<typeof registriesResponseSchema>;
38344
38630
  type PopularSearchesResponse = z.infer<typeof popularResponseSchema>;
38345
38631
  type ResolvedAgentResponse = z.infer<typeof resolveResponseSchema>;
38346
38632
  type CreateSessionResponse = z.infer<typeof createSessionResponseSchema>;
38633
+ type ChatSessionResumeResponse = z.infer<typeof chatSessionResumeResponseSchema>;
38347
38634
  type SendMessageResponse = z.infer<typeof sendMessageResponseSchema>;
38348
38635
  type ChatReadinessResponse = z.infer<typeof chatReadinessResponseSchema>;
38349
38636
  type ChatSessionEndResponse = z.infer<typeof chatSessionEndResponseSchema>;
38350
38637
  type ChatRouteSummary = z.infer<typeof chatRouteSummarySchema>;
38351
38638
  type ChatPaymentState = z.infer<typeof chatPaymentStateSchema>;
38639
+ type ChatDeliveryState = z.infer<typeof chatDeliveryStateSchema>;
38640
+ type ChatReadinessStatus = z.infer<typeof chatReadinessStatusSchema>;
38641
+ type ChatReplyMode = z.infer<typeof chatReplyModeSchema>;
38642
+ type ChatRouteType = z.infer<typeof chatRouteTypeSchema>;
38643
+ type ChatSessionState = z.infer<typeof chatSessionStateSchema>;
38644
+ type ChatErrorCode = z.infer<typeof chatErrorCodeSchema>;
38352
38645
  type ChatRetryResponse = SendMessageResponse;
38353
38646
  type SkillSecurityBreakdownResponse = z.infer<typeof skillSecurityBreakdownResponseSchema>;
38354
38647
  type ChatHistorySnapshotResponse = z.infer<typeof chatHistorySnapshotResponseSchema>;
@@ -38644,6 +38937,7 @@ type CreateSessionBasePayload = {
38644
38937
  encryptionRequested?: boolean;
38645
38938
  senderUaid?: string;
38646
38939
  visibility?: 'private' | 'public';
38940
+ idempotencyKey?: string;
38647
38941
  };
38648
38942
  type CreateSessionRequestPayload = (CreateSessionBasePayload & {
38649
38943
  uaid: string;
@@ -38653,9 +38947,11 @@ type CreateSessionRequestPayload = (CreateSessionBasePayload & {
38653
38947
  type ChatReadinessRequestPayload = {
38654
38948
  uaid: string;
38655
38949
  agentUrl?: never;
38950
+ forceRefresh?: boolean;
38656
38951
  } | {
38657
38952
  agentUrl: string;
38658
38953
  uaid?: never;
38954
+ forceRefresh?: boolean;
38659
38955
  };
38660
38956
  interface ChatRetryRequestPayload extends SendMessageBasePayload {
38661
38957
  sessionId: string;
@@ -38874,6 +39170,7 @@ interface RegistryBrokerChatApi {
38874
39170
  start: (options: StartChatOptions) => Promise<ChatConversationHandle>;
38875
39171
  readiness: (payload: ChatReadinessRequestPayload) => Promise<ChatReadinessResponse>;
38876
39172
  createSession: (payload: CreateSessionRequestPayload) => Promise<CreateSessionResponse>;
39173
+ resumeSession: (sessionId: string) => Promise<ChatSessionResumeResponse>;
38877
39174
  sendMessage: (payload: SendMessageRequestPayload) => Promise<SendMessageResponse>;
38878
39175
  retryMessage: (messageId: string, payload: ChatRetryRequestPayload) => Promise<ChatRetryResponse>;
38879
39176
  cancelSession: (sessionId: string) => Promise<ChatSessionEndResponse>;
@@ -39173,6 +39470,7 @@ declare class RegistryBrokerClient {
39173
39470
  resolveDecryptionContext(sessionId: string, options?: ChatHistoryFetchOptions): ConversationContextState | null;
39174
39471
  decryptHistoryEntryFromContext(_sessionId: string, entry: ChatHistoryEntry, context: ConversationContextState): string | null;
39175
39472
  createSession(payload: CreateSessionRequestPayload, allowHistoryAutoTopUp?: boolean): Promise<CreateSessionResponse>;
39473
+ resumeSession(sessionId: string): Promise<ChatSessionResumeResponse>;
39176
39474
  checkChatReadiness(payload: ChatReadinessRequestPayload): Promise<ChatReadinessResponse>;
39177
39475
  startChat(options: StartChatOptions): Promise<ChatConversationHandle>;
39178
39476
  startConversation(options: StartConversationOptions): Promise<ChatConversationHandle>;
@@ -39289,4 +39587,4 @@ declare const buildJobStatusMessage: (input: {
39289
39587
  jobId: number;
39290
39588
  }) => string;
39291
39589
 
39292
- export { type AcceptConversationOptions, type AcceptEncryptedChatSessionOptions, type AdapterDetailsResponse, type AdapterRegistryAdaptersResponse, type AdapterRegistryCategoriesResponse, type AdapterRegistryCategory, type AdapterRegistryCreateCategoryResponse, type AdapterRegistrySubmissionStatusResponse, type AdapterRegistrySubmitAdapterAcceptedResponse, type AdapterRegistrySubmitAdapterResponse, type AdaptersResponse, type AdditionalRegistryCatalogResponse, type AdditionalRegistryDescriptor, type AdditionalRegistryNetworkDescriptor, type AgentAuthConfig, type AgentAuthType, type AgentFeedbackEligibilityRequest, type AgentFeedbackEligibilityResponse, type AgentFeedbackEntriesIndexResponse, type AgentFeedbackIndexResponse, type AgentFeedbackQuery, type AgentFeedbackResponse, type AgentFeedbackSubmissionRequest, type AgentFeedbackSubmissionResponse, type AgentProfile, type AgentRegistrationRequest, type AgentRegistrationRequestMetadata, type AgentSearchHit, type AutoRegisterEncryptionKeyOptions, type AutoTopUpOptions, type CanonicalLedgerNetwork, type ChatConversationHandle, type ChatHistoryCompactionResponse, type ChatHistoryEntry, type ChatHistoryFetchOptions, type ChatHistorySnapshotResponse, type ChatHistorySnapshotWithDecryptedEntries, type ChatPaymentState, type ChatReadinessRequestPayload, type ChatReadinessResponse, type ChatRetryRequestPayload, type ChatRetryResponse, type ChatRouteSummary, type ChatSessionEndResponse, type CipherEnvelope, type CipherEnvelopeRecipient, type ClientEncryptionOptions, type CompactHistoryRequestPayload, type ConversationEncryptionOptions, type ConversationMode, type CreateAdapterRegistryCategoryRequest, type CreateSessionRequestPayload, type CreateSessionResponse, type CreditBalanceResponse, type CreditProviderSummary, type CreditProvidersResponse, type CreditPurchaseResponse, type DashboardStatsResponse, type DecryptCipherEnvelopeOptions, type DecryptedHistoryEntry, type DelegationOpportunity, type DelegationPlanCandidate, type DelegationPlanFilter, type DelegationPlanRequest, type DelegationPlanResponse, type DelegationWorkspaceContext, type DeriveSharedSecretOptions, type DetectProtocolResponse, type EncryptCipherEnvelopeOptions, type EncryptedChatSendOptions, type EncryptedChatSessionHandle, type EncryptionHandshakeRecord, type EncryptionHandshakeResponse, type EncryptionHandshakeSubmissionPayload, type EnsureAgentKeyOptions, type EphemeralKeyPair, GUARD_CANONICAL_PATH_PREFIX, GUARD_COMPAT_PATH_PREFIX, type GenerateEncryptionKeyPairOptions, type GuardAbomResponse, type GuardAbomSummary, type GuardAlertPreferences, type GuardAlertPreferencesUpdate, type GuardArtifactTimelineResponse, type GuardBalanceResponse, type GuardBucketBalance, type GuardContractVersion, type GuardDevice, type GuardDeviceListResponse, type GuardEntitlements, type GuardExceptionItem, type GuardExceptionListResponse, type GuardExceptionScope, type GuardExceptionSource, type GuardExceptionUpsert, type GuardExportSignature, type GuardFeedItem, type GuardFeedResponse, type GuardFeedSummary, type GuardHistoryArtifact, type GuardInventoryArtifact, type GuardInventoryDiffEntry, type GuardInventoryDiffResponse, type GuardInventoryResponse, type GuardOverviewResponse, type GuardPainSignal, type GuardPainSignalAggregate, type GuardPainSignalAggregateResponse, type GuardPainSignalIngestItem, type GuardPainSignalListResponse, type GuardPlanId, type GuardPolicy, type GuardPreflightEvidence, type GuardPreflightRequest, type GuardPreflightVerdictResponse, type GuardPrincipal, type GuardReceipt, type GuardReceiptExportResponse, type GuardReceiptExportSummary, type GuardReceiptHistoryResponse, type GuardReceiptSyncPayload, type GuardReceiptSyncResponse, type GuardRevocationResponse, type GuardSessionResponse, type GuardTeamPolicyAuditItem, type GuardTeamPolicyPack, type GuardTeamPolicyPackUpdate, type GuardTimelineEvent, type GuardTrustByHashResponse, type GuardTrustMatch, type GuardTrustResolveQuery, type GuardTrustResolveResponse, type GuardWatchlistItem, type GuardWatchlistLookupResponse, type GuardWatchlistResponse, type GuardWatchlistUpsert, HOL_CHAT_PROTOCOL_ID, type HbarPurchaseIntentRequest, type HbarPurchaseIntentResponse, type HistoryAutoTopUpOptions, type HolChatOp, type HolChatOpBase, type HolChatOpName, type InitializeAgentClientOptions, type InitializedAgentClient, type JsonObject, type JsonPrimitive, type JsonValue, type LedgerAuthenticationLogger, type LedgerAuthenticationOptions, type LedgerAuthenticationSignerResult, type LedgerChallengeRequest, type LedgerChallengeResponse, type LedgerCredentialAuthOptions, type LedgerVerifyRequest, type LedgerVerifyResponse, type MetricsSummaryResponse, type MoltbookOwnerRegistrationUpdateRequest, type MoltbookOwnerRegistrationUpdateResponse, type PopularSearchesResponse, type PrivateKeySignerOptions, type ProtocolDetectionMessage, type ProtocolsResponse, type RecipientIdentity, type RegisterAgentOptions, type RegisterAgentPartialResponse, type RegisterAgentPendingResponse, type RegisterAgentQuoteResponse, type RegisterAgentResponse, type RegisterAgentSuccessResponse, type RegisterEncryptionKeyPayload, type RegisterEncryptionKeyResponse, type RegisterStatusResponse, type RegistrationProgressAdditionalEntry, type RegistrationProgressRecord, type RegistrationProgressResponse, type RegistrationProgressWaitOptions, type RegistriesResponse, RegistryBrokerClient, type RegistryBrokerClientOptions, RegistryBrokerError, RegistryBrokerParseError, type RegistrySearchByNamespaceResponse, type RegistryStatsResponse, type ResolvedAgentResponse, type SearchFacetsResponse, type SearchParams, type SearchResult, type SearchStatusResponse, type SendMessageBasePayload, type SendMessageEncryptionOptions, type SendMessageRequestPayload, type SendMessageResponse, type SessionEncryptionStatusResponse, type SessionEncryptionSummary, type SharedSecretInput, type SkillBadgeMetric, type SkillBadgeQuery, type SkillBadgeResponse, type SkillBadgeStyle, type SkillCatalogChannel, type SkillCatalogItem, type SkillCatalogQueryOptions, type SkillCatalogResponse, type SkillCatalogSortBy, type SkillCatalogVersionSummary, type SkillConversionSignalsResponse, type SkillDeprecationRecord, type SkillDeprecationSetRequest, type SkillDeprecationsResponse, type SkillInstallArtifactDescriptor, type SkillInstallBadgeDescriptor, type SkillInstallCopyTelemetryRequest, type SkillInstallCopyTelemetryResponse, type SkillInstallResolverDescriptor, type SkillInstallResponse, type SkillInstallShareDescriptor, type SkillInstallSnippetSet, type SkillListOptions, type SkillPreviewByRepoRequest, type SkillPreviewLookupRequest, type SkillPreviewLookupResponse, type SkillPreviewRecord, type SkillPreviewReport, type SkillPreviewSuggestedNextStep, type SkillQuotePreviewRange, type SkillQuotePreviewRequest, type SkillQuotePreviewResponse, type SkillRecommendedVersionResponse, type SkillRecommendedVersionSetRequest, type SkillRegistryCategoriesResponse, type SkillRegistryConfigResponse, type SkillRegistryFileDescriptor, type SkillRegistryFileInput, type SkillRegistryFileRole, type SkillRegistryJobStatusResponse, type SkillRegistryListResponse, type SkillRegistryMineResponse, type SkillRegistryMyListResponse, type SkillRegistryOwnershipResponse, type SkillRegistryPublishRequest, type SkillRegistryPublishResponse, type SkillRegistryPublishSummary, type SkillRegistryQuoteRequest, type SkillRegistryQuoteResponse, type SkillRegistryTagsResponse, type SkillRegistryVersionsResponse, type SkillRegistryVoteRequest, type SkillRegistryVoteStatusResponse, type SkillResolverManifestResponse, type SkillSecurityBreakdownRequest, type SkillSecurityBreakdownResponse, type SkillStatusChecks, type SkillStatusNextStep, type SkillStatusPreviewMetadata, type SkillStatusProvenanceSignals, type SkillStatusRequest, type SkillStatusResponse, type SkillStatusVerificationSignals, type SkillTrustTier, type SkillVerificationDomainProofChallengeRequest, type SkillVerificationDomainProofChallengeResponse, type SkillVerificationDomainProofVerifyRequest, type SkillVerificationDomainProofVerifyResponse, type SkillVerificationRequest, type SkillVerificationRequestCreateRequest, type SkillVerificationRequestCreateResponse, type SkillVerificationStatusResponse, type SkillVerificationTier, type StartChatBaseOptions, type StartChatOptions, type StartConversationOptions, type StartEncryptedChatSessionOptions, type SubmitAdapterRegistryAdapterRequest, type UaidConnectionStatus, type UaidValidationResponse, type UploadSkillPreviewFromGithubOidcRequest, type VectorSearchFilter, type VectorSearchRequest, type VectorSearchResponse, type VerificationChallengeDetailsResponse, type VerificationChallengeResponse, type VerificationDnsStatusQuery, type VerificationDnsStatusResponse, type VerificationDnsVerifyRequest, type VerificationOwnershipResponse, type VerificationStatusResponse, type VerificationVerifyResponse, type VerificationVerifySenderResponse, type WebsocketStatsResponse, type X402CreditPurchaseResponse, type X402MinimumsResponse, buildJobStatusMessage, buildPaymentApproveMessage, buildPaymentDeclineMessage, canonicalizeLedgerNetwork, closeUaidConnection, createPrivateKeySigner, createPrivateKeySignerAsync, dashboardStats, getRegistrationProgress, getRegistrationQuote, getUaidConnectionStatus, isHolChatOp, isPartialRegisterAgentResponse, isPendingRegisterAgentResponse, isSuccessRegisterAgentResponse, parseHolChatOps, registerAgent, resolveUaid, updateAgent, validateUaid, waitForRegistrationCompletion };
39590
+ export { type AcceptConversationOptions, type AcceptEncryptedChatSessionOptions, type AdapterDetailsResponse, type AdapterRegistryAdaptersResponse, type AdapterRegistryCategoriesResponse, type AdapterRegistryCategory, type AdapterRegistryCreateCategoryResponse, type AdapterRegistrySubmissionStatusResponse, type AdapterRegistrySubmitAdapterAcceptedResponse, type AdapterRegistrySubmitAdapterResponse, type AdaptersResponse, type AdditionalRegistryCatalogResponse, type AdditionalRegistryDescriptor, type AdditionalRegistryNetworkDescriptor, type AgentAuthConfig, type AgentAuthType, type AgentFeedbackEligibilityRequest, type AgentFeedbackEligibilityResponse, type AgentFeedbackEntriesIndexResponse, type AgentFeedbackIndexResponse, type AgentFeedbackQuery, type AgentFeedbackResponse, type AgentFeedbackSubmissionRequest, type AgentFeedbackSubmissionResponse, type AgentProfile, type AgentRegistrationRequest, type AgentRegistrationRequestMetadata, type AgentSearchHit, type AutoRegisterEncryptionKeyOptions, type AutoTopUpOptions, type CanonicalLedgerNetwork, type ChatConversationHandle, type ChatDeliveryState, type ChatErrorCode, type ChatHistoryCompactionResponse, type ChatHistoryEntry, type ChatHistoryFetchOptions, type ChatHistorySnapshotResponse, type ChatHistorySnapshotWithDecryptedEntries, type ChatPaymentState, type ChatReadinessRequestPayload, type ChatReadinessResponse, type ChatReadinessStatus, type ChatReplyMode, type ChatRetryRequestPayload, type ChatRetryResponse, type ChatRouteSummary, type ChatRouteType, type ChatSessionEndResponse, type ChatSessionResumeResponse, type ChatSessionState, type ChatTimelineEntry, type CipherEnvelope, type CipherEnvelopeRecipient, type ClientEncryptionOptions, type CompactHistoryRequestPayload, type ConversationEncryptionOptions, type ConversationMode, type CreateAdapterRegistryCategoryRequest, type CreateSessionRequestPayload, type CreateSessionResponse, type CreditBalanceResponse, type CreditProviderSummary, type CreditProvidersResponse, type CreditPurchaseResponse, type DashboardStatsResponse, type DecryptCipherEnvelopeOptions, type DecryptedHistoryEntry, type DelegationOpportunity, type DelegationPlanCandidate, type DelegationPlanFilter, type DelegationPlanRequest, type DelegationPlanResponse, type DelegationWorkspaceContext, type DeriveSharedSecretOptions, type DetectProtocolResponse, type EncryptCipherEnvelopeOptions, type EncryptedChatSendOptions, type EncryptedChatSessionHandle, type EncryptionHandshakeRecord, type EncryptionHandshakeResponse, type EncryptionHandshakeSubmissionPayload, type EnsureAgentKeyOptions, type EphemeralKeyPair, GUARD_CANONICAL_PATH_PREFIX, GUARD_COMPAT_PATH_PREFIX, type GenerateEncryptionKeyPairOptions, type GuardAbomResponse, type GuardAbomSummary, type GuardAlertPreferences, type GuardAlertPreferencesUpdate, type GuardArtifactTimelineResponse, type GuardBalanceResponse, type GuardBucketBalance, type GuardContractVersion, type GuardDevice, type GuardDeviceListResponse, type GuardEntitlements, type GuardExceptionItem, type GuardExceptionListResponse, type GuardExceptionScope, type GuardExceptionSource, type GuardExceptionUpsert, type GuardExportSignature, type GuardFeedItem, type GuardFeedResponse, type GuardFeedSummary, type GuardHistoryArtifact, type GuardInventoryArtifact, type GuardInventoryDiffEntry, type GuardInventoryDiffResponse, type GuardInventoryResponse, type GuardOverviewResponse, type GuardPainSignal, type GuardPainSignalAggregate, type GuardPainSignalAggregateResponse, type GuardPainSignalIngestItem, type GuardPainSignalListResponse, type GuardPlanId, type GuardPolicy, type GuardPreflightEvidence, type GuardPreflightRequest, type GuardPreflightVerdictResponse, type GuardPrincipal, type GuardReceipt, type GuardReceiptExportResponse, type GuardReceiptExportSummary, type GuardReceiptHistoryResponse, type GuardReceiptSyncPayload, type GuardReceiptSyncResponse, type GuardRevocationResponse, type GuardSessionResponse, type GuardTeamPolicyAuditItem, type GuardTeamPolicyPack, type GuardTeamPolicyPackUpdate, type GuardTimelineEvent, type GuardTrustByHashResponse, type GuardTrustMatch, type GuardTrustResolveQuery, type GuardTrustResolveResponse, type GuardWatchlistItem, type GuardWatchlistLookupResponse, type GuardWatchlistResponse, type GuardWatchlistUpsert, HOL_CHAT_PROTOCOL_ID, type HbarPurchaseIntentRequest, type HbarPurchaseIntentResponse, type HistoryAutoTopUpOptions, type HolChatOp, type HolChatOpBase, type HolChatOpName, type InitializeAgentClientOptions, type InitializedAgentClient, type JsonObject, type JsonPrimitive, type JsonValue, type LedgerAuthenticationLogger, type LedgerAuthenticationOptions, type LedgerAuthenticationSignerResult, type LedgerChallengeRequest, type LedgerChallengeResponse, type LedgerCredentialAuthOptions, type LedgerVerifyRequest, type LedgerVerifyResponse, type MetricsSummaryResponse, type MoltbookOwnerRegistrationUpdateRequest, type MoltbookOwnerRegistrationUpdateResponse, type PopularSearchesResponse, type PrivateKeySignerOptions, type ProtocolDetectionMessage, type ProtocolsResponse, type RecipientIdentity, type RegisterAgentOptions, type RegisterAgentPartialResponse, type RegisterAgentPendingResponse, type RegisterAgentQuoteResponse, type RegisterAgentResponse, type RegisterAgentSuccessResponse, type RegisterEncryptionKeyPayload, type RegisterEncryptionKeyResponse, type RegisterStatusResponse, type RegistrationProgressAdditionalEntry, type RegistrationProgressRecord, type RegistrationProgressResponse, type RegistrationProgressWaitOptions, type RegistriesResponse, RegistryBrokerClient, type RegistryBrokerClientOptions, RegistryBrokerError, RegistryBrokerParseError, type RegistrySearchByNamespaceResponse, type RegistryStatsResponse, type ResolvedAgentResponse, type SearchFacetsResponse, type SearchParams, type SearchResult, type SearchStatusResponse, type SendMessageBasePayload, type SendMessageEncryptionOptions, type SendMessageRequestPayload, type SendMessageResponse, type SessionEncryptionStatusResponse, type SessionEncryptionSummary, type SharedSecretInput, type SkillBadgeMetric, type SkillBadgeQuery, type SkillBadgeResponse, type SkillBadgeStyle, type SkillCatalogChannel, type SkillCatalogItem, type SkillCatalogQueryOptions, type SkillCatalogResponse, type SkillCatalogSortBy, type SkillCatalogVersionSummary, type SkillConversionSignalsResponse, type SkillDeprecationRecord, type SkillDeprecationSetRequest, type SkillDeprecationsResponse, type SkillInstallArtifactDescriptor, type SkillInstallBadgeDescriptor, type SkillInstallCopyTelemetryRequest, type SkillInstallCopyTelemetryResponse, type SkillInstallResolverDescriptor, type SkillInstallResponse, type SkillInstallShareDescriptor, type SkillInstallSnippetSet, type SkillListOptions, type SkillPreviewByRepoRequest, type SkillPreviewLookupRequest, type SkillPreviewLookupResponse, type SkillPreviewRecord, type SkillPreviewReport, type SkillPreviewSuggestedNextStep, type SkillQuotePreviewRange, type SkillQuotePreviewRequest, type SkillQuotePreviewResponse, type SkillRecommendedVersionResponse, type SkillRecommendedVersionSetRequest, type SkillRegistryCategoriesResponse, type SkillRegistryConfigResponse, type SkillRegistryFileDescriptor, type SkillRegistryFileInput, type SkillRegistryFileRole, type SkillRegistryJobStatusResponse, type SkillRegistryListResponse, type SkillRegistryMineResponse, type SkillRegistryMyListResponse, type SkillRegistryOwnershipResponse, type SkillRegistryPublishRequest, type SkillRegistryPublishResponse, type SkillRegistryPublishSummary, type SkillRegistryQuoteRequest, type SkillRegistryQuoteResponse, type SkillRegistryTagsResponse, type SkillRegistryVersionsResponse, type SkillRegistryVoteRequest, type SkillRegistryVoteStatusResponse, type SkillResolverManifestResponse, type SkillSecurityBreakdownRequest, type SkillSecurityBreakdownResponse, type SkillStatusChecks, type SkillStatusNextStep, type SkillStatusPreviewMetadata, type SkillStatusProvenanceSignals, type SkillStatusRequest, type SkillStatusResponse, type SkillStatusVerificationSignals, type SkillTrustTier, type SkillVerificationDomainProofChallengeRequest, type SkillVerificationDomainProofChallengeResponse, type SkillVerificationDomainProofVerifyRequest, type SkillVerificationDomainProofVerifyResponse, type SkillVerificationRequest, type SkillVerificationRequestCreateRequest, type SkillVerificationRequestCreateResponse, type SkillVerificationStatusResponse, type SkillVerificationTier, type StartChatBaseOptions, type StartChatOptions, type StartConversationOptions, type StartEncryptedChatSessionOptions, type SubmitAdapterRegistryAdapterRequest, type UaidConnectionStatus, type UaidValidationResponse, type UploadSkillPreviewFromGithubOidcRequest, type VectorSearchFilter, type VectorSearchRequest, type VectorSearchResponse, type VerificationChallengeDetailsResponse, type VerificationChallengeResponse, type VerificationDnsStatusQuery, type VerificationDnsStatusResponse, type VerificationDnsVerifyRequest, type VerificationOwnershipResponse, type VerificationStatusResponse, type VerificationVerifyResponse, type VerificationVerifySenderResponse, type WebsocketStatsResponse, type X402CreditPurchaseResponse, type X402MinimumsResponse, buildJobStatusMessage, buildPaymentApproveMessage, buildPaymentDeclineMessage, canonicalizeLedgerNetwork, chatDeliveryStateSchema, chatErrorCodeSchema, chatReadinessStatusSchema, chatReplyModeSchema, chatRouteTypeSchema, chatSessionStateSchema, chatTimelineEntrySchema, closeUaidConnection, createPrivateKeySigner, createPrivateKeySignerAsync, dashboardStats, getRegistrationProgress, getRegistrationQuote, getUaidConnectionStatus, isHolChatOp, isPartialRegisterAgentResponse, isPendingRegisterAgentResponse, isSuccessRegisterAgentResponse, parseHolChatOps, registerAgent, resolveUaid, updateAgent, validateUaid, waitForRegistrationCompletion };