@hol-org/rb-client 0.1.180 → 0.1.182
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.cjs +657 -110
- package/dist/index.d.cts +501 -105
- package/dist/index.d.ts +501 -105
- package/dist/index.js +655 -110
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -283,6 +283,122 @@ 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 chatRouteSummarySchema: z.ZodObject<{
|
|
287
|
+
type: z.ZodEnum<["a2a", "hcs-10", "mcp", "openrouter", "acp", "xmtp", "moltbook", "agentverse", "nanda", "http", "erc-8004", "x402", "unknown"]>;
|
|
288
|
+
replyMode: z.ZodEnum<["direct", "stream", "poll", "delivery_only", "none"]>;
|
|
289
|
+
transport: z.ZodString;
|
|
290
|
+
endpoint: z.ZodOptional<z.ZodString>;
|
|
291
|
+
}, "strip", z.ZodTypeAny, {
|
|
292
|
+
type?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
|
|
293
|
+
transport?: string;
|
|
294
|
+
replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
|
|
295
|
+
endpoint?: string;
|
|
296
|
+
}, {
|
|
297
|
+
type?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
|
|
298
|
+
transport?: string;
|
|
299
|
+
replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
|
|
300
|
+
endpoint?: string;
|
|
301
|
+
}>;
|
|
302
|
+
declare const chatPaymentStateSchema: z.ZodObject<{
|
|
303
|
+
required: z.ZodBoolean;
|
|
304
|
+
provider: z.ZodOptional<z.ZodEnum<["credits", "x402", "acp", "openrouter"]>>;
|
|
305
|
+
status: z.ZodEnum<["not_required", "preflight", "required", "approved", "paid", "failed"]>;
|
|
306
|
+
estimatedCredits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
307
|
+
estimatedUsd: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
308
|
+
}, "strip", z.ZodTypeAny, {
|
|
309
|
+
status?: "failed" | "required" | "not_required" | "preflight" | "approved" | "paid";
|
|
310
|
+
required?: boolean;
|
|
311
|
+
provider?: "credits" | "openrouter" | "acp" | "x402";
|
|
312
|
+
estimatedCredits?: number;
|
|
313
|
+
estimatedUsd?: number;
|
|
314
|
+
}, {
|
|
315
|
+
status?: "failed" | "required" | "not_required" | "preflight" | "approved" | "paid";
|
|
316
|
+
required?: boolean;
|
|
317
|
+
provider?: "credits" | "openrouter" | "acp" | "x402";
|
|
318
|
+
estimatedCredits?: number;
|
|
319
|
+
estimatedUsd?: number;
|
|
320
|
+
}>;
|
|
321
|
+
declare const chatReadinessResponseSchema: z.ZodObject<{
|
|
322
|
+
status: z.ZodEnum<["responsive", "delivery_only", "degraded", "blocked", "unknown"]>;
|
|
323
|
+
routeType: z.ZodEnum<["a2a", "hcs-10", "mcp", "openrouter", "acp", "xmtp", "moltbook", "agentverse", "nanda", "http", "erc-8004", "x402", "unknown"]>;
|
|
324
|
+
replyMode: z.ZodEnum<["direct", "stream", "poll", "delivery_only", "none"]>;
|
|
325
|
+
transport: z.ZodString;
|
|
326
|
+
endpoint: z.ZodOptional<z.ZodString>;
|
|
327
|
+
checkedAt: z.ZodString;
|
|
328
|
+
cachedUntil: z.ZodString;
|
|
329
|
+
latencyMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
330
|
+
lastSuccessfulReplyAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
331
|
+
lastDeliveryConfirmationAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
332
|
+
lastFailureCode: z.ZodOptional<z.ZodNullable<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"]>>>;
|
|
333
|
+
supportsStreaming: z.ZodBoolean;
|
|
334
|
+
supportsHistory: z.ZodBoolean;
|
|
335
|
+
supportsEncryption: z.ZodBoolean;
|
|
336
|
+
supportsPayments: z.ZodBoolean;
|
|
337
|
+
supportsAttachments: z.ZodBoolean;
|
|
338
|
+
requiresAuth: z.ZodBoolean;
|
|
339
|
+
operatorActionRequired: z.ZodBoolean;
|
|
340
|
+
issue: z.ZodOptional<z.ZodObject<{
|
|
341
|
+
code: z.ZodString;
|
|
342
|
+
message: z.ZodString;
|
|
343
|
+
details: z.ZodOptional<z.ZodString>;
|
|
344
|
+
}, "strip", z.ZodTypeAny, {
|
|
345
|
+
message?: string;
|
|
346
|
+
details?: string;
|
|
347
|
+
code?: string;
|
|
348
|
+
}, {
|
|
349
|
+
message?: string;
|
|
350
|
+
details?: string;
|
|
351
|
+
code?: string;
|
|
352
|
+
}>>;
|
|
353
|
+
}, "strip", z.ZodTypeAny, {
|
|
354
|
+
status?: "unknown" | "responsive" | "delivery_only" | "degraded" | "blocked";
|
|
355
|
+
transport?: string;
|
|
356
|
+
replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
|
|
357
|
+
endpoint?: string;
|
|
358
|
+
routeType?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
|
|
359
|
+
checkedAt?: string;
|
|
360
|
+
cachedUntil?: string;
|
|
361
|
+
latencyMs?: number;
|
|
362
|
+
lastSuccessfulReplyAt?: string;
|
|
363
|
+
lastDeliveryConfirmationAt?: string;
|
|
364
|
+
lastFailureCode?: "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";
|
|
365
|
+
supportsStreaming?: boolean;
|
|
366
|
+
supportsHistory?: boolean;
|
|
367
|
+
supportsEncryption?: boolean;
|
|
368
|
+
supportsPayments?: boolean;
|
|
369
|
+
supportsAttachments?: boolean;
|
|
370
|
+
requiresAuth?: boolean;
|
|
371
|
+
operatorActionRequired?: boolean;
|
|
372
|
+
issue?: {
|
|
373
|
+
message?: string;
|
|
374
|
+
details?: string;
|
|
375
|
+
code?: string;
|
|
376
|
+
};
|
|
377
|
+
}, {
|
|
378
|
+
status?: "unknown" | "responsive" | "delivery_only" | "degraded" | "blocked";
|
|
379
|
+
transport?: string;
|
|
380
|
+
replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
|
|
381
|
+
endpoint?: string;
|
|
382
|
+
routeType?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
|
|
383
|
+
checkedAt?: string;
|
|
384
|
+
cachedUntil?: string;
|
|
385
|
+
latencyMs?: number;
|
|
386
|
+
lastSuccessfulReplyAt?: string;
|
|
387
|
+
lastDeliveryConfirmationAt?: string;
|
|
388
|
+
lastFailureCode?: "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";
|
|
389
|
+
supportsStreaming?: boolean;
|
|
390
|
+
supportsHistory?: boolean;
|
|
391
|
+
supportsEncryption?: boolean;
|
|
392
|
+
supportsPayments?: boolean;
|
|
393
|
+
supportsAttachments?: boolean;
|
|
394
|
+
requiresAuth?: boolean;
|
|
395
|
+
operatorActionRequired?: boolean;
|
|
396
|
+
issue?: {
|
|
397
|
+
message?: string;
|
|
398
|
+
details?: string;
|
|
399
|
+
code?: string;
|
|
400
|
+
};
|
|
401
|
+
}>;
|
|
286
402
|
declare const searchResponseSchema: z.ZodObject<{
|
|
287
403
|
hits: z.ZodArray<z.ZodObject<{
|
|
288
404
|
id: z.ZodString;
|
|
@@ -2005,14 +2121,14 @@ declare const agentFeedbackEligibilityResponseSchema: z.ZodObject<{
|
|
|
2005
2121
|
nativeFeeEstimate: z.ZodOptional<z.ZodNumber>;
|
|
2006
2122
|
}, "strip", z.ZodTypeAny, {
|
|
2007
2123
|
reason?: string;
|
|
2008
|
-
eligible?: boolean;
|
|
2009
2124
|
estimatedCredits?: number;
|
|
2125
|
+
eligible?: boolean;
|
|
2010
2126
|
usdEstimate?: number;
|
|
2011
2127
|
nativeFeeEstimate?: number;
|
|
2012
2128
|
}, {
|
|
2013
2129
|
reason?: string;
|
|
2014
|
-
eligible?: boolean;
|
|
2015
2130
|
estimatedCredits?: number;
|
|
2131
|
+
eligible?: boolean;
|
|
2016
2132
|
usdEstimate?: number;
|
|
2017
2133
|
nativeFeeEstimate?: number;
|
|
2018
2134
|
}>>;
|
|
@@ -2025,8 +2141,8 @@ declare const agentFeedbackEligibilityResponseSchema: z.ZodObject<{
|
|
|
2025
2141
|
minimumMessages?: number;
|
|
2026
2142
|
onchain?: {
|
|
2027
2143
|
reason?: string;
|
|
2028
|
-
eligible?: boolean;
|
|
2029
2144
|
estimatedCredits?: number;
|
|
2145
|
+
eligible?: boolean;
|
|
2030
2146
|
usdEstimate?: number;
|
|
2031
2147
|
nativeFeeEstimate?: number;
|
|
2032
2148
|
};
|
|
@@ -2039,8 +2155,8 @@ declare const agentFeedbackEligibilityResponseSchema: z.ZodObject<{
|
|
|
2039
2155
|
minimumMessages?: number;
|
|
2040
2156
|
onchain?: {
|
|
2041
2157
|
reason?: string;
|
|
2042
|
-
eligible?: boolean;
|
|
2043
2158
|
estimatedCredits?: number;
|
|
2159
|
+
eligible?: boolean;
|
|
2044
2160
|
usdEstimate?: number;
|
|
2045
2161
|
nativeFeeEstimate?: number;
|
|
2046
2162
|
};
|
|
@@ -2324,7 +2440,7 @@ declare const createSessionResponseSchema: z.ZodObject<{
|
|
|
2324
2440
|
}>;
|
|
2325
2441
|
history: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2326
2442
|
messageId: z.ZodString;
|
|
2327
|
-
role: z.ZodEnum<["user", "agent"]>;
|
|
2443
|
+
role: z.ZodEnum<["user", "agent", "system", "tool", "payment", "delivery", "error"]>;
|
|
2328
2444
|
content: z.ZodString;
|
|
2329
2445
|
timestamp: z.ZodString;
|
|
2330
2446
|
cipherEnvelope: z.ZodOptional<z.ZodObject<{
|
|
@@ -2399,7 +2515,7 @@ declare const createSessionResponseSchema: z.ZodObject<{
|
|
|
2399
2515
|
metadata?: Record<string, JsonValue$1>;
|
|
2400
2516
|
timestamp?: string;
|
|
2401
2517
|
content?: string;
|
|
2402
|
-
role?: "agent" | "user";
|
|
2518
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
2403
2519
|
messageId?: string;
|
|
2404
2520
|
cipherEnvelope?: {
|
|
2405
2521
|
nonce?: string;
|
|
@@ -2422,7 +2538,7 @@ declare const createSessionResponseSchema: z.ZodObject<{
|
|
|
2422
2538
|
metadata?: Record<string, JsonValue$1>;
|
|
2423
2539
|
timestamp?: string;
|
|
2424
2540
|
content?: string;
|
|
2425
|
-
role?: "agent" | "user";
|
|
2541
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
2426
2542
|
messageId?: string;
|
|
2427
2543
|
cipherEnvelope?: {
|
|
2428
2544
|
nonce?: string;
|
|
@@ -2729,7 +2845,130 @@ declare const createSessionResponseSchema: z.ZodObject<{
|
|
|
2729
2845
|
expiresAt?: number;
|
|
2730
2846
|
};
|
|
2731
2847
|
}>>>;
|
|
2848
|
+
route: z.ZodOptional<z.ZodObject<{
|
|
2849
|
+
type: z.ZodEnum<["a2a", "hcs-10", "mcp", "openrouter", "acp", "xmtp", "moltbook", "agentverse", "nanda", "http", "erc-8004", "x402", "unknown"]>;
|
|
2850
|
+
replyMode: z.ZodEnum<["direct", "stream", "poll", "delivery_only", "none"]>;
|
|
2851
|
+
transport: z.ZodString;
|
|
2852
|
+
endpoint: z.ZodOptional<z.ZodString>;
|
|
2853
|
+
}, "strip", z.ZodTypeAny, {
|
|
2854
|
+
type?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
|
|
2855
|
+
transport?: string;
|
|
2856
|
+
replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
|
|
2857
|
+
endpoint?: string;
|
|
2858
|
+
}, {
|
|
2859
|
+
type?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
|
|
2860
|
+
transport?: string;
|
|
2861
|
+
replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
|
|
2862
|
+
endpoint?: string;
|
|
2863
|
+
}>>;
|
|
2864
|
+
transport: z.ZodOptional<z.ZodString>;
|
|
2865
|
+
senderUaid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2866
|
+
visibility: z.ZodOptional<z.ZodEnum<["private", "public"]>>;
|
|
2867
|
+
payment: z.ZodOptional<z.ZodObject<{
|
|
2868
|
+
required: z.ZodBoolean;
|
|
2869
|
+
provider: z.ZodOptional<z.ZodEnum<["credits", "x402", "acp", "openrouter"]>>;
|
|
2870
|
+
status: z.ZodEnum<["not_required", "preflight", "required", "approved", "paid", "failed"]>;
|
|
2871
|
+
estimatedCredits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2872
|
+
estimatedUsd: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2873
|
+
}, "strip", z.ZodTypeAny, {
|
|
2874
|
+
status?: "failed" | "required" | "not_required" | "preflight" | "approved" | "paid";
|
|
2875
|
+
required?: boolean;
|
|
2876
|
+
provider?: "credits" | "openrouter" | "acp" | "x402";
|
|
2877
|
+
estimatedCredits?: number;
|
|
2878
|
+
estimatedUsd?: number;
|
|
2879
|
+
}, {
|
|
2880
|
+
status?: "failed" | "required" | "not_required" | "preflight" | "approved" | "paid";
|
|
2881
|
+
required?: boolean;
|
|
2882
|
+
provider?: "credits" | "openrouter" | "acp" | "x402";
|
|
2883
|
+
estimatedCredits?: number;
|
|
2884
|
+
estimatedUsd?: number;
|
|
2885
|
+
}>>;
|
|
2886
|
+
readiness: z.ZodOptional<z.ZodObject<{
|
|
2887
|
+
status: z.ZodEnum<["responsive", "delivery_only", "degraded", "blocked", "unknown"]>;
|
|
2888
|
+
routeType: z.ZodEnum<["a2a", "hcs-10", "mcp", "openrouter", "acp", "xmtp", "moltbook", "agentverse", "nanda", "http", "erc-8004", "x402", "unknown"]>;
|
|
2889
|
+
replyMode: z.ZodEnum<["direct", "stream", "poll", "delivery_only", "none"]>;
|
|
2890
|
+
transport: z.ZodString;
|
|
2891
|
+
endpoint: z.ZodOptional<z.ZodString>;
|
|
2892
|
+
checkedAt: z.ZodString;
|
|
2893
|
+
cachedUntil: z.ZodString;
|
|
2894
|
+
latencyMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2895
|
+
lastSuccessfulReplyAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2896
|
+
lastDeliveryConfirmationAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2897
|
+
lastFailureCode: z.ZodOptional<z.ZodNullable<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"]>>>;
|
|
2898
|
+
supportsStreaming: z.ZodBoolean;
|
|
2899
|
+
supportsHistory: z.ZodBoolean;
|
|
2900
|
+
supportsEncryption: z.ZodBoolean;
|
|
2901
|
+
supportsPayments: z.ZodBoolean;
|
|
2902
|
+
supportsAttachments: z.ZodBoolean;
|
|
2903
|
+
requiresAuth: z.ZodBoolean;
|
|
2904
|
+
operatorActionRequired: z.ZodBoolean;
|
|
2905
|
+
issue: z.ZodOptional<z.ZodObject<{
|
|
2906
|
+
code: z.ZodString;
|
|
2907
|
+
message: z.ZodString;
|
|
2908
|
+
details: z.ZodOptional<z.ZodString>;
|
|
2909
|
+
}, "strip", z.ZodTypeAny, {
|
|
2910
|
+
message?: string;
|
|
2911
|
+
details?: string;
|
|
2912
|
+
code?: string;
|
|
2913
|
+
}, {
|
|
2914
|
+
message?: string;
|
|
2915
|
+
details?: string;
|
|
2916
|
+
code?: string;
|
|
2917
|
+
}>>;
|
|
2918
|
+
}, "strip", z.ZodTypeAny, {
|
|
2919
|
+
status?: "unknown" | "responsive" | "delivery_only" | "degraded" | "blocked";
|
|
2920
|
+
transport?: string;
|
|
2921
|
+
replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
|
|
2922
|
+
endpoint?: string;
|
|
2923
|
+
routeType?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
|
|
2924
|
+
checkedAt?: string;
|
|
2925
|
+
cachedUntil?: string;
|
|
2926
|
+
latencyMs?: number;
|
|
2927
|
+
lastSuccessfulReplyAt?: string;
|
|
2928
|
+
lastDeliveryConfirmationAt?: string;
|
|
2929
|
+
lastFailureCode?: "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";
|
|
2930
|
+
supportsStreaming?: boolean;
|
|
2931
|
+
supportsHistory?: boolean;
|
|
2932
|
+
supportsEncryption?: boolean;
|
|
2933
|
+
supportsPayments?: boolean;
|
|
2934
|
+
supportsAttachments?: boolean;
|
|
2935
|
+
requiresAuth?: boolean;
|
|
2936
|
+
operatorActionRequired?: boolean;
|
|
2937
|
+
issue?: {
|
|
2938
|
+
message?: string;
|
|
2939
|
+
details?: string;
|
|
2940
|
+
code?: string;
|
|
2941
|
+
};
|
|
2942
|
+
}, {
|
|
2943
|
+
status?: "unknown" | "responsive" | "delivery_only" | "degraded" | "blocked";
|
|
2944
|
+
transport?: string;
|
|
2945
|
+
replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
|
|
2946
|
+
endpoint?: string;
|
|
2947
|
+
routeType?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
|
|
2948
|
+
checkedAt?: string;
|
|
2949
|
+
cachedUntil?: string;
|
|
2950
|
+
latencyMs?: number;
|
|
2951
|
+
lastSuccessfulReplyAt?: string;
|
|
2952
|
+
lastDeliveryConfirmationAt?: string;
|
|
2953
|
+
lastFailureCode?: "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";
|
|
2954
|
+
supportsStreaming?: boolean;
|
|
2955
|
+
supportsHistory?: boolean;
|
|
2956
|
+
supportsEncryption?: boolean;
|
|
2957
|
+
supportsPayments?: boolean;
|
|
2958
|
+
supportsAttachments?: boolean;
|
|
2959
|
+
requiresAuth?: boolean;
|
|
2960
|
+
operatorActionRequired?: boolean;
|
|
2961
|
+
issue?: {
|
|
2962
|
+
message?: string;
|
|
2963
|
+
details?: string;
|
|
2964
|
+
code?: string;
|
|
2965
|
+
};
|
|
2966
|
+
}>>;
|
|
2967
|
+
state: z.ZodOptional<z.ZodEnum<["connecting", "ready", "blocked", "ended", "expired"]>>;
|
|
2968
|
+
traceId: z.ZodOptional<z.ZodString>;
|
|
2969
|
+
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2732
2970
|
}, "strip", z.ZodTypeAny, {
|
|
2971
|
+
state?: "blocked" | "connecting" | "ready" | "ended" | "expired";
|
|
2733
2972
|
uaid?: string;
|
|
2734
2973
|
agent?: {
|
|
2735
2974
|
name?: string;
|
|
@@ -2737,12 +2976,21 @@ declare const createSessionResponseSchema: z.ZodObject<{
|
|
|
2737
2976
|
description?: string;
|
|
2738
2977
|
skills?: string[];
|
|
2739
2978
|
};
|
|
2979
|
+
transport?: string;
|
|
2740
2980
|
sessionId?: string;
|
|
2981
|
+
expiresAt?: string;
|
|
2982
|
+
payment?: {
|
|
2983
|
+
status?: "failed" | "required" | "not_required" | "preflight" | "approved" | "paid";
|
|
2984
|
+
required?: boolean;
|
|
2985
|
+
provider?: "credits" | "openrouter" | "acp" | "x402";
|
|
2986
|
+
estimatedCredits?: number;
|
|
2987
|
+
estimatedUsd?: number;
|
|
2988
|
+
};
|
|
2741
2989
|
history?: {
|
|
2742
2990
|
metadata?: Record<string, JsonValue$1>;
|
|
2743
2991
|
timestamp?: string;
|
|
2744
2992
|
content?: string;
|
|
2745
|
-
role?: "agent" | "user";
|
|
2993
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
2746
2994
|
messageId?: string;
|
|
2747
2995
|
cipherEnvelope?: {
|
|
2748
2996
|
nonce?: string;
|
|
@@ -2815,7 +3063,42 @@ declare const createSessionResponseSchema: z.ZodObject<{
|
|
|
2815
3063
|
expiresAt?: number;
|
|
2816
3064
|
};
|
|
2817
3065
|
};
|
|
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
|
+
senderUaid?: string;
|
|
3073
|
+
visibility?: "private" | "public";
|
|
3074
|
+
readiness?: {
|
|
3075
|
+
status?: "unknown" | "responsive" | "delivery_only" | "degraded" | "blocked";
|
|
3076
|
+
transport?: string;
|
|
3077
|
+
replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
|
|
3078
|
+
endpoint?: string;
|
|
3079
|
+
routeType?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
|
|
3080
|
+
checkedAt?: string;
|
|
3081
|
+
cachedUntil?: string;
|
|
3082
|
+
latencyMs?: number;
|
|
3083
|
+
lastSuccessfulReplyAt?: string;
|
|
3084
|
+
lastDeliveryConfirmationAt?: string;
|
|
3085
|
+
lastFailureCode?: "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";
|
|
3086
|
+
supportsStreaming?: boolean;
|
|
3087
|
+
supportsHistory?: boolean;
|
|
3088
|
+
supportsEncryption?: boolean;
|
|
3089
|
+
supportsPayments?: boolean;
|
|
3090
|
+
supportsAttachments?: boolean;
|
|
3091
|
+
requiresAuth?: boolean;
|
|
3092
|
+
operatorActionRequired?: boolean;
|
|
3093
|
+
issue?: {
|
|
3094
|
+
message?: string;
|
|
3095
|
+
details?: string;
|
|
3096
|
+
code?: string;
|
|
3097
|
+
};
|
|
3098
|
+
};
|
|
3099
|
+
traceId?: string;
|
|
2818
3100
|
}, {
|
|
3101
|
+
state?: "blocked" | "connecting" | "ready" | "ended" | "expired";
|
|
2819
3102
|
uaid?: string;
|
|
2820
3103
|
agent?: {
|
|
2821
3104
|
name?: string;
|
|
@@ -2823,12 +3106,21 @@ declare const createSessionResponseSchema: z.ZodObject<{
|
|
|
2823
3106
|
description?: string;
|
|
2824
3107
|
skills?: string[];
|
|
2825
3108
|
};
|
|
3109
|
+
transport?: string;
|
|
2826
3110
|
sessionId?: string;
|
|
3111
|
+
expiresAt?: string;
|
|
3112
|
+
payment?: {
|
|
3113
|
+
status?: "failed" | "required" | "not_required" | "preflight" | "approved" | "paid";
|
|
3114
|
+
required?: boolean;
|
|
3115
|
+
provider?: "credits" | "openrouter" | "acp" | "x402";
|
|
3116
|
+
estimatedCredits?: number;
|
|
3117
|
+
estimatedUsd?: number;
|
|
3118
|
+
};
|
|
2827
3119
|
history?: {
|
|
2828
3120
|
metadata?: Record<string, JsonValue$1>;
|
|
2829
3121
|
timestamp?: string;
|
|
2830
3122
|
content?: string;
|
|
2831
|
-
role?: "agent" | "user";
|
|
3123
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
2832
3124
|
messageId?: string;
|
|
2833
3125
|
cipherEnvelope?: {
|
|
2834
3126
|
nonce?: string;
|
|
@@ -2901,6 +3193,40 @@ declare const createSessionResponseSchema: z.ZodObject<{
|
|
|
2901
3193
|
expiresAt?: number;
|
|
2902
3194
|
};
|
|
2903
3195
|
};
|
|
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
|
+
senderUaid?: string;
|
|
3203
|
+
visibility?: "private" | "public";
|
|
3204
|
+
readiness?: {
|
|
3205
|
+
status?: "unknown" | "responsive" | "delivery_only" | "degraded" | "blocked";
|
|
3206
|
+
transport?: string;
|
|
3207
|
+
replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
|
|
3208
|
+
endpoint?: string;
|
|
3209
|
+
routeType?: "hcs-10" | "unknown" | "http" | "a2a" | "mcp" | "openrouter" | "acp" | "xmtp" | "moltbook" | "agentverse" | "nanda" | "erc-8004" | "x402";
|
|
3210
|
+
checkedAt?: string;
|
|
3211
|
+
cachedUntil?: string;
|
|
3212
|
+
latencyMs?: number;
|
|
3213
|
+
lastSuccessfulReplyAt?: string;
|
|
3214
|
+
lastDeliveryConfirmationAt?: string;
|
|
3215
|
+
lastFailureCode?: "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";
|
|
3216
|
+
supportsStreaming?: boolean;
|
|
3217
|
+
supportsHistory?: boolean;
|
|
3218
|
+
supportsEncryption?: boolean;
|
|
3219
|
+
supportsPayments?: boolean;
|
|
3220
|
+
supportsAttachments?: boolean;
|
|
3221
|
+
requiresAuth?: boolean;
|
|
3222
|
+
operatorActionRequired?: boolean;
|
|
3223
|
+
issue?: {
|
|
3224
|
+
message?: string;
|
|
3225
|
+
details?: string;
|
|
3226
|
+
code?: string;
|
|
3227
|
+
};
|
|
3228
|
+
};
|
|
3229
|
+
traceId?: string;
|
|
2904
3230
|
}>;
|
|
2905
3231
|
declare const sendMessageResponseSchema: z.ZodObject<{
|
|
2906
3232
|
sessionId: z.ZodString;
|
|
@@ -2912,7 +3238,7 @@ declare const sendMessageResponseSchema: z.ZodObject<{
|
|
|
2912
3238
|
ops: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue$1, z.ZodTypeDef, JsonValue$1>>, "many">>;
|
|
2913
3239
|
history: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2914
3240
|
messageId: z.ZodString;
|
|
2915
|
-
role: z.ZodEnum<["user", "agent"]>;
|
|
3241
|
+
role: z.ZodEnum<["user", "agent", "system", "tool", "payment", "delivery", "error"]>;
|
|
2916
3242
|
content: z.ZodString;
|
|
2917
3243
|
timestamp: z.ZodString;
|
|
2918
3244
|
cipherEnvelope: z.ZodOptional<z.ZodObject<{
|
|
@@ -2987,7 +3313,7 @@ declare const sendMessageResponseSchema: z.ZodObject<{
|
|
|
2987
3313
|
metadata?: Record<string, JsonValue$1>;
|
|
2988
3314
|
timestamp?: string;
|
|
2989
3315
|
content?: string;
|
|
2990
|
-
role?: "agent" | "user";
|
|
3316
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
2991
3317
|
messageId?: string;
|
|
2992
3318
|
cipherEnvelope?: {
|
|
2993
3319
|
nonce?: string;
|
|
@@ -3010,7 +3336,7 @@ declare const sendMessageResponseSchema: z.ZodObject<{
|
|
|
3010
3336
|
metadata?: Record<string, JsonValue$1>;
|
|
3011
3337
|
timestamp?: string;
|
|
3012
3338
|
content?: string;
|
|
3013
|
-
role?: "agent" | "user";
|
|
3339
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
3014
3340
|
messageId?: string;
|
|
3015
3341
|
cipherEnvelope?: {
|
|
3016
3342
|
nonce?: string;
|
|
@@ -3032,17 +3358,28 @@ declare const sendMessageResponseSchema: z.ZodObject<{
|
|
|
3032
3358
|
}>, "many">>;
|
|
3033
3359
|
historyTtlSeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3034
3360
|
encrypted: z.ZodOptional<z.ZodBoolean>;
|
|
3361
|
+
messageId: z.ZodOptional<z.ZodString>;
|
|
3362
|
+
assistantMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3363
|
+
deliveryState: z.ZodOptional<z.ZodEnum<["draft", "queued", "persisted", "delivered", "streaming", "responded", "failed", "timeout", "cancelled"]>>;
|
|
3364
|
+
replyMode: z.ZodOptional<z.ZodEnum<["direct", "stream", "poll", "delivery_only", "none"]>>;
|
|
3365
|
+
deliveryConfirmation: z.ZodOptional<z.ZodBoolean>;
|
|
3366
|
+
idempotent: z.ZodOptional<z.ZodBoolean>;
|
|
3367
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue$1, z.ZodTypeDef, JsonValue$1>>>;
|
|
3368
|
+
errorCode: z.ZodOptional<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"]>>;
|
|
3035
3369
|
}, "strip", z.ZodTypeAny, {
|
|
3036
3370
|
message?: string;
|
|
3371
|
+
metadata?: Record<string, JsonValue$1>;
|
|
3037
3372
|
timestamp?: string;
|
|
3038
3373
|
uaid?: string;
|
|
3039
3374
|
content?: string;
|
|
3040
3375
|
sessionId?: string;
|
|
3376
|
+
messageId?: string;
|
|
3377
|
+
replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
|
|
3041
3378
|
history?: {
|
|
3042
3379
|
metadata?: Record<string, JsonValue$1>;
|
|
3043
3380
|
timestamp?: string;
|
|
3044
3381
|
content?: string;
|
|
3045
|
-
role?: "agent" | "user";
|
|
3382
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
3046
3383
|
messageId?: string;
|
|
3047
3384
|
cipherEnvelope?: {
|
|
3048
3385
|
nonce?: string;
|
|
@@ -3066,17 +3403,25 @@ declare const sendMessageResponseSchema: z.ZodObject<{
|
|
|
3066
3403
|
rawResponse?: JsonValue$1;
|
|
3067
3404
|
ops?: Record<string, JsonValue$1>[];
|
|
3068
3405
|
encrypted?: boolean;
|
|
3406
|
+
assistantMessageId?: string;
|
|
3407
|
+
deliveryState?: "failed" | "draft" | "queued" | "persisted" | "delivered" | "streaming" | "responded" | "timeout" | "cancelled";
|
|
3408
|
+
deliveryConfirmation?: boolean;
|
|
3409
|
+
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";
|
|
3069
3411
|
}, {
|
|
3070
3412
|
message?: string;
|
|
3413
|
+
metadata?: Record<string, JsonValue$1>;
|
|
3071
3414
|
timestamp?: string;
|
|
3072
3415
|
uaid?: string;
|
|
3073
3416
|
content?: string;
|
|
3074
3417
|
sessionId?: string;
|
|
3418
|
+
messageId?: string;
|
|
3419
|
+
replyMode?: "stream" | "none" | "delivery_only" | "direct" | "poll";
|
|
3075
3420
|
history?: {
|
|
3076
3421
|
metadata?: Record<string, JsonValue$1>;
|
|
3077
3422
|
timestamp?: string;
|
|
3078
3423
|
content?: string;
|
|
3079
|
-
role?: "agent" | "user";
|
|
3424
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
3080
3425
|
messageId?: string;
|
|
3081
3426
|
cipherEnvelope?: {
|
|
3082
3427
|
nonce?: string;
|
|
@@ -3100,12 +3445,30 @@ declare const sendMessageResponseSchema: z.ZodObject<{
|
|
|
3100
3445
|
rawResponse?: JsonValue$1;
|
|
3101
3446
|
ops?: Record<string, JsonValue$1>[];
|
|
3102
3447
|
encrypted?: boolean;
|
|
3448
|
+
assistantMessageId?: string;
|
|
3449
|
+
deliveryState?: "failed" | "draft" | "queued" | "persisted" | "delivered" | "streaming" | "responded" | "timeout" | "cancelled";
|
|
3450
|
+
deliveryConfirmation?: boolean;
|
|
3451
|
+
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
|
+
}>;
|
|
3454
|
+
declare const chatSessionEndResponseSchema: z.ZodObject<{
|
|
3455
|
+
message: z.ZodString;
|
|
3456
|
+
sessionId: z.ZodString;
|
|
3457
|
+
state: z.ZodOptional<z.ZodEnum<["connecting", "ready", "blocked", "ended", "expired"]>>;
|
|
3458
|
+
}, "strip", z.ZodTypeAny, {
|
|
3459
|
+
message?: string;
|
|
3460
|
+
state?: "blocked" | "connecting" | "ready" | "ended" | "expired";
|
|
3461
|
+
sessionId?: string;
|
|
3462
|
+
}, {
|
|
3463
|
+
message?: string;
|
|
3464
|
+
state?: "blocked" | "connecting" | "ready" | "ended" | "expired";
|
|
3465
|
+
sessionId?: string;
|
|
3103
3466
|
}>;
|
|
3104
3467
|
declare const chatHistorySnapshotResponseSchema: z.ZodObject<{
|
|
3105
3468
|
sessionId: z.ZodString;
|
|
3106
3469
|
history: z.ZodArray<z.ZodObject<{
|
|
3107
3470
|
messageId: z.ZodString;
|
|
3108
|
-
role: z.ZodEnum<["user", "agent"]>;
|
|
3471
|
+
role: z.ZodEnum<["user", "agent", "system", "tool", "payment", "delivery", "error"]>;
|
|
3109
3472
|
content: z.ZodString;
|
|
3110
3473
|
timestamp: z.ZodString;
|
|
3111
3474
|
cipherEnvelope: z.ZodOptional<z.ZodObject<{
|
|
@@ -3180,7 +3543,7 @@ declare const chatHistorySnapshotResponseSchema: z.ZodObject<{
|
|
|
3180
3543
|
metadata?: Record<string, JsonValue$1>;
|
|
3181
3544
|
timestamp?: string;
|
|
3182
3545
|
content?: string;
|
|
3183
|
-
role?: "agent" | "user";
|
|
3546
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
3184
3547
|
messageId?: string;
|
|
3185
3548
|
cipherEnvelope?: {
|
|
3186
3549
|
nonce?: string;
|
|
@@ -3203,7 +3566,7 @@ declare const chatHistorySnapshotResponseSchema: z.ZodObject<{
|
|
|
3203
3566
|
metadata?: Record<string, JsonValue$1>;
|
|
3204
3567
|
timestamp?: string;
|
|
3205
3568
|
content?: string;
|
|
3206
|
-
role?: "agent" | "user";
|
|
3569
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
3207
3570
|
messageId?: string;
|
|
3208
3571
|
cipherEnvelope?: {
|
|
3209
3572
|
nonce?: string;
|
|
@@ -3230,7 +3593,7 @@ declare const chatHistorySnapshotResponseSchema: z.ZodObject<{
|
|
|
3230
3593
|
metadata?: Record<string, JsonValue$1>;
|
|
3231
3594
|
timestamp?: string;
|
|
3232
3595
|
content?: string;
|
|
3233
|
-
role?: "agent" | "user";
|
|
3596
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
3234
3597
|
messageId?: string;
|
|
3235
3598
|
cipherEnvelope?: {
|
|
3236
3599
|
nonce?: string;
|
|
@@ -3257,7 +3620,7 @@ declare const chatHistorySnapshotResponseSchema: z.ZodObject<{
|
|
|
3257
3620
|
metadata?: Record<string, JsonValue$1>;
|
|
3258
3621
|
timestamp?: string;
|
|
3259
3622
|
content?: string;
|
|
3260
|
-
role?: "agent" | "user";
|
|
3623
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
3261
3624
|
messageId?: string;
|
|
3262
3625
|
cipherEnvelope?: {
|
|
3263
3626
|
nonce?: string;
|
|
@@ -3283,7 +3646,7 @@ declare const chatHistoryCompactionResponseSchema: z.ZodObject<{
|
|
|
3283
3646
|
sessionId: z.ZodString;
|
|
3284
3647
|
history: z.ZodArray<z.ZodObject<{
|
|
3285
3648
|
messageId: z.ZodString;
|
|
3286
|
-
role: z.ZodEnum<["user", "agent"]>;
|
|
3649
|
+
role: z.ZodEnum<["user", "agent", "system", "tool", "payment", "delivery", "error"]>;
|
|
3287
3650
|
content: z.ZodString;
|
|
3288
3651
|
timestamp: z.ZodString;
|
|
3289
3652
|
cipherEnvelope: z.ZodOptional<z.ZodObject<{
|
|
@@ -3358,7 +3721,7 @@ declare const chatHistoryCompactionResponseSchema: z.ZodObject<{
|
|
|
3358
3721
|
metadata?: Record<string, JsonValue$1>;
|
|
3359
3722
|
timestamp?: string;
|
|
3360
3723
|
content?: string;
|
|
3361
|
-
role?: "agent" | "user";
|
|
3724
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
3362
3725
|
messageId?: string;
|
|
3363
3726
|
cipherEnvelope?: {
|
|
3364
3727
|
nonce?: string;
|
|
@@ -3381,7 +3744,7 @@ declare const chatHistoryCompactionResponseSchema: z.ZodObject<{
|
|
|
3381
3744
|
metadata?: Record<string, JsonValue$1>;
|
|
3382
3745
|
timestamp?: string;
|
|
3383
3746
|
content?: string;
|
|
3384
|
-
role?: "agent" | "user";
|
|
3747
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
3385
3748
|
messageId?: string;
|
|
3386
3749
|
cipherEnvelope?: {
|
|
3387
3750
|
nonce?: string;
|
|
@@ -3403,7 +3766,7 @@ declare const chatHistoryCompactionResponseSchema: z.ZodObject<{
|
|
|
3403
3766
|
}>, "many">;
|
|
3404
3767
|
summaryEntry: z.ZodObject<{
|
|
3405
3768
|
messageId: z.ZodString;
|
|
3406
|
-
role: z.ZodEnum<["user", "agent"]>;
|
|
3769
|
+
role: z.ZodEnum<["user", "agent", "system", "tool", "payment", "delivery", "error"]>;
|
|
3407
3770
|
content: z.ZodString;
|
|
3408
3771
|
timestamp: z.ZodString;
|
|
3409
3772
|
cipherEnvelope: z.ZodOptional<z.ZodObject<{
|
|
@@ -3478,7 +3841,7 @@ declare const chatHistoryCompactionResponseSchema: z.ZodObject<{
|
|
|
3478
3841
|
metadata?: Record<string, JsonValue$1>;
|
|
3479
3842
|
timestamp?: string;
|
|
3480
3843
|
content?: string;
|
|
3481
|
-
role?: "agent" | "user";
|
|
3844
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
3482
3845
|
messageId?: string;
|
|
3483
3846
|
cipherEnvelope?: {
|
|
3484
3847
|
nonce?: string;
|
|
@@ -3501,7 +3864,7 @@ declare const chatHistoryCompactionResponseSchema: z.ZodObject<{
|
|
|
3501
3864
|
metadata?: Record<string, JsonValue$1>;
|
|
3502
3865
|
timestamp?: string;
|
|
3503
3866
|
content?: string;
|
|
3504
|
-
role?: "agent" | "user";
|
|
3867
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
3505
3868
|
messageId?: string;
|
|
3506
3869
|
cipherEnvelope?: {
|
|
3507
3870
|
nonce?: string;
|
|
@@ -3523,7 +3886,7 @@ declare const chatHistoryCompactionResponseSchema: z.ZodObject<{
|
|
|
3523
3886
|
}>;
|
|
3524
3887
|
preservedEntries: z.ZodArray<z.ZodObject<{
|
|
3525
3888
|
messageId: z.ZodString;
|
|
3526
|
-
role: z.ZodEnum<["user", "agent"]>;
|
|
3889
|
+
role: z.ZodEnum<["user", "agent", "system", "tool", "payment", "delivery", "error"]>;
|
|
3527
3890
|
content: z.ZodString;
|
|
3528
3891
|
timestamp: z.ZodString;
|
|
3529
3892
|
cipherEnvelope: z.ZodOptional<z.ZodObject<{
|
|
@@ -3598,7 +3961,7 @@ declare const chatHistoryCompactionResponseSchema: z.ZodObject<{
|
|
|
3598
3961
|
metadata?: Record<string, JsonValue$1>;
|
|
3599
3962
|
timestamp?: string;
|
|
3600
3963
|
content?: string;
|
|
3601
|
-
role?: "agent" | "user";
|
|
3964
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
3602
3965
|
messageId?: string;
|
|
3603
3966
|
cipherEnvelope?: {
|
|
3604
3967
|
nonce?: string;
|
|
@@ -3621,7 +3984,7 @@ declare const chatHistoryCompactionResponseSchema: z.ZodObject<{
|
|
|
3621
3984
|
metadata?: Record<string, JsonValue$1>;
|
|
3622
3985
|
timestamp?: string;
|
|
3623
3986
|
content?: string;
|
|
3624
|
-
role?: "agent" | "user";
|
|
3987
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
3625
3988
|
messageId?: string;
|
|
3626
3989
|
cipherEnvelope?: {
|
|
3627
3990
|
nonce?: string;
|
|
@@ -3651,7 +4014,7 @@ declare const chatHistoryCompactionResponseSchema: z.ZodObject<{
|
|
|
3651
4014
|
metadata?: Record<string, JsonValue$1>;
|
|
3652
4015
|
timestamp?: string;
|
|
3653
4016
|
content?: string;
|
|
3654
|
-
role?: "agent" | "user";
|
|
4017
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
3655
4018
|
messageId?: string;
|
|
3656
4019
|
cipherEnvelope?: {
|
|
3657
4020
|
nonce?: string;
|
|
@@ -3676,7 +4039,7 @@ declare const chatHistoryCompactionResponseSchema: z.ZodObject<{
|
|
|
3676
4039
|
metadata?: Record<string, JsonValue$1>;
|
|
3677
4040
|
timestamp?: string;
|
|
3678
4041
|
content?: string;
|
|
3679
|
-
role?: "agent" | "user";
|
|
4042
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
3680
4043
|
messageId?: string;
|
|
3681
4044
|
cipherEnvelope?: {
|
|
3682
4045
|
nonce?: string;
|
|
@@ -3700,7 +4063,7 @@ declare const chatHistoryCompactionResponseSchema: z.ZodObject<{
|
|
|
3700
4063
|
metadata?: Record<string, JsonValue$1>;
|
|
3701
4064
|
timestamp?: string;
|
|
3702
4065
|
content?: string;
|
|
3703
|
-
role?: "agent" | "user";
|
|
4066
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
3704
4067
|
messageId?: string;
|
|
3705
4068
|
cipherEnvelope?: {
|
|
3706
4069
|
nonce?: string;
|
|
@@ -3728,7 +4091,7 @@ declare const chatHistoryCompactionResponseSchema: z.ZodObject<{
|
|
|
3728
4091
|
metadata?: Record<string, JsonValue$1>;
|
|
3729
4092
|
timestamp?: string;
|
|
3730
4093
|
content?: string;
|
|
3731
|
-
role?: "agent" | "user";
|
|
4094
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
3732
4095
|
messageId?: string;
|
|
3733
4096
|
cipherEnvelope?: {
|
|
3734
4097
|
nonce?: string;
|
|
@@ -3753,7 +4116,7 @@ declare const chatHistoryCompactionResponseSchema: z.ZodObject<{
|
|
|
3753
4116
|
metadata?: Record<string, JsonValue$1>;
|
|
3754
4117
|
timestamp?: string;
|
|
3755
4118
|
content?: string;
|
|
3756
|
-
role?: "agent" | "user";
|
|
4119
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
3757
4120
|
messageId?: string;
|
|
3758
4121
|
cipherEnvelope?: {
|
|
3759
4122
|
nonce?: string;
|
|
@@ -3777,7 +4140,7 @@ declare const chatHistoryCompactionResponseSchema: z.ZodObject<{
|
|
|
3777
4140
|
metadata?: Record<string, JsonValue$1>;
|
|
3778
4141
|
timestamp?: string;
|
|
3779
4142
|
content?: string;
|
|
3780
|
-
role?: "agent" | "user";
|
|
4143
|
+
role?: "error" | "agent" | "user" | "system" | "tool" | "payment" | "delivery";
|
|
3781
4144
|
messageId?: string;
|
|
3782
4145
|
cipherEnvelope?: {
|
|
3783
4146
|
nonce?: string;
|
|
@@ -5493,7 +5856,7 @@ declare const searchStatusResponseSchema: z.ZodObject<{
|
|
|
5493
5856
|
}>>;
|
|
5494
5857
|
}, "strip", z.ZodTypeAny, {
|
|
5495
5858
|
details?: Record<string, any>;
|
|
5496
|
-
mode?: "error" | "
|
|
5859
|
+
mode?: "error" | "degraded" | "healthy" | "disabled" | "initializing";
|
|
5497
5860
|
enabled?: boolean;
|
|
5498
5861
|
healthy?: boolean;
|
|
5499
5862
|
lastUpdated?: string;
|
|
@@ -5504,7 +5867,7 @@ declare const searchStatusResponseSchema: z.ZodObject<{
|
|
|
5504
5867
|
};
|
|
5505
5868
|
}, {
|
|
5506
5869
|
details?: Record<string, any>;
|
|
5507
|
-
mode?: "error" | "
|
|
5870
|
+
mode?: "error" | "degraded" | "healthy" | "disabled" | "initializing";
|
|
5508
5871
|
enabled?: boolean;
|
|
5509
5872
|
healthy?: boolean;
|
|
5510
5873
|
lastUpdated?: string;
|
|
@@ -5518,7 +5881,7 @@ declare const searchStatusResponseSchema: z.ZodObject<{
|
|
|
5518
5881
|
storageMode?: string;
|
|
5519
5882
|
vectorStatus?: {
|
|
5520
5883
|
details?: Record<string, any>;
|
|
5521
|
-
mode?: "error" | "
|
|
5884
|
+
mode?: "error" | "degraded" | "healthy" | "disabled" | "initializing";
|
|
5522
5885
|
enabled?: boolean;
|
|
5523
5886
|
healthy?: boolean;
|
|
5524
5887
|
lastUpdated?: string;
|
|
@@ -5532,7 +5895,7 @@ declare const searchStatusResponseSchema: z.ZodObject<{
|
|
|
5532
5895
|
storageMode?: string;
|
|
5533
5896
|
vectorStatus?: {
|
|
5534
5897
|
details?: Record<string, any>;
|
|
5535
|
-
mode?: "error" | "
|
|
5898
|
+
mode?: "error" | "degraded" | "healthy" | "disabled" | "initializing";
|
|
5536
5899
|
enabled?: boolean;
|
|
5537
5900
|
healthy?: boolean;
|
|
5538
5901
|
lastUpdated?: string;
|
|
@@ -5833,16 +6196,16 @@ declare const uaidConnectionStatusSchema: z.ZodObject<{
|
|
|
5833
6196
|
id?: string;
|
|
5834
6197
|
createdAt?: string;
|
|
5835
6198
|
protocol?: string;
|
|
5836
|
-
agentId?: string;
|
|
5837
6199
|
endpoint?: string;
|
|
6200
|
+
agentId?: string;
|
|
5838
6201
|
}, {
|
|
5839
6202
|
metadata?: Record<string, string | number | boolean>;
|
|
5840
6203
|
status?: "error" | "connected" | "disconnected";
|
|
5841
6204
|
id?: string;
|
|
5842
6205
|
createdAt?: string;
|
|
5843
6206
|
protocol?: string;
|
|
5844
|
-
agentId?: string;
|
|
5845
6207
|
endpoint?: string;
|
|
6208
|
+
agentId?: string;
|
|
5846
6209
|
}>>;
|
|
5847
6210
|
adapter: z.ZodOptional<z.ZodString>;
|
|
5848
6211
|
agentId: z.ZodOptional<z.ZodString>;
|
|
@@ -5853,8 +6216,8 @@ declare const uaidConnectionStatusSchema: z.ZodObject<{
|
|
|
5853
6216
|
id?: string;
|
|
5854
6217
|
createdAt?: string;
|
|
5855
6218
|
protocol?: string;
|
|
5856
|
-
agentId?: string;
|
|
5857
6219
|
endpoint?: string;
|
|
6220
|
+
agentId?: string;
|
|
5858
6221
|
};
|
|
5859
6222
|
adapter?: string;
|
|
5860
6223
|
agentId?: string;
|
|
@@ -5866,8 +6229,8 @@ declare const uaidConnectionStatusSchema: z.ZodObject<{
|
|
|
5866
6229
|
id?: string;
|
|
5867
6230
|
createdAt?: string;
|
|
5868
6231
|
protocol?: string;
|
|
5869
|
-
agentId?: string;
|
|
5870
6232
|
endpoint?: string;
|
|
6233
|
+
agentId?: string;
|
|
5871
6234
|
};
|
|
5872
6235
|
adapter?: string;
|
|
5873
6236
|
agentId?: string;
|
|
@@ -6467,8 +6830,8 @@ declare const registerAgentSuccessResponseSchema: z.ZodObject<{
|
|
|
6467
6830
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
6468
6831
|
registry?: string;
|
|
6469
6832
|
networkName?: string;
|
|
6470
|
-
agentId?: string;
|
|
6471
6833
|
estimatedCredits?: number;
|
|
6834
|
+
agentId?: string;
|
|
6472
6835
|
agentUri?: string;
|
|
6473
6836
|
registryKey?: string;
|
|
6474
6837
|
networkId?: string;
|
|
@@ -6499,8 +6862,8 @@ declare const registerAgentSuccessResponseSchema: z.ZodObject<{
|
|
|
6499
6862
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
6500
6863
|
registry?: string;
|
|
6501
6864
|
networkName?: string;
|
|
6502
|
-
agentId?: string;
|
|
6503
6865
|
estimatedCredits?: number;
|
|
6866
|
+
agentId?: string;
|
|
6504
6867
|
agentUri?: string;
|
|
6505
6868
|
registryKey?: string;
|
|
6506
6869
|
networkId?: string;
|
|
@@ -6598,8 +6961,8 @@ declare const registerAgentSuccessResponseSchema: z.ZodObject<{
|
|
|
6598
6961
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
6599
6962
|
registry?: string;
|
|
6600
6963
|
networkName?: string;
|
|
6601
|
-
agentId?: string;
|
|
6602
6964
|
estimatedCredits?: number;
|
|
6965
|
+
agentId?: string;
|
|
6603
6966
|
agentUri?: string;
|
|
6604
6967
|
registryKey?: string;
|
|
6605
6968
|
networkId?: string;
|
|
@@ -6630,8 +6993,8 @@ declare const registerAgentSuccessResponseSchema: z.ZodObject<{
|
|
|
6630
6993
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
6631
6994
|
registry?: string;
|
|
6632
6995
|
networkName?: string;
|
|
6633
|
-
agentId?: string;
|
|
6634
6996
|
estimatedCredits?: number;
|
|
6997
|
+
agentId?: string;
|
|
6635
6998
|
agentUri?: string;
|
|
6636
6999
|
registryKey?: string;
|
|
6637
7000
|
networkId?: string;
|
|
@@ -6750,8 +7113,8 @@ declare const registerAgentSuccessResponseSchema: z.ZodObject<{
|
|
|
6750
7113
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
6751
7114
|
registry?: string;
|
|
6752
7115
|
networkName?: string;
|
|
6753
|
-
agentId?: string;
|
|
6754
7116
|
estimatedCredits?: number;
|
|
7117
|
+
agentId?: string;
|
|
6755
7118
|
agentUri?: string;
|
|
6756
7119
|
registryKey?: string;
|
|
6757
7120
|
networkId?: string;
|
|
@@ -6783,8 +7146,8 @@ declare const registerAgentSuccessResponseSchema: z.ZodObject<{
|
|
|
6783
7146
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
6784
7147
|
registry?: string;
|
|
6785
7148
|
networkName?: string;
|
|
6786
|
-
agentId?: string;
|
|
6787
7149
|
estimatedCredits?: number;
|
|
7150
|
+
agentId?: string;
|
|
6788
7151
|
agentUri?: string;
|
|
6789
7152
|
registryKey?: string;
|
|
6790
7153
|
networkId?: string;
|
|
@@ -6903,8 +7266,8 @@ declare const registerAgentSuccessResponseSchema: z.ZodObject<{
|
|
|
6903
7266
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
6904
7267
|
registry?: string;
|
|
6905
7268
|
networkName?: string;
|
|
6906
|
-
agentId?: string;
|
|
6907
7269
|
estimatedCredits?: number;
|
|
7270
|
+
agentId?: string;
|
|
6908
7271
|
agentUri?: string;
|
|
6909
7272
|
registryKey?: string;
|
|
6910
7273
|
networkId?: string;
|
|
@@ -6936,8 +7299,8 @@ declare const registerAgentSuccessResponseSchema: z.ZodObject<{
|
|
|
6936
7299
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
6937
7300
|
registry?: string;
|
|
6938
7301
|
networkName?: string;
|
|
6939
|
-
agentId?: string;
|
|
6940
7302
|
estimatedCredits?: number;
|
|
7303
|
+
agentId?: string;
|
|
6941
7304
|
agentUri?: string;
|
|
6942
7305
|
registryKey?: string;
|
|
6943
7306
|
networkId?: string;
|
|
@@ -7329,8 +7692,8 @@ declare const registerAgentPendingResponseSchema: z.ZodObject<{
|
|
|
7329
7692
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
7330
7693
|
registry?: string;
|
|
7331
7694
|
networkName?: string;
|
|
7332
|
-
agentId?: string;
|
|
7333
7695
|
estimatedCredits?: number;
|
|
7696
|
+
agentId?: string;
|
|
7334
7697
|
agentUri?: string;
|
|
7335
7698
|
registryKey?: string;
|
|
7336
7699
|
networkId?: string;
|
|
@@ -7361,8 +7724,8 @@ declare const registerAgentPendingResponseSchema: z.ZodObject<{
|
|
|
7361
7724
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
7362
7725
|
registry?: string;
|
|
7363
7726
|
networkName?: string;
|
|
7364
|
-
agentId?: string;
|
|
7365
7727
|
estimatedCredits?: number;
|
|
7728
|
+
agentId?: string;
|
|
7366
7729
|
agentUri?: string;
|
|
7367
7730
|
registryKey?: string;
|
|
7368
7731
|
networkId?: string;
|
|
@@ -7460,8 +7823,8 @@ declare const registerAgentPendingResponseSchema: z.ZodObject<{
|
|
|
7460
7823
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
7461
7824
|
registry?: string;
|
|
7462
7825
|
networkName?: string;
|
|
7463
|
-
agentId?: string;
|
|
7464
7826
|
estimatedCredits?: number;
|
|
7827
|
+
agentId?: string;
|
|
7465
7828
|
agentUri?: string;
|
|
7466
7829
|
registryKey?: string;
|
|
7467
7830
|
networkId?: string;
|
|
@@ -7492,8 +7855,8 @@ declare const registerAgentPendingResponseSchema: z.ZodObject<{
|
|
|
7492
7855
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
7493
7856
|
registry?: string;
|
|
7494
7857
|
networkName?: string;
|
|
7495
|
-
agentId?: string;
|
|
7496
7858
|
estimatedCredits?: number;
|
|
7859
|
+
agentId?: string;
|
|
7497
7860
|
agentUri?: string;
|
|
7498
7861
|
registryKey?: string;
|
|
7499
7862
|
networkId?: string;
|
|
@@ -7612,8 +7975,8 @@ declare const registerAgentPendingResponseSchema: z.ZodObject<{
|
|
|
7612
7975
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
7613
7976
|
registry?: string;
|
|
7614
7977
|
networkName?: string;
|
|
7615
|
-
agentId?: string;
|
|
7616
7978
|
estimatedCredits?: number;
|
|
7979
|
+
agentId?: string;
|
|
7617
7980
|
agentUri?: string;
|
|
7618
7981
|
registryKey?: string;
|
|
7619
7982
|
networkId?: string;
|
|
@@ -7645,8 +8008,8 @@ declare const registerAgentPendingResponseSchema: z.ZodObject<{
|
|
|
7645
8008
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
7646
8009
|
registry?: string;
|
|
7647
8010
|
networkName?: string;
|
|
7648
|
-
agentId?: string;
|
|
7649
8011
|
estimatedCredits?: number;
|
|
8012
|
+
agentId?: string;
|
|
7650
8013
|
agentUri?: string;
|
|
7651
8014
|
registryKey?: string;
|
|
7652
8015
|
networkId?: string;
|
|
@@ -7765,8 +8128,8 @@ declare const registerAgentPendingResponseSchema: z.ZodObject<{
|
|
|
7765
8128
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
7766
8129
|
registry?: string;
|
|
7767
8130
|
networkName?: string;
|
|
7768
|
-
agentId?: string;
|
|
7769
8131
|
estimatedCredits?: number;
|
|
8132
|
+
agentId?: string;
|
|
7770
8133
|
agentUri?: string;
|
|
7771
8134
|
registryKey?: string;
|
|
7772
8135
|
networkId?: string;
|
|
@@ -7798,8 +8161,8 @@ declare const registerAgentPendingResponseSchema: z.ZodObject<{
|
|
|
7798
8161
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
7799
8162
|
registry?: string;
|
|
7800
8163
|
networkName?: string;
|
|
7801
|
-
agentId?: string;
|
|
7802
8164
|
estimatedCredits?: number;
|
|
8165
|
+
agentId?: string;
|
|
7803
8166
|
agentUri?: string;
|
|
7804
8167
|
registryKey?: string;
|
|
7805
8168
|
networkId?: string;
|
|
@@ -8191,8 +8554,8 @@ declare const registerAgentPartialResponseSchema: z.ZodObject<{
|
|
|
8191
8554
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
8192
8555
|
registry?: string;
|
|
8193
8556
|
networkName?: string;
|
|
8194
|
-
agentId?: string;
|
|
8195
8557
|
estimatedCredits?: number;
|
|
8558
|
+
agentId?: string;
|
|
8196
8559
|
agentUri?: string;
|
|
8197
8560
|
registryKey?: string;
|
|
8198
8561
|
networkId?: string;
|
|
@@ -8223,8 +8586,8 @@ declare const registerAgentPartialResponseSchema: z.ZodObject<{
|
|
|
8223
8586
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
8224
8587
|
registry?: string;
|
|
8225
8588
|
networkName?: string;
|
|
8226
|
-
agentId?: string;
|
|
8227
8589
|
estimatedCredits?: number;
|
|
8590
|
+
agentId?: string;
|
|
8228
8591
|
agentUri?: string;
|
|
8229
8592
|
registryKey?: string;
|
|
8230
8593
|
networkId?: string;
|
|
@@ -8322,8 +8685,8 @@ declare const registerAgentPartialResponseSchema: z.ZodObject<{
|
|
|
8322
8685
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
8323
8686
|
registry?: string;
|
|
8324
8687
|
networkName?: string;
|
|
8325
|
-
agentId?: string;
|
|
8326
8688
|
estimatedCredits?: number;
|
|
8689
|
+
agentId?: string;
|
|
8327
8690
|
agentUri?: string;
|
|
8328
8691
|
registryKey?: string;
|
|
8329
8692
|
networkId?: string;
|
|
@@ -8354,8 +8717,8 @@ declare const registerAgentPartialResponseSchema: z.ZodObject<{
|
|
|
8354
8717
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
8355
8718
|
registry?: string;
|
|
8356
8719
|
networkName?: string;
|
|
8357
|
-
agentId?: string;
|
|
8358
8720
|
estimatedCredits?: number;
|
|
8721
|
+
agentId?: string;
|
|
8359
8722
|
agentUri?: string;
|
|
8360
8723
|
registryKey?: string;
|
|
8361
8724
|
networkId?: string;
|
|
@@ -8487,8 +8850,8 @@ declare const registerAgentPartialResponseSchema: z.ZodObject<{
|
|
|
8487
8850
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
8488
8851
|
registry?: string;
|
|
8489
8852
|
networkName?: string;
|
|
8490
|
-
agentId?: string;
|
|
8491
8853
|
estimatedCredits?: number;
|
|
8854
|
+
agentId?: string;
|
|
8492
8855
|
agentUri?: string;
|
|
8493
8856
|
registryKey?: string;
|
|
8494
8857
|
networkId?: string;
|
|
@@ -8520,8 +8883,8 @@ declare const registerAgentPartialResponseSchema: z.ZodObject<{
|
|
|
8520
8883
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
8521
8884
|
registry?: string;
|
|
8522
8885
|
networkName?: string;
|
|
8523
|
-
agentId?: string;
|
|
8524
8886
|
estimatedCredits?: number;
|
|
8887
|
+
agentId?: string;
|
|
8525
8888
|
agentUri?: string;
|
|
8526
8889
|
registryKey?: string;
|
|
8527
8890
|
networkId?: string;
|
|
@@ -8645,8 +9008,8 @@ declare const registerAgentPartialResponseSchema: z.ZodObject<{
|
|
|
8645
9008
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
8646
9009
|
registry?: string;
|
|
8647
9010
|
networkName?: string;
|
|
8648
|
-
agentId?: string;
|
|
8649
9011
|
estimatedCredits?: number;
|
|
9012
|
+
agentId?: string;
|
|
8650
9013
|
agentUri?: string;
|
|
8651
9014
|
registryKey?: string;
|
|
8652
9015
|
networkId?: string;
|
|
@@ -8678,8 +9041,8 @@ declare const registerAgentPartialResponseSchema: z.ZodObject<{
|
|
|
8678
9041
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
8679
9042
|
registry?: string;
|
|
8680
9043
|
networkName?: string;
|
|
8681
|
-
agentId?: string;
|
|
8682
9044
|
estimatedCredits?: number;
|
|
9045
|
+
agentId?: string;
|
|
8683
9046
|
agentUri?: string;
|
|
8684
9047
|
registryKey?: string;
|
|
8685
9048
|
networkId?: string;
|
|
@@ -9076,8 +9439,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9076
9439
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
9077
9440
|
registry?: string;
|
|
9078
9441
|
networkName?: string;
|
|
9079
|
-
agentId?: string;
|
|
9080
9442
|
estimatedCredits?: number;
|
|
9443
|
+
agentId?: string;
|
|
9081
9444
|
agentUri?: string;
|
|
9082
9445
|
registryKey?: string;
|
|
9083
9446
|
networkId?: string;
|
|
@@ -9108,8 +9471,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9108
9471
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
9109
9472
|
registry?: string;
|
|
9110
9473
|
networkName?: string;
|
|
9111
|
-
agentId?: string;
|
|
9112
9474
|
estimatedCredits?: number;
|
|
9475
|
+
agentId?: string;
|
|
9113
9476
|
agentUri?: string;
|
|
9114
9477
|
registryKey?: string;
|
|
9115
9478
|
networkId?: string;
|
|
@@ -9207,8 +9570,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9207
9570
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
9208
9571
|
registry?: string;
|
|
9209
9572
|
networkName?: string;
|
|
9210
|
-
agentId?: string;
|
|
9211
9573
|
estimatedCredits?: number;
|
|
9574
|
+
agentId?: string;
|
|
9212
9575
|
agentUri?: string;
|
|
9213
9576
|
registryKey?: string;
|
|
9214
9577
|
networkId?: string;
|
|
@@ -9239,8 +9602,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9239
9602
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
9240
9603
|
registry?: string;
|
|
9241
9604
|
networkName?: string;
|
|
9242
|
-
agentId?: string;
|
|
9243
9605
|
estimatedCredits?: number;
|
|
9606
|
+
agentId?: string;
|
|
9244
9607
|
agentUri?: string;
|
|
9245
9608
|
registryKey?: string;
|
|
9246
9609
|
networkId?: string;
|
|
@@ -9359,8 +9722,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9359
9722
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
9360
9723
|
registry?: string;
|
|
9361
9724
|
networkName?: string;
|
|
9362
|
-
agentId?: string;
|
|
9363
9725
|
estimatedCredits?: number;
|
|
9726
|
+
agentId?: string;
|
|
9364
9727
|
agentUri?: string;
|
|
9365
9728
|
registryKey?: string;
|
|
9366
9729
|
networkId?: string;
|
|
@@ -9392,8 +9755,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9392
9755
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
9393
9756
|
registry?: string;
|
|
9394
9757
|
networkName?: string;
|
|
9395
|
-
agentId?: string;
|
|
9396
9758
|
estimatedCredits?: number;
|
|
9759
|
+
agentId?: string;
|
|
9397
9760
|
agentUri?: string;
|
|
9398
9761
|
registryKey?: string;
|
|
9399
9762
|
networkId?: string;
|
|
@@ -9512,8 +9875,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9512
9875
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
9513
9876
|
registry?: string;
|
|
9514
9877
|
networkName?: string;
|
|
9515
|
-
agentId?: string;
|
|
9516
9878
|
estimatedCredits?: number;
|
|
9879
|
+
agentId?: string;
|
|
9517
9880
|
agentUri?: string;
|
|
9518
9881
|
registryKey?: string;
|
|
9519
9882
|
networkId?: string;
|
|
@@ -9545,8 +9908,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9545
9908
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
9546
9909
|
registry?: string;
|
|
9547
9910
|
networkName?: string;
|
|
9548
|
-
agentId?: string;
|
|
9549
9911
|
estimatedCredits?: number;
|
|
9912
|
+
agentId?: string;
|
|
9550
9913
|
agentUri?: string;
|
|
9551
9914
|
registryKey?: string;
|
|
9552
9915
|
networkId?: string;
|
|
@@ -9937,8 +10300,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9937
10300
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
9938
10301
|
registry?: string;
|
|
9939
10302
|
networkName?: string;
|
|
9940
|
-
agentId?: string;
|
|
9941
10303
|
estimatedCredits?: number;
|
|
10304
|
+
agentId?: string;
|
|
9942
10305
|
agentUri?: string;
|
|
9943
10306
|
registryKey?: string;
|
|
9944
10307
|
networkId?: string;
|
|
@@ -9969,8 +10332,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9969
10332
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
9970
10333
|
registry?: string;
|
|
9971
10334
|
networkName?: string;
|
|
9972
|
-
agentId?: string;
|
|
9973
10335
|
estimatedCredits?: number;
|
|
10336
|
+
agentId?: string;
|
|
9974
10337
|
agentUri?: string;
|
|
9975
10338
|
registryKey?: string;
|
|
9976
10339
|
networkId?: string;
|
|
@@ -10068,8 +10431,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10068
10431
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
10069
10432
|
registry?: string;
|
|
10070
10433
|
networkName?: string;
|
|
10071
|
-
agentId?: string;
|
|
10072
10434
|
estimatedCredits?: number;
|
|
10435
|
+
agentId?: string;
|
|
10073
10436
|
agentUri?: string;
|
|
10074
10437
|
registryKey?: string;
|
|
10075
10438
|
networkId?: string;
|
|
@@ -10100,8 +10463,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10100
10463
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
10101
10464
|
registry?: string;
|
|
10102
10465
|
networkName?: string;
|
|
10103
|
-
agentId?: string;
|
|
10104
10466
|
estimatedCredits?: number;
|
|
10467
|
+
agentId?: string;
|
|
10105
10468
|
agentUri?: string;
|
|
10106
10469
|
registryKey?: string;
|
|
10107
10470
|
networkId?: string;
|
|
@@ -10220,8 +10583,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10220
10583
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
10221
10584
|
registry?: string;
|
|
10222
10585
|
networkName?: string;
|
|
10223
|
-
agentId?: string;
|
|
10224
10586
|
estimatedCredits?: number;
|
|
10587
|
+
agentId?: string;
|
|
10225
10588
|
agentUri?: string;
|
|
10226
10589
|
registryKey?: string;
|
|
10227
10590
|
networkId?: string;
|
|
@@ -10253,8 +10616,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10253
10616
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
10254
10617
|
registry?: string;
|
|
10255
10618
|
networkName?: string;
|
|
10256
|
-
agentId?: string;
|
|
10257
10619
|
estimatedCredits?: number;
|
|
10620
|
+
agentId?: string;
|
|
10258
10621
|
agentUri?: string;
|
|
10259
10622
|
registryKey?: string;
|
|
10260
10623
|
networkId?: string;
|
|
@@ -10373,8 +10736,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10373
10736
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
10374
10737
|
registry?: string;
|
|
10375
10738
|
networkName?: string;
|
|
10376
|
-
agentId?: string;
|
|
10377
10739
|
estimatedCredits?: number;
|
|
10740
|
+
agentId?: string;
|
|
10378
10741
|
agentUri?: string;
|
|
10379
10742
|
registryKey?: string;
|
|
10380
10743
|
networkId?: string;
|
|
@@ -10406,8 +10769,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10406
10769
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
10407
10770
|
registry?: string;
|
|
10408
10771
|
networkName?: string;
|
|
10409
|
-
agentId?: string;
|
|
10410
10772
|
estimatedCredits?: number;
|
|
10773
|
+
agentId?: string;
|
|
10411
10774
|
agentUri?: string;
|
|
10412
10775
|
registryKey?: string;
|
|
10413
10776
|
networkId?: string;
|
|
@@ -10798,8 +11161,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10798
11161
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
10799
11162
|
registry?: string;
|
|
10800
11163
|
networkName?: string;
|
|
10801
|
-
agentId?: string;
|
|
10802
11164
|
estimatedCredits?: number;
|
|
11165
|
+
agentId?: string;
|
|
10803
11166
|
agentUri?: string;
|
|
10804
11167
|
registryKey?: string;
|
|
10805
11168
|
networkId?: string;
|
|
@@ -10830,8 +11193,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10830
11193
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
10831
11194
|
registry?: string;
|
|
10832
11195
|
networkName?: string;
|
|
10833
|
-
agentId?: string;
|
|
10834
11196
|
estimatedCredits?: number;
|
|
11197
|
+
agentId?: string;
|
|
10835
11198
|
agentUri?: string;
|
|
10836
11199
|
registryKey?: string;
|
|
10837
11200
|
networkId?: string;
|
|
@@ -10929,8 +11292,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10929
11292
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
10930
11293
|
registry?: string;
|
|
10931
11294
|
networkName?: string;
|
|
10932
|
-
agentId?: string;
|
|
10933
11295
|
estimatedCredits?: number;
|
|
11296
|
+
agentId?: string;
|
|
10934
11297
|
agentUri?: string;
|
|
10935
11298
|
registryKey?: string;
|
|
10936
11299
|
networkId?: string;
|
|
@@ -10961,8 +11324,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10961
11324
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
10962
11325
|
registry?: string;
|
|
10963
11326
|
networkName?: string;
|
|
10964
|
-
agentId?: string;
|
|
10965
11327
|
estimatedCredits?: number;
|
|
11328
|
+
agentId?: string;
|
|
10966
11329
|
agentUri?: string;
|
|
10967
11330
|
registryKey?: string;
|
|
10968
11331
|
networkId?: string;
|
|
@@ -11094,8 +11457,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11094
11457
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
11095
11458
|
registry?: string;
|
|
11096
11459
|
networkName?: string;
|
|
11097
|
-
agentId?: string;
|
|
11098
11460
|
estimatedCredits?: number;
|
|
11461
|
+
agentId?: string;
|
|
11099
11462
|
agentUri?: string;
|
|
11100
11463
|
registryKey?: string;
|
|
11101
11464
|
networkId?: string;
|
|
@@ -11127,8 +11490,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11127
11490
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
11128
11491
|
registry?: string;
|
|
11129
11492
|
networkName?: string;
|
|
11130
|
-
agentId?: string;
|
|
11131
11493
|
estimatedCredits?: number;
|
|
11494
|
+
agentId?: string;
|
|
11132
11495
|
agentUri?: string;
|
|
11133
11496
|
registryKey?: string;
|
|
11134
11497
|
networkId?: string;
|
|
@@ -11252,8 +11615,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11252
11615
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
11253
11616
|
registry?: string;
|
|
11254
11617
|
networkName?: string;
|
|
11255
|
-
agentId?: string;
|
|
11256
11618
|
estimatedCredits?: number;
|
|
11619
|
+
agentId?: string;
|
|
11257
11620
|
agentUri?: string;
|
|
11258
11621
|
registryKey?: string;
|
|
11259
11622
|
networkId?: string;
|
|
@@ -11285,8 +11648,8 @@ declare const registerAgentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11285
11648
|
status?: "error" | "created" | "pending" | "duplicate" | "skipped" | "updated";
|
|
11286
11649
|
registry?: string;
|
|
11287
11650
|
networkName?: string;
|
|
11288
|
-
agentId?: string;
|
|
11289
11651
|
estimatedCredits?: number;
|
|
11652
|
+
agentId?: string;
|
|
11290
11653
|
agentUri?: string;
|
|
11291
11654
|
registryKey?: string;
|
|
11292
11655
|
networkId?: string;
|
|
@@ -15053,9 +15416,6 @@ declare const x402CreditPurchaseResponseSchema: z.ZodObject<{
|
|
|
15053
15416
|
}, "strip", z.ZodTypeAny, {
|
|
15054
15417
|
accountId?: string;
|
|
15055
15418
|
success?: boolean;
|
|
15056
|
-
balance?: number;
|
|
15057
|
-
creditedCredits?: number;
|
|
15058
|
-
usdAmount?: number;
|
|
15059
15419
|
payment?: {
|
|
15060
15420
|
payer?: string;
|
|
15061
15421
|
requirement?: Record<string, JsonValue$1>;
|
|
@@ -15067,12 +15427,12 @@ declare const x402CreditPurchaseResponseSchema: z.ZodObject<{
|
|
|
15067
15427
|
errorReason?: string;
|
|
15068
15428
|
};
|
|
15069
15429
|
};
|
|
15070
|
-
}, {
|
|
15071
|
-
accountId?: string;
|
|
15072
|
-
success?: boolean;
|
|
15073
15430
|
balance?: number;
|
|
15074
15431
|
creditedCredits?: number;
|
|
15075
15432
|
usdAmount?: number;
|
|
15433
|
+
}, {
|
|
15434
|
+
accountId?: string;
|
|
15435
|
+
success?: boolean;
|
|
15076
15436
|
payment?: {
|
|
15077
15437
|
payer?: string;
|
|
15078
15438
|
requirement?: Record<string, JsonValue$1>;
|
|
@@ -15084,6 +15444,9 @@ declare const x402CreditPurchaseResponseSchema: z.ZodObject<{
|
|
|
15084
15444
|
errorReason?: string;
|
|
15085
15445
|
};
|
|
15086
15446
|
};
|
|
15447
|
+
balance?: number;
|
|
15448
|
+
creditedCredits?: number;
|
|
15449
|
+
usdAmount?: number;
|
|
15087
15450
|
}>;
|
|
15088
15451
|
declare const x402MinimumsResponseSchema: z.ZodObject<{
|
|
15089
15452
|
minimums: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -16178,17 +16541,17 @@ declare const adapterDetailsResponseSchema: z.ZodObject<{
|
|
|
16178
16541
|
notes: z.ZodOptional<z.ZodString>;
|
|
16179
16542
|
}, "strip", z.ZodTypeAny, {
|
|
16180
16543
|
transport?: string;
|
|
16181
|
-
supportsChat?: boolean;
|
|
16182
16544
|
delivery?: string;
|
|
16183
16545
|
streaming?: boolean;
|
|
16184
16546
|
requiresAuth?: string[];
|
|
16547
|
+
supportsChat?: boolean;
|
|
16185
16548
|
notes?: string;
|
|
16186
16549
|
}, {
|
|
16187
16550
|
transport?: string;
|
|
16188
|
-
supportsChat?: boolean;
|
|
16189
16551
|
delivery?: string;
|
|
16190
16552
|
streaming?: boolean;
|
|
16191
16553
|
requiresAuth?: string[];
|
|
16554
|
+
supportsChat?: boolean;
|
|
16192
16555
|
notes?: string;
|
|
16193
16556
|
}>>;
|
|
16194
16557
|
capabilities: z.ZodObject<{
|
|
@@ -16232,10 +16595,10 @@ declare const adapterDetailsResponseSchema: z.ZodObject<{
|
|
|
16232
16595
|
supportedProtocols?: string[];
|
|
16233
16596
|
chatProfile?: {
|
|
16234
16597
|
transport?: string;
|
|
16235
|
-
supportsChat?: boolean;
|
|
16236
16598
|
delivery?: string;
|
|
16237
16599
|
streaming?: boolean;
|
|
16238
16600
|
requiresAuth?: string[];
|
|
16601
|
+
supportsChat?: boolean;
|
|
16239
16602
|
notes?: string;
|
|
16240
16603
|
};
|
|
16241
16604
|
priority?: number;
|
|
@@ -16258,10 +16621,10 @@ declare const adapterDetailsResponseSchema: z.ZodObject<{
|
|
|
16258
16621
|
supportedProtocols?: string[];
|
|
16259
16622
|
chatProfile?: {
|
|
16260
16623
|
transport?: string;
|
|
16261
|
-
supportsChat?: boolean;
|
|
16262
16624
|
delivery?: string;
|
|
16263
16625
|
streaming?: boolean;
|
|
16264
16626
|
requiresAuth?: string[];
|
|
16627
|
+
supportsChat?: boolean;
|
|
16265
16628
|
notes?: string;
|
|
16266
16629
|
};
|
|
16267
16630
|
priority?: number;
|
|
@@ -16286,10 +16649,10 @@ declare const adapterDetailsResponseSchema: z.ZodObject<{
|
|
|
16286
16649
|
supportedProtocols?: string[];
|
|
16287
16650
|
chatProfile?: {
|
|
16288
16651
|
transport?: string;
|
|
16289
|
-
supportsChat?: boolean;
|
|
16290
16652
|
delivery?: string;
|
|
16291
16653
|
streaming?: boolean;
|
|
16292
16654
|
requiresAuth?: string[];
|
|
16655
|
+
supportsChat?: boolean;
|
|
16293
16656
|
notes?: string;
|
|
16294
16657
|
};
|
|
16295
16658
|
priority?: number;
|
|
@@ -16314,10 +16677,10 @@ declare const adapterDetailsResponseSchema: z.ZodObject<{
|
|
|
16314
16677
|
supportedProtocols?: string[];
|
|
16315
16678
|
chatProfile?: {
|
|
16316
16679
|
transport?: string;
|
|
16317
|
-
supportsChat?: boolean;
|
|
16318
16680
|
delivery?: string;
|
|
16319
16681
|
streaming?: boolean;
|
|
16320
16682
|
requiresAuth?: string[];
|
|
16683
|
+
supportsChat?: boolean;
|
|
16321
16684
|
notes?: string;
|
|
16322
16685
|
};
|
|
16323
16686
|
priority?: number;
|
|
@@ -37802,6 +38165,9 @@ interface AutoTopUpOptions {
|
|
|
37802
38165
|
interface HistoryAutoTopUpOptions extends AutoTopUpOptions {
|
|
37803
38166
|
hbarAmount?: number;
|
|
37804
38167
|
}
|
|
38168
|
+
type GuardContractVersion = 1;
|
|
38169
|
+
declare const GUARD_CANONICAL_PATH_PREFIX: "/api/guard";
|
|
38170
|
+
declare const GUARD_COMPAT_PATH_PREFIX: "/guard";
|
|
37805
38171
|
type GuardPlanId = z.infer<typeof guardPlanIdSchema>;
|
|
37806
38172
|
type GuardPrincipal = z.infer<typeof guardPrincipalSchema>;
|
|
37807
38173
|
type GuardEntitlements = z.infer<typeof guardEntitlementsSchema>;
|
|
@@ -37979,6 +38345,11 @@ type PopularSearchesResponse = z.infer<typeof popularResponseSchema>;
|
|
|
37979
38345
|
type ResolvedAgentResponse = z.infer<typeof resolveResponseSchema>;
|
|
37980
38346
|
type CreateSessionResponse = z.infer<typeof createSessionResponseSchema>;
|
|
37981
38347
|
type SendMessageResponse = z.infer<typeof sendMessageResponseSchema>;
|
|
38348
|
+
type ChatReadinessResponse = z.infer<typeof chatReadinessResponseSchema>;
|
|
38349
|
+
type ChatSessionEndResponse = z.infer<typeof chatSessionEndResponseSchema>;
|
|
38350
|
+
type ChatRouteSummary = z.infer<typeof chatRouteSummarySchema>;
|
|
38351
|
+
type ChatPaymentState = z.infer<typeof chatPaymentStateSchema>;
|
|
38352
|
+
type ChatRetryResponse = SendMessageResponse;
|
|
37982
38353
|
type SkillSecurityBreakdownResponse = z.infer<typeof skillSecurityBreakdownResponseSchema>;
|
|
37983
38354
|
type ChatHistorySnapshotResponse = z.infer<typeof chatHistorySnapshotResponseSchema>;
|
|
37984
38355
|
type ChatHistoryCompactionResponse = z.infer<typeof chatHistoryCompactionResponseSchema>;
|
|
@@ -38272,12 +38643,25 @@ type CreateSessionBasePayload = {
|
|
|
38272
38643
|
historyTtlSeconds?: number;
|
|
38273
38644
|
encryptionRequested?: boolean;
|
|
38274
38645
|
senderUaid?: string;
|
|
38646
|
+
visibility?: 'private' | 'public';
|
|
38275
38647
|
};
|
|
38276
38648
|
type CreateSessionRequestPayload = (CreateSessionBasePayload & {
|
|
38277
38649
|
uaid: string;
|
|
38278
38650
|
}) | (CreateSessionBasePayload & {
|
|
38279
38651
|
agentUrl: string;
|
|
38280
38652
|
});
|
|
38653
|
+
type ChatReadinessRequestPayload = {
|
|
38654
|
+
uaid: string;
|
|
38655
|
+
agentUrl?: never;
|
|
38656
|
+
} | {
|
|
38657
|
+
agentUrl: string;
|
|
38658
|
+
uaid?: never;
|
|
38659
|
+
};
|
|
38660
|
+
interface ChatRetryRequestPayload extends SendMessageBasePayload {
|
|
38661
|
+
sessionId: string;
|
|
38662
|
+
uaid?: string;
|
|
38663
|
+
agentUrl?: string;
|
|
38664
|
+
}
|
|
38281
38665
|
interface CompactHistoryRequestPayload {
|
|
38282
38666
|
sessionId: string;
|
|
38283
38667
|
preserveEntries?: number;
|
|
@@ -38291,6 +38675,9 @@ interface SendMessageBasePayload {
|
|
|
38291
38675
|
auth?: AgentAuthConfig;
|
|
38292
38676
|
cipherEnvelope?: CipherEnvelope;
|
|
38293
38677
|
encryption?: SendMessageEncryptionOptions;
|
|
38678
|
+
idempotencyKey?: string;
|
|
38679
|
+
senderUaid?: string;
|
|
38680
|
+
transport?: 'xmtp' | 'moltbook' | 'http' | 'a2a' | 'acp';
|
|
38294
38681
|
}
|
|
38295
38682
|
interface StartEncryptedChatSessionOptions {
|
|
38296
38683
|
uaid: string;
|
|
@@ -38485,9 +38872,12 @@ interface ConversationContextState {
|
|
|
38485
38872
|
|
|
38486
38873
|
interface RegistryBrokerChatApi {
|
|
38487
38874
|
start: (options: StartChatOptions) => Promise<ChatConversationHandle>;
|
|
38875
|
+
readiness: (payload: ChatReadinessRequestPayload) => Promise<ChatReadinessResponse>;
|
|
38488
38876
|
createSession: (payload: CreateSessionRequestPayload) => Promise<CreateSessionResponse>;
|
|
38489
38877
|
sendMessage: (payload: SendMessageRequestPayload) => Promise<SendMessageResponse>;
|
|
38490
|
-
|
|
38878
|
+
retryMessage: (messageId: string, payload: ChatRetryRequestPayload) => Promise<ChatRetryResponse>;
|
|
38879
|
+
cancelSession: (sessionId: string) => Promise<ChatSessionEndResponse>;
|
|
38880
|
+
endSession: (sessionId: string) => Promise<ChatSessionEndResponse>;
|
|
38491
38881
|
getHistory: (sessionId: string, options?: ChatHistoryFetchOptions) => Promise<ChatHistorySnapshotWithDecryptedEntries>;
|
|
38492
38882
|
compactHistory: (payload: CompactHistoryRequestPayload) => Promise<ChatHistoryCompactionResponse>;
|
|
38493
38883
|
getEncryptionStatus: (sessionId: string) => Promise<SessionEncryptionStatusResponse>;
|
|
@@ -38575,8 +38965,11 @@ declare class RegistryBrokerClient {
|
|
|
38575
38965
|
getDefaultHeaders(): Record<string, string>;
|
|
38576
38966
|
encryptionReady(): Promise<void>;
|
|
38577
38967
|
buildUrl(path: string): string;
|
|
38968
|
+
private buildRequestInit;
|
|
38578
38969
|
request(path: string, config: RequestConfig): Promise<Response>;
|
|
38970
|
+
requestAbsolute(url: string, config: RequestConfig): Promise<Response>;
|
|
38579
38971
|
requestJson<T extends JsonValue = JsonValue>(path: string, config: RequestConfig): Promise<T>;
|
|
38972
|
+
requestAbsoluteJson<T extends JsonValue = JsonValue>(url: string, config: RequestConfig): Promise<T>;
|
|
38580
38973
|
getAgentFeedback(uaid: string, options?: AgentFeedbackQuery): Promise<AgentFeedbackResponse>;
|
|
38581
38974
|
listAgentFeedbackIndex(options?: {
|
|
38582
38975
|
page?: number;
|
|
@@ -38780,6 +39173,7 @@ declare class RegistryBrokerClient {
|
|
|
38780
39173
|
resolveDecryptionContext(sessionId: string, options?: ChatHistoryFetchOptions): ConversationContextState | null;
|
|
38781
39174
|
decryptHistoryEntryFromContext(_sessionId: string, entry: ChatHistoryEntry, context: ConversationContextState): string | null;
|
|
38782
39175
|
createSession(payload: CreateSessionRequestPayload, allowHistoryAutoTopUp?: boolean): Promise<CreateSessionResponse>;
|
|
39176
|
+
checkChatReadiness(payload: ChatReadinessRequestPayload): Promise<ChatReadinessResponse>;
|
|
38783
39177
|
startChat(options: StartChatOptions): Promise<ChatConversationHandle>;
|
|
38784
39178
|
startConversation(options: StartConversationOptions): Promise<ChatConversationHandle>;
|
|
38785
39179
|
acceptConversation(options: AcceptConversationOptions): Promise<ChatConversationHandle>;
|
|
@@ -38787,7 +39181,9 @@ declare class RegistryBrokerClient {
|
|
|
38787
39181
|
fetchEncryptionStatus(sessionId: string): Promise<SessionEncryptionStatusResponse>;
|
|
38788
39182
|
postEncryptionHandshake(sessionId: string, payload: EncryptionHandshakeSubmissionPayload): Promise<EncryptionHandshakeRecord>;
|
|
38789
39183
|
sendMessage(payload: SendMessageRequestPayload): Promise<SendMessageResponse>;
|
|
38790
|
-
|
|
39184
|
+
retryMessage(messageId: string, payload: ChatRetryRequestPayload): Promise<ChatRetryResponse>;
|
|
39185
|
+
cancelSession(sessionId: string): Promise<ChatSessionEndResponse>;
|
|
39186
|
+
endSession(sessionId: string): Promise<ChatSessionEndResponse>;
|
|
38791
39187
|
createPlaintextConversationHandle(sessionId: string, summary: SessionEncryptionSummary | null, defaultAuth?: AgentAuthConfig, context?: {
|
|
38792
39188
|
uaid?: string;
|
|
38793
39189
|
agentUrl?: string;
|
|
@@ -38893,4 +39289,4 @@ declare const buildJobStatusMessage: (input: {
|
|
|
38893
39289
|
jobId: number;
|
|
38894
39290
|
}) => string;
|
|
38895
39291
|
|
|
38896
|
-
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 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, type GenerateEncryptionKeyPairOptions, type GuardAbomResponse, type GuardAbomSummary, type GuardAlertPreferences, type GuardAlertPreferencesUpdate, type GuardArtifactTimelineResponse, type GuardBalanceResponse, type GuardBucketBalance, 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 };
|
|
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 };
|