@zeroxyz/sdk 0.6.0 → 0.8.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.
- package/CHANGELOG.md +14 -0
- package/README.md +6 -3
- package/dist/{chunk-UIK7QKNQ.cjs → chunk-72WCE7HE.cjs} +1568 -1551
- package/dist/chunk-72WCE7HE.cjs.map +1 -0
- package/dist/{chunk-3YKWO4B2.js → chunk-NUBD543C.js} +1568 -1552
- package/dist/chunk-NUBD543C.js.map +1 -0
- package/dist/{client-CDk1PVU-.d.cts → client-f6vDYSHb.d.cts} +25 -1
- package/dist/{client-CDk1PVU-.d.ts → client-f6vDYSHb.d.ts} +25 -1
- package/dist/index.cjs +39 -35
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/testing.cjs +2 -2
- package/dist/testing.d.cts +1 -1
- package/dist/testing.d.ts +1 -1
- package/dist/testing.js +1 -1
- package/package.json +2 -2
- package/dist/chunk-3YKWO4B2.js.map +0 -1
- package/dist/chunk-UIK7QKNQ.cjs.map +0 -1
|
@@ -133,12 +133,18 @@ declare class Payments {
|
|
|
133
133
|
private completeMppSession;
|
|
134
134
|
}
|
|
135
135
|
|
|
136
|
+
/** Returns true when `id` is a short search-attribution token (`z_xxx.N`). */
|
|
137
|
+
declare const isShortToken: (id: string) => boolean;
|
|
136
138
|
type FetchOptions = {
|
|
137
139
|
method?: string;
|
|
138
140
|
headers?: Record<string, string>;
|
|
139
141
|
body?: string | Uint8Array;
|
|
140
142
|
maxPay?: string;
|
|
141
143
|
capabilityId?: string;
|
|
144
|
+
/**
|
|
145
|
+
* @deprecated Pass the `z_xxx.N` token from `search()` as `capabilityId`
|
|
146
|
+
* instead — it embeds the searchId. This field is kept for back-compat.
|
|
147
|
+
*/
|
|
142
148
|
searchId?: string;
|
|
143
149
|
fetchOrigin?: "from_search" | "direct_slug" | "direct_url";
|
|
144
150
|
account?: LocalAccount;
|
|
@@ -388,6 +394,11 @@ declare const capabilityResponseSchema: z.ZodObject<{
|
|
|
388
394
|
}, z.core.$strip>>;
|
|
389
395
|
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
390
396
|
exampleAgentPrompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
397
|
+
whatItDoes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
398
|
+
resultDescription: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
399
|
+
failureModes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
400
|
+
whenToPreferThis: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
401
|
+
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
391
402
|
displayCostAmount: z.ZodString;
|
|
392
403
|
displayCostAsset: z.ZodString;
|
|
393
404
|
reviewCount: z.ZodNumber;
|
|
@@ -438,6 +449,11 @@ declare const capabilityResponseSchema: z.ZodObject<{
|
|
|
438
449
|
}, z.core.$strip>;
|
|
439
450
|
type CapabilityResponse = z.infer<typeof capabilityResponseSchema>;
|
|
440
451
|
type GetCapabilityOptions = {
|
|
452
|
+
/**
|
|
453
|
+
* @deprecated Pass the `z_xxx.N` token from `search()` as the `id` argument
|
|
454
|
+
* instead — it embeds the searchId. This field is kept for back-compat with
|
|
455
|
+
* callers that still pass uid + searchId separately.
|
|
456
|
+
*/
|
|
441
457
|
searchId?: string;
|
|
442
458
|
signal?: AbortSignal;
|
|
443
459
|
};
|
|
@@ -565,6 +581,10 @@ type BatchReviewResponse = z.infer<typeof batchReviewResponseSchema>;
|
|
|
565
581
|
type CreateRunInput = {
|
|
566
582
|
capabilityId: string;
|
|
567
583
|
paymentMethodId?: string;
|
|
584
|
+
/**
|
|
585
|
+
* @deprecated Pass the `z_xxx.N` token from `search()` as `capabilityId`
|
|
586
|
+
* instead — it embeds the searchId. This field is kept for back-compat.
|
|
587
|
+
*/
|
|
568
588
|
searchId?: string;
|
|
569
589
|
status?: number;
|
|
570
590
|
latencyMs?: number;
|
|
@@ -715,6 +735,7 @@ declare const DEFAULT_MAX_RETRIES = 2;
|
|
|
715
735
|
|
|
716
736
|
declare const searchResultSchema: z.ZodObject<{
|
|
717
737
|
id: z.ZodString;
|
|
738
|
+
token: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
718
739
|
position: z.ZodNumber;
|
|
719
740
|
slug: z.ZodString;
|
|
720
741
|
name: z.ZodString;
|
|
@@ -740,6 +761,7 @@ declare const searchResultSchema: z.ZodObject<{
|
|
|
740
761
|
rated: "rated";
|
|
741
762
|
}>>;
|
|
742
763
|
}, z.core.$strip>;
|
|
764
|
+
activationCount: z.ZodOptional<z.ZodNumber>;
|
|
743
765
|
availabilityStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
744
766
|
unknown: "unknown";
|
|
745
767
|
healthy: "healthy";
|
|
@@ -760,6 +782,7 @@ declare const searchResponseSchema: z.ZodObject<{
|
|
|
760
782
|
hasMore: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
761
783
|
capabilities: z.ZodArray<z.ZodObject<{
|
|
762
784
|
id: z.ZodString;
|
|
785
|
+
token: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
763
786
|
position: z.ZodNumber;
|
|
764
787
|
slug: z.ZodString;
|
|
765
788
|
name: z.ZodString;
|
|
@@ -785,6 +808,7 @@ declare const searchResponseSchema: z.ZodObject<{
|
|
|
785
808
|
rated: "rated";
|
|
786
809
|
}>>;
|
|
787
810
|
}, z.core.$strip>;
|
|
811
|
+
activationCount: z.ZodOptional<z.ZodNumber>;
|
|
788
812
|
availabilityStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
789
813
|
unknown: "unknown";
|
|
790
814
|
healthy: "healthy";
|
|
@@ -891,4 +915,4 @@ declare class ZeroClient {
|
|
|
891
915
|
close: () => Promise<void>;
|
|
892
916
|
}
|
|
893
917
|
|
|
894
|
-
export {
|
|
918
|
+
export { BUG_REPORT_CATEGORIES as $, type AccountCredentials as A, BugReports as B, type Credentials as C, type MigrateAuthorizationResponse as D, Wallet as E, type FetchOptions as F, type ClientOptions as G, DEFAULT_BASE_URL as H, DEFAULT_MAX_RETRIES as I, DEFAULT_TIMEOUT_MS as J, type Logger as K, type LogEvent as L, type MigrateAuthorization as M, type NoCredentials as N, type OnSessionRefreshed as O, type PaymentSessionMeta as P, type LogLevel as Q, Runs as R, type SessionCredentials as S, TEMPO_CHAIN_ID as T, type UpstreamError as U, type InternalUserDto as V, type WalletBalance as W, type PublicUserDto as X, type UserWalletDto as Y, ZeroClient as Z, type WelcomeBonusSummary as _, type SessionCredentialsInput as a, type BugReportCategory as a0, type CreateBugReportInput as a1, type CreateBugReportResponse as a2, type CapabilityResponse as a3, type GetCapabilityOptions as a4, type ResolveCapabilityResponse as a5, type DevicePollResult as a6, type DeviceStartResponse as a7, type SessionExchangeResponse as a8, type BatchReviewResponse as a9, type CreateReviewInput as aa, type CreateReviewResponse as ab, type CreateRunInput as ac, type CreateRunResponse as ad, type ListRunsParams as ae, type ListRunsResponse as af, type RunDetail as ag, type RunListItem as ah, type SearchOptions as ai, type SearchResponse as aj, type SearchResult as ak, 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, isShortToken as i, Capabilities as j, type PayInput as k, type PaymentChain as l, type PaymentProtocol as m, type PaymentResult as n, type PayResult as o, type SessionReceiptPayload as p, coerceTempoChainId as q, FETCH_SKIP_REASONS as r, FETCH_WARNINGS as s, Payments as t, paymentHasAnchor as u, TEMPO_TESTNET_CHAIN_ID as v, tempoChainLabelFromId as w, type BalanceOptions as x, type BalanceReadError as y, type FundingUrlOptions as z };
|
|
@@ -133,12 +133,18 @@ declare class Payments {
|
|
|
133
133
|
private completeMppSession;
|
|
134
134
|
}
|
|
135
135
|
|
|
136
|
+
/** Returns true when `id` is a short search-attribution token (`z_xxx.N`). */
|
|
137
|
+
declare const isShortToken: (id: string) => boolean;
|
|
136
138
|
type FetchOptions = {
|
|
137
139
|
method?: string;
|
|
138
140
|
headers?: Record<string, string>;
|
|
139
141
|
body?: string | Uint8Array;
|
|
140
142
|
maxPay?: string;
|
|
141
143
|
capabilityId?: string;
|
|
144
|
+
/**
|
|
145
|
+
* @deprecated Pass the `z_xxx.N` token from `search()` as `capabilityId`
|
|
146
|
+
* instead — it embeds the searchId. This field is kept for back-compat.
|
|
147
|
+
*/
|
|
142
148
|
searchId?: string;
|
|
143
149
|
fetchOrigin?: "from_search" | "direct_slug" | "direct_url";
|
|
144
150
|
account?: LocalAccount;
|
|
@@ -388,6 +394,11 @@ declare const capabilityResponseSchema: z.ZodObject<{
|
|
|
388
394
|
}, z.core.$strip>>;
|
|
389
395
|
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
390
396
|
exampleAgentPrompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
397
|
+
whatItDoes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
398
|
+
resultDescription: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
399
|
+
failureModes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
400
|
+
whenToPreferThis: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
401
|
+
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
391
402
|
displayCostAmount: z.ZodString;
|
|
392
403
|
displayCostAsset: z.ZodString;
|
|
393
404
|
reviewCount: z.ZodNumber;
|
|
@@ -438,6 +449,11 @@ declare const capabilityResponseSchema: z.ZodObject<{
|
|
|
438
449
|
}, z.core.$strip>;
|
|
439
450
|
type CapabilityResponse = z.infer<typeof capabilityResponseSchema>;
|
|
440
451
|
type GetCapabilityOptions = {
|
|
452
|
+
/**
|
|
453
|
+
* @deprecated Pass the `z_xxx.N` token from `search()` as the `id` argument
|
|
454
|
+
* instead — it embeds the searchId. This field is kept for back-compat with
|
|
455
|
+
* callers that still pass uid + searchId separately.
|
|
456
|
+
*/
|
|
441
457
|
searchId?: string;
|
|
442
458
|
signal?: AbortSignal;
|
|
443
459
|
};
|
|
@@ -565,6 +581,10 @@ type BatchReviewResponse = z.infer<typeof batchReviewResponseSchema>;
|
|
|
565
581
|
type CreateRunInput = {
|
|
566
582
|
capabilityId: string;
|
|
567
583
|
paymentMethodId?: string;
|
|
584
|
+
/**
|
|
585
|
+
* @deprecated Pass the `z_xxx.N` token from `search()` as `capabilityId`
|
|
586
|
+
* instead — it embeds the searchId. This field is kept for back-compat.
|
|
587
|
+
*/
|
|
568
588
|
searchId?: string;
|
|
569
589
|
status?: number;
|
|
570
590
|
latencyMs?: number;
|
|
@@ -715,6 +735,7 @@ declare const DEFAULT_MAX_RETRIES = 2;
|
|
|
715
735
|
|
|
716
736
|
declare const searchResultSchema: z.ZodObject<{
|
|
717
737
|
id: z.ZodString;
|
|
738
|
+
token: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
718
739
|
position: z.ZodNumber;
|
|
719
740
|
slug: z.ZodString;
|
|
720
741
|
name: z.ZodString;
|
|
@@ -740,6 +761,7 @@ declare const searchResultSchema: z.ZodObject<{
|
|
|
740
761
|
rated: "rated";
|
|
741
762
|
}>>;
|
|
742
763
|
}, z.core.$strip>;
|
|
764
|
+
activationCount: z.ZodOptional<z.ZodNumber>;
|
|
743
765
|
availabilityStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
744
766
|
unknown: "unknown";
|
|
745
767
|
healthy: "healthy";
|
|
@@ -760,6 +782,7 @@ declare const searchResponseSchema: z.ZodObject<{
|
|
|
760
782
|
hasMore: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
761
783
|
capabilities: z.ZodArray<z.ZodObject<{
|
|
762
784
|
id: z.ZodString;
|
|
785
|
+
token: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
763
786
|
position: z.ZodNumber;
|
|
764
787
|
slug: z.ZodString;
|
|
765
788
|
name: z.ZodString;
|
|
@@ -785,6 +808,7 @@ declare const searchResponseSchema: z.ZodObject<{
|
|
|
785
808
|
rated: "rated";
|
|
786
809
|
}>>;
|
|
787
810
|
}, z.core.$strip>;
|
|
811
|
+
activationCount: z.ZodOptional<z.ZodNumber>;
|
|
788
812
|
availabilityStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
789
813
|
unknown: "unknown";
|
|
790
814
|
healthy: "healthy";
|
|
@@ -891,4 +915,4 @@ declare class ZeroClient {
|
|
|
891
915
|
close: () => Promise<void>;
|
|
892
916
|
}
|
|
893
917
|
|
|
894
|
-
export {
|
|
918
|
+
export { BUG_REPORT_CATEGORIES as $, type AccountCredentials as A, BugReports as B, type Credentials as C, type MigrateAuthorizationResponse as D, Wallet as E, type FetchOptions as F, type ClientOptions as G, DEFAULT_BASE_URL as H, DEFAULT_MAX_RETRIES as I, DEFAULT_TIMEOUT_MS as J, type Logger as K, type LogEvent as L, type MigrateAuthorization as M, type NoCredentials as N, type OnSessionRefreshed as O, type PaymentSessionMeta as P, type LogLevel as Q, Runs as R, type SessionCredentials as S, TEMPO_CHAIN_ID as T, type UpstreamError as U, type InternalUserDto as V, type WalletBalance as W, type PublicUserDto as X, type UserWalletDto as Y, ZeroClient as Z, type WelcomeBonusSummary as _, type SessionCredentialsInput as a, type BugReportCategory as a0, type CreateBugReportInput as a1, type CreateBugReportResponse as a2, type CapabilityResponse as a3, type GetCapabilityOptions as a4, type ResolveCapabilityResponse as a5, type DevicePollResult as a6, type DeviceStartResponse as a7, type SessionExchangeResponse as a8, type BatchReviewResponse as a9, type CreateReviewInput as aa, type CreateReviewResponse as ab, type CreateRunInput as ac, type CreateRunResponse as ad, type ListRunsParams as ae, type ListRunsResponse as af, type RunDetail as ag, type RunListItem as ah, type SearchOptions as ai, type SearchResponse as aj, type SearchResult as ak, 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, isShortToken as i, Capabilities as j, type PayInput as k, type PaymentChain as l, type PaymentProtocol as m, type PaymentResult as n, type PayResult as o, type SessionReceiptPayload as p, coerceTempoChainId as q, FETCH_SKIP_REASONS as r, FETCH_WARNINGS as s, Payments as t, paymentHasAnchor as u, TEMPO_TESTNET_CHAIN_ID as v, tempoChainLabelFromId as w, type BalanceOptions as x, type BalanceReadError as y, type FundingUrlOptions as z };
|
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunk72WCE7HE_cjs = require('./chunk-72WCE7HE.cjs');
|
|
4
4
|
|
|
5
5
|
// src/status.ts
|
|
6
6
|
var AVAILABILITY_BADGES = {
|
|
@@ -25,139 +25,143 @@ var preferHealthy = sortByHealth;
|
|
|
25
25
|
|
|
26
26
|
Object.defineProperty(exports, "Auth", {
|
|
27
27
|
enumerable: true,
|
|
28
|
-
get: function () { return
|
|
28
|
+
get: function () { return chunk72WCE7HE_cjs.Auth; }
|
|
29
29
|
});
|
|
30
30
|
Object.defineProperty(exports, "AuthDevice", {
|
|
31
31
|
enumerable: true,
|
|
32
|
-
get: function () { return
|
|
32
|
+
get: function () { return chunk72WCE7HE_cjs.AuthDevice; }
|
|
33
33
|
});
|
|
34
34
|
Object.defineProperty(exports, "BUG_REPORT_CATEGORIES", {
|
|
35
35
|
enumerable: true,
|
|
36
|
-
get: function () { return
|
|
36
|
+
get: function () { return chunk72WCE7HE_cjs.BUG_REPORT_CATEGORIES; }
|
|
37
37
|
});
|
|
38
38
|
Object.defineProperty(exports, "BugReports", {
|
|
39
39
|
enumerable: true,
|
|
40
|
-
get: function () { return
|
|
40
|
+
get: function () { return chunk72WCE7HE_cjs.BugReports; }
|
|
41
41
|
});
|
|
42
42
|
Object.defineProperty(exports, "Capabilities", {
|
|
43
43
|
enumerable: true,
|
|
44
|
-
get: function () { return
|
|
44
|
+
get: function () { return chunk72WCE7HE_cjs.Capabilities; }
|
|
45
45
|
});
|
|
46
46
|
Object.defineProperty(exports, "DEFAULT_BASE_URL", {
|
|
47
47
|
enumerable: true,
|
|
48
|
-
get: function () { return
|
|
48
|
+
get: function () { return chunk72WCE7HE_cjs.DEFAULT_BASE_URL; }
|
|
49
49
|
});
|
|
50
50
|
Object.defineProperty(exports, "DEFAULT_MAX_RETRIES", {
|
|
51
51
|
enumerable: true,
|
|
52
|
-
get: function () { return
|
|
52
|
+
get: function () { return chunk72WCE7HE_cjs.DEFAULT_MAX_RETRIES; }
|
|
53
53
|
});
|
|
54
54
|
Object.defineProperty(exports, "DEFAULT_TIMEOUT_MS", {
|
|
55
55
|
enumerable: true,
|
|
56
|
-
get: function () { return
|
|
56
|
+
get: function () { return chunk72WCE7HE_cjs.DEFAULT_TIMEOUT_MS; }
|
|
57
57
|
});
|
|
58
58
|
Object.defineProperty(exports, "FETCH_SKIP_REASONS", {
|
|
59
59
|
enumerable: true,
|
|
60
|
-
get: function () { return
|
|
60
|
+
get: function () { return chunk72WCE7HE_cjs.FETCH_SKIP_REASONS; }
|
|
61
61
|
});
|
|
62
62
|
Object.defineProperty(exports, "FETCH_WARNINGS", {
|
|
63
63
|
enumerable: true,
|
|
64
|
-
get: function () { return
|
|
64
|
+
get: function () { return chunk72WCE7HE_cjs.FETCH_WARNINGS; }
|
|
65
65
|
});
|
|
66
66
|
Object.defineProperty(exports, "Payments", {
|
|
67
67
|
enumerable: true,
|
|
68
|
-
get: function () { return
|
|
68
|
+
get: function () { return chunk72WCE7HE_cjs.Payments; }
|
|
69
69
|
});
|
|
70
70
|
Object.defineProperty(exports, "Runs", {
|
|
71
71
|
enumerable: true,
|
|
72
|
-
get: function () { return
|
|
72
|
+
get: function () { return chunk72WCE7HE_cjs.Runs; }
|
|
73
73
|
});
|
|
74
74
|
Object.defineProperty(exports, "SDK_VERSION", {
|
|
75
75
|
enumerable: true,
|
|
76
|
-
get: function () { return
|
|
76
|
+
get: function () { return chunk72WCE7HE_cjs.SDK_VERSION; }
|
|
77
77
|
});
|
|
78
78
|
Object.defineProperty(exports, "TEMPO_CHAIN_ID", {
|
|
79
79
|
enumerable: true,
|
|
80
|
-
get: function () { return
|
|
80
|
+
get: function () { return chunk72WCE7HE_cjs.TEMPO_CHAIN_ID; }
|
|
81
81
|
});
|
|
82
82
|
Object.defineProperty(exports, "TEMPO_TESTNET_CHAIN_ID", {
|
|
83
83
|
enumerable: true,
|
|
84
|
-
get: function () { return
|
|
84
|
+
get: function () { return chunk72WCE7HE_cjs.TEMPO_TESTNET_CHAIN_ID; }
|
|
85
85
|
});
|
|
86
86
|
Object.defineProperty(exports, "Wallet", {
|
|
87
87
|
enumerable: true,
|
|
88
|
-
get: function () { return
|
|
88
|
+
get: function () { return chunk72WCE7HE_cjs.Wallet; }
|
|
89
89
|
});
|
|
90
90
|
Object.defineProperty(exports, "ZeroApiError", {
|
|
91
91
|
enumerable: true,
|
|
92
|
-
get: function () { return
|
|
92
|
+
get: function () { return chunk72WCE7HE_cjs.ZeroApiError; }
|
|
93
93
|
});
|
|
94
94
|
Object.defineProperty(exports, "ZeroAuthError", {
|
|
95
95
|
enumerable: true,
|
|
96
|
-
get: function () { return
|
|
96
|
+
get: function () { return chunk72WCE7HE_cjs.ZeroAuthError; }
|
|
97
97
|
});
|
|
98
98
|
Object.defineProperty(exports, "ZeroClient", {
|
|
99
99
|
enumerable: true,
|
|
100
|
-
get: function () { return
|
|
100
|
+
get: function () { return chunk72WCE7HE_cjs.ZeroClient; }
|
|
101
101
|
});
|
|
102
102
|
Object.defineProperty(exports, "ZeroConfigurationError", {
|
|
103
103
|
enumerable: true,
|
|
104
|
-
get: function () { return
|
|
104
|
+
get: function () { return chunk72WCE7HE_cjs.ZeroConfigurationError; }
|
|
105
105
|
});
|
|
106
106
|
Object.defineProperty(exports, "ZeroError", {
|
|
107
107
|
enumerable: true,
|
|
108
|
-
get: function () { return
|
|
108
|
+
get: function () { return chunk72WCE7HE_cjs.ZeroError; }
|
|
109
109
|
});
|
|
110
110
|
Object.defineProperty(exports, "ZeroPaymentError", {
|
|
111
111
|
enumerable: true,
|
|
112
|
-
get: function () { return
|
|
112
|
+
get: function () { return chunk72WCE7HE_cjs.ZeroPaymentError; }
|
|
113
113
|
});
|
|
114
114
|
Object.defineProperty(exports, "ZeroSessionCloseFailedError", {
|
|
115
115
|
enumerable: true,
|
|
116
|
-
get: function () { return
|
|
116
|
+
get: function () { return chunk72WCE7HE_cjs.ZeroSessionCloseFailedError; }
|
|
117
117
|
});
|
|
118
118
|
Object.defineProperty(exports, "ZeroTimeoutError", {
|
|
119
119
|
enumerable: true,
|
|
120
|
-
get: function () { return
|
|
120
|
+
get: function () { return chunk72WCE7HE_cjs.ZeroTimeoutError; }
|
|
121
121
|
});
|
|
122
122
|
Object.defineProperty(exports, "ZeroValidationError", {
|
|
123
123
|
enumerable: true,
|
|
124
|
-
get: function () { return
|
|
124
|
+
get: function () { return chunk72WCE7HE_cjs.ZeroValidationError; }
|
|
125
125
|
});
|
|
126
126
|
Object.defineProperty(exports, "ZeroWalletError", {
|
|
127
127
|
enumerable: true,
|
|
128
|
-
get: function () { return
|
|
128
|
+
get: function () { return chunk72WCE7HE_cjs.ZeroWalletError; }
|
|
129
129
|
});
|
|
130
130
|
Object.defineProperty(exports, "asSchemaNode", {
|
|
131
131
|
enumerable: true,
|
|
132
|
-
get: function () { return
|
|
132
|
+
get: function () { return chunk72WCE7HE_cjs.asSchemaNode; }
|
|
133
133
|
});
|
|
134
134
|
Object.defineProperty(exports, "coerceTempoChainId", {
|
|
135
135
|
enumerable: true,
|
|
136
|
-
get: function () { return
|
|
136
|
+
get: function () { return chunk72WCE7HE_cjs.coerceTempoChainId; }
|
|
137
137
|
});
|
|
138
138
|
Object.defineProperty(exports, "createManagedAccount", {
|
|
139
139
|
enumerable: true,
|
|
140
|
-
get: function () { return
|
|
140
|
+
get: function () { return chunk72WCE7HE_cjs.createManagedAccount; }
|
|
141
141
|
});
|
|
142
142
|
Object.defineProperty(exports, "extractInputEnvelope", {
|
|
143
143
|
enumerable: true,
|
|
144
|
-
get: function () { return
|
|
144
|
+
get: function () { return chunk72WCE7HE_cjs.extractInputEnvelope; }
|
|
145
|
+
});
|
|
146
|
+
Object.defineProperty(exports, "isShortToken", {
|
|
147
|
+
enumerable: true,
|
|
148
|
+
get: function () { return chunk72WCE7HE_cjs.isShortToken; }
|
|
145
149
|
});
|
|
146
150
|
Object.defineProperty(exports, "normalizeTransportEnvelopeRequest", {
|
|
147
151
|
enumerable: true,
|
|
148
|
-
get: function () { return
|
|
152
|
+
get: function () { return chunk72WCE7HE_cjs.normalizeTransportEnvelopeRequest; }
|
|
149
153
|
});
|
|
150
154
|
Object.defineProperty(exports, "paymentHasAnchor", {
|
|
151
155
|
enumerable: true,
|
|
152
|
-
get: function () { return
|
|
156
|
+
get: function () { return chunk72WCE7HE_cjs.paymentHasAnchor; }
|
|
153
157
|
});
|
|
154
158
|
Object.defineProperty(exports, "tempoChainLabelFromId", {
|
|
155
159
|
enumerable: true,
|
|
156
|
-
get: function () { return
|
|
160
|
+
get: function () { return chunk72WCE7HE_cjs.tempoChainLabelFromId; }
|
|
157
161
|
});
|
|
158
162
|
Object.defineProperty(exports, "unwrapTransportEnvelope", {
|
|
159
163
|
enumerable: true,
|
|
160
|
-
get: function () { return
|
|
164
|
+
get: function () { return chunk72WCE7HE_cjs.unwrapTransportEnvelope; }
|
|
161
165
|
});
|
|
162
166
|
exports.AVAILABILITY_BADGES = AVAILABILITY_BADGES;
|
|
163
167
|
exports.preferHealthy = preferHealthy;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Z as ZeroClient, P as PaymentSessionMeta } from './client-
|
|
2
|
-
export { A as AccountCredentials, g as Auth, h as AuthDevice,
|
|
1
|
+
import { Z as ZeroClient, P as PaymentSessionMeta } from './client-f6vDYSHb.cjs';
|
|
2
|
+
export { A as AccountCredentials, g as Auth, h as AuthDevice, $ as BUG_REPORT_CATEGORIES, x as BalanceOptions, y as BalanceReadError, a9 as BatchReviewResponse, a0 as BugReportCategory, B as BugReports, j as Capabilities, a3 as CapabilityResponse, G as ClientOptions, a1 as CreateBugReportInput, a2 as CreateBugReportResponse, aa as CreateReviewInput, ab as CreateReviewResponse, ac as CreateRunInput, ad as CreateRunResponse, C as Credentials, H as DEFAULT_BASE_URL, I as DEFAULT_MAX_RETRIES, J as DEFAULT_TIMEOUT_MS, a6 as DevicePollResult, a7 as DeviceStartResponse, r as FETCH_SKIP_REASONS, s as FETCH_WARNINGS, F as FetchOptions, b as FetchOutcome, c as FetchResult, z as FundingUrlOptions, a4 as GetCapabilityOptions, V as InternalUserDto, ae as ListRunsParams, af as ListRunsResponse, L as LogEvent, Q as LogLevel, K as Logger, M as MigrateAuthorization, D as MigrateAuthorizationResponse, N as NoCredentials, O as OnSessionRefreshed, k as PayInput, o as PayResult, l as PaymentChain, m as PaymentProtocol, n as PaymentResult, t as Payments, X as PublicUserDto, a5 as ResolveCapabilityResponse, ag as RunDetail, ah as RunListItem, R as Runs, ai as SearchOptions, aj as SearchResponse, ak as SearchResult, S as SessionCredentials, a as SessionCredentialsInput, a8 as SessionExchangeResponse, p as SessionReceiptPayload, d as SignMessageInput, e as SignTransactionInput, f as SignTypedDataInput, T as TEMPO_CHAIN_ID, v as TEMPO_TESTNET_CHAIN_ID, U as UpstreamError, Y as UserWalletDto, E as Wallet, W as WalletBalance, _ as WelcomeBonusSummary, q as coerceTempoChainId, i as isShortToken, u as paymentHasAnchor, w as tempoChainLabelFromId } from './client-f6vDYSHb.cjs';
|
|
3
3
|
import { Address, LocalAccount } from 'viem';
|
|
4
4
|
import { z } from 'zod';
|
|
5
5
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Z as ZeroClient, P as PaymentSessionMeta } from './client-
|
|
2
|
-
export { A as AccountCredentials, g as Auth, h as AuthDevice,
|
|
1
|
+
import { Z as ZeroClient, P as PaymentSessionMeta } from './client-f6vDYSHb.js';
|
|
2
|
+
export { A as AccountCredentials, g as Auth, h as AuthDevice, $ as BUG_REPORT_CATEGORIES, x as BalanceOptions, y as BalanceReadError, a9 as BatchReviewResponse, a0 as BugReportCategory, B as BugReports, j as Capabilities, a3 as CapabilityResponse, G as ClientOptions, a1 as CreateBugReportInput, a2 as CreateBugReportResponse, aa as CreateReviewInput, ab as CreateReviewResponse, ac as CreateRunInput, ad as CreateRunResponse, C as Credentials, H as DEFAULT_BASE_URL, I as DEFAULT_MAX_RETRIES, J as DEFAULT_TIMEOUT_MS, a6 as DevicePollResult, a7 as DeviceStartResponse, r as FETCH_SKIP_REASONS, s as FETCH_WARNINGS, F as FetchOptions, b as FetchOutcome, c as FetchResult, z as FundingUrlOptions, a4 as GetCapabilityOptions, V as InternalUserDto, ae as ListRunsParams, af as ListRunsResponse, L as LogEvent, Q as LogLevel, K as Logger, M as MigrateAuthorization, D as MigrateAuthorizationResponse, N as NoCredentials, O as OnSessionRefreshed, k as PayInput, o as PayResult, l as PaymentChain, m as PaymentProtocol, n as PaymentResult, t as Payments, X as PublicUserDto, a5 as ResolveCapabilityResponse, ag as RunDetail, ah as RunListItem, R as Runs, ai as SearchOptions, aj as SearchResponse, ak as SearchResult, S as SessionCredentials, a as SessionCredentialsInput, a8 as SessionExchangeResponse, p as SessionReceiptPayload, d as SignMessageInput, e as SignTransactionInput, f as SignTypedDataInput, T as TEMPO_CHAIN_ID, v as TEMPO_TESTNET_CHAIN_ID, U as UpstreamError, Y as UserWalletDto, E as Wallet, W as WalletBalance, _ as WelcomeBonusSummary, q as coerceTempoChainId, i as isShortToken, u as paymentHasAnchor, w as tempoChainLabelFromId } from './client-f6vDYSHb.js';
|
|
3
3
|
import { Address, LocalAccount } from 'viem';
|
|
4
4
|
import { z } from 'zod';
|
|
5
5
|
|
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, asSchemaNode, coerceTempoChainId, createManagedAccount, extractInputEnvelope, normalizeTransportEnvelopeRequest, paymentHasAnchor, tempoChainLabelFromId, unwrapTransportEnvelope } from './chunk-
|
|
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, isShortToken, normalizeTransportEnvelopeRequest, paymentHasAnchor, tempoChainLabelFromId, unwrapTransportEnvelope } from './chunk-NUBD543C.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
|
|
3
|
+
var chunk72WCE7HE_cjs = require('./chunk-72WCE7HE.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
|
|
37
|
+
return new chunk72WCE7HE_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.
|
package/dist/testing.d.cts
CHANGED
package/dist/testing.d.ts
CHANGED
package/dist/testing.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeroxyz/sdk",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "TypeScript SDK for Zero
|
|
3
|
+
"version": "0.8.0",
|
|
4
|
+
"description": "TypeScript SDK for Zero \u2014 search, fetch, and pay for AI capabilities (x402 + MPP).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"zero",
|
|
7
7
|
"zeroxyz",
|