@hol-org/rb-client 0.1.182 → 0.1.183

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,64 @@ 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 chatTimelineEntrySchema: z.ZodObject<{
287
+ messageId: z.ZodString;
288
+ kind: z.ZodEnum<["user", "assistant", "system", "tool", "payment", "delivery", "error"]>;
289
+ content: z.ZodString;
290
+ timestamp: z.ZodString;
291
+ deliveryState: z.ZodOptional<z.ZodEnum<["draft", "queued", "persisted", "delivered", "streaming", "responded", "failed", "timeout", "cancelled"]>>;
292
+ errorCode: z.ZodOptional<z.ZodString>;
293
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue$1, z.ZodTypeDef, JsonValue$1>>>;
294
+ attachment: z.ZodOptional<z.ZodObject<{
295
+ supported: z.ZodBoolean;
296
+ status: z.ZodEnum<["unsupported", "available", "selected", "uploading", "scanning", "ready", "failed", "rejected"]>;
297
+ maxBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
298
+ acceptedMimeTypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
299
+ reason: z.ZodOptional<z.ZodString>;
300
+ }, "strip", z.ZodTypeAny, {
301
+ reason?: string;
302
+ status?: "failed" | "rejected" | "unsupported" | "available" | "selected" | "uploading" | "scanning" | "ready";
303
+ supported?: boolean;
304
+ maxBytes?: number;
305
+ acceptedMimeTypes?: string[];
306
+ }, {
307
+ reason?: string;
308
+ status?: "failed" | "rejected" | "unsupported" | "available" | "selected" | "uploading" | "scanning" | "ready";
309
+ supported?: boolean;
310
+ maxBytes?: number;
311
+ acceptedMimeTypes?: string[];
312
+ }>>;
313
+ }, "strip", z.ZodTypeAny, {
314
+ metadata?: Record<string, JsonValue$1>;
315
+ timestamp?: string;
316
+ content?: string;
317
+ messageId?: string;
318
+ kind?: "error" | "user" | "system" | "tool" | "payment" | "delivery" | "assistant";
319
+ deliveryState?: "failed" | "draft" | "queued" | "persisted" | "delivered" | "streaming" | "responded" | "timeout" | "cancelled";
320
+ errorCode?: string;
321
+ attachment?: {
322
+ reason?: string;
323
+ status?: "failed" | "rejected" | "unsupported" | "available" | "selected" | "uploading" | "scanning" | "ready";
324
+ supported?: boolean;
325
+ maxBytes?: number;
326
+ acceptedMimeTypes?: string[];
327
+ };
328
+ }, {
329
+ metadata?: Record<string, JsonValue$1>;
330
+ timestamp?: string;
331
+ content?: string;
332
+ messageId?: string;
333
+ kind?: "error" | "user" | "system" | "tool" | "payment" | "delivery" | "assistant";
334
+ deliveryState?: "failed" | "draft" | "queued" | "persisted" | "delivered" | "streaming" | "responded" | "timeout" | "cancelled";
335
+ errorCode?: string;
336
+ attachment?: {
337
+ reason?: string;
338
+ status?: "failed" | "rejected" | "unsupported" | "available" | "selected" | "uploading" | "scanning" | "ready";
339
+ supported?: boolean;
340
+ maxBytes?: number;
341
+ acceptedMimeTypes?: string[];
342
+ };
343
+ }>;
286
344
  declare const chatRouteSummarySchema: z.ZodObject<{
287
345
  type: z.ZodEnum<["a2a", "hcs-10", "mcp", "openrouter", "acp", "xmtp", "moltbook", "agentverse", "nanda", "http", "erc-8004", "x402", "unknown"]>;
288
346
  replyMode: z.ZodEnum<["direct", "stream", "poll", "delivery_only", "none"]>;
@@ -399,6 +457,227 @@ declare const chatReadinessResponseSchema: z.ZodObject<{
399
457
  code?: string;
400
458
  };
401
459
  }>;
