@zeroxyz/sdk 0.1.0 → 0.2.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 +16 -0
- package/dist/{chunk-7STN754W.cjs → chunk-LHS7KBN7.cjs} +72 -9
- package/dist/chunk-LHS7KBN7.cjs.map +1 -0
- package/dist/{chunk-XQEHJX2X.js → chunk-SLXRHGE4.js} +72 -9
- package/dist/chunk-SLXRHGE4.js.map +1 -0
- package/dist/{client-B50UYxPr.d.cts → client-BpYZibrw.d.cts} +3 -1
- package/dist/{client-B50UYxPr.d.ts → client-BpYZibrw.d.ts} +3 -1
- package/dist/index.cjs +31 -31
- 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 +1 -1
- package/dist/chunk-7STN754W.cjs.map +0 -1
- package/dist/chunk-XQEHJX2X.js.map +0 -1
|
@@ -251,6 +251,8 @@ declare const deviceStartResponseSchema: z.ZodObject<{
|
|
|
251
251
|
type DeviceStartResponse = z.infer<typeof deviceStartResponseSchema>;
|
|
252
252
|
type DevicePollResult = {
|
|
253
253
|
status: "pending";
|
|
254
|
+
userCode?: string;
|
|
255
|
+
verificationUri?: string;
|
|
254
256
|
} | {
|
|
255
257
|
status: "expired";
|
|
256
258
|
} | {
|
|
@@ -656,7 +658,7 @@ type ClientOptions = {
|
|
|
656
658
|
_sharedAccountCache?: Map<string, ZeroClientLike>;
|
|
657
659
|
};
|
|
658
660
|
declare const DEFAULT_BASE_URL = "https://api.zero.xyz";
|
|
659
|
-
declare const DEFAULT_TIMEOUT_MS =
|
|
661
|
+
declare const DEFAULT_TIMEOUT_MS = 180000;
|
|
660
662
|
declare const DEFAULT_MAX_RETRIES = 2;
|
|
661
663
|
|
|
662
664
|
declare const searchResultSchema: z.ZodObject<{
|
|
@@ -251,6 +251,8 @@ declare const deviceStartResponseSchema: z.ZodObject<{
|
|
|
251
251
|
type DeviceStartResponse = z.infer<typeof deviceStartResponseSchema>;
|
|
252
252
|
type DevicePollResult = {
|
|
253
253
|
status: "pending";
|
|
254
|
+
userCode?: string;
|
|
255
|
+
verificationUri?: string;
|
|
254
256
|
} | {
|
|
255
257
|
status: "expired";
|
|
256
258
|
} | {
|
|
@@ -656,7 +658,7 @@ type ClientOptions = {
|
|
|
656
658
|
_sharedAccountCache?: Map<string, ZeroClientLike>;
|
|
657
659
|
};
|
|
658
660
|
declare const DEFAULT_BASE_URL = "https://api.zero.xyz";
|
|
659
|
-
declare const DEFAULT_TIMEOUT_MS =
|
|
661
|
+
declare const DEFAULT_TIMEOUT_MS = 180000;
|
|
660
662
|
declare const DEFAULT_MAX_RETRIES = 2;
|
|
661
663
|
|
|
662
664
|
declare const searchResultSchema: z.ZodObject<{
|
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkLHS7KBN7_cjs = require('./chunk-LHS7KBN7.cjs');
|
|
4
4
|
|
|
5
5
|
// src/status.ts
|
|
6
6
|
var AVAILABILITY_BADGES = {
|
|
@@ -25,123 +25,123 @@ var preferHealthy = sortByHealth;
|
|
|
25
25
|
|
|
26
26
|
Object.defineProperty(exports, "Auth", {
|
|
27
27
|
enumerable: true,
|
|
28
|
-
get: function () { return
|
|
28
|
+
get: function () { return chunkLHS7KBN7_cjs.Auth; }
|
|
29
29
|
});
|
|
30
30
|
Object.defineProperty(exports, "AuthDevice", {
|
|
31
31
|
enumerable: true,
|
|
32
|
-
get: function () { return
|
|
32
|
+
get: function () { return chunkLHS7KBN7_cjs.AuthDevice; }
|
|
33
33
|
});
|
|
34
34
|
Object.defineProperty(exports, "BUG_REPORT_CATEGORIES", {
|
|
35
35
|
enumerable: true,
|
|
36
|
-
get: function () { return
|
|
36
|
+
get: function () { return chunkLHS7KBN7_cjs.BUG_REPORT_CATEGORIES; }
|
|
37
37
|
});
|
|
38
38
|
Object.defineProperty(exports, "BugReports", {
|
|
39
39
|
enumerable: true,
|
|
40
|
-
get: function () { return
|
|
40
|
+
get: function () { return chunkLHS7KBN7_cjs.BugReports; }
|
|
41
41
|
});
|
|
42
42
|
Object.defineProperty(exports, "Capabilities", {
|
|
43
43
|
enumerable: true,
|
|
44
|
-
get: function () { return
|
|
44
|
+
get: function () { return chunkLHS7KBN7_cjs.Capabilities; }
|
|
45
45
|
});
|
|
46
46
|
Object.defineProperty(exports, "DEFAULT_BASE_URL", {
|
|
47
47
|
enumerable: true,
|
|
48
|
-
get: function () { return
|
|
48
|
+
get: function () { return chunkLHS7KBN7_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 chunkLHS7KBN7_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 chunkLHS7KBN7_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 chunkLHS7KBN7_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 chunkLHS7KBN7_cjs.FETCH_WARNINGS; }
|
|
65
65
|
});
|
|
66
66
|
Object.defineProperty(exports, "Payments", {
|
|
67
67
|
enumerable: true,
|
|
68
|
-
get: function () { return
|
|
68
|
+
get: function () { return chunkLHS7KBN7_cjs.Payments; }
|
|
69
69
|
});
|
|
70
70
|
Object.defineProperty(exports, "Runs", {
|
|
71
71
|
enumerable: true,
|
|
72
|
-
get: function () { return
|
|
72
|
+
get: function () { return chunkLHS7KBN7_cjs.Runs; }
|
|
73
73
|
});
|
|
74
74
|
Object.defineProperty(exports, "SDK_VERSION", {
|
|
75
75
|
enumerable: true,
|
|
76
|
-
get: function () { return
|
|
76
|
+
get: function () { return chunkLHS7KBN7_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 chunkLHS7KBN7_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 chunkLHS7KBN7_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 chunkLHS7KBN7_cjs.Wallet; }
|
|
89
89
|
});
|
|
90
90
|
Object.defineProperty(exports, "ZeroApiError", {
|
|
91
91
|
enumerable: true,
|
|
92
|
-
get: function () { return
|
|
92
|
+
get: function () { return chunkLHS7KBN7_cjs.ZeroApiError; }
|
|
93
93
|
});
|
|
94
94
|
Object.defineProperty(exports, "ZeroAuthError", {
|
|
95
95
|
enumerable: true,
|
|
96
|
-
get: function () { return
|
|
96
|
+
get: function () { return chunkLHS7KBN7_cjs.ZeroAuthError; }
|
|
97
97
|
});
|
|
98
98
|
Object.defineProperty(exports, "ZeroClient", {
|
|
99
99
|
enumerable: true,
|
|
100
|
-
get: function () { return
|
|
100
|
+
get: function () { return chunkLHS7KBN7_cjs.ZeroClient; }
|
|
101
101
|
});
|
|
102
102
|
Object.defineProperty(exports, "ZeroConfigurationError", {
|
|
103
103
|
enumerable: true,
|
|
104
|
-
get: function () { return
|
|
104
|
+
get: function () { return chunkLHS7KBN7_cjs.ZeroConfigurationError; }
|
|
105
105
|
});
|
|
106
106
|
Object.defineProperty(exports, "ZeroError", {
|
|
107
107
|
enumerable: true,
|
|
108
|
-
get: function () { return
|
|
108
|
+
get: function () { return chunkLHS7KBN7_cjs.ZeroError; }
|
|
109
109
|
});
|
|
110
110
|
Object.defineProperty(exports, "ZeroPaymentError", {
|
|
111
111
|
enumerable: true,
|
|
112
|
-
get: function () { return
|
|
112
|
+
get: function () { return chunkLHS7KBN7_cjs.ZeroPaymentError; }
|
|
113
113
|
});
|
|
114
114
|
Object.defineProperty(exports, "ZeroSessionCloseFailedError", {
|
|
115
115
|
enumerable: true,
|
|
116
|
-
get: function () { return
|
|
116
|
+
get: function () { return chunkLHS7KBN7_cjs.ZeroSessionCloseFailedError; }
|
|
117
117
|
});
|
|
118
118
|
Object.defineProperty(exports, "ZeroTimeoutError", {
|
|
119
119
|
enumerable: true,
|
|
120
|
-
get: function () { return
|
|
120
|
+
get: function () { return chunkLHS7KBN7_cjs.ZeroTimeoutError; }
|
|
121
121
|
});
|
|
122
122
|
Object.defineProperty(exports, "ZeroValidationError", {
|
|
123
123
|
enumerable: true,
|
|
124
|
-
get: function () { return
|
|
124
|
+
get: function () { return chunkLHS7KBN7_cjs.ZeroValidationError; }
|
|
125
125
|
});
|
|
126
126
|
Object.defineProperty(exports, "ZeroWalletError", {
|
|
127
127
|
enumerable: true,
|
|
128
|
-
get: function () { return
|
|
128
|
+
get: function () { return chunkLHS7KBN7_cjs.ZeroWalletError; }
|
|
129
129
|
});
|
|
130
130
|
Object.defineProperty(exports, "coerceTempoChainId", {
|
|
131
131
|
enumerable: true,
|
|
132
|
-
get: function () { return
|
|
132
|
+
get: function () { return chunkLHS7KBN7_cjs.coerceTempoChainId; }
|
|
133
133
|
});
|
|
134
134
|
Object.defineProperty(exports, "createManagedAccount", {
|
|
135
135
|
enumerable: true,
|
|
136
|
-
get: function () { return
|
|
136
|
+
get: function () { return chunkLHS7KBN7_cjs.createManagedAccount; }
|
|
137
137
|
});
|
|
138
138
|
Object.defineProperty(exports, "paymentHasAnchor", {
|
|
139
139
|
enumerable: true,
|
|
140
|
-
get: function () { return
|
|
140
|
+
get: function () { return chunkLHS7KBN7_cjs.paymentHasAnchor; }
|
|
141
141
|
});
|
|
142
142
|
Object.defineProperty(exports, "tempoChainLabelFromId", {
|
|
143
143
|
enumerable: true,
|
|
144
|
-
get: function () { return
|
|
144
|
+
get: function () { return chunkLHS7KBN7_cjs.tempoChainLabelFromId; }
|
|
145
145
|
});
|
|
146
146
|
exports.AVAILABILITY_BADGES = AVAILABILITY_BADGES;
|
|
147
147
|
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, _ 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-
|
|
1
|
+
import { Z as ZeroClient, P as PaymentSessionMeta } from './client-BpYZibrw.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-BpYZibrw.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, _ 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-
|
|
1
|
+
import { Z as ZeroClient, P as PaymentSessionMeta } from './client-BpYZibrw.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-BpYZibrw.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, coerceTempoChainId, createManagedAccount, paymentHasAnchor, tempoChainLabelFromId } 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, coerceTempoChainId, createManagedAccount, paymentHasAnchor, tempoChainLabelFromId } from './chunk-SLXRHGE4.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 chunkLHS7KBN7_cjs = require('./chunk-LHS7KBN7.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 chunkLHS7KBN7_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