@burdenoff/website-sdk 2026.720.2 → 2026.720.4
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/client/index.d.mts +1 -1
- package/dist/client/index.d.ts +1 -1
- package/dist/client/index.js +68 -20
- package/dist/client/index.js.map +1 -1
- package/dist/client/index.mjs +68 -20
- package/dist/client/index.mjs.map +1 -1
- package/dist/components/contact.js +68 -20
- package/dist/components/contact.js.map +1 -1
- package/dist/components/contact.mjs +68 -20
- package/dist/components/contact.mjs.map +1 -1
- package/dist/components/newsletter.js +68 -20
- package/dist/components/newsletter.js.map +1 -1
- package/dist/components/newsletter.mjs +68 -20
- package/dist/components/newsletter.mjs.map +1 -1
- package/dist/components/partners.js +68 -20
- package/dist/components/partners.js.map +1 -1
- package/dist/components/partners.mjs +68 -20
- package/dist/components/partners.mjs.map +1 -1
- package/dist/components/pricing.js +68 -20
- package/dist/components/pricing.js.map +1 -1
- package/dist/components/pricing.mjs +68 -20
- package/dist/components/pricing.mjs.map +1 -1
- package/dist/components/resource-links.js +68 -20
- package/dist/components/resource-links.js.map +1 -1
- package/dist/components/resource-links.mjs +68 -20
- package/dist/components/resource-links.mjs.map +1 -1
- package/dist/components/social-links.js +68 -20
- package/dist/components/social-links.js.map +1 -1
- package/dist/components/social-links.mjs +68 -20
- package/dist/components/social-links.mjs.map +1 -1
- package/dist/components/unsubscribe.js +68 -20
- package/dist/components/unsubscribe.js.map +1 -1
- package/dist/components/unsubscribe.mjs +68 -20
- package/dist/components/unsubscribe.mjs.map +1 -1
- package/dist/components/waitlist.js +68 -20
- package/dist/components/waitlist.js.map +1 -1
- package/dist/components/waitlist.mjs +68 -20
- package/dist/components/waitlist.mjs.map +1 -1
- package/dist/content/index.js +68 -20
- package/dist/content/index.js.map +1 -1
- package/dist/content/index.mjs +68 -20
- package/dist/content/index.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +68 -20
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +68 -20
- package/dist/index.mjs.map +1 -1
- package/dist/product/index.js +68 -20
- package/dist/product/index.js.map +1 -1
- package/dist/product/index.mjs +68 -20
- package/dist/product/index.mjs.map +1 -1
- package/dist/{provider-D7Rij9UM.d.mts → provider-DBAnqeTv.d.mts} +24 -0
- package/dist/{provider-D7Rij9UM.d.ts → provider-DBAnqeTv.d.ts} +24 -0
- package/dist/store/index.js +68 -20
- package/dist/store/index.js.map +1 -1
- package/dist/store/index.mjs +68 -20
- package/dist/store/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { W as WebSDKClient, a as WebSDKClientConfig, b as WebSDKProvider, c as WebSDKProviderProps, u as useWebSDK, d as useWebSDKConfig } from './provider-
|
|
1
|
+
export { W as WebSDKClient, a as WebSDKClientConfig, b as WebSDKProvider, c as WebSDKProviderProps, u as useWebSDK, d as useWebSDKConfig } from './provider-DBAnqeTv.mjs';
|
|
2
2
|
export { ContactCategory, ContactPage, ContactPageProps, DEFAULT_CONTACT_CATEGORIES } from './components/contact.mjs';
|
|
3
3
|
export { PartnersPage, PartnersPageProps } from './components/partners.mjs';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { W as WebSDKClient, a as WebSDKClientConfig, b as WebSDKProvider, c as WebSDKProviderProps, u as useWebSDK, d as useWebSDKConfig } from './provider-
|
|
1
|
+
export { W as WebSDKClient, a as WebSDKClientConfig, b as WebSDKProvider, c as WebSDKProviderProps, u as useWebSDK, d as useWebSDKConfig } from './provider-DBAnqeTv.js';
|
|
2
2
|
export { ContactCategory, ContactPage, ContactPageProps, DEFAULT_CONTACT_CATEGORIES } from './components/contact.js';
|
|
3
3
|
export { PartnersPage, PartnersPageProps } from './components/partners.js';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
package/dist/index.js
CHANGED
|
@@ -133,9 +133,23 @@ var _WebSDKClient = class _WebSDKClient {
|
|
|
133
133
|
* Execute a GraphQL mutation
|
|
134
134
|
*/
|
|
135
135
|
async mutate(mutation, variables) {
|
|
136
|
-
return this.request(mutation, variables);
|
|
136
|
+
return this.request(mutation, variables, false);
|
|
137
137
|
}
|
|
138
|
-
|
|
138
|
+
/** HTTP statuses worth another attempt — transient server/edge conditions. */
|
|
139
|
+
static isRetriableStatus(status) {
|
|
140
|
+
return status === 429 || status === 408 || status >= 500 && status < 600;
|
|
141
|
+
}
|
|
142
|
+
static sleep(ms) {
|
|
143
|
+
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
144
|
+
}
|
|
145
|
+
/**
|
|
146
|
+
* Perform the HTTP call with a hard timeout. Every outcome resolves to a
|
|
147
|
+
* GraphQLResponse — callers never hang, so a UI's `loading` state always
|
|
148
|
+
* settles into data or a renderable error.
|
|
149
|
+
*/
|
|
150
|
+
async attempt(query, variables, timeoutMs) {
|
|
151
|
+
const controller = new AbortController();
|
|
152
|
+
const timer = setTimeout(() => controller.abort(), timeoutMs);
|
|
139
153
|
try {
|
|
140
154
|
const response = await fetch(this.config.gatewayUrl, {
|
|
141
155
|
method: "POST",
|
|
@@ -144,7 +158,8 @@ var _WebSDKClient = class _WebSDKClient {
|
|
|
144
158
|
"x-product-id": this.config.productId,
|
|
145
159
|
...this.config.headers
|
|
146
160
|
},
|
|
147
|
-
body: JSON.stringify({ query, variables })
|
|
161
|
+
body: JSON.stringify({ query, variables }),
|
|
162
|
+
signal: controller.signal
|
|
148
163
|
});
|
|
149
164
|
if (!response.ok) {
|
|
150
165
|
console.error(
|
|
@@ -153,34 +168,67 @@ var _WebSDKClient = class _WebSDKClient {
|
|
|
153
168
|
response.statusText
|
|
154
169
|
);
|
|
155
170
|
return {
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
171
|
+
res: {
|
|
172
|
+
errors: [
|
|
173
|
+
{
|
|
174
|
+
message: `HTTP ${response.status}: ${response.statusText}`,
|
|
175
|
+
extensions: { code: `HTTP_${response.status}` }
|
|
176
|
+
}
|
|
177
|
+
]
|
|
178
|
+
},
|
|
179
|
+
retriable: _WebSDKClient.isRetriableStatus(response.status)
|
|
162
180
|
};
|
|
163
181
|
}
|
|
164
|
-
return
|
|
182
|
+
return {
|
|
183
|
+
res: await response.json(),
|
|
184
|
+
retriable: false
|
|
185
|
+
};
|
|
165
186
|
} catch (error) {
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
);
|
|
187
|
+
const aborted = error instanceof Error && (error.name === "AbortError" || controller.signal.aborted);
|
|
188
|
+
const message = aborted ? `Request timed out after ${timeoutMs}ms` : error instanceof Error ? error.message : "Network error";
|
|
189
|
+
console.error("[WebSDK] Network error", message);
|
|
170
190
|
return {
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
191
|
+
res: {
|
|
192
|
+
errors: [
|
|
193
|
+
{
|
|
194
|
+
message,
|
|
195
|
+
extensions: { code: aborted ? "TIMEOUT" : "NETWORK_ERROR" }
|
|
196
|
+
}
|
|
197
|
+
]
|
|
198
|
+
},
|
|
199
|
+
// Transport-level failures are worth one more try; a genuine outage
|
|
200
|
+
// just fails twice quickly and still renders an error state.
|
|
201
|
+
retriable: true
|
|
177
202
|
};
|
|
203
|
+
} finally {
|
|
204
|
+
clearTimeout(timer);
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
async request(query, variables, retry = true) {
|
|
208
|
+
const timeoutMs = this.config.timeoutMs ?? _WebSDKClient.DEFAULT_TIMEOUT_MS;
|
|
209
|
+
const maxRetries = retry ? this.config.maxRetries ?? _WebSDKClient.DEFAULT_MAX_RETRIES : 0;
|
|
210
|
+
let last;
|
|
211
|
+
for (let i = 0; i <= maxRetries; i++) {
|
|
212
|
+
const { res, retriable } = await this.attempt(
|
|
213
|
+
query,
|
|
214
|
+
variables,
|
|
215
|
+
timeoutMs
|
|
216
|
+
);
|
|
217
|
+
if (!retriable || i === maxRetries) return res;
|
|
218
|
+
last = res;
|
|
219
|
+
await _WebSDKClient.sleep(
|
|
220
|
+
_WebSDKClient.RETRY_BASE_DELAY_MS * (i + 1) + Math.random() * 200
|
|
221
|
+
);
|
|
178
222
|
}
|
|
223
|
+
return last;
|
|
179
224
|
}
|
|
180
225
|
};
|
|
181
226
|
__publicField(_WebSDKClient, "CACHE_TTL", 5 * 60 * 1e3);
|
|
182
227
|
// 5 minutes
|
|
183
228
|
__publicField(_WebSDKClient, "MAX_CACHE_ENTRIES", 100);
|
|
229
|
+
__publicField(_WebSDKClient, "DEFAULT_TIMEOUT_MS", 12e3);
|
|
230
|
+
__publicField(_WebSDKClient, "DEFAULT_MAX_RETRIES", 1);
|
|
231
|
+
__publicField(_WebSDKClient, "RETRY_BASE_DELAY_MS", 400);
|
|
184
232
|
var WebSDKClient = _WebSDKClient;
|
|
185
233
|
|
|
186
234
|
// src/client/gateway-resolver.ts
|