460
+ declare const chatSessionResumeResponseSchema: z.ZodObject<{
461
+ sessionId: z.ZodString;
462
+ uaid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
463
+ agentUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
464
+ route: z.ZodObject<{
465
+ type: z.ZodEnum<["a2a", "hcs-10", "mcp", "openrouter", "acp", "xmtp", "moltbook", "agentverse", "nanda", "http", "erc-8004", "x402", "unknown"]>;
466
+ replyMode: z.ZodEnum<["direct", "stream", "poll", "delivery_only", "none"]>;
467
+ transport: z.ZodString;
468
+ endpoint: z.ZodOptional<z.ZodString>;
469
+ }, "strip", z.ZodTypeAny, {
470
+ type?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
471
+ transport?: string;
472
+ replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
473
+ endpoint?: string;
474
+ }, {
475
+ type?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
476
+ transport?: string;
477
+ replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
478
+ endpoint?: string;
479
+ }>;
480
+ transport: z.ZodString;
481
+ history: z.ZodArray<z.ZodObject<{
482
+ messageId: z.ZodString;
483
+ role: z.ZodEnum<["user", "agent", "system", "tool", "payment", "delivery", "error"]>;
484
+ content: z.ZodString;
485
+ timestamp: z.ZodString;
486
+ cipherEnvelope: z.ZodOptional<z.ZodObject<{
487
+ algorithm: z.ZodString;
488
+ ciphertext: z.ZodString;
489
+ nonce: z.ZodString;
490
+ associatedData: z.ZodOptional<z.ZodString>;
491
+ keyLocator: z.ZodOptional<z.ZodObject<{
492
+ sessionId: z.ZodOptional<z.ZodString>;
493
+ revision: z.ZodOptional<z.ZodNumber>;
494
+ }, "strip", z.ZodTypeAny, {
495
+ sessionId?: string;
496
+ revision?: number;
497
+ }, {
498
+ sessionId?: string;
499
+ revision?: number;
500
+ }>>;
501
+ recipients: z.ZodArray<z.ZodObject<{
502
+ uaid: z.ZodOptional<z.ZodString>;
503
+ ledgerAccountId: z.ZodOptional<z.ZodString>;
504
+ userId: z.ZodOptional<z.ZodString>;
505
+ email: z.ZodOptional<z.ZodString>;
506
+ encryptedShare: z.ZodString;
507
+ }, "strip", z.ZodTypeAny, {
508
+ uaid?: string;
509
+ ledgerAccountId?: string;
510
+ userId?: string;
511
+ email?: string;
512
+ encryptedShare?: string;
513
+ }, {
514
+ uaid?: string;
515
+ ledgerAccountId?: string;
516
+ userId?: string;
517
+ email?: string;
518
+ encryptedShare?: string;
519
+ }>, "many">;
520
+ }, "strip", z.ZodTypeAny, {
521
+ nonce?: string;
522
+ algorithm?: string;
523
+ ciphertext?: string;
524
+ associatedData?: string;
525
+ keyLocator?: {
526
+ sessionId?: string;
527
+ revision?: number;
528
+ };
529
+ recipients?: {
530
+ uaid?: string;
531
+ ledgerAccountId?: string;
532
+ userId?: string;
533
+ email?: string;
534
+ encryptedShare?: string;
535
+ }[];
536
+ }, {
537
+ nonce?: string;
538
+ algorithm?: string;
539
+ ciphertext?: string;
540
+ associatedData?: string;
541
+ keyLocator?: {
542
+ sessionId?: string;
543
+ revision?: number;
544
+ };
545
+ recipients?: {
546
+ uaid?: string;
547
+ ledgerAccountId?: string;
548
+ userId?: string;
549
+ email?: string;
550
+ encryptedShare?: string;
551
+ }[];
552
+ }>>;
553
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue$1, z.ZodTypeDef, JsonValue$1>>>;
554
+ }, "strip", z.ZodTypeAny, {
555
+ metadata?: Record<string, JsonValue$1>;
556
+ timestamp?: string;
557
+ content?: string;
558
+ role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
559
+ messageId?: string;
560
+ cipherEnvelope?: {
561
+ nonce?: string;
562
+ algorithm?: string;
563
+ ciphertext?: string;
564
+ associatedData?: string;
565
+ keyLocator?: {
566
+ sessionId?: string;
567
+ revision?: number;
568
+ };
569
+ recipients?: {
570
+ uaid?: string;
571
+ ledgerAccountId?: string;
572
+ userId?: string;
573
+ email?: string;
574
+ encryptedShare?: string;
575
+ }[];
576
+ };
577
+ }, {
578
+ metadata?: Record<string, JsonValue$1>;
579
+ timestamp?: string;
580
+ content?: string;
581
+ role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
582
+ messageId?: string;
583
+ cipherEnvelope?: {
584
+ nonce?: string;
585
+ algorithm?: string;
586
+ ciphertext?: string;
587
+ associatedData?: string;
588
+ keyLocator?: {
589
+ sessionId?: string;
590
+ revision?: number;
591
+ };
592
+ recipients?: {
593
+ uaid?: string;
594
+ ledgerAccountId?: string;
595
+ userId?: string;
596
+ email?: string;
597
+ encryptedShare?: string;
598
+ }[];
599
+ };
600
+ }>, "many">;
601
+ historyTtlSeconds: z.ZodOptional<z.ZodNumber>;
602
+ visibility: z.ZodOptional<z.ZodEnum<["private", "public"]>>;
603
+ state: z.ZodEnum<["connecting", "ready", "blocked", "ended", "expired"]>;
604
+ }, "strip", z.ZodTypeAny, {
605
+ state?: "ready" | "blocked" | "connecting" | "ended" | "expired";
606
+ uaid?: string;
607
+ transport?: string;
608
+ sessionId?: string;
609
+ agentUrl?: string;
610
+ route?: {
611
+ type?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
612
+ transport?: string;
613
+ replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
614
+ endpoint?: string;
615
+ };
616
+ history?: {
617
+ metadata?: Record<string, JsonValue$1>;
618
+ timestamp?: string;
619
+ content?: string;
620
+ role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
621
+ messageId?: string;
622
+ cipherEnvelope?: {
623
+ nonce?: string;
624
+ algorithm?: string;
625
+ ciphertext?: string;
626
+ associatedData?: string;
627
+ keyLocator?: {
628
+ sessionId?: string;
629
+ revision?: number;
630
+ };
631
+ recipients?: {
632
+ uaid?: string;
633
+ ledgerAccountId?: string;
634
+ userId?: string;
635
+ email?: string;
636
+ encryptedShare?: string;
637
+ }[];
638
+ };
639
+ }[];
640
+ historyTtlSeconds?: number;
641
+ visibility?: "private" | "public";
642
+ }, {
643
+ state?: "ready" | "blocked" | "connecting" | "ended" | "expired";
644
+ uaid?: string;
645
+ transport?: string;
646
+ sessionId?: string;
647
+ agentUrl?: string;
648
+ route?: {
649
+ type?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
650
+ transport?: string;
651
+ replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
652
+ endpoint?: string;
653
+ };
654
+ history?: {
655
+ metadata?: Record<string, JsonValue$1>;
656
+ timestamp?: string;
657
+ content?: string;
658
+ role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
659
+ messageId?: string;
660
+ cipherEnvelope?: {
661
+ nonce?: string;
662
+ algorithm?: string;
663
+ ciphertext?: string;
664
+ associatedData?: string;
665
+ keyLocator?: {
666
+ sessionId?: string;
667
+ revision?: number;
668
+ };
669
+ recipients?: {
670
+ uaid?: string;
671
+ ledgerAccountId?: string;
672
+ userId?: string;
673
+ email?: string;
674
+ encryptedShare?: string;
675
+ }[];
676
+ };
677
+ }[];
678
+ historyTtlSeconds?: number;
679
+ visibility?: "private" | "public";
680
+ }>;
402
681
  declare const searchResponseSchema: z.ZodObject<{
403
682
  hits: z.ZodArray<z.ZodObject<{
404
683
  id: z.ZodString;
@@ -1128,11 +1407,11 @@ declare const resolveResponseSchema: z.ZodObject<{
1128
1407
  image?: string;
1129
1408
  adapter?: string;
1130
1409
  protocols?: string[];
1410
+ available?: boolean;
1131
1411
  metadataFacet?: Record<string, JsonValue$1 | JsonValue$1[] | Record<string, JsonValue$1>>;
1132
1412
  originalId?: string;
1133
1413
  communicationSupported?: boolean;
1134
1414
  routingSupported?: boolean;
1135
- available?: boolean;
1136
1415
  availabilityStatus?: string;
1137
1416
  availabilityCheckedAt?: string;
1138
1417
  availabilitySource?: string;
@@ -1175,11 +1454,11 @@ declare const resolveResponseSchema: z.ZodObject<{
1175
1454
  image?: string;
1176
1455
  adapter?: string;
1177
1456
  protocols?: string[];
1457
+ available?: boolean;
1178
1458
  metadataFacet?: Record<string, JsonValue$1 | JsonValue$1[] | Record<string, JsonValue$1>>;
1179
1459
  originalId?: string;
1180
1460
  communicationSupported?: boolean;
1181
1461
  routingSupported?: boolean;
1182
- available?: boolean;
1183
1462
  availabilityStatus?: string;
1184
1463
  availabilityCheckedAt?: string;
1185
1464
  availabilitySource?: string;
@@ -2968,7 +3247,7 @@ declare const createSessionResponseSchema: z.ZodObject<{
2968
3247
  traceId: z.ZodOptional<z.ZodString>;
2969
3248
  expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2970
3249
  }, "strip", z.ZodTypeAny, {
2971
- state?: "blocked" | "connecting" | "ready" | "ended" | "expired";
3250
+ state?: "ready" | "blocked" | "connecting" | "ended" | "expired";
2972
3251
  uaid?: string;
2973
3252
  agent?: {
2974
3253
  name?: string;
@@ -2986,6 +3265,12 @@ declare const createSessionResponseSchema: z.ZodObject<{
2986
3265
  estimatedCredits?: number;
2987
3266
  estimatedUsd?: number;
2988
3267
  };
3268
+ route?: {
3269
+ type?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
3270
+ transport?: string;
3271
+ replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
3272
+ endpoint?: string;
3273
+ };
2989
3274
  history?: {
2990
3275
  metadata?: Record<string, JsonValue$1>;
2991
3276
  timestamp?: string;
@@ -3011,6 +3296,7 @@ declare const createSessionResponseSchema: z.ZodObject<{
3011
3296
  };
3012
3297
  }[];
3013
3298
  historyTtlSeconds?: number;
3299
+ visibility?: "private" | "public";
3014
3300
  encryption?: {
3015
3301
  algorithm?: string;
3016
3302
  requester?: {
@@ -3063,14 +3349,7 @@ declare const createSessionResponseSchema: z.ZodObject<{
3063
3349
  expiresAt?: number;
3064
3350
  };
3065
3351
  };
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
3352
  senderUaid?: string;
3073
- visibility?: "private" | "public";
3074
3353
  readiness?: {
3075
3354
  status?: "unknown" | "responsive" | "delivery_only" | "degraded" | "blocked";
3076
3355
  transport?: string;
@@ -3098,7 +3377,7 @@ declare const createSessionResponseSchema: z.ZodObject<{
3098
3377
  };
3099
3378
  traceId?: string;
3100
3379
  }, {
3101
- state?: "blocked" | "connecting" | "ready" | "ended" | "expired";
3380
+ state?: "ready" | "blocked" | "connecting" | "ended" | "expired";
3102
3381
  uaid?: string;
3103
3382
  agent?: {
3104
3383
  name?: string;
@@ -3116,6 +3395,12 @@ declare const createSessionResponseSchema: z.ZodObject<{
3116
3395
  estimatedCredits?: number;
3117
3396
  estimatedUsd?: number;
3118
3397
  };
3398
+ route?: {
3399
+ type?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
3400
+ transport?: string;
3401
+ replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
3402
+ endpoint?: string;
3403
+ };
3119
3404
  history?: {
3120
3405
  metadata?: Record<string, JsonValue$1>;
3121
3406
  timestamp?: string;
@@ -3141,6 +3426,7 @@ declare const createSessionResponseSchema: z.ZodObject<{
3141
3426
  };
3142
3427
  }[];
3143
3428
  historyTtlSeconds?: number;
3429
+ visibility?: "private" | "public";
3144
3430
  encryption?: {
3145
3431
  algorithm?: string;
3146
3432
  requester?: {
@@ -3193,14 +3479,7 @@ declare const createSessionResponseSchema: z.ZodObject<{
3193
3479
  expiresAt?: number;
3194
3480
  };
3195
3481
  };
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
3482
  senderUaid?: string;
3203
- visibility?: "private" | "public";
3204
3483
  readiness?: {
3205
3484
  status?: "unknown" | "responsive" | "delivery_only" | "degraded" | "blocked";
3206
3485
  transport?: string;
@@ -3374,6 +3653,8 @@ declare const sendMessageResponseSchema: z.ZodObject<{
3374
3653
  content?: string;
3375
3654
  sessionId?: string;
3376
3655
  messageId?: string;
3656
+ deliveryState?: "failed" | "draft" | "queued" | "persisted" | "delivered" | "streaming" | "responded" | "timeout" | "cancelled";
3657
+ 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
3658
  replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
3378
3659
  history?: {
3379
3660
  metadata?: Record<string, JsonValue$1>;
@@ -3404,10 +3685,8 @@ declare const sendMessageResponseSchema: z.ZodObject<{
3404
3685
  ops?: Record<string, JsonValue$1>[];
3405
3686
  encrypted?: boolean;
3406
3687
  assistantMessageId?: string;
3407
- deliveryState?: "failed" | "draft" | "queued" | "persisted" | "delivered" | "streaming" | "responded" | "timeout" | "cancelled";
3408
3688
  deliveryConfirmation?: boolean;
3409
3689
  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
3690
  }, {
3412
3691
  message?: string;
3413
3692
  metadata?: Record<string, JsonValue$1>;
@@ -3416,6 +3695,8 @@ declare const sendMessageResponseSchema: z.ZodObject<{
3416
3695
  content?: string;
3417
3696
  sessionId?: string;
3418
3697
  messageId?: string;
3698
+ deliveryState?: "failed" | "draft" | "queued" | "persisted" | "delivered" | "streaming" | "responded" | "timeout" | "cancelled";
3699
+ 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
3700
  replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
3420
3701
  history?: {
3421
3702
  metadata?: Record<string, JsonValue$1>;
@@ -3446,10 +3727,8 @@ declare const sendMessageResponseSchema: z.ZodObject<{
3446
3727
  ops?: Record<string, JsonValue$1>[];
3447
3728
  encrypted?: boolean;
3448
3729
  assistantMessageId?: string;
3449
- deliveryState?: "failed" | "draft" | "queued" | "persisted" | "delivered" | "streaming" | "responded" | "timeout" | "cancelled";
3450
3730
  deliveryConfirmation?: boolean;
3451
3731
  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
3732
  }>;
3454
3733
  declare const chatSessionEndResponseSchema: z.ZodObject<{
3455
3734
  message: z.ZodString;
@@ -3457,11 +3736,11 @@ declare const chatSessionEndResponseSchema: z.ZodObject<{
3457
3736
  state: z.ZodOptional<z.ZodEnum<["connecting", "ready", "blocked", "ended", "expired"]>>;
3458
3737
  }, "strip", z.ZodTypeAny, {
3459
3738
  message?: string;
3460
- state?: "blocked" | "connecting" | "ready" | "ended" | "expired";
3739
+ state?: "ready" | "blocked" | "connecting" | "ended" | "expired";
3461
3740
  sessionId?: string;
3462
3741
  }, {
3463
3742
  message?: string;
3464
- state?: "blocked" | "connecting" | "ready" | "ended" | "expired";
3743
+ state?: "ready" | "blocked" | "connecting" | "ended" | "expired";
3465
3744
  sessionId?: string;
3466
3745
  }>;
3467
3746
  declare const chatHistorySnapshotResponseSchema: z.ZodObject<{
@@ -5643,11 +5922,11 @@ declare const vectorSearchResponseSchema: z.ZodObject<{
5643
5922
  image?: string;
5644
5923
  adapter?: string;
5645
5924
  protocols?: string[];
5925
+ available?: boolean;
5646
5926
  metadataFacet?: Record<string, JsonValue$1 | JsonValue$1[] | Record<string, JsonValue$1>>;
5647
5927
  originalId?: string;
5648
5928
  communicationSupported?: boolean;
5649
5929
  routingSupported?: boolean;
5650
- available?: boolean;
5651
5930
  availabilityStatus?: string;
5652
5931
  availabilityCheckedAt?: string;
5653
5932
  availabilitySource?: string;
@@ -5692,11 +5971,11 @@ declare const vectorSearchResponseSchema: z.ZodObject<{
5692
5971
  image?: string;
5693
5972
  adapter?: string;
5694
5973
  protocols?: string[];
5974
+ available?: boolean;
5695
5975
  metadataFacet?: Record<string, JsonValue$1 | JsonValue$1[] | Record<string, JsonValue$1>>;
5696
5976
  originalId?: string;
5697
5977
  communicationSupported?: boolean;
5698
5978
  routingSupported?: boolean;
5699
- available?: boolean;
5700
5979
  availabilityStatus?: string;
5701
5980
  availabilityCheckedAt?: string;
5702
5981
  availabilitySource?: string;
@@ -5749,11 +6028,11 @@ declare const vectorSearchResponseSchema: z.ZodObject<{
5749
6028
  image?: string;
5750
6029
  adapter?: string;
5751
6030
  protocols?: string[];
6031
+ available?: boolean;
5752
6032
  metadataFacet?: Record<string, JsonValue$1 | JsonValue$1[] | Record<string, JsonValue$1>>;
5753
6033
  originalId?: string;
5754
6034
  communicationSupported?: boolean;
5755
6035
  routingSupported?: boolean;
5756
- available?: boolean;
5757
6036
  availabilityStatus?: string;
5758
6037
  availabilityCheckedAt?: string;
5759
6038
  availabilitySource?: string;
@@ -5806,11 +6085,11 @@ declare const vectorSearchResponseSchema: z.ZodObject<{
5806
6085
  image?: string;
5807
6086
  adapter?: string;
5808
6087
  protocols?: string[];
6088
+ available?: boolean;
5809
6089
  metadataFacet?: Record<string, JsonValue$1 | JsonValue$1[] | Record<string, JsonValue$1>>;
5810
6090
  originalId?: string;
5811
6091
  communicationSupported?: boolean;
5812
6092
  routingSupported?: boolean;
5813
- available?: boolean;
5814
6093
  availabilityStatus?: string;
5815
6094
  availabilityCheckedAt?: string;
5816
6095
  availabilitySource?: string;
@@ -38095,6 +38374,7 @@ interface RegistryBrokerClientOptions {
38095
38374
  encryption?: ClientEncryptionOptions;
38096
38375
  }
38097
38376
  type ChatHistoryEntry = z.infer<typeof createSessionResponseSchema>['history'][number];
38377
+ type ChatTimelineEntry = z.infer<typeof chatTimelineEntrySchema>;
38098
38378
  type CipherEnvelope = NonNullable<ChatHistoryEntry['cipherEnvelope']>;
38099
38379
  type CipherEnvelopeRecipient = CipherEnvelope['recipients'][number];
38100
38380
  interface EphemeralKeyPair {
@@ -38344,6 +38624,7 @@ type RegistriesResponse = z.infer<typeof registriesResponseSchema>;
38344
38624
  type PopularSearchesResponse = z.infer<typeof popularResponseSchema>;
38345
38625
  type ResolvedAgentResponse = z.infer<typeof resolveResponseSchema>;
38346
38626
  type CreateSessionResponse = z.infer<typeof createSessionResponseSchema>;
38627
+ type ChatSessionResumeResponse = z.infer<typeof chatSessionResumeResponseSchema>;
38347
38628
  type SendMessageResponse = z.infer<typeof sendMessageResponseSchema>;
38348
38629
  type ChatReadinessResponse = z.infer<typeof chatReadinessResponseSchema>;
38349
38630
  type ChatSessionEndResponse = z.infer<typeof chatSessionEndResponseSchema>;
@@ -38644,6 +38925,7 @@ type CreateSessionBasePayload = {
38644
38925
  encryptionRequested?: boolean;
38645
38926
  senderUaid?: string;
38646
38927
  visibility?: 'private' | 'public';
38928
+ idempotencyKey?: string;
38647
38929
  };
38648
38930
  type CreateSessionRequestPayload = (CreateSessionBasePayload & {
38649
38931
  uaid: string;
@@ -38653,9 +38935,11 @@ type CreateSessionRequestPayload = (CreateSessionBasePayload & {
38653
38935
  type ChatReadinessRequestPayload = {
38654
38936
  uaid: string;
38655
38937
  agentUrl?: never;
38938
+ forceRefresh?: boolean;
38656
38939
  } | {
38657
38940
  agentUrl: string;
38658
38941
  uaid?: never;
38942
+ forceRefresh?: boolean;
38659
38943
  };
38660
38944
  interface ChatRetryRequestPayload extends SendMessageBasePayload {
38661
38945
  sessionId: string;
@@ -38874,6 +39158,7 @@ interface RegistryBrokerChatApi {
38874
39158
  start: (options: StartChatOptions) => Promise<ChatConversationHandle>;
38875
39159
  readiness: (payload: ChatReadinessRequestPayload) => Promise<ChatReadinessResponse>;
38876
39160
  createSession: (payload: CreateSessionRequestPayload) => Promise<CreateSessionResponse>;
39161
+ resumeSession: (sessionId: string) => Promise<ChatSessionResumeResponse>;
38877
39162
  sendMessage: (payload: SendMessageRequestPayload) => Promise<SendMessageResponse>;
38878
39163
  retryMessage: (messageId: string, payload: ChatRetryRequestPayload) => Promise<ChatRetryResponse>;
38879
39164
  cancelSession: (sessionId: string) => Promise<ChatSessionEndResponse>;
@@ -39173,6 +39458,7 @@ declare class RegistryBrokerClient {
39173
39458
  resolveDecryptionContext(sessionId: string, options?: ChatHistoryFetchOptions): ConversationContextState | null;
39174
39459
  decryptHistoryEntryFromContext(_sessionId: string, entry: ChatHistoryEntry, context: ConversationContextState): string | null;
39175
39460
  createSession(payload: CreateSessionRequestPayload, allowHistoryAutoTopUp?: boolean): Promise<CreateSessionResponse>;
39461
+ resumeSession(sessionId: string): Promise<ChatSessionResumeResponse>;
39176
39462
  checkChatReadiness(payload: ChatReadinessRequestPayload): Promise<ChatReadinessResponse>;
39177
39463
  startChat(options: StartChatOptions): Promise<ChatConversationHandle>;
39178
39464
  startConversation(options: StartConversationOptions): Promise<ChatConversationHandle>;
@@ -39289,4 +39575,4 @@ declare const buildJobStatusMessage: (input: {
39289
39575
  jobId: number;
39290
39576
  }) => string;
39291
39577
 
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 };
39578
+ 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 ChatSessionResumeResponse, 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, closeUaidConnection, createPrivateKeySigner, createPrivateKeySignerAsync, dashboardStats, getRegistrationProgress, getRegistrationQuote, getUaidConnectionStatus, isHolChatOp, isPartialRegisterAgentResponse, isPendingRegisterAgentResponse, isSuccessRegisterAgentResponse, parseHolChatOps, registerAgent, resolveUaid, updateAgent, validateUaid, waitForRegistrationCompletion };