@uniformdev/next-app-router 20.70.0 → 20.71.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/dist/cache.js +570 -494
- package/dist/cache.mjs +570 -494
- package/dist/component.js +6 -372
- package/dist/component.mjs +6 -372
- package/dist/handler.js +668 -592
- package/dist/handler.mjs +668 -592
- package/dist/index.esm.js +666 -590
- package/dist/index.js +669 -593
- package/dist/index.mjs +666 -590
- package/dist/middleware.js +608 -539
- package/dist/middleware.mjs +608 -539
- package/package.json +19 -19
package/dist/middleware.mjs
CHANGED
|
@@ -7,6 +7,7 @@ var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
|
7
7
|
var __typeError = (msg) => {
|
|
8
8
|
throw TypeError(msg);
|
|
9
9
|
};
|
|
10
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
10
11
|
var __commonJS = (cb, mod) => function __require() {
|
|
11
12
|
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
12
13
|
};
|
|
@@ -26,16 +27,25 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
26
27
|
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
27
28
|
mod
|
|
28
29
|
));
|
|
30
|
+
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
29
31
|
var __accessCheck = (obj, member, msg) => member.has(obj) || __typeError("Cannot " + msg);
|
|
30
32
|
var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
|
|
31
33
|
var __privateAdd = (obj, member, value) => member.has(obj) ? __typeError("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
|
32
34
|
var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
|
|
35
|
+
var __privateWrapper = (obj, member, setter, getter) => ({
|
|
36
|
+
set _(value) {
|
|
37
|
+
__privateSet(obj, member, value, setter);
|
|
38
|
+
},
|
|
39
|
+
get _() {
|
|
40
|
+
return __privateGet(obj, member, getter);
|
|
41
|
+
}
|
|
42
|
+
});
|
|
33
43
|
|
|
34
44
|
// ../../node_modules/.pnpm/yocto-queue@0.1.0/node_modules/yocto-queue/index.js
|
|
35
45
|
var require_yocto_queue = __commonJS({
|
|
36
46
|
"../../node_modules/.pnpm/yocto-queue@0.1.0/node_modules/yocto-queue/index.js"(exports, module) {
|
|
37
47
|
"use strict";
|
|
38
|
-
var
|
|
48
|
+
var Node2 = class {
|
|
39
49
|
/// value;
|
|
40
50
|
/// next;
|
|
41
51
|
constructor(value) {
|
|
@@ -43,7 +53,7 @@ var require_yocto_queue = __commonJS({
|
|
|
43
53
|
this.next = void 0;
|
|
44
54
|
}
|
|
45
55
|
};
|
|
46
|
-
var
|
|
56
|
+
var Queue2 = class {
|
|
47
57
|
// TODO: Use private class fields when targeting Node.js 12.
|
|
48
58
|
// #_head;
|
|
49
59
|
// #_tail;
|
|
@@ -52,7 +62,7 @@ var require_yocto_queue = __commonJS({
|
|
|
52
62
|
this.clear();
|
|
53
63
|
}
|
|
54
64
|
enqueue(value) {
|
|
55
|
-
const node = new
|
|
65
|
+
const node = new Node2(value);
|
|
56
66
|
if (this._head) {
|
|
57
67
|
this._tail.next = node;
|
|
58
68
|
this._tail = node;
|
|
@@ -87,7 +97,7 @@ var require_yocto_queue = __commonJS({
|
|
|
87
97
|
}
|
|
88
98
|
}
|
|
89
99
|
};
|
|
90
|
-
module.exports =
|
|
100
|
+
module.exports = Queue2;
|
|
91
101
|
}
|
|
92
102
|
});
|
|
93
103
|
|
|
@@ -95,12 +105,12 @@ var require_yocto_queue = __commonJS({
|
|
|
95
105
|
var require_p_limit = __commonJS({
|
|
96
106
|
"../../node_modules/.pnpm/p-limit@3.1.0/node_modules/p-limit/index.js"(exports, module) {
|
|
97
107
|
"use strict";
|
|
98
|
-
var
|
|
99
|
-
var
|
|
108
|
+
var Queue2 = require_yocto_queue();
|
|
109
|
+
var pLimit3 = (concurrency) => {
|
|
100
110
|
if (!((Number.isInteger(concurrency) || concurrency === Infinity) && concurrency > 0)) {
|
|
101
111
|
throw new TypeError("Expected `concurrency` to be a number from 1 and up");
|
|
102
112
|
}
|
|
103
|
-
const queue = new
|
|
113
|
+
const queue = new Queue2();
|
|
104
114
|
let activeCount = 0;
|
|
105
115
|
const next = () => {
|
|
106
116
|
activeCount--;
|
|
@@ -145,7 +155,238 @@ var require_p_limit = __commonJS({
|
|
|
145
155
|
});
|
|
146
156
|
return generator;
|
|
147
157
|
};
|
|
148
|
-
module.exports =
|
|
158
|
+
module.exports = pLimit3;
|
|
159
|
+
}
|
|
160
|
+
});
|
|
161
|
+
|
|
162
|
+
// ../../node_modules/.pnpm/retry@0.13.1/node_modules/retry/lib/retry_operation.js
|
|
163
|
+
var require_retry_operation = __commonJS({
|
|
164
|
+
"../../node_modules/.pnpm/retry@0.13.1/node_modules/retry/lib/retry_operation.js"(exports, module) {
|
|
165
|
+
"use strict";
|
|
166
|
+
function RetryOperation(timeouts, options) {
|
|
167
|
+
if (typeof options === "boolean") {
|
|
168
|
+
options = { forever: options };
|
|
169
|
+
}
|
|
170
|
+
this._originalTimeouts = JSON.parse(JSON.stringify(timeouts));
|
|
171
|
+
this._timeouts = timeouts;
|
|
172
|
+
this._options = options || {};
|
|
173
|
+
this._maxRetryTime = options && options.maxRetryTime || Infinity;
|
|
174
|
+
this._fn = null;
|
|
175
|
+
this._errors = [];
|
|
176
|
+
this._attempts = 1;
|
|
177
|
+
this._operationTimeout = null;
|
|
178
|
+
this._operationTimeoutCb = null;
|
|
179
|
+
this._timeout = null;
|
|
180
|
+
this._operationStart = null;
|
|
181
|
+
this._timer = null;
|
|
182
|
+
if (this._options.forever) {
|
|
183
|
+
this._cachedTimeouts = this._timeouts.slice(0);
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
module.exports = RetryOperation;
|
|
187
|
+
RetryOperation.prototype.reset = function() {
|
|
188
|
+
this._attempts = 1;
|
|
189
|
+
this._timeouts = this._originalTimeouts.slice(0);
|
|
190
|
+
};
|
|
191
|
+
RetryOperation.prototype.stop = function() {
|
|
192
|
+
if (this._timeout) {
|
|
193
|
+
clearTimeout(this._timeout);
|
|
194
|
+
}
|
|
195
|
+
if (this._timer) {
|
|
196
|
+
clearTimeout(this._timer);
|
|
197
|
+
}
|
|
198
|
+
this._timeouts = [];
|
|
199
|
+
this._cachedTimeouts = null;
|
|
200
|
+
};
|
|
201
|
+
RetryOperation.prototype.retry = function(err) {
|
|
202
|
+
if (this._timeout) {
|
|
203
|
+
clearTimeout(this._timeout);
|
|
204
|
+
}
|
|
205
|
+
if (!err) {
|
|
206
|
+
return false;
|
|
207
|
+
}
|
|
208
|
+
var currentTime = (/* @__PURE__ */ new Date()).getTime();
|
|
209
|
+
if (err && currentTime - this._operationStart >= this._maxRetryTime) {
|
|
210
|
+
this._errors.push(err);
|
|
211
|
+
this._errors.unshift(new Error("RetryOperation timeout occurred"));
|
|
212
|
+
return false;
|
|
213
|
+
}
|
|
214
|
+
this._errors.push(err);
|
|
215
|
+
var timeout = this._timeouts.shift();
|
|
216
|
+
if (timeout === void 0) {
|
|
217
|
+
if (this._cachedTimeouts) {
|
|
218
|
+
this._errors.splice(0, this._errors.length - 1);
|
|
219
|
+
timeout = this._cachedTimeouts.slice(-1);
|
|
220
|
+
} else {
|
|
221
|
+
return false;
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
var self = this;
|
|
225
|
+
this._timer = setTimeout(function() {
|
|
226
|
+
self._attempts++;
|
|
227
|
+
if (self._operationTimeoutCb) {
|
|
228
|
+
self._timeout = setTimeout(function() {
|
|
229
|
+
self._operationTimeoutCb(self._attempts);
|
|
230
|
+
}, self._operationTimeout);
|
|
231
|
+
if (self._options.unref) {
|
|
232
|
+
self._timeout.unref();
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
self._fn(self._attempts);
|
|
236
|
+
}, timeout);
|
|
237
|
+
if (this._options.unref) {
|
|
238
|
+
this._timer.unref();
|
|
239
|
+
}
|
|
240
|
+
return true;
|
|
241
|
+
};
|
|
242
|
+
RetryOperation.prototype.attempt = function(fn, timeoutOps) {
|
|
243
|
+
this._fn = fn;
|
|
244
|
+
if (timeoutOps) {
|
|
245
|
+
if (timeoutOps.timeout) {
|
|
246
|
+
this._operationTimeout = timeoutOps.timeout;
|
|
247
|
+
}
|
|
248
|
+
if (timeoutOps.cb) {
|
|
249
|
+
this._operationTimeoutCb = timeoutOps.cb;
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
var self = this;
|
|
253
|
+
if (this._operationTimeoutCb) {
|
|
254
|
+
this._timeout = setTimeout(function() {
|
|
255
|
+
self._operationTimeoutCb();
|
|
256
|
+
}, self._operationTimeout);
|
|
257
|
+
}
|
|
258
|
+
this._operationStart = (/* @__PURE__ */ new Date()).getTime();
|
|
259
|
+
this._fn(this._attempts);
|
|
260
|
+
};
|
|
261
|
+
RetryOperation.prototype.try = function(fn) {
|
|
262
|
+
console.log("Using RetryOperation.try() is deprecated");
|
|
263
|
+
this.attempt(fn);
|
|
264
|
+
};
|
|
265
|
+
RetryOperation.prototype.start = function(fn) {
|
|
266
|
+
console.log("Using RetryOperation.start() is deprecated");
|
|
267
|
+
this.attempt(fn);
|
|
268
|
+
};
|
|
269
|
+
RetryOperation.prototype.start = RetryOperation.prototype.try;
|
|
270
|
+
RetryOperation.prototype.errors = function() {
|
|
271
|
+
return this._errors;
|
|
272
|
+
};
|
|
273
|
+
RetryOperation.prototype.attempts = function() {
|
|
274
|
+
return this._attempts;
|
|
275
|
+
};
|
|
276
|
+
RetryOperation.prototype.mainError = function() {
|
|
277
|
+
if (this._errors.length === 0) {
|
|
278
|
+
return null;
|
|
279
|
+
}
|
|
280
|
+
var counts = {};
|
|
281
|
+
var mainError = null;
|
|
282
|
+
var mainErrorCount = 0;
|
|
283
|
+
for (var i = 0; i < this._errors.length; i++) {
|
|
284
|
+
var error = this._errors[i];
|
|
285
|
+
var message = error.message;
|
|
286
|
+
var count = (counts[message] || 0) + 1;
|
|
287
|
+
counts[message] = count;
|
|
288
|
+
if (count >= mainErrorCount) {
|
|
289
|
+
mainError = error;
|
|
290
|
+
mainErrorCount = count;
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
return mainError;
|
|
294
|
+
};
|
|
295
|
+
}
|
|
296
|
+
});
|
|
297
|
+
|
|
298
|
+
// ../../node_modules/.pnpm/retry@0.13.1/node_modules/retry/lib/retry.js
|
|
299
|
+
var require_retry = __commonJS({
|
|
300
|
+
"../../node_modules/.pnpm/retry@0.13.1/node_modules/retry/lib/retry.js"(exports) {
|
|
301
|
+
"use strict";
|
|
302
|
+
var RetryOperation = require_retry_operation();
|
|
303
|
+
exports.operation = function(options) {
|
|
304
|
+
var timeouts = exports.timeouts(options);
|
|
305
|
+
return new RetryOperation(timeouts, {
|
|
306
|
+
forever: options && (options.forever || options.retries === Infinity),
|
|
307
|
+
unref: options && options.unref,
|
|
308
|
+
maxRetryTime: options && options.maxRetryTime
|
|
309
|
+
});
|
|
310
|
+
};
|
|
311
|
+
exports.timeouts = function(options) {
|
|
312
|
+
if (options instanceof Array) {
|
|
313
|
+
return [].concat(options);
|
|
314
|
+
}
|
|
315
|
+
var opts = {
|
|
316
|
+
retries: 10,
|
|
317
|
+
factor: 2,
|
|
318
|
+
minTimeout: 1 * 1e3,
|
|
319
|
+
maxTimeout: Infinity,
|
|
320
|
+
randomize: false
|
|
321
|
+
};
|
|
322
|
+
for (var key in options) {
|
|
323
|
+
opts[key] = options[key];
|
|
324
|
+
}
|
|
325
|
+
if (opts.minTimeout > opts.maxTimeout) {
|
|
326
|
+
throw new Error("minTimeout is greater than maxTimeout");
|
|
327
|
+
}
|
|
328
|
+
var timeouts = [];
|
|
329
|
+
for (var i = 0; i < opts.retries; i++) {
|
|
330
|
+
timeouts.push(this.createTimeout(i, opts));
|
|
331
|
+
}
|
|
332
|
+
if (options && options.forever && !timeouts.length) {
|
|
333
|
+
timeouts.push(this.createTimeout(i, opts));
|
|
334
|
+
}
|
|
335
|
+
timeouts.sort(function(a, b) {
|
|
336
|
+
return a - b;
|
|
337
|
+
});
|
|
338
|
+
return timeouts;
|
|
339
|
+
};
|
|
340
|
+
exports.createTimeout = function(attempt, opts) {
|
|
341
|
+
var random = opts.randomize ? Math.random() + 1 : 1;
|
|
342
|
+
var timeout = Math.round(random * Math.max(opts.minTimeout, 1) * Math.pow(opts.factor, attempt));
|
|
343
|
+
timeout = Math.min(timeout, opts.maxTimeout);
|
|
344
|
+
return timeout;
|
|
345
|
+
};
|
|
346
|
+
exports.wrap = function(obj, options, methods) {
|
|
347
|
+
if (options instanceof Array) {
|
|
348
|
+
methods = options;
|
|
349
|
+
options = null;
|
|
350
|
+
}
|
|
351
|
+
if (!methods) {
|
|
352
|
+
methods = [];
|
|
353
|
+
for (var key in obj) {
|
|
354
|
+
if (typeof obj[key] === "function") {
|
|
355
|
+
methods.push(key);
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
for (var i = 0; i < methods.length; i++) {
|
|
360
|
+
var method = methods[i];
|
|
361
|
+
var original = obj[method];
|
|
362
|
+
obj[method] = function retryWrapper(original2) {
|
|
363
|
+
var op = exports.operation(options);
|
|
364
|
+
var args = Array.prototype.slice.call(arguments, 1);
|
|
365
|
+
var callback = args.pop();
|
|
366
|
+
args.push(function(err) {
|
|
367
|
+
if (op.retry(err)) {
|
|
368
|
+
return;
|
|
369
|
+
}
|
|
370
|
+
if (err) {
|
|
371
|
+
arguments[0] = op.mainError();
|
|
372
|
+
}
|
|
373
|
+
callback.apply(this, arguments);
|
|
374
|
+
});
|
|
375
|
+
op.attempt(function() {
|
|
376
|
+
original2.apply(obj, args);
|
|
377
|
+
});
|
|
378
|
+
}.bind(obj, original);
|
|
379
|
+
obj[method].options = options;
|
|
380
|
+
}
|
|
381
|
+
};
|
|
382
|
+
}
|
|
383
|
+
});
|
|
384
|
+
|
|
385
|
+
// ../../node_modules/.pnpm/retry@0.13.1/node_modules/retry/index.js
|
|
386
|
+
var require_retry2 = __commonJS({
|
|
387
|
+
"../../node_modules/.pnpm/retry@0.13.1/node_modules/retry/index.js"(exports, module) {
|
|
388
|
+
"use strict";
|
|
389
|
+
module.exports = require_retry();
|
|
149
390
|
}
|
|
150
391
|
});
|
|
151
392
|
|
|
@@ -344,8 +585,8 @@ var __defProp2 = Object.defineProperty;
|
|
|
344
585
|
var __typeError2 = (msg) => {
|
|
345
586
|
throw TypeError(msg);
|
|
346
587
|
};
|
|
347
|
-
var
|
|
348
|
-
var
|
|
588
|
+
var __defNormalProp2 = (obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
589
|
+
var __publicField2 = (obj, key, value) => __defNormalProp2(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
349
590
|
var __accessCheck2 = (obj, member, msg) => member.has(obj) || __typeError2("Cannot " + msg);
|
|
350
591
|
var __privateGet2 = (obj, member, getter) => (__accessCheck2(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
|
|
351
592
|
var __privateAdd2 = (obj, member, value) => member.has(obj) ? __typeError2("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
|
@@ -356,18 +597,18 @@ var ApiClientError = class _ApiClientError extends Error {
|
|
|
356
597
|
`${errorMessage}
|
|
357
598
|
${statusCode}${statusText ? " " + statusText : ""} (${fetchMethod} ${fetchUri}${requestId ? ` Request ID: ${requestId}` : ""})`
|
|
358
599
|
);
|
|
359
|
-
this
|
|
360
|
-
this
|
|
361
|
-
this
|
|
362
|
-
this
|
|
363
|
-
this
|
|
364
|
-
this
|
|
600
|
+
__publicField2(this, "errorMessage", errorMessage);
|
|
601
|
+
__publicField2(this, "fetchMethod", fetchMethod);
|
|
602
|
+
__publicField2(this, "fetchUri", fetchUri);
|
|
603
|
+
__publicField2(this, "statusCode", statusCode);
|
|
604
|
+
__publicField2(this, "statusText", statusText);
|
|
605
|
+
__publicField2(this, "requestId", requestId);
|
|
365
606
|
Object.setPrototypeOf(this, _ApiClientError.prototype);
|
|
366
607
|
}
|
|
367
608
|
};
|
|
368
609
|
var ApiClient = class _ApiClient {
|
|
369
610
|
constructor(options) {
|
|
370
|
-
|
|
611
|
+
__publicField2(this, "options");
|
|
371
612
|
var _a, _b, _c, _d, _e;
|
|
372
613
|
if (!options.apiKey && !options.bearerToken) {
|
|
373
614
|
throw new Error("You must provide an API key or a bearer token");
|
|
@@ -672,468 +913,269 @@ var _QuirkClient = class _QuirkClient2 extends ApiClient {
|
|
|
672
913
|
expectNoContent: true
|
|
673
914
|
});
|
|
674
915
|
}
|
|
675
|
-
/** Deletes a Quirk */
|
|
676
|
-
async remove(body) {
|
|
677
|
-
const fetchUri = this.createUrl(__privateGet2(_QuirkClient2, _url5));
|
|
678
|
-
await this.apiClient(fetchUri, {
|
|
679
|
-
method: "DELETE",
|
|
680
|
-
body: JSON.stringify({ ...body, projectId: this.options.projectId }),
|
|
681
|
-
expectNoContent: true
|
|
682
|
-
});
|
|
683
|
-
}
|
|
684
|
-
};
|
|
685
|
-
_url5 = /* @__PURE__ */ new WeakMap();
|
|
686
|
-
__privateAdd2(_QuirkClient, _url5, "/api/v2/quirk");
|
|
687
|
-
var _url6;
|
|
688
|
-
var _SignalClient = class _SignalClient2 extends ApiClient {
|
|
689
|
-
constructor(options) {
|
|
690
|
-
super(options);
|
|
691
|
-
}
|
|
692
|
-
/** Fetches all Signals for a project */
|
|
693
|
-
async get(options) {
|
|
694
|
-
const { projectId } = this.options;
|
|
695
|
-
const fetchUri = this.createUrl(__privateGet2(_SignalClient2, _url6), { ...options, projectId });
|
|
696
|
-
return await this.apiClient(fetchUri);
|
|
697
|
-
}
|
|
698
|
-
/** Updates or creates (based on id) a Signal */
|
|
699
|
-
async upsert(body) {
|
|
700
|
-
const fetchUri = this.createUrl(__privateGet2(_SignalClient2, _url6));
|
|
701
|
-
await this.apiClient(fetchUri, {
|
|
702
|
-
method: "PUT",
|
|
703
|
-
body: JSON.stringify({ ...body, projectId: this.options.projectId }),
|
|
704
|
-
expectNoContent: true
|
|
705
|
-
});
|
|
706
|
-
}
|
|
707
|
-
/** Deletes a Signal */
|
|
708
|
-
async remove(body) {
|
|
709
|
-
const fetchUri = this.createUrl(__privateGet2(_SignalClient2, _url6));
|
|
710
|
-
await this.apiClient(fetchUri, {
|
|
711
|
-
method: "DELETE",
|
|
712
|
-
body: JSON.stringify({ ...body, projectId: this.options.projectId }),
|
|
713
|
-
expectNoContent: true
|
|
714
|
-
});
|
|
715
|
-
}
|
|
716
|
-
};
|
|
717
|
-
_url6 = /* @__PURE__ */ new WeakMap();
|
|
718
|
-
__privateAdd2(_SignalClient, _url6, "/api/v2/signal");
|
|
719
|
-
var _url7;
|
|
720
|
-
var _TestClient = class _TestClient2 extends ApiClient {
|
|
721
|
-
constructor(options) {
|
|
722
|
-
super(options);
|
|
723
|
-
}
|
|
724
|
-
/** Fetches all Tests for a project */
|
|
725
|
-
async get(options) {
|
|
726
|
-
const { projectId } = this.options;
|
|
727
|
-
const fetchUri = this.createUrl(__privateGet2(_TestClient2, _url7), { ...options, projectId });
|
|
728
|
-
return await this.apiClient(fetchUri);
|
|
729
|
-
}
|
|
730
|
-
/** Updates or creates (based on id) a Test */
|
|
731
|
-
async upsert(body) {
|
|
732
|
-
const fetchUri = this.createUrl(__privateGet2(_TestClient2, _url7));
|
|
733
|
-
await this.apiClient(fetchUri, {
|
|
734
|
-
method: "PUT",
|
|
735
|
-
body: JSON.stringify({ ...body, projectId: this.options.projectId }),
|
|
736
|
-
expectNoContent: true
|
|
737
|
-
});
|
|
738
|
-
}
|
|
739
|
-
/** Deletes a Test */
|
|
740
|
-
async remove(body) {
|
|
741
|
-
const fetchUri = this.createUrl(__privateGet2(_TestClient2, _url7));
|
|
742
|
-
await this.apiClient(fetchUri, {
|
|
743
|
-
method: "DELETE",
|
|
744
|
-
body: JSON.stringify({ ...body, projectId: this.options.projectId }),
|
|
745
|
-
expectNoContent: true
|
|
746
|
-
});
|
|
747
|
-
}
|
|
748
|
-
};
|
|
749
|
-
_url7 = /* @__PURE__ */ new WeakMap();
|
|
750
|
-
__privateAdd2(_TestClient, _url7, "/api/v2/test");
|
|
751
|
-
|
|
752
|
-
//
|
|
753
|
-
var
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
)
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
}
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
dequeue()
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
}
|
|
857
|
-
};
|
|
858
|
-
const run = async (fn, resolve, ...args) => {
|
|
859
|
-
activeCount++;
|
|
860
|
-
const result = (async () => fn(...args))();
|
|
861
|
-
resolve(result);
|
|
862
|
-
try {
|
|
863
|
-
await result;
|
|
864
|
-
} catch (e) {
|
|
865
|
-
}
|
|
866
|
-
next();
|
|
867
|
-
};
|
|
868
|
-
const enqueue = (fn, resolve, ...args) => {
|
|
869
|
-
queue.enqueue(run.bind(null, fn, resolve, ...args));
|
|
870
|
-
(async () => {
|
|
871
|
-
await Promise.resolve();
|
|
872
|
-
if (activeCount < concurrency && queue.size > 0) {
|
|
873
|
-
queue.dequeue()();
|
|
874
|
-
}
|
|
875
|
-
})();
|
|
876
|
-
};
|
|
877
|
-
const generator = (fn, ...args) => new Promise((resolve) => {
|
|
878
|
-
enqueue(fn, resolve, ...args);
|
|
879
|
-
});
|
|
880
|
-
Object.defineProperties(generator, {
|
|
881
|
-
activeCount: {
|
|
882
|
-
get: () => activeCount
|
|
883
|
-
},
|
|
884
|
-
pendingCount: {
|
|
885
|
-
get: () => queue.size
|
|
886
|
-
},
|
|
887
|
-
clearQueue: {
|
|
888
|
-
value: () => {
|
|
889
|
-
queue.clear();
|
|
890
|
-
}
|
|
891
|
-
}
|
|
892
|
-
});
|
|
893
|
-
return generator;
|
|
894
|
-
};
|
|
895
|
-
module.exports = pLimit2;
|
|
896
|
-
}
|
|
897
|
-
});
|
|
898
|
-
var require_retry_operation = __commonJS2({
|
|
899
|
-
"../../node_modules/.pnpm/retry@0.13.1/node_modules/retry/lib/retry_operation.js"(exports, module) {
|
|
900
|
-
"use strict";
|
|
901
|
-
function RetryOperation(timeouts, options) {
|
|
902
|
-
if (typeof options === "boolean") {
|
|
903
|
-
options = { forever: options };
|
|
904
|
-
}
|
|
905
|
-
this._originalTimeouts = JSON.parse(JSON.stringify(timeouts));
|
|
906
|
-
this._timeouts = timeouts;
|
|
907
|
-
this._options = options || {};
|
|
908
|
-
this._maxRetryTime = options && options.maxRetryTime || Infinity;
|
|
909
|
-
this._fn = null;
|
|
910
|
-
this._errors = [];
|
|
911
|
-
this._attempts = 1;
|
|
912
|
-
this._operationTimeout = null;
|
|
913
|
-
this._operationTimeoutCb = null;
|
|
914
|
-
this._timeout = null;
|
|
915
|
-
this._operationStart = null;
|
|
916
|
-
this._timer = null;
|
|
917
|
-
if (this._options.forever) {
|
|
918
|
-
this._cachedTimeouts = this._timeouts.slice(0);
|
|
919
|
-
}
|
|
920
|
-
}
|
|
921
|
-
module.exports = RetryOperation;
|
|
922
|
-
RetryOperation.prototype.reset = function() {
|
|
923
|
-
this._attempts = 1;
|
|
924
|
-
this._timeouts = this._originalTimeouts.slice(0);
|
|
925
|
-
};
|
|
926
|
-
RetryOperation.prototype.stop = function() {
|
|
927
|
-
if (this._timeout) {
|
|
928
|
-
clearTimeout(this._timeout);
|
|
929
|
-
}
|
|
930
|
-
if (this._timer) {
|
|
931
|
-
clearTimeout(this._timer);
|
|
932
|
-
}
|
|
933
|
-
this._timeouts = [];
|
|
934
|
-
this._cachedTimeouts = null;
|
|
935
|
-
};
|
|
936
|
-
RetryOperation.prototype.retry = function(err) {
|
|
937
|
-
if (this._timeout) {
|
|
938
|
-
clearTimeout(this._timeout);
|
|
939
|
-
}
|
|
940
|
-
if (!err) {
|
|
941
|
-
return false;
|
|
942
|
-
}
|
|
943
|
-
var currentTime = (/* @__PURE__ */ new Date()).getTime();
|
|
944
|
-
if (err && currentTime - this._operationStart >= this._maxRetryTime) {
|
|
945
|
-
this._errors.push(err);
|
|
946
|
-
this._errors.unshift(new Error("RetryOperation timeout occurred"));
|
|
947
|
-
return false;
|
|
948
|
-
}
|
|
949
|
-
this._errors.push(err);
|
|
950
|
-
var timeout = this._timeouts.shift();
|
|
951
|
-
if (timeout === void 0) {
|
|
952
|
-
if (this._cachedTimeouts) {
|
|
953
|
-
this._errors.splice(0, this._errors.length - 1);
|
|
954
|
-
timeout = this._cachedTimeouts.slice(-1);
|
|
955
|
-
} else {
|
|
956
|
-
return false;
|
|
957
|
-
}
|
|
958
|
-
}
|
|
959
|
-
var self = this;
|
|
960
|
-
this._timer = setTimeout(function() {
|
|
961
|
-
self._attempts++;
|
|
962
|
-
if (self._operationTimeoutCb) {
|
|
963
|
-
self._timeout = setTimeout(function() {
|
|
964
|
-
self._operationTimeoutCb(self._attempts);
|
|
965
|
-
}, self._operationTimeout);
|
|
966
|
-
if (self._options.unref) {
|
|
967
|
-
self._timeout.unref();
|
|
968
|
-
}
|
|
969
|
-
}
|
|
970
|
-
self._fn(self._attempts);
|
|
971
|
-
}, timeout);
|
|
972
|
-
if (this._options.unref) {
|
|
973
|
-
this._timer.unref();
|
|
974
|
-
}
|
|
975
|
-
return true;
|
|
976
|
-
};
|
|
977
|
-
RetryOperation.prototype.attempt = function(fn, timeoutOps) {
|
|
978
|
-
this._fn = fn;
|
|
979
|
-
if (timeoutOps) {
|
|
980
|
-
if (timeoutOps.timeout) {
|
|
981
|
-
this._operationTimeout = timeoutOps.timeout;
|
|
982
|
-
}
|
|
983
|
-
if (timeoutOps.cb) {
|
|
984
|
-
this._operationTimeoutCb = timeoutOps.cb;
|
|
985
|
-
}
|
|
986
|
-
}
|
|
987
|
-
var self = this;
|
|
988
|
-
if (this._operationTimeoutCb) {
|
|
989
|
-
this._timeout = setTimeout(function() {
|
|
990
|
-
self._operationTimeoutCb();
|
|
991
|
-
}, self._operationTimeout);
|
|
992
|
-
}
|
|
993
|
-
this._operationStart = (/* @__PURE__ */ new Date()).getTime();
|
|
994
|
-
this._fn(this._attempts);
|
|
995
|
-
};
|
|
996
|
-
RetryOperation.prototype.try = function(fn) {
|
|
997
|
-
console.log("Using RetryOperation.try() is deprecated");
|
|
998
|
-
this.attempt(fn);
|
|
999
|
-
};
|
|
1000
|
-
RetryOperation.prototype.start = function(fn) {
|
|
1001
|
-
console.log("Using RetryOperation.start() is deprecated");
|
|
1002
|
-
this.attempt(fn);
|
|
1003
|
-
};
|
|
1004
|
-
RetryOperation.prototype.start = RetryOperation.prototype.try;
|
|
1005
|
-
RetryOperation.prototype.errors = function() {
|
|
1006
|
-
return this._errors;
|
|
1007
|
-
};
|
|
1008
|
-
RetryOperation.prototype.attempts = function() {
|
|
1009
|
-
return this._attempts;
|
|
1010
|
-
};
|
|
1011
|
-
RetryOperation.prototype.mainError = function() {
|
|
1012
|
-
if (this._errors.length === 0) {
|
|
1013
|
-
return null;
|
|
1014
|
-
}
|
|
1015
|
-
var counts = {};
|
|
1016
|
-
var mainError = null;
|
|
1017
|
-
var mainErrorCount = 0;
|
|
1018
|
-
for (var i = 0; i < this._errors.length; i++) {
|
|
1019
|
-
var error = this._errors[i];
|
|
1020
|
-
var message = error.message;
|
|
1021
|
-
var count = (counts[message] || 0) + 1;
|
|
1022
|
-
counts[message] = count;
|
|
1023
|
-
if (count >= mainErrorCount) {
|
|
1024
|
-
mainError = error;
|
|
1025
|
-
mainErrorCount = count;
|
|
1026
|
-
}
|
|
1027
|
-
}
|
|
1028
|
-
return mainError;
|
|
1029
|
-
};
|
|
1030
|
-
}
|
|
1031
|
-
});
|
|
1032
|
-
var require_retry = __commonJS2({
|
|
1033
|
-
"../../node_modules/.pnpm/retry@0.13.1/node_modules/retry/lib/retry.js"(exports) {
|
|
1034
|
-
"use strict";
|
|
1035
|
-
var RetryOperation = require_retry_operation();
|
|
1036
|
-
exports.operation = function(options) {
|
|
1037
|
-
var timeouts = exports.timeouts(options);
|
|
1038
|
-
return new RetryOperation(timeouts, {
|
|
1039
|
-
forever: options && (options.forever || options.retries === Infinity),
|
|
1040
|
-
unref: options && options.unref,
|
|
1041
|
-
maxRetryTime: options && options.maxRetryTime
|
|
1042
|
-
});
|
|
1043
|
-
};
|
|
1044
|
-
exports.timeouts = function(options) {
|
|
1045
|
-
if (options instanceof Array) {
|
|
1046
|
-
return [].concat(options);
|
|
1047
|
-
}
|
|
1048
|
-
var opts = {
|
|
1049
|
-
retries: 10,
|
|
1050
|
-
factor: 2,
|
|
1051
|
-
minTimeout: 1 * 1e3,
|
|
1052
|
-
maxTimeout: Infinity,
|
|
1053
|
-
randomize: false
|
|
1054
|
-
};
|
|
1055
|
-
for (var key in options) {
|
|
1056
|
-
opts[key] = options[key];
|
|
1057
|
-
}
|
|
1058
|
-
if (opts.minTimeout > opts.maxTimeout) {
|
|
1059
|
-
throw new Error("minTimeout is greater than maxTimeout");
|
|
1060
|
-
}
|
|
1061
|
-
var timeouts = [];
|
|
1062
|
-
for (var i = 0; i < opts.retries; i++) {
|
|
1063
|
-
timeouts.push(this.createTimeout(i, opts));
|
|
1064
|
-
}
|
|
1065
|
-
if (options && options.forever && !timeouts.length) {
|
|
1066
|
-
timeouts.push(this.createTimeout(i, opts));
|
|
916
|
+
/** Deletes a Quirk */
|
|
917
|
+
async remove(body) {
|
|
918
|
+
const fetchUri = this.createUrl(__privateGet2(_QuirkClient2, _url5));
|
|
919
|
+
await this.apiClient(fetchUri, {
|
|
920
|
+
method: "DELETE",
|
|
921
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId }),
|
|
922
|
+
expectNoContent: true
|
|
923
|
+
});
|
|
924
|
+
}
|
|
925
|
+
};
|
|
926
|
+
_url5 = /* @__PURE__ */ new WeakMap();
|
|
927
|
+
__privateAdd2(_QuirkClient, _url5, "/api/v2/quirk");
|
|
928
|
+
var _url6;
|
|
929
|
+
var _SignalClient = class _SignalClient2 extends ApiClient {
|
|
930
|
+
constructor(options) {
|
|
931
|
+
super(options);
|
|
932
|
+
}
|
|
933
|
+
/** Fetches all Signals for a project */
|
|
934
|
+
async get(options) {
|
|
935
|
+
const { projectId } = this.options;
|
|
936
|
+
const fetchUri = this.createUrl(__privateGet2(_SignalClient2, _url6), { ...options, projectId });
|
|
937
|
+
return await this.apiClient(fetchUri);
|
|
938
|
+
}
|
|
939
|
+
/** Updates or creates (based on id) a Signal */
|
|
940
|
+
async upsert(body) {
|
|
941
|
+
const fetchUri = this.createUrl(__privateGet2(_SignalClient2, _url6));
|
|
942
|
+
await this.apiClient(fetchUri, {
|
|
943
|
+
method: "PUT",
|
|
944
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId }),
|
|
945
|
+
expectNoContent: true
|
|
946
|
+
});
|
|
947
|
+
}
|
|
948
|
+
/** Deletes a Signal */
|
|
949
|
+
async remove(body) {
|
|
950
|
+
const fetchUri = this.createUrl(__privateGet2(_SignalClient2, _url6));
|
|
951
|
+
await this.apiClient(fetchUri, {
|
|
952
|
+
method: "DELETE",
|
|
953
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId }),
|
|
954
|
+
expectNoContent: true
|
|
955
|
+
});
|
|
956
|
+
}
|
|
957
|
+
};
|
|
958
|
+
_url6 = /* @__PURE__ */ new WeakMap();
|
|
959
|
+
__privateAdd2(_SignalClient, _url6, "/api/v2/signal");
|
|
960
|
+
var _url7;
|
|
961
|
+
var _TestClient = class _TestClient2 extends ApiClient {
|
|
962
|
+
constructor(options) {
|
|
963
|
+
super(options);
|
|
964
|
+
}
|
|
965
|
+
/** Fetches all Tests for a project */
|
|
966
|
+
async get(options) {
|
|
967
|
+
const { projectId } = this.options;
|
|
968
|
+
const fetchUri = this.createUrl(__privateGet2(_TestClient2, _url7), { ...options, projectId });
|
|
969
|
+
return await this.apiClient(fetchUri);
|
|
970
|
+
}
|
|
971
|
+
/** Updates or creates (based on id) a Test */
|
|
972
|
+
async upsert(body) {
|
|
973
|
+
const fetchUri = this.createUrl(__privateGet2(_TestClient2, _url7));
|
|
974
|
+
await this.apiClient(fetchUri, {
|
|
975
|
+
method: "PUT",
|
|
976
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId }),
|
|
977
|
+
expectNoContent: true
|
|
978
|
+
});
|
|
979
|
+
}
|
|
980
|
+
/** Deletes a Test */
|
|
981
|
+
async remove(body) {
|
|
982
|
+
const fetchUri = this.createUrl(__privateGet2(_TestClient2, _url7));
|
|
983
|
+
await this.apiClient(fetchUri, {
|
|
984
|
+
method: "DELETE",
|
|
985
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId }),
|
|
986
|
+
expectNoContent: true
|
|
987
|
+
});
|
|
988
|
+
}
|
|
989
|
+
};
|
|
990
|
+
_url7 = /* @__PURE__ */ new WeakMap();
|
|
991
|
+
__privateAdd2(_TestClient, _url7, "/api/v2/test");
|
|
992
|
+
|
|
993
|
+
// ../../node_modules/.pnpm/yocto-queue@1.2.2/node_modules/yocto-queue/index.js
|
|
994
|
+
var Node = class {
|
|
995
|
+
constructor(value) {
|
|
996
|
+
__publicField(this, "value");
|
|
997
|
+
__publicField(this, "next");
|
|
998
|
+
this.value = value;
|
|
999
|
+
}
|
|
1000
|
+
};
|
|
1001
|
+
var _head, _tail, _size;
|
|
1002
|
+
var Queue = class {
|
|
1003
|
+
constructor() {
|
|
1004
|
+
__privateAdd(this, _head);
|
|
1005
|
+
__privateAdd(this, _tail);
|
|
1006
|
+
__privateAdd(this, _size);
|
|
1007
|
+
this.clear();
|
|
1008
|
+
}
|
|
1009
|
+
enqueue(value) {
|
|
1010
|
+
const node = new Node(value);
|
|
1011
|
+
if (__privateGet(this, _head)) {
|
|
1012
|
+
__privateGet(this, _tail).next = node;
|
|
1013
|
+
__privateSet(this, _tail, node);
|
|
1014
|
+
} else {
|
|
1015
|
+
__privateSet(this, _head, node);
|
|
1016
|
+
__privateSet(this, _tail, node);
|
|
1017
|
+
}
|
|
1018
|
+
__privateWrapper(this, _size)._++;
|
|
1019
|
+
}
|
|
1020
|
+
dequeue() {
|
|
1021
|
+
const current = __privateGet(this, _head);
|
|
1022
|
+
if (!current) {
|
|
1023
|
+
return;
|
|
1024
|
+
}
|
|
1025
|
+
__privateSet(this, _head, __privateGet(this, _head).next);
|
|
1026
|
+
__privateWrapper(this, _size)._--;
|
|
1027
|
+
if (!__privateGet(this, _head)) {
|
|
1028
|
+
__privateSet(this, _tail, void 0);
|
|
1029
|
+
}
|
|
1030
|
+
return current.value;
|
|
1031
|
+
}
|
|
1032
|
+
peek() {
|
|
1033
|
+
if (!__privateGet(this, _head)) {
|
|
1034
|
+
return;
|
|
1035
|
+
}
|
|
1036
|
+
return __privateGet(this, _head).value;
|
|
1037
|
+
}
|
|
1038
|
+
clear() {
|
|
1039
|
+
__privateSet(this, _head, void 0);
|
|
1040
|
+
__privateSet(this, _tail, void 0);
|
|
1041
|
+
__privateSet(this, _size, 0);
|
|
1042
|
+
}
|
|
1043
|
+
get size() {
|
|
1044
|
+
return __privateGet(this, _size);
|
|
1045
|
+
}
|
|
1046
|
+
*[Symbol.iterator]() {
|
|
1047
|
+
let current = __privateGet(this, _head);
|
|
1048
|
+
while (current) {
|
|
1049
|
+
yield current.value;
|
|
1050
|
+
current = current.next;
|
|
1051
|
+
}
|
|
1052
|
+
}
|
|
1053
|
+
*drain() {
|
|
1054
|
+
while (__privateGet(this, _head)) {
|
|
1055
|
+
yield this.dequeue();
|
|
1056
|
+
}
|
|
1057
|
+
}
|
|
1058
|
+
};
|
|
1059
|
+
_head = new WeakMap();
|
|
1060
|
+
_tail = new WeakMap();
|
|
1061
|
+
_size = new WeakMap();
|
|
1062
|
+
|
|
1063
|
+
// ../../node_modules/.pnpm/p-limit@6.2.0/node_modules/p-limit/index.js
|
|
1064
|
+
function pLimit2(concurrency) {
|
|
1065
|
+
validateConcurrency(concurrency);
|
|
1066
|
+
const queue = new Queue();
|
|
1067
|
+
let activeCount = 0;
|
|
1068
|
+
const resumeNext = () => {
|
|
1069
|
+
if (activeCount < concurrency && queue.size > 0) {
|
|
1070
|
+
queue.dequeue()();
|
|
1071
|
+
activeCount++;
|
|
1072
|
+
}
|
|
1073
|
+
};
|
|
1074
|
+
const next = () => {
|
|
1075
|
+
activeCount--;
|
|
1076
|
+
resumeNext();
|
|
1077
|
+
};
|
|
1078
|
+
const run = async (function_, resolve, arguments_) => {
|
|
1079
|
+
const result = (async () => function_(...arguments_))();
|
|
1080
|
+
resolve(result);
|
|
1081
|
+
try {
|
|
1082
|
+
await result;
|
|
1083
|
+
} catch (e) {
|
|
1084
|
+
}
|
|
1085
|
+
next();
|
|
1086
|
+
};
|
|
1087
|
+
const enqueue = (function_, resolve, arguments_) => {
|
|
1088
|
+
new Promise((internalResolve) => {
|
|
1089
|
+
queue.enqueue(internalResolve);
|
|
1090
|
+
}).then(
|
|
1091
|
+
run.bind(void 0, function_, resolve, arguments_)
|
|
1092
|
+
);
|
|
1093
|
+
(async () => {
|
|
1094
|
+
await Promise.resolve();
|
|
1095
|
+
if (activeCount < concurrency) {
|
|
1096
|
+
resumeNext();
|
|
1067
1097
|
}
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1098
|
+
})();
|
|
1099
|
+
};
|
|
1100
|
+
const generator = (function_, ...arguments_) => new Promise((resolve) => {
|
|
1101
|
+
enqueue(function_, resolve, arguments_);
|
|
1102
|
+
});
|
|
1103
|
+
Object.defineProperties(generator, {
|
|
1104
|
+
activeCount: {
|
|
1105
|
+
get: () => activeCount
|
|
1106
|
+
},
|
|
1107
|
+
pendingCount: {
|
|
1108
|
+
get: () => queue.size
|
|
1109
|
+
},
|
|
1110
|
+
clearQueue: {
|
|
1111
|
+
value() {
|
|
1112
|
+
queue.clear();
|
|
1083
1113
|
}
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1114
|
+
},
|
|
1115
|
+
concurrency: {
|
|
1116
|
+
get: () => concurrency,
|
|
1117
|
+
set(newConcurrency) {
|
|
1118
|
+
validateConcurrency(newConcurrency);
|
|
1119
|
+
concurrency = newConcurrency;
|
|
1120
|
+
queueMicrotask(() => {
|
|
1121
|
+
while (activeCount < concurrency && queue.size > 0) {
|
|
1122
|
+
resumeNext();
|
|
1089
1123
|
}
|
|
1090
|
-
}
|
|
1091
|
-
}
|
|
1092
|
-
for (var i = 0; i < methods.length; i++) {
|
|
1093
|
-
var method = methods[i];
|
|
1094
|
-
var original = obj[method];
|
|
1095
|
-
obj[method] = function retryWrapper(original2) {
|
|
1096
|
-
var op = exports.operation(options);
|
|
1097
|
-
var args = Array.prototype.slice.call(arguments, 1);
|
|
1098
|
-
var callback = args.pop();
|
|
1099
|
-
args.push(function(err) {
|
|
1100
|
-
if (op.retry(err)) {
|
|
1101
|
-
return;
|
|
1102
|
-
}
|
|
1103
|
-
if (err) {
|
|
1104
|
-
arguments[0] = op.mainError();
|
|
1105
|
-
}
|
|
1106
|
-
callback.apply(this, arguments);
|
|
1107
|
-
});
|
|
1108
|
-
op.attempt(function() {
|
|
1109
|
-
original2.apply(obj, args);
|
|
1110
|
-
});
|
|
1111
|
-
}.bind(obj, original);
|
|
1112
|
-
obj[method].options = options;
|
|
1124
|
+
});
|
|
1113
1125
|
}
|
|
1114
|
-
}
|
|
1115
|
-
}
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1126
|
+
}
|
|
1127
|
+
});
|
|
1128
|
+
return generator;
|
|
1129
|
+
}
|
|
1130
|
+
function validateConcurrency(concurrency) {
|
|
1131
|
+
if (!((Number.isInteger(concurrency) || concurrency === Number.POSITIVE_INFINITY) && concurrency > 0)) {
|
|
1132
|
+
throw new TypeError("Expected `concurrency` to be a number from 1 and up");
|
|
1121
1133
|
}
|
|
1122
|
-
}
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
var
|
|
1126
|
-
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
// ../../node_modules/.pnpm/p-retry@6.2.1/node_modules/p-retry/index.js
|
|
1137
|
+
var import_retry = __toESM(require_retry2(), 1);
|
|
1138
|
+
|
|
1139
|
+
// ../../node_modules/.pnpm/is-network-error@1.3.2/node_modules/is-network-error/index.js
|
|
1140
|
+
var objectToString = Object.prototype.toString;
|
|
1141
|
+
var isError = (value) => objectToString.call(value) === "[object Error]";
|
|
1142
|
+
var errorMessages = /* @__PURE__ */ new Set([
|
|
1143
|
+
"network error",
|
|
1127
1144
|
// Chrome
|
|
1128
1145
|
"NetworkError when attempting to fetch resource.",
|
|
1129
1146
|
// Firefox
|
|
1130
1147
|
"The Internet connection appears to be offline.",
|
|
1131
|
-
// Safari
|
|
1148
|
+
// Safari 16
|
|
1132
1149
|
"Network request failed",
|
|
1133
1150
|
// `cross-fetch`
|
|
1134
|
-
"fetch failed"
|
|
1151
|
+
"fetch failed",
|
|
1152
|
+
// Undici (Node.js)
|
|
1153
|
+
"terminated",
|
|
1135
1154
|
// Undici (Node.js)
|
|
1155
|
+
" A network error occurred.",
|
|
1156
|
+
// Bun (WebKit)
|
|
1157
|
+
"Network connection lost"
|
|
1158
|
+
// Cloudflare Workers (fetch)
|
|
1136
1159
|
]);
|
|
1160
|
+
function isNetworkError(error) {
|
|
1161
|
+
const isValid = error && isError(error) && error.name === "TypeError" && typeof error.message === "string";
|
|
1162
|
+
if (!isValid) {
|
|
1163
|
+
return false;
|
|
1164
|
+
}
|
|
1165
|
+
const { message, stack } = error;
|
|
1166
|
+
if (message === "Load failed" || message.startsWith("Load failed (") && message.endsWith(")")) {
|
|
1167
|
+
return stack === void 0 || "__sentry_captured__" in error;
|
|
1168
|
+
}
|
|
1169
|
+
if (message.startsWith("error sending request for url")) {
|
|
1170
|
+
return true;
|
|
1171
|
+
}
|
|
1172
|
+
if (message === "Failed to fetch" || message.startsWith("Failed to fetch (") && message.endsWith(")")) {
|
|
1173
|
+
return true;
|
|
1174
|
+
}
|
|
1175
|
+
return errorMessages.has(message);
|
|
1176
|
+
}
|
|
1177
|
+
|
|
1178
|
+
// ../../node_modules/.pnpm/p-retry@6.2.1/node_modules/p-retry/index.js
|
|
1137
1179
|
var AbortError = class extends Error {
|
|
1138
1180
|
constructor(message) {
|
|
1139
1181
|
super();
|
|
@@ -1154,63 +1196,71 @@ var decorateErrorWithCounts = (error, attemptNumber, options) => {
|
|
|
1154
1196
|
error.retriesLeft = retriesLeft;
|
|
1155
1197
|
return error;
|
|
1156
1198
|
};
|
|
1157
|
-
var isNetworkError = (errorMessage) => networkErrorMsgs.has(errorMessage);
|
|
1158
|
-
var getDOMException = (errorMessage) => globalThis.DOMException === void 0 ? new Error(errorMessage) : new DOMException(errorMessage);
|
|
1159
1199
|
async function pRetry(input, options) {
|
|
1160
1200
|
return new Promise((resolve, reject) => {
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
retries: 10,
|
|
1165
|
-
...options
|
|
1201
|
+
var _a, _b, _c;
|
|
1202
|
+
options = { ...options };
|
|
1203
|
+
(_a = options.onFailedAttempt) != null ? _a : options.onFailedAttempt = () => {
|
|
1166
1204
|
};
|
|
1205
|
+
(_b = options.shouldRetry) != null ? _b : options.shouldRetry = () => true;
|
|
1206
|
+
(_c = options.retries) != null ? _c : options.retries = 10;
|
|
1167
1207
|
const operation = import_retry.default.operation(options);
|
|
1208
|
+
const abortHandler = () => {
|
|
1209
|
+
var _a2;
|
|
1210
|
+
operation.stop();
|
|
1211
|
+
reject((_a2 = options.signal) == null ? void 0 : _a2.reason);
|
|
1212
|
+
};
|
|
1213
|
+
if (options.signal && !options.signal.aborted) {
|
|
1214
|
+
options.signal.addEventListener("abort", abortHandler, { once: true });
|
|
1215
|
+
}
|
|
1216
|
+
const cleanUp = () => {
|
|
1217
|
+
var _a2;
|
|
1218
|
+
(_a2 = options.signal) == null ? void 0 : _a2.removeEventListener("abort", abortHandler);
|
|
1219
|
+
operation.stop();
|
|
1220
|
+
};
|
|
1168
1221
|
operation.attempt(async (attemptNumber) => {
|
|
1169
1222
|
try {
|
|
1170
|
-
|
|
1223
|
+
const result = await input(attemptNumber);
|
|
1224
|
+
cleanUp();
|
|
1225
|
+
resolve(result);
|
|
1171
1226
|
} catch (error) {
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
} else {
|
|
1227
|
+
try {
|
|
1228
|
+
if (!(error instanceof Error)) {
|
|
1229
|
+
throw new TypeError(`Non-error was thrown: "${error}". You should only throw errors.`);
|
|
1230
|
+
}
|
|
1231
|
+
if (error instanceof AbortError) {
|
|
1232
|
+
throw error.originalError;
|
|
1233
|
+
}
|
|
1234
|
+
if (error instanceof TypeError && !isNetworkError(error)) {
|
|
1235
|
+
throw error;
|
|
1236
|
+
}
|
|
1183
1237
|
decorateErrorWithCounts(error, attemptNumber, options);
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
reject(error2);
|
|
1188
|
-
return;
|
|
1238
|
+
if (!await options.shouldRetry(error)) {
|
|
1239
|
+
operation.stop();
|
|
1240
|
+
reject(error);
|
|
1189
1241
|
}
|
|
1242
|
+
await options.onFailedAttempt(error);
|
|
1190
1243
|
if (!operation.retry(error)) {
|
|
1191
|
-
|
|
1244
|
+
throw operation.mainError();
|
|
1192
1245
|
}
|
|
1246
|
+
} catch (finalError) {
|
|
1247
|
+
decorateErrorWithCounts(finalError, attemptNumber, options);
|
|
1248
|
+
cleanUp();
|
|
1249
|
+
reject(finalError);
|
|
1193
1250
|
}
|
|
1194
1251
|
}
|
|
1195
1252
|
});
|
|
1196
|
-
if (options.signal && !options.signal.aborted) {
|
|
1197
|
-
options.signal.addEventListener("abort", () => {
|
|
1198
|
-
operation.stop();
|
|
1199
|
-
const reason = options.signal.reason === void 0 ? getDOMException("The operation was aborted.") : options.signal.reason;
|
|
1200
|
-
reject(reason instanceof Error ? reason : getDOMException(reason));
|
|
1201
|
-
}, {
|
|
1202
|
-
once: true
|
|
1203
|
-
});
|
|
1204
|
-
}
|
|
1205
1253
|
});
|
|
1206
1254
|
}
|
|
1255
|
+
|
|
1256
|
+
// ../../node_modules/.pnpm/p-throttle@6.2.0/node_modules/p-throttle/index.js
|
|
1207
1257
|
var AbortError2 = class extends Error {
|
|
1208
1258
|
constructor() {
|
|
1209
1259
|
super("Throttled function aborted");
|
|
1210
1260
|
this.name = "AbortError";
|
|
1211
1261
|
}
|
|
1212
1262
|
};
|
|
1213
|
-
function pThrottle({ limit, interval, strict }) {
|
|
1263
|
+
function pThrottle({ limit, interval, strict, onDelay }) {
|
|
1214
1264
|
if (!Number.isFinite(limit)) {
|
|
1215
1265
|
throw new TypeError("Expected `limit` to be a finite number");
|
|
1216
1266
|
}
|
|
@@ -1238,32 +1288,38 @@ function pThrottle({ limit, interval, strict }) {
|
|
|
1238
1288
|
const strictTicks = [];
|
|
1239
1289
|
function strictDelay() {
|
|
1240
1290
|
const now = Date.now();
|
|
1241
|
-
if (strictTicks.length
|
|
1242
|
-
strictTicks.
|
|
1243
|
-
return 0;
|
|
1291
|
+
if (strictTicks.length > 0 && now - strictTicks.at(-1) > interval) {
|
|
1292
|
+
strictTicks.length = 0;
|
|
1244
1293
|
}
|
|
1245
|
-
|
|
1246
|
-
if (now >= earliestTime) {
|
|
1294
|
+
if (strictTicks.length < limit) {
|
|
1247
1295
|
strictTicks.push(now);
|
|
1248
1296
|
return 0;
|
|
1249
1297
|
}
|
|
1250
|
-
strictTicks
|
|
1251
|
-
|
|
1298
|
+
const nextExecutionTime = strictTicks[0] + interval;
|
|
1299
|
+
strictTicks.shift();
|
|
1300
|
+
strictTicks.push(nextExecutionTime);
|
|
1301
|
+
return Math.max(0, nextExecutionTime - now);
|
|
1252
1302
|
}
|
|
1253
1303
|
const getDelay = strict ? strictDelay : windowedDelay;
|
|
1254
1304
|
return (function_) => {
|
|
1255
|
-
const throttled = function(...
|
|
1305
|
+
const throttled = function(...arguments_) {
|
|
1256
1306
|
if (!throttled.isEnabled) {
|
|
1257
|
-
return (async () => function_.apply(this,
|
|
1307
|
+
return (async () => function_.apply(this, arguments_))();
|
|
1258
1308
|
}
|
|
1259
|
-
let
|
|
1309
|
+
let timeoutId;
|
|
1260
1310
|
return new Promise((resolve, reject) => {
|
|
1261
1311
|
const execute = () => {
|
|
1262
|
-
resolve(function_.apply(this,
|
|
1263
|
-
queue.delete(
|
|
1312
|
+
resolve(function_.apply(this, arguments_));
|
|
1313
|
+
queue.delete(timeoutId);
|
|
1264
1314
|
};
|
|
1265
|
-
|
|
1266
|
-
|
|
1315
|
+
const delay = getDelay();
|
|
1316
|
+
if (delay > 0) {
|
|
1317
|
+
timeoutId = setTimeout(execute, delay);
|
|
1318
|
+
queue.set(timeoutId, reject);
|
|
1319
|
+
onDelay == null ? void 0 : onDelay(...arguments_);
|
|
1320
|
+
} else {
|
|
1321
|
+
execute();
|
|
1322
|
+
}
|
|
1267
1323
|
});
|
|
1268
1324
|
};
|
|
1269
1325
|
throttled.abort = () => {
|
|
@@ -1275,16 +1331,29 @@ function pThrottle({ limit, interval, strict }) {
|
|
|
1275
1331
|
strictTicks.splice(0, strictTicks.length);
|
|
1276
1332
|
};
|
|
1277
1333
|
throttled.isEnabled = true;
|
|
1334
|
+
Object.defineProperty(throttled, "queueSize", {
|
|
1335
|
+
get() {
|
|
1336
|
+
return queue.size;
|
|
1337
|
+
}
|
|
1338
|
+
});
|
|
1278
1339
|
return throttled;
|
|
1279
1340
|
};
|
|
1280
1341
|
}
|
|
1342
|
+
|
|
1343
|
+
// ../canvas/dist/index.mjs
|
|
1344
|
+
var __typeError3 = (msg) => {
|
|
1345
|
+
throw TypeError(msg);
|
|
1346
|
+
};
|
|
1347
|
+
var __accessCheck3 = (obj, member, msg) => member.has(obj) || __typeError3("Cannot " + msg);
|
|
1348
|
+
var __privateGet3 = (obj, member, getter) => (__accessCheck3(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
|
|
1349
|
+
var __privateAdd3 = (obj, member, value) => member.has(obj) ? __typeError3("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
|
1281
1350
|
function createLimitPolicy({
|
|
1282
1351
|
throttle = { interval: 1e3, limit: 10 },
|
|
1283
|
-
retry:
|
|
1352
|
+
retry: retry3 = { retries: 1, factor: 1.66 },
|
|
1284
1353
|
limit = 10
|
|
1285
1354
|
}) {
|
|
1286
1355
|
const throttler = throttle ? pThrottle(throttle) : null;
|
|
1287
|
-
const limiter = limit ? (
|
|
1356
|
+
const limiter = limit ? pLimit2(limit) : null;
|
|
1288
1357
|
return function limitPolicy(func) {
|
|
1289
1358
|
let currentFunc = async () => await func();
|
|
1290
1359
|
if (throttler) {
|
|
@@ -1295,13 +1364,13 @@ function createLimitPolicy({
|
|
|
1295
1364
|
const limitFunc = currentFunc;
|
|
1296
1365
|
currentFunc = () => limiter(limitFunc);
|
|
1297
1366
|
}
|
|
1298
|
-
if (
|
|
1367
|
+
if (retry3) {
|
|
1299
1368
|
const retryFunc = currentFunc;
|
|
1300
1369
|
currentFunc = () => pRetry(retryFunc, {
|
|
1301
|
-
...
|
|
1370
|
+
...retry3,
|
|
1302
1371
|
onFailedAttempt: async (error) => {
|
|
1303
|
-
if (
|
|
1304
|
-
await
|
|
1372
|
+
if (retry3.onFailedAttempt) {
|
|
1373
|
+
await retry3.onFailedAttempt(error);
|
|
1305
1374
|
}
|
|
1306
1375
|
if (error instanceof ApiClientError && typeof error.statusCode === "number" && error.statusCode >= 400 && error.statusCode < 500 && error.statusCode !== 429 && error.statusCode !== 408) {
|
|
1307
1376
|
throw error;
|
|
@@ -2492,7 +2561,7 @@ function createLimiter(concurrency) {
|
|
|
2492
2561
|
});
|
|
2493
2562
|
};
|
|
2494
2563
|
}
|
|
2495
|
-
async function
|
|
2564
|
+
async function retry2(fn, options) {
|
|
2496
2565
|
let lastError;
|
|
2497
2566
|
let delay = 1e3;
|
|
2498
2567
|
for (let attempt = 1; attempt <= options.retries + 1; attempt++) {
|
|
@@ -2532,7 +2601,7 @@ function createLimitPolicy2({
|
|
|
2532
2601
|
}
|
|
2533
2602
|
if (retryOptions) {
|
|
2534
2603
|
const retryFunc = currentFunc;
|
|
2535
|
-
currentFunc = () =>
|
|
2604
|
+
currentFunc = () => retry2(retryFunc, {
|
|
2536
2605
|
...retryOptions,
|
|
2537
2606
|
onFailedAttempt: async (error) => {
|
|
2538
2607
|
if (retryOptions.onFailedAttempt) {
|
|
@@ -3155,7 +3224,7 @@ function dequal(foo, bar) {
|
|
|
3155
3224
|
return foo !== foo && bar !== bar;
|
|
3156
3225
|
}
|
|
3157
3226
|
|
|
3158
|
-
// ../../node_modules/.pnpm/js-cookie@3.0.
|
|
3227
|
+
// ../../node_modules/.pnpm/js-cookie@3.0.8/node_modules/js-cookie/dist/js.cookie.mjs
|
|
3159
3228
|
function assign(target) {
|
|
3160
3229
|
for (var i = 1; i < arguments.length; i++) {
|
|
3161
3230
|
var source = arguments[i];
|
|
@@ -3221,7 +3290,7 @@ function init(converter, defaultAttributes) {
|
|
|
3221
3290
|
if (name === found) {
|
|
3222
3291
|
break;
|
|
3223
3292
|
}
|
|
3224
|
-
} catch (
|
|
3293
|
+
} catch (_e) {
|
|
3225
3294
|
}
|
|
3226
3295
|
}
|
|
3227
3296
|
return name ? jar[name] : jar;
|
|
@@ -3276,12 +3345,12 @@ function mitt_default(n) {
|
|
|
3276
3345
|
var import_rfdc = __toESM(require_rfdc(), 1);
|
|
3277
3346
|
var import_rfdc2 = __toESM(require_rfdc(), 1);
|
|
3278
3347
|
var import_rfdc3 = __toESM(require_rfdc(), 1);
|
|
3279
|
-
var
|
|
3348
|
+
var __defProp3 = Object.defineProperty;
|
|
3280
3349
|
var __typeError4 = (msg) => {
|
|
3281
3350
|
throw TypeError(msg);
|
|
3282
3351
|
};
|
|
3283
|
-
var
|
|
3284
|
-
var
|
|
3352
|
+
var __defNormalProp3 = (obj, key, value) => key in obj ? __defProp3(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3353
|
+
var __publicField3 = (obj, key, value) => __defNormalProp3(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
3285
3354
|
var __accessCheck4 = (obj, member, msg) => member.has(obj) || __typeError4("Cannot " + msg);
|
|
3286
3355
|
var __privateGet4 = (obj, member, getter) => (__accessCheck4(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
|
|
3287
3356
|
var __privateAdd4 = (obj, member, value) => member.has(obj) ? __typeError4("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
|
@@ -3358,7 +3427,7 @@ var SignalInstance = class {
|
|
|
3358
3427
|
constructor(data, evaluator, onLogMessage) {
|
|
3359
3428
|
__privateAdd4(this, _evaluator);
|
|
3360
3429
|
__privateAdd4(this, _onLogMessage);
|
|
3361
|
-
|
|
3430
|
+
__publicField3(this, "signal");
|
|
3362
3431
|
this.signal = data;
|
|
3363
3432
|
__privateSet2(this, _evaluator, evaluator);
|
|
3364
3433
|
__privateSet2(this, _onLogMessage, onLogMessage);
|
|
@@ -3416,7 +3485,7 @@ var ManifestInstance = class {
|
|
|
3416
3485
|
onLogMessage = () => {
|
|
3417
3486
|
}
|
|
3418
3487
|
}) {
|
|
3419
|
-
|
|
3488
|
+
__publicField3(this, "data");
|
|
3420
3489
|
__privateAdd4(this, _mf);
|
|
3421
3490
|
__privateAdd4(this, _signalInstances);
|
|
3422
3491
|
__privateAdd4(this, _goalEvaluators, []);
|
|
@@ -4203,7 +4272,7 @@ var TransitionDataStore = class {
|
|
|
4203
4272
|
__privateAdd4(this, _data);
|
|
4204
4273
|
__privateAdd4(this, _initialData);
|
|
4205
4274
|
__privateAdd4(this, _mitt, mitt_default());
|
|
4206
|
-
|
|
4275
|
+
__publicField3(this, "events", {
|
|
4207
4276
|
on: __privateGet4(this, _mitt).on,
|
|
4208
4277
|
off: __privateGet4(this, _mitt).off
|
|
4209
4278
|
});
|
|
@@ -4566,10 +4635,10 @@ var _LocalStorage_instances;
|
|
|
4566
4635
|
var key_fn;
|
|
4567
4636
|
var LocalStorage = class {
|
|
4568
4637
|
constructor(partitionKey) {
|
|
4569
|
-
this
|
|
4638
|
+
__publicField3(this, "partitionKey", partitionKey);
|
|
4570
4639
|
__privateAdd4(this, _LocalStorage_instances);
|
|
4571
|
-
|
|
4572
|
-
|
|
4640
|
+
__publicField3(this, "inMemoryFallback", {});
|
|
4641
|
+
__publicField3(this, "hasLocalStorageObject", typeof document !== "undefined" && typeof localStorage !== "undefined");
|
|
4573
4642
|
}
|
|
4574
4643
|
get(key) {
|
|
4575
4644
|
const keyValue = __privateMethod(this, _LocalStorage_instances, key_fn).call(this, key);
|
|
@@ -4630,7 +4699,7 @@ var VisitorDataStore = class {
|
|
|
4630
4699
|
__privateAdd4(this, _persist);
|
|
4631
4700
|
__privateAdd4(this, _visitTimeout);
|
|
4632
4701
|
__privateAdd4(this, _options);
|
|
4633
|
-
|
|
4702
|
+
__publicField3(this, "events", {
|
|
4634
4703
|
on: __privateGet4(this, _mitt2).on,
|
|
4635
4704
|
off: __privateGet4(this, _mitt2).off
|
|
4636
4705
|
});
|
|
@@ -4831,7 +4900,7 @@ var calculateScores_fn;
|
|
|
4831
4900
|
var Context = class {
|
|
4832
4901
|
constructor(options) {
|
|
4833
4902
|
__privateAdd4(this, _Context_instances);
|
|
4834
|
-
|
|
4903
|
+
__publicField3(this, "manifest");
|
|
4835
4904
|
__privateAdd4(this, _personalizationSelectionAlgorithms);
|
|
4836
4905
|
__privateAdd4(this, _serverTransitionState);
|
|
4837
4906
|
__privateAdd4(this, _scores, {});
|
|
@@ -4841,11 +4910,11 @@ var Context = class {
|
|
|
4841
4910
|
__privateAdd4(this, _commands);
|
|
4842
4911
|
__privateAdd4(this, _requireConsentForPersonalization);
|
|
4843
4912
|
__privateAdd4(this, _mitt3, mitt_default());
|
|
4844
|
-
|
|
4913
|
+
__publicField3(this, "events", {
|
|
4845
4914
|
on: __privateGet4(this, _mitt3).on,
|
|
4846
4915
|
off: __privateGet4(this, _mitt3).off
|
|
4847
4916
|
});
|
|
4848
|
-
|
|
4917
|
+
__publicField3(this, "storage");
|
|
4849
4918
|
var _a, _b, _c;
|
|
4850
4919
|
const { manifest, ...storageOptions } = options;
|
|
4851
4920
|
__privateSet2(this, _state, {});
|
|
@@ -5891,5 +5960,5 @@ export {
|
|
|
5891
5960
|
/*! Bundled license information:
|
|
5892
5961
|
|
|
5893
5962
|
js-cookie/dist/js.cookie.mjs:
|
|
5894
|
-
(*! js-cookie v3.0.
|
|
5963
|
+
(*! js-cookie v3.0.8 | MIT *)
|
|
5895
5964
|
*/
|