@zeroxyz/sdk 0.4.0 → 0.6.0

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.
@@ -140,6 +140,7 @@ type FetchOptions = {
140
140
  maxPay?: string;
141
141
  capabilityId?: string;
142
142
  searchId?: string;
143
+ fetchOrigin?: "from_search" | "direct_slug" | "direct_url";
143
144
  account?: LocalAccount;
144
145
  signal?: AbortSignal;
145
146
  timeoutMs?: number;
@@ -176,6 +177,12 @@ type FetchResult = {
176
177
  upstreamError?: UpstreamError;
177
178
  runTrackingSkipped?: string[];
178
179
  warnings?: string[];
180
+ capabilityResolution?: {
181
+ resolved: boolean;
182
+ capabilityId?: string;
183
+ capabilitySlug?: string;
184
+ matchedVia?: string;
185
+ };
179
186
  };
180
187
 
181
188
  declare const userWalletDtoSchema: z.ZodObject<{
@@ -434,11 +441,23 @@ type GetCapabilityOptions = {
434
441
  searchId?: string;
435
442
  signal?: AbortSignal;
436
443
  };
444
+ declare const resolveCapabilityResponseSchema: z.ZodObject<{
445
+ capabilityId: z.ZodString;
446
+ capabilitySlug: z.ZodString;
447
+ matchedVia: z.ZodEnum<{
448
+ exact: "exact";
449
+ template: "template";
450
+ }>;
451
+ }, z.core.$strip>;
452
+ type ResolveCapabilityResponse = z.infer<typeof resolveCapabilityResponseSchema>;
437
453
 
438
454
  declare class Capabilities {
439
455
  private readonly client;
440
456
  constructor(client: ZeroClient);
441
457
  get: (id: string, opts?: GetCapabilityOptions) => Promise<CapabilityResponse>;
458
+ resolveByUrl: (url: string, method: string, opts?: {
459
+ signal?: AbortSignal;
460
+ }) => Promise<ResolveCapabilityResponse | null>;
442
461
  }
443
462
 
444
463
  declare const createRunResponseSchema: z.ZodObject<{
@@ -487,6 +506,33 @@ declare const listRunsResponseSchema: z.ZodObject<{
487
506
  }, z.core.$strip>>;
488
507
  nextCursor: z.ZodNullable<z.ZodString>;
489
508
  }, z.core.$strip>;
509
+ declare const runDetailSchema: z.ZodObject<{
510
+ runId: z.ZodString;
511
+ status: z.ZodNullable<z.ZodNumber>;
512
+ latencyMs: z.ZodNullable<z.ZodNumber>;
513
+ errorClass: z.ZodNullable<z.ZodString>;
514
+ createdAt: z.ZodCoercedDate<unknown>;
515
+ cost: z.ZodNullable<z.ZodObject<{
516
+ amount: z.ZodString;
517
+ asset: z.ZodNullable<z.ZodString>;
518
+ }, z.core.$strip>>;
519
+ payment: z.ZodNullable<z.ZodObject<{
520
+ protocol: z.ZodString;
521
+ chain: z.ZodNullable<z.ZodString>;
522
+ txHash: z.ZodNullable<z.ZodString>;
523
+ mode: z.ZodNullable<z.ZodString>;
524
+ }, z.core.$strip>>;
525
+ capability: z.ZodObject<{
526
+ uid: z.ZodString;
527
+ slug: z.ZodString;
528
+ name: z.ZodString;
529
+ url: z.ZodString;
530
+ method: z.ZodString;
531
+ whatItDoes: z.ZodNullable<z.ZodString>;
532
+ tags: z.ZodArray<z.ZodString>;
533
+ }, z.core.$strip>;
534
+ reviewed: z.ZodBoolean;
535
+ }, z.core.$strip>;
490
536
  declare const createReviewResponseSchema: z.ZodObject<{
491
537
  reviewId: z.ZodString;
492
538
  recorded: z.ZodBoolean;
@@ -511,6 +557,7 @@ declare const batchReviewResponseSchema: z.ZodObject<{
511
557
  }, z.core.$strip>;
512
558
  }, z.core.$strip>;
513
559
  type RunListItem = z.infer<typeof runListItemSchema>;
560
+ type RunDetail = z.infer<typeof runDetailSchema>;
514
561
  type ListRunsResponse = z.infer<typeof listRunsResponseSchema>;
515
562
  type CreateRunResponse = z.infer<typeof createRunResponseSchema>;
516
563
  type CreateReviewResponse = z.infer<typeof createReviewResponseSchema>;
@@ -531,6 +578,7 @@ type CreateRunInput = {
531
578
  errorSnippetLength?: number;
532
579
  requestSchema?: Record<string, unknown>;
533
580
  responseSchema?: Record<string, unknown>;
581
+ fetchOrigin?: "from_search" | "direct_slug" | "direct_url";
534
582
  };
535
583
  type CreateReviewInput = {
536
584
  runId: string;
@@ -556,6 +604,9 @@ declare class Runs {
556
604
  list: (params?: ListRunsParams, opts?: {
557
605
  signal?: AbortSignal;
558
606
  }) => Promise<ListRunsResponse>;
607
+ get: (runId: string, opts?: {
608
+ signal?: AbortSignal;
609
+ }) => Promise<RunDetail>;
559
610
  review: (input: CreateReviewInput, opts?: {
560
611
  signal?: AbortSignal;
561
612
  }) => Promise<CreateReviewResponse>;
@@ -840,4 +891,4 @@ declare class ZeroClient {
840
891
  close: () => Promise<void>;
841
892
  }
842
893
 
843
- export { type BugReportCategory as $, type AccountCredentials as A, BugReports as B, type Credentials as C, Wallet as D, type ClientOptions as E, type FetchOptions as F, DEFAULT_BASE_URL as G, DEFAULT_MAX_RETRIES as H, DEFAULT_TIMEOUT_MS as I, type Logger as J, type LogLevel as K, type LogEvent as L, type MigrateAuthorization as M, type NoCredentials as N, type OnSessionRefreshed as O, type PaymentSessionMeta as P, type InternalUserDto as Q, Runs as R, type SessionCredentials as S, TEMPO_CHAIN_ID as T, type UpstreamError as U, type PublicUserDto as V, type WalletBalance as W, type UserWalletDto as X, type WelcomeBonusSummary as Y, ZeroClient as Z, BUG_REPORT_CATEGORIES as _, type SessionCredentialsInput as a, type CreateBugReportInput as a0, type CreateBugReportResponse as a1, type CapabilityResponse as a2, type GetCapabilityOptions as a3, type DevicePollResult as a4, type DeviceStartResponse as a5, type SessionExchangeResponse as a6, type BatchReviewResponse as a7, type CreateReviewInput as a8, type CreateReviewResponse as a9, type CreateRunInput as aa, type CreateRunResponse as ab, type ListRunsParams as ac, type ListRunsResponse as ad, type RunListItem as ae, type SearchOptions as af, type SearchResponse as ag, type SearchResult as ah, type FetchOutcome as b, type FetchResult as c, type SignMessageInput as d, type SignTransactionInput as e, type SignTypedDataInput as f, Auth as g, AuthDevice as h, Capabilities as i, type PayInput as j, type PaymentChain as k, type PaymentProtocol as l, type PaymentResult as m, type PayResult as n, type SessionReceiptPayload as o, coerceTempoChainId as p, FETCH_SKIP_REASONS as q, FETCH_WARNINGS as r, Payments as s, paymentHasAnchor as t, TEMPO_TESTNET_CHAIN_ID as u, tempoChainLabelFromId as v, type BalanceOptions as w, type BalanceReadError as x, type FundingUrlOptions as y, type MigrateAuthorizationResponse as z };
894
+ export { type BugReportCategory as $, type AccountCredentials as A, BugReports as B, type Credentials as C, Wallet as D, type ClientOptions as E, type FetchOptions as F, DEFAULT_BASE_URL as G, DEFAULT_MAX_RETRIES as H, DEFAULT_TIMEOUT_MS as I, type Logger as J, type LogLevel as K, type LogEvent as L, type MigrateAuthorization as M, type NoCredentials as N, type OnSessionRefreshed as O, type PaymentSessionMeta as P, type InternalUserDto as Q, Runs as R, type SessionCredentials as S, TEMPO_CHAIN_ID as T, type UpstreamError as U, type PublicUserDto as V, type WalletBalance as W, type UserWalletDto as X, type WelcomeBonusSummary as Y, ZeroClient as Z, BUG_REPORT_CATEGORIES as _, type SessionCredentialsInput as a, type CreateBugReportInput as a0, type CreateBugReportResponse as a1, type CapabilityResponse as a2, type GetCapabilityOptions as a3, type ResolveCapabilityResponse as a4, type DevicePollResult as a5, type DeviceStartResponse as a6, type SessionExchangeResponse as a7, type BatchReviewResponse as a8, type CreateReviewInput as a9, type CreateReviewResponse as aa, type CreateRunInput as ab, type CreateRunResponse as ac, type ListRunsParams as ad, type ListRunsResponse as ae, type RunDetail as af, type RunListItem as ag, type SearchOptions as ah, type SearchResponse as ai, type SearchResult as aj, type FetchOutcome as b, type FetchResult as c, type SignMessageInput as d, type SignTransactionInput as e, type SignTypedDataInput as f, Auth as g, AuthDevice as h, Capabilities as i, type PayInput as j, type PaymentChain as k, type PaymentProtocol as l, type PaymentResult as m, type PayResult as n, type SessionReceiptPayload as o, coerceTempoChainId as p, FETCH_SKIP_REASONS as q, FETCH_WARNINGS as r, Payments as s, paymentHasAnchor as t, TEMPO_TESTNET_CHAIN_ID as u, tempoChainLabelFromId as v, type BalanceOptions as w, type BalanceReadError as x, type FundingUrlOptions as y, type MigrateAuthorizationResponse as z };
@@ -140,6 +140,7 @@ type FetchOptions = {
140
140
  maxPay?: string;
141
141
  capabilityId?: string;
142
142
  searchId?: string;
143
+ fetchOrigin?: "from_search" | "direct_slug" | "direct_url";
143
144
  account?: LocalAccount;
144
145
  signal?: AbortSignal;
145
146
  timeoutMs?: number;
@@ -176,6 +177,12 @@ type FetchResult = {
176
177
  upstreamError?: UpstreamError;
177
178
  runTrackingSkipped?: string[];
178
179
  warnings?: string[];
180
+ capabilityResolution?: {
181
+ resolved: boolean;
182
+ capabilityId?: string;
183
+ capabilitySlug?: string;
184
+ matchedVia?: string;
185
+ };
179
186
  };
180
187
 
181
188
  declare const userWalletDtoSchema: z.ZodObject<{
@@ -434,11 +441,23 @@ type GetCapabilityOptions = {
434
441
  searchId?: string;
435
442
  signal?: AbortSignal;
436
443
  };
444
+ declare const resolveCapabilityResponseSchema: z.ZodObject<{
445
+ capabilityId: z.ZodString;
446
+ capabilitySlug: z.ZodString;
447
+ matchedVia: z.ZodEnum<{
448
+ exact: "exact";
449
+ template: "template";
450
+ }>;
451
+ }, z.core.$strip>;
452
+ type ResolveCapabilityResponse = z.infer<typeof resolveCapabilityResponseSchema>;
437
453
 
438
454
  declare class Capabilities {
439
455
  private readonly client;
440
456
  constructor(client: ZeroClient);
441
457
  get: (id: string, opts?: GetCapabilityOptions) => Promise<CapabilityResponse>;
458
+ resolveByUrl: (url: string, method: string, opts?: {
459
+ signal?: AbortSignal;
460
+ }) => Promise<ResolveCapabilityResponse | null>;
442
461
  }
443
462
 
444
463
  declare const createRunResponseSchema: z.ZodObject<{
@@ -487,6 +506,33 @@ declare const listRunsResponseSchema: z.ZodObject<{
487
506
  }, z.core.$strip>>;
488
507
  nextCursor: z.ZodNullable<z.ZodString>;
489
508
  }, z.core.$strip>;
509
+ declare const runDetailSchema: z.ZodObject<{
510
+ runId: z.ZodString;
511
+ status: z.ZodNullable<z.ZodNumber>;
512
+ latencyMs: z.ZodNullable<z.ZodNumber>;
513
+ errorClass: z.ZodNullable<z.ZodString>;
514
+ createdAt: z.ZodCoercedDate<unknown>;
515
+ cost: z.ZodNullable<z.ZodObject<{
516
+ amount: z.ZodString;
517
+ asset: z.ZodNullable<z.ZodString>;
518
+ }, z.core.$strip>>;
519
+ payment: z.ZodNullable<z.ZodObject<{
520
+ protocol: z.ZodString;
521
+ chain: z.ZodNullable<z.ZodString>;
522
+ txHash: z.ZodNullable<z.ZodString>;
523
+ mode: z.ZodNullable<z.ZodString>;
524
+ }, z.core.$strip>>;
525
+ capability: z.ZodObject<{
526
+ uid: z.ZodString;
527
+ slug: z.ZodString;
528
+ name: z.ZodString;
529
+ url: z.ZodString;
530
+ method: z.ZodString;
531
+ whatItDoes: z.ZodNullable<z.ZodString>;
532
+ tags: z.ZodArray<z.ZodString>;
533
+ }, z.core.$strip>;
534
+ reviewed: z.ZodBoolean;
535
+ }, z.core.$strip>;
490
536
  declare const createReviewResponseSchema: z.ZodObject<{
491
537
  reviewId: z.ZodString;
492
538
  recorded: z.ZodBoolean;
@@ -511,6 +557,7 @@ declare const batchReviewResponseSchema: z.ZodObject<{
511
557
  }, z.core.$strip>;
512
558
  }, z.core.$strip>;
513
559
  type RunListItem = z.infer<typeof runListItemSchema>;
560
+ type RunDetail = z.infer<typeof runDetailSchema>;
514
561
  type ListRunsResponse = z.infer<typeof listRunsResponseSchema>;
515
562
  type CreateRunResponse = z.infer<typeof createRunResponseSchema>;
516
563
  type CreateReviewResponse = z.infer<typeof createReviewResponseSchema>;
@@ -531,6 +578,7 @@ type CreateRunInput = {
531
578
  errorSnippetLength?: number;
532
579
  requestSchema?: Record<string, unknown>;
533
580
  responseSchema?: Record<string, unknown>;
581
+ fetchOrigin?: "from_search" | "direct_slug" | "direct_url";
534
582
  };
535
583
  type CreateReviewInput = {
536
584
  runId: string;
@@ -556,6 +604,9 @@ declare class Runs {
556
604
  list: (params?: ListRunsParams, opts?: {
557
605
  signal?: AbortSignal;
558
606
  }) => Promise<ListRunsResponse>;
607
+ get: (runId: string, opts?: {
608
+ signal?: AbortSignal;
609
+ }) => Promise<RunDetail>;
559
610
  review: (input: CreateReviewInput, opts?: {
560
611
  signal?: AbortSignal;
561
612
  }) => Promise<CreateReviewResponse>;
@@ -840,4 +891,4 @@ declare class ZeroClient {
840
891
  close: () => Promise<void>;
841
892
  }
842
893
 
843
- export { type BugReportCategory as $, type AccountCredentials as A, BugReports as B, type Credentials as C, Wallet as D, type ClientOptions as E, type FetchOptions as F, DEFAULT_BASE_URL as G, DEFAULT_MAX_RETRIES as H, DEFAULT_TIMEOUT_MS as I, type Logger as J, type LogLevel as K, type LogEvent as L, type MigrateAuthorization as M, type NoCredentials as N, type OnSessionRefreshed as O, type PaymentSessionMeta as P, type InternalUserDto as Q, Runs as R, type SessionCredentials as S, TEMPO_CHAIN_ID as T, type UpstreamError as U, type PublicUserDto as V, type WalletBalance as W, type UserWalletDto as X, type WelcomeBonusSummary as Y, ZeroClient as Z, BUG_REPORT_CATEGORIES as _, type SessionCredentialsInput as a, type CreateBugReportInput as a0, type CreateBugReportResponse as a1, type CapabilityResponse as a2, type GetCapabilityOptions as a3, type DevicePollResult as a4, type DeviceStartResponse as a5, type SessionExchangeResponse as a6, type BatchReviewResponse as a7, type CreateReviewInput as a8, type CreateReviewResponse as a9, type CreateRunInput as aa, type CreateRunResponse as ab, type ListRunsParams as ac, type ListRunsResponse as ad, type RunListItem as ae, type SearchOptions as af, type SearchResponse as ag, type SearchResult as ah, type FetchOutcome as b, type FetchResult as c, type SignMessageInput as d, type SignTransactionInput as e, type SignTypedDataInput as f, Auth as g, AuthDevice as h, Capabilities as i, type PayInput as j, type PaymentChain as k, type PaymentProtocol as l, type PaymentResult as m, type PayResult as n, type SessionReceiptPayload as o, coerceTempoChainId as p, FETCH_SKIP_REASONS as q, FETCH_WARNINGS as r, Payments as s, paymentHasAnchor as t, TEMPO_TESTNET_CHAIN_ID as u, tempoChainLabelFromId as v, type BalanceOptions as w, type BalanceReadError as x, type FundingUrlOptions as y, type MigrateAuthorizationResponse as z };
894
+ export { type BugReportCategory as $, type AccountCredentials as A, BugReports as B, type Credentials as C, Wallet as D, type ClientOptions as E, type FetchOptions as F, DEFAULT_BASE_URL as G, DEFAULT_MAX_RETRIES as H, DEFAULT_TIMEOUT_MS as I, type Logger as J, type LogLevel as K, type LogEvent as L, type MigrateAuthorization as M, type NoCredentials as N, type OnSessionRefreshed as O, type PaymentSessionMeta as P, type InternalUserDto as Q, Runs as R, type SessionCredentials as S, TEMPO_CHAIN_ID as T, type UpstreamError as U, type PublicUserDto as V, type WalletBalance as W, type UserWalletDto as X, type WelcomeBonusSummary as Y, ZeroClient as Z, BUG_REPORT_CATEGORIES as _, type SessionCredentialsInput as a, type CreateBugReportInput as a0, type CreateBugReportResponse as a1, type CapabilityResponse as a2, type GetCapabilityOptions as a3, type ResolveCapabilityResponse as a4, type DevicePollResult as a5, type DeviceStartResponse as a6, type SessionExchangeResponse as a7, type BatchReviewResponse as a8, type CreateReviewInput as a9, type CreateReviewResponse as aa, type CreateRunInput as ab, type CreateRunResponse as ac, type ListRunsParams as ad, type ListRunsResponse as ae, type RunDetail as af, type RunListItem as ag, type SearchOptions as ah, type SearchResponse as ai, type SearchResult as aj, type FetchOutcome as b, type FetchResult as c, type SignMessageInput as d, type SignTransactionInput as e, type SignTypedDataInput as f, Auth as g, AuthDevice as h, Capabilities as i, type PayInput as j, type PaymentChain as k, type PaymentProtocol as l, type PaymentResult as m, type PayResult as n, type SessionReceiptPayload as o, coerceTempoChainId as p, FETCH_SKIP_REASONS as q, FETCH_WARNINGS as r, Payments as s, paymentHasAnchor as t, TEMPO_TESTNET_CHAIN_ID as u, tempoChainLabelFromId as v, type BalanceOptions as w, type BalanceReadError as x, type FundingUrlOptions as y, type MigrateAuthorizationResponse as z };
package/dist/index.cjs CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunk5ZVIL7AZ_cjs = require('./chunk-5ZVIL7AZ.cjs');
3
+ var chunkUIK7QKNQ_cjs = require('./chunk-UIK7QKNQ.cjs');
4
4
 
5
5
  // src/status.ts
6
6
  var AVAILABILITY_BADGES = {
@@ -25,123 +25,139 @@ var preferHealthy = sortByHealth;
25
25
 
26
26
  Object.defineProperty(exports, "Auth", {
27
27
  enumerable: true,
28
- get: function () { return chunk5ZVIL7AZ_cjs.Auth; }
28
+ get: function () { return chunkUIK7QKNQ_cjs.Auth; }
29
29
  });
30
30
  Object.defineProperty(exports, "AuthDevice", {
31
31
  enumerable: true,
32
- get: function () { return chunk5ZVIL7AZ_cjs.AuthDevice; }
32
+ get: function () { return chunkUIK7QKNQ_cjs.AuthDevice; }
33
33
  });
34
34
  Object.defineProperty(exports, "BUG_REPORT_CATEGORIES", {
35
35
  enumerable: true,
36
- get: function () { return chunk5ZVIL7AZ_cjs.BUG_REPORT_CATEGORIES; }
36
+ get: function () { return chunkUIK7QKNQ_cjs.BUG_REPORT_CATEGORIES; }
37
37
  });
38
38
  Object.defineProperty(exports, "BugReports", {
39
39
  enumerable: true,
40
- get: function () { return chunk5ZVIL7AZ_cjs.BugReports; }
40
+ get: function () { return chunkUIK7QKNQ_cjs.BugReports; }
41
41
  });
42
42
  Object.defineProperty(exports, "Capabilities", {
43
43
  enumerable: true,
44
- get: function () { return chunk5ZVIL7AZ_cjs.Capabilities; }
44
+ get: function () { return chunkUIK7QKNQ_cjs.Capabilities; }
45
45
  });
46
46
  Object.defineProperty(exports, "DEFAULT_BASE_URL", {
47
47
  enumerable: true,
48
- get: function () { return chunk5ZVIL7AZ_cjs.DEFAULT_BASE_URL; }
48
+ get: function () { return chunkUIK7QKNQ_cjs.DEFAULT_BASE_URL; }
49
49
  });
50
50
  Object.defineProperty(exports, "DEFAULT_MAX_RETRIES", {
51
51
  enumerable: true,
52
- get: function () { return chunk5ZVIL7AZ_cjs.DEFAULT_MAX_RETRIES; }
52
+ get: function () { return chunkUIK7QKNQ_cjs.DEFAULT_MAX_RETRIES; }
53
53
  });
54
54
  Object.defineProperty(exports, "DEFAULT_TIMEOUT_MS", {
55
55
  enumerable: true,
56
- get: function () { return chunk5ZVIL7AZ_cjs.DEFAULT_TIMEOUT_MS; }
56
+ get: function () { return chunkUIK7QKNQ_cjs.DEFAULT_TIMEOUT_MS; }
57
57
  });
58
58
  Object.defineProperty(exports, "FETCH_SKIP_REASONS", {
59
59
  enumerable: true,
60
- get: function () { return chunk5ZVIL7AZ_cjs.FETCH_SKIP_REASONS; }
60
+ get: function () { return chunkUIK7QKNQ_cjs.FETCH_SKIP_REASONS; }
61
61
  });
62
62
  Object.defineProperty(exports, "FETCH_WARNINGS", {
63
63
  enumerable: true,
64
- get: function () { return chunk5ZVIL7AZ_cjs.FETCH_WARNINGS; }
64
+ get: function () { return chunkUIK7QKNQ_cjs.FETCH_WARNINGS; }
65
65
  });
66
66
  Object.defineProperty(exports, "Payments", {
67
67
  enumerable: true,
68
- get: function () { return chunk5ZVIL7AZ_cjs.Payments; }
68
+ get: function () { return chunkUIK7QKNQ_cjs.Payments; }
69
69
  });
70
70
  Object.defineProperty(exports, "Runs", {
71
71
  enumerable: true,
72
- get: function () { return chunk5ZVIL7AZ_cjs.Runs; }
72
+ get: function () { return chunkUIK7QKNQ_cjs.Runs; }
73
73
  });
74
74
  Object.defineProperty(exports, "SDK_VERSION", {
75
75
  enumerable: true,
76
- get: function () { return chunk5ZVIL7AZ_cjs.SDK_VERSION; }
76
+ get: function () { return chunkUIK7QKNQ_cjs.SDK_VERSION; }
77
77
  });
78
78
  Object.defineProperty(exports, "TEMPO_CHAIN_ID", {
79
79
  enumerable: true,
80
- get: function () { return chunk5ZVIL7AZ_cjs.TEMPO_CHAIN_ID; }
80
+ get: function () { return chunkUIK7QKNQ_cjs.TEMPO_CHAIN_ID; }
81
81
  });
82
82
  Object.defineProperty(exports, "TEMPO_TESTNET_CHAIN_ID", {
83
83
  enumerable: true,
84
- get: function () { return chunk5ZVIL7AZ_cjs.TEMPO_TESTNET_CHAIN_ID; }
84
+ get: function () { return chunkUIK7QKNQ_cjs.TEMPO_TESTNET_CHAIN_ID; }
85
85
  });
86
86
  Object.defineProperty(exports, "Wallet", {
87
87
  enumerable: true,
88
- get: function () { return chunk5ZVIL7AZ_cjs.Wallet; }
88
+ get: function () { return chunkUIK7QKNQ_cjs.Wallet; }
89
89
  });
90
90
  Object.defineProperty(exports, "ZeroApiError", {
91
91
  enumerable: true,
92
- get: function () { return chunk5ZVIL7AZ_cjs.ZeroApiError; }
92
+ get: function () { return chunkUIK7QKNQ_cjs.ZeroApiError; }
93
93
  });
94
94
  Object.defineProperty(exports, "ZeroAuthError", {
95
95
  enumerable: true,
96
- get: function () { return chunk5ZVIL7AZ_cjs.ZeroAuthError; }
96
+ get: function () { return chunkUIK7QKNQ_cjs.ZeroAuthError; }
97
97
  });
98
98
  Object.defineProperty(exports, "ZeroClient", {
99
99
  enumerable: true,
100
- get: function () { return chunk5ZVIL7AZ_cjs.ZeroClient; }
100
+ get: function () { return chunkUIK7QKNQ_cjs.ZeroClient; }
101
101
  });
102
102
  Object.defineProperty(exports, "ZeroConfigurationError", {
103
103
  enumerable: true,
104
- get: function () { return chunk5ZVIL7AZ_cjs.ZeroConfigurationError; }
104
+ get: function () { return chunkUIK7QKNQ_cjs.ZeroConfigurationError; }
105
105
  });
106
106
  Object.defineProperty(exports, "ZeroError", {
107
107
  enumerable: true,
108
- get: function () { return chunk5ZVIL7AZ_cjs.ZeroError; }
108
+ get: function () { return chunkUIK7QKNQ_cjs.ZeroError; }
109
109
  });
110
110
  Object.defineProperty(exports, "ZeroPaymentError", {
111
111
  enumerable: true,
112
- get: function () { return chunk5ZVIL7AZ_cjs.ZeroPaymentError; }
112
+ get: function () { return chunkUIK7QKNQ_cjs.ZeroPaymentError; }
113
113
  });
114
114
  Object.defineProperty(exports, "ZeroSessionCloseFailedError", {
115
115
  enumerable: true,
116
- get: function () { return chunk5ZVIL7AZ_cjs.ZeroSessionCloseFailedError; }
116
+ get: function () { return chunkUIK7QKNQ_cjs.ZeroSessionCloseFailedError; }
117
117
  });
118
118
  Object.defineProperty(exports, "ZeroTimeoutError", {
119
119
  enumerable: true,
120
- get: function () { return chunk5ZVIL7AZ_cjs.ZeroTimeoutError; }
120
+ get: function () { return chunkUIK7QKNQ_cjs.ZeroTimeoutError; }
121
121
  });
122
122
  Object.defineProperty(exports, "ZeroValidationError", {
123
123
  enumerable: true,
124
- get: function () { return chunk5ZVIL7AZ_cjs.ZeroValidationError; }
124
+ get: function () { return chunkUIK7QKNQ_cjs.ZeroValidationError; }
125
125
  });
126
126
  Object.defineProperty(exports, "ZeroWalletError", {
127
127
  enumerable: true,
128
- get: function () { return chunk5ZVIL7AZ_cjs.ZeroWalletError; }
128
+ get: function () { return chunkUIK7QKNQ_cjs.ZeroWalletError; }
129
+ });
130
+ Object.defineProperty(exports, "asSchemaNode", {
131
+ enumerable: true,
132
+ get: function () { return chunkUIK7QKNQ_cjs.asSchemaNode; }
129
133
  });
130
134
  Object.defineProperty(exports, "coerceTempoChainId", {
131
135
  enumerable: true,
132
- get: function () { return chunk5ZVIL7AZ_cjs.coerceTempoChainId; }
136
+ get: function () { return chunkUIK7QKNQ_cjs.coerceTempoChainId; }
133
137
  });
134
138
  Object.defineProperty(exports, "createManagedAccount", {
135
139
  enumerable: true,
136
- get: function () { return chunk5ZVIL7AZ_cjs.createManagedAccount; }
140
+ get: function () { return chunkUIK7QKNQ_cjs.createManagedAccount; }
141
+ });
142
+ Object.defineProperty(exports, "extractInputEnvelope", {
143
+ enumerable: true,
144
+ get: function () { return chunkUIK7QKNQ_cjs.extractInputEnvelope; }
145
+ });
146
+ Object.defineProperty(exports, "normalizeTransportEnvelopeRequest", {
147
+ enumerable: true,
148
+ get: function () { return chunkUIK7QKNQ_cjs.normalizeTransportEnvelopeRequest; }
137
149
  });
138
150
  Object.defineProperty(exports, "paymentHasAnchor", {
139
151
  enumerable: true,
140
- get: function () { return chunk5ZVIL7AZ_cjs.paymentHasAnchor; }
152
+ get: function () { return chunkUIK7QKNQ_cjs.paymentHasAnchor; }
141
153
  });
142
154
  Object.defineProperty(exports, "tempoChainLabelFromId", {
143
155
  enumerable: true,
144
- get: function () { return chunk5ZVIL7AZ_cjs.tempoChainLabelFromId; }
156
+ get: function () { return chunkUIK7QKNQ_cjs.tempoChainLabelFromId; }
157
+ });
158
+ Object.defineProperty(exports, "unwrapTransportEnvelope", {
159
+ enumerable: true,
160
+ get: function () { return chunkUIK7QKNQ_cjs.unwrapTransportEnvelope; }
145
161
  });
146
162
  exports.AVAILABILITY_BADGES = AVAILABILITY_BADGES;
147
163
  exports.preferHealthy = preferHealthy;
package/dist/index.d.cts CHANGED
@@ -1,5 +1,5 @@
1
- import { Z as ZeroClient, P as PaymentSessionMeta } from './client-qacxAiJ5.cjs';
2
- export { A as AccountCredentials, g as Auth, h as AuthDevice, _ as BUG_REPORT_CATEGORIES, w as BalanceOptions, x as BalanceReadError, a7 as BatchReviewResponse, $ as BugReportCategory, B as BugReports, i as Capabilities, a2 as CapabilityResponse, E as ClientOptions, a0 as CreateBugReportInput, a1 as CreateBugReportResponse, a8 as CreateReviewInput, a9 as CreateReviewResponse, aa as CreateRunInput, ab as CreateRunResponse, C as Credentials, G as DEFAULT_BASE_URL, H as DEFAULT_MAX_RETRIES, I as DEFAULT_TIMEOUT_MS, a4 as DevicePollResult, a5 as DeviceStartResponse, q as FETCH_SKIP_REASONS, r as FETCH_WARNINGS, F as FetchOptions, b as FetchOutcome, c as FetchResult, y as FundingUrlOptions, a3 as GetCapabilityOptions, Q as InternalUserDto, ac as ListRunsParams, ad as ListRunsResponse, L as LogEvent, K as LogLevel, J as Logger, M as MigrateAuthorization, z as MigrateAuthorizationResponse, N as NoCredentials, O as OnSessionRefreshed, j as PayInput, n as PayResult, k as PaymentChain, l as PaymentProtocol, m as PaymentResult, s as Payments, V as PublicUserDto, ae as RunListItem, R as Runs, af as SearchOptions, ag as SearchResponse, ah as SearchResult, S as SessionCredentials, a as SessionCredentialsInput, a6 as SessionExchangeResponse, o as SessionReceiptPayload, d as SignMessageInput, e as SignTransactionInput, f as SignTypedDataInput, T as TEMPO_CHAIN_ID, u as TEMPO_TESTNET_CHAIN_ID, U as UpstreamError, X as UserWalletDto, D as Wallet, W as WalletBalance, Y as WelcomeBonusSummary, p as coerceTempoChainId, t as paymentHasAnchor, v as tempoChainLabelFromId } from './client-qacxAiJ5.cjs';
1
+ import { Z as ZeroClient, P as PaymentSessionMeta } from './client-CDk1PVU-.cjs';
2
+ export { A as AccountCredentials, g as Auth, h as AuthDevice, _ as BUG_REPORT_CATEGORIES, w as BalanceOptions, x as BalanceReadError, a8 as BatchReviewResponse, $ as BugReportCategory, B as BugReports, i as Capabilities, a2 as CapabilityResponse, E as ClientOptions, a0 as CreateBugReportInput, a1 as CreateBugReportResponse, a9 as CreateReviewInput, aa as CreateReviewResponse, ab as CreateRunInput, ac as CreateRunResponse, C as Credentials, G as DEFAULT_BASE_URL, H as DEFAULT_MAX_RETRIES, I as DEFAULT_TIMEOUT_MS, a5 as DevicePollResult, a6 as DeviceStartResponse, q as FETCH_SKIP_REASONS, r as FETCH_WARNINGS, F as FetchOptions, b as FetchOutcome, c as FetchResult, y as FundingUrlOptions, a3 as GetCapabilityOptions, Q as InternalUserDto, ad as ListRunsParams, ae as ListRunsResponse, L as LogEvent, K as LogLevel, J as Logger, M as MigrateAuthorization, z as MigrateAuthorizationResponse, N as NoCredentials, O as OnSessionRefreshed, j as PayInput, n as PayResult, k as PaymentChain, l as PaymentProtocol, m as PaymentResult, s as Payments, V as PublicUserDto, a4 as ResolveCapabilityResponse, af as RunDetail, ag as RunListItem, R as Runs, ah as SearchOptions, ai as SearchResponse, aj as SearchResult, S as SessionCredentials, a as SessionCredentialsInput, a7 as SessionExchangeResponse, o as SessionReceiptPayload, d as SignMessageInput, e as SignTransactionInput, f as SignTypedDataInput, T as TEMPO_CHAIN_ID, u as TEMPO_TESTNET_CHAIN_ID, U as UpstreamError, X as UserWalletDto, D as Wallet, W as WalletBalance, Y as WelcomeBonusSummary, p as coerceTempoChainId, t as paymentHasAnchor, v as tempoChainLabelFromId } from './client-CDk1PVU-.cjs';
3
3
  import { Address, LocalAccount } from 'viem';
4
4
  import { z } from 'zod';
5
5
 
@@ -61,6 +61,61 @@ declare class ZeroConfigurationError extends ZeroError {
61
61
  constructor(message: string, options?: ZeroErrorOptions);
62
62
  }
63
63
 
64
+ /**
65
+ * Zero's HTTP-transport envelope — `{ input: { type: "http", method, queryParams,
66
+ * body } }` — is the proxy descriptor a cap stores, NOT the user-facing request.
67
+ * Some caps (esp. x402 GET endpoints mis-indexed with an MPP-style envelope)
68
+ * carry it in their `bodySchema`/`example`, which leads agents to send the whole
69
+ * wrapper as a body → the SDK infers POST → the GET endpoint 404s.
70
+ *
71
+ * These pure helpers unwrap the envelope so BOTH the CLI display AND SDK-direct
72
+ * partners read the real request shape (queryParams for reads, body for writes).
73
+ * Transport-schema logic belongs in the SDK (the CLI is a thin shell over it);
74
+ * the CLI imports these instead of keeping its own copy.
75
+ */
76
+ type JsonSchemaNode = Record<string, unknown>;
77
+ declare const asSchemaNode: (v: unknown) => JsonSchemaNode | null;
78
+ /**
79
+ * The JSON Schema nodes (each carrying `.properties`/`.required`) for the query
80
+ * params and body a cap accepts. Handles two shapes:
81
+ * - wrapped envelope: `{ properties: { input: { properties: { queryParams, body } } } }`
82
+ * - flat: `{ type, required, properties: {...} }` — routed to queryParams for
83
+ * GET-like verbs (GET/DELETE), body otherwise.
84
+ */
85
+ declare const extractInputEnvelope: (bodySchema: Record<string, unknown> | null | undefined, method: string) => {
86
+ queryParams?: JsonSchemaNode;
87
+ body?: JsonSchemaNode;
88
+ };
89
+ /**
90
+ * Unwrap a stored example request from the HTTP-transport envelope to the
91
+ * meaningful inner payload — body for writes, queryParams for reads. Returns the
92
+ * request unchanged when it isn't an envelope, or null when the envelope carries
93
+ * no real input (e.g. a GET with empty queryParams).
94
+ */
95
+ declare const unwrapTransportEnvelope: (request: unknown) => unknown;
96
+ /**
97
+ * Normalize a request whose body is Zero's HTTP-transport envelope
98
+ * (`{ input: { type:"http", method, queryParams, body } }`) into a real wire
99
+ * request. The envelope is never a wire format (MPP/x402 both call the endpoint
100
+ * URL directly, layering payment), so an agent that sends the envelope as a body
101
+ * would otherwise make the SDK infer POST and 404 a GET endpoint.
102
+ *
103
+ * The verb is CARRIED, not inferred: explicit `method` wins, else the envelope's
104
+ * `input.method`, else body-presence. For GET-like verbs the envelope's
105
+ * queryParams move onto the URL query string and the body is dropped; for writes
106
+ * the inner `input.body` becomes the wire body. Non-envelope requests (and
107
+ * non-string bodies) pass through untouched so `method` stays undefined and the
108
+ * caller's own inference applies.
109
+ */
110
+ declare const normalizeTransportEnvelopeRequest: (url: string, opts: {
111
+ method?: string;
112
+ body?: string | Uint8Array;
113
+ }) => {
114
+ url: string;
115
+ method?: string;
116
+ body?: string | Uint8Array;
117
+ };
118
+
64
119
  declare const ratingSchema: z.ZodObject<{
65
120
  score: z.ZodString;
66
121
  successRate: z.ZodString;
@@ -145,4 +200,4 @@ declare const preferHealthy: <T extends {
145
200
 
146
201
  declare const SDK_VERSION: string;
147
202
 
148
- export { AVAILABILITY_BADGES, type AvailabilityBadge, type AvailabilityStatus, PaymentSessionMeta, type Rating, SDK_VERSION, ZeroApiError, ZeroAuthError, ZeroClient, ZeroConfigurationError, ZeroError, type ZeroErrorCode, ZeroPaymentError, ZeroSessionCloseFailedError, ZeroTimeoutError, ZeroValidationError, ZeroWalletError, createManagedAccount, preferHealthy, sortByHealth };
203
+ export { AVAILABILITY_BADGES, type AvailabilityBadge, type AvailabilityStatus, type JsonSchemaNode, PaymentSessionMeta, type Rating, SDK_VERSION, ZeroApiError, ZeroAuthError, ZeroClient, ZeroConfigurationError, ZeroError, type ZeroErrorCode, ZeroPaymentError, ZeroSessionCloseFailedError, ZeroTimeoutError, ZeroValidationError, ZeroWalletError, asSchemaNode, createManagedAccount, extractInputEnvelope, normalizeTransportEnvelopeRequest, preferHealthy, sortByHealth, unwrapTransportEnvelope };
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { Z as ZeroClient, P as PaymentSessionMeta } from './client-qacxAiJ5.js';
2
- export { A as AccountCredentials, g as Auth, h as AuthDevice, _ as BUG_REPORT_CATEGORIES, w as BalanceOptions, x as BalanceReadError, a7 as BatchReviewResponse, $ as BugReportCategory, B as BugReports, i as Capabilities, a2 as CapabilityResponse, E as ClientOptions, a0 as CreateBugReportInput, a1 as CreateBugReportResponse, a8 as CreateReviewInput, a9 as CreateReviewResponse, aa as CreateRunInput, ab as CreateRunResponse, C as Credentials, G as DEFAULT_BASE_URL, H as DEFAULT_MAX_RETRIES, I as DEFAULT_TIMEOUT_MS, a4 as DevicePollResult, a5 as DeviceStartResponse, q as FETCH_SKIP_REASONS, r as FETCH_WARNINGS, F as FetchOptions, b as FetchOutcome, c as FetchResult, y as FundingUrlOptions, a3 as GetCapabilityOptions, Q as InternalUserDto, ac as ListRunsParams, ad as ListRunsResponse, L as LogEvent, K as LogLevel, J as Logger, M as MigrateAuthorization, z as MigrateAuthorizationResponse, N as NoCredentials, O as OnSessionRefreshed, j as PayInput, n as PayResult, k as PaymentChain, l as PaymentProtocol, m as PaymentResult, s as Payments, V as PublicUserDto, ae as RunListItem, R as Runs, af as SearchOptions, ag as SearchResponse, ah as SearchResult, S as SessionCredentials, a as SessionCredentialsInput, a6 as SessionExchangeResponse, o as SessionReceiptPayload, d as SignMessageInput, e as SignTransactionInput, f as SignTypedDataInput, T as TEMPO_CHAIN_ID, u as TEMPO_TESTNET_CHAIN_ID, U as UpstreamError, X as UserWalletDto, D as Wallet, W as WalletBalance, Y as WelcomeBonusSummary, p as coerceTempoChainId, t as paymentHasAnchor, v as tempoChainLabelFromId } from './client-qacxAiJ5.js';
1
+ import { Z as ZeroClient, P as PaymentSessionMeta } from './client-CDk1PVU-.js';
2
+ export { A as AccountCredentials, g as Auth, h as AuthDevice, _ as BUG_REPORT_CATEGORIES, w as BalanceOptions, x as BalanceReadError, a8 as BatchReviewResponse, $ as BugReportCategory, B as BugReports, i as Capabilities, a2 as CapabilityResponse, E as ClientOptions, a0 as CreateBugReportInput, a1 as CreateBugReportResponse, a9 as CreateReviewInput, aa as CreateReviewResponse, ab as CreateRunInput, ac as CreateRunResponse, C as Credentials, G as DEFAULT_BASE_URL, H as DEFAULT_MAX_RETRIES, I as DEFAULT_TIMEOUT_MS, a5 as DevicePollResult, a6 as DeviceStartResponse, q as FETCH_SKIP_REASONS, r as FETCH_WARNINGS, F as FetchOptions, b as FetchOutcome, c as FetchResult, y as FundingUrlOptions, a3 as GetCapabilityOptions, Q as InternalUserDto, ad as ListRunsParams, ae as ListRunsResponse, L as LogEvent, K as LogLevel, J as Logger, M as MigrateAuthorization, z as MigrateAuthorizationResponse, N as NoCredentials, O as OnSessionRefreshed, j as PayInput, n as PayResult, k as PaymentChain, l as PaymentProtocol, m as PaymentResult, s as Payments, V as PublicUserDto, a4 as ResolveCapabilityResponse, af as RunDetail, ag as RunListItem, R as Runs, ah as SearchOptions, ai as SearchResponse, aj as SearchResult, S as SessionCredentials, a as SessionCredentialsInput, a7 as SessionExchangeResponse, o as SessionReceiptPayload, d as SignMessageInput, e as SignTransactionInput, f as SignTypedDataInput, T as TEMPO_CHAIN_ID, u as TEMPO_TESTNET_CHAIN_ID, U as UpstreamError, X as UserWalletDto, D as Wallet, W as WalletBalance, Y as WelcomeBonusSummary, p as coerceTempoChainId, t as paymentHasAnchor, v as tempoChainLabelFromId } from './client-CDk1PVU-.js';
3
3
  import { Address, LocalAccount } from 'viem';
4
4
  import { z } from 'zod';
5
5
 
@@ -61,6 +61,61 @@ declare class ZeroConfigurationError extends ZeroError {
61
61
  constructor(message: string, options?: ZeroErrorOptions);
62
62
  }
63
63
 
64
+ /**
65
+ * Zero's HTTP-transport envelope — `{ input: { type: "http", method, queryParams,
66
+ * body } }` — is the proxy descriptor a cap stores, NOT the user-facing request.
67
+ * Some caps (esp. x402 GET endpoints mis-indexed with an MPP-style envelope)
68
+ * carry it in their `bodySchema`/`example`, which leads agents to send the whole
69
+ * wrapper as a body → the SDK infers POST → the GET endpoint 404s.
70
+ *
71
+ * These pure helpers unwrap the envelope so BOTH the CLI display AND SDK-direct
72
+ * partners read the real request shape (queryParams for reads, body for writes).
73
+ * Transport-schema logic belongs in the SDK (the CLI is a thin shell over it);
74
+ * the CLI imports these instead of keeping its own copy.
75
+ */
76
+ type JsonSchemaNode = Record<string, unknown>;
77
+ declare const asSchemaNode: (v: unknown) => JsonSchemaNode | null;
78
+ /**
79
+ * The JSON Schema nodes (each carrying `.properties`/`.required`) for the query
80
+ * params and body a cap accepts. Handles two shapes:
81
+ * - wrapped envelope: `{ properties: { input: { properties: { queryParams, body } } } }`
82
+ * - flat: `{ type, required, properties: {...} }` — routed to queryParams for
83
+ * GET-like verbs (GET/DELETE), body otherwise.
84
+ */
85
+ declare const extractInputEnvelope: (bodySchema: Record<string, unknown> | null | undefined, method: string) => {
86
+ queryParams?: JsonSchemaNode;
87
+ body?: JsonSchemaNode;
88
+ };
89
+ /**
90
+ * Unwrap a stored example request from the HTTP-transport envelope to the
91
+ * meaningful inner payload — body for writes, queryParams for reads. Returns the
92
+ * request unchanged when it isn't an envelope, or null when the envelope carries
93
+ * no real input (e.g. a GET with empty queryParams).
94
+ */
95
+ declare const unwrapTransportEnvelope: (request: unknown) => unknown;
96
+ /**
97
+ * Normalize a request whose body is Zero's HTTP-transport envelope
98
+ * (`{ input: { type:"http", method, queryParams, body } }`) into a real wire
99
+ * request. The envelope is never a wire format (MPP/x402 both call the endpoint
100
+ * URL directly, layering payment), so an agent that sends the envelope as a body
101
+ * would otherwise make the SDK infer POST and 404 a GET endpoint.
102
+ *
103
+ * The verb is CARRIED, not inferred: explicit `method` wins, else the envelope's
104
+ * `input.method`, else body-presence. For GET-like verbs the envelope's
105
+ * queryParams move onto the URL query string and the body is dropped; for writes
106
+ * the inner `input.body` becomes the wire body. Non-envelope requests (and
107
+ * non-string bodies) pass through untouched so `method` stays undefined and the
108
+ * caller's own inference applies.
109
+ */
110
+ declare const normalizeTransportEnvelopeRequest: (url: string, opts: {
111
+ method?: string;
112
+ body?: string | Uint8Array;
113
+ }) => {
114
+ url: string;
115
+ method?: string;
116
+ body?: string | Uint8Array;
117
+ };
118
+
64
119
  declare const ratingSchema: z.ZodObject<{
65
120
  score: z.ZodString;
66
121
  successRate: z.ZodString;
@@ -145,4 +200,4 @@ declare const preferHealthy: <T extends {
145
200
 
146
201
  declare const SDK_VERSION: string;
147
202
 
148
- export { AVAILABILITY_BADGES, type AvailabilityBadge, type AvailabilityStatus, PaymentSessionMeta, type Rating, SDK_VERSION, ZeroApiError, ZeroAuthError, ZeroClient, ZeroConfigurationError, ZeroError, type ZeroErrorCode, ZeroPaymentError, ZeroSessionCloseFailedError, ZeroTimeoutError, ZeroValidationError, ZeroWalletError, createManagedAccount, preferHealthy, sortByHealth };
203
+ export { AVAILABILITY_BADGES, type AvailabilityBadge, type AvailabilityStatus, type JsonSchemaNode, PaymentSessionMeta, type Rating, SDK_VERSION, ZeroApiError, ZeroAuthError, ZeroClient, ZeroConfigurationError, ZeroError, type ZeroErrorCode, ZeroPaymentError, ZeroSessionCloseFailedError, ZeroTimeoutError, ZeroValidationError, ZeroWalletError, asSchemaNode, createManagedAccount, extractInputEnvelope, normalizeTransportEnvelopeRequest, preferHealthy, sortByHealth, unwrapTransportEnvelope };
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- export { Auth, AuthDevice, BUG_REPORT_CATEGORIES, BugReports, Capabilities, DEFAULT_BASE_URL, DEFAULT_MAX_RETRIES, DEFAULT_TIMEOUT_MS, FETCH_SKIP_REASONS, FETCH_WARNINGS, Payments, Runs, SDK_VERSION, TEMPO_CHAIN_ID, TEMPO_TESTNET_CHAIN_ID, Wallet, ZeroApiError, ZeroAuthError, ZeroClient, ZeroConfigurationError, ZeroError, ZeroPaymentError, ZeroSessionCloseFailedError, ZeroTimeoutError, ZeroValidationError, ZeroWalletError, coerceTempoChainId, createManagedAccount, paymentHasAnchor, tempoChainLabelFromId } from './chunk-RPL7VC32.js';
1
+ export { Auth, AuthDevice, BUG_REPORT_CATEGORIES, BugReports, Capabilities, DEFAULT_BASE_URL, DEFAULT_MAX_RETRIES, DEFAULT_TIMEOUT_MS, FETCH_SKIP_REASONS, FETCH_WARNINGS, Payments, Runs, SDK_VERSION, TEMPO_CHAIN_ID, TEMPO_TESTNET_CHAIN_ID, Wallet, ZeroApiError, ZeroAuthError, ZeroClient, ZeroConfigurationError, ZeroError, ZeroPaymentError, ZeroSessionCloseFailedError, ZeroTimeoutError, ZeroValidationError, ZeroWalletError, asSchemaNode, coerceTempoChainId, createManagedAccount, extractInputEnvelope, normalizeTransportEnvelopeRequest, paymentHasAnchor, tempoChainLabelFromId, unwrapTransportEnvelope } from './chunk-3YKWO4B2.js';
2
2
 
3
3
  // src/status.ts
4
4
  var AVAILABILITY_BADGES = {
package/dist/testing.cjs CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunk5ZVIL7AZ_cjs = require('./chunk-5ZVIL7AZ.cjs');
3
+ var chunkUIK7QKNQ_cjs = require('./chunk-UIK7QKNQ.cjs');
4
4
 
5
5
  // src/testing/index.ts
6
6
  var FALLBACK_HANDLER = (request) => {
@@ -34,7 +34,7 @@ var respondJson = (body, init) => new Response(JSON.stringify(body), {
34
34
  });
35
35
  var createTestClient = (opts = {}) => {
36
36
  const { routes, ...rest } = opts;
37
- return new chunk5ZVIL7AZ_cjs.ZeroClient({
37
+ return new chunkUIK7QKNQ_cjs.ZeroClient({
38
38
  ...rest,
39
39
  baseUrl: rest.baseUrl ?? "http://test.zero.local",
40
40
  // Tests should fail fast, not retry-and-mask flakiness.
@@ -1,4 +1,4 @@
1
- import { E as ClientOptions, Z as ZeroClient } from './client-qacxAiJ5.cjs';
1
+ import { E as ClientOptions, Z as ZeroClient } from './client-CDk1PVU-.cjs';
2
2
  import 'viem';
3
3
  import 'zod';
4
4
 
package/dist/testing.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { E as ClientOptions, Z as ZeroClient } from './client-qacxAiJ5.js';
1
+ import { E as ClientOptions, Z as ZeroClient } from './client-CDk1PVU-.js';
2
2
  import 'viem';
3
3
  import 'zod';
4
4
 
package/dist/testing.js CHANGED
@@ -1,4 +1,4 @@
1
- import { ZeroClient } from './chunk-RPL7VC32.js';
1
+ import { ZeroClient } from './chunk-3YKWO4B2.js';
2
2
 
3
3
  // src/testing/index.ts
4
4
  var FALLBACK_HANDLER = (request) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeroxyz/sdk",
3
- "version": "0.4.0",
3
+ "version": "0.6.0",
4
4
  "description": "TypeScript SDK for Zero — search, fetch, and pay for AI capabilities (x402 + MPP).",
5
5
  "keywords": [
6
6
  "zero",