@uniformdev/next-app-router 20.68.0 → 20.69.1-alpha.10
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 +556 -487
- package/dist/cache.mjs +556 -487
- package/dist/component.js +0 -366
- package/dist/component.mjs +0 -366
- package/dist/handler.js +655 -586
- package/dist/handler.mjs +655 -586
- package/dist/index.esm.js +655 -586
- package/dist/index.js +655 -586
- package/dist/index.mjs +655 -586
- package/dist/middleware.js +593 -531
- package/dist/middleware.mjs +593 -531
- package/package.json +8 -8
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);
|
|
@@ -367,7 +608,7 @@ var ApiClientError = class _ApiClientError extends Error {
|
|
|
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");
|
|
@@ -668,472 +909,266 @@ var _QuirkClient = class _QuirkClient2 extends ApiClient {
|
|
|
668
909
|
const fetchUri = this.createUrl(__privateGet2(_QuirkClient2, _url5));
|
|
669
910
|
await this.apiClient(fetchUri, {
|
|
670
911
|
method: "PUT",
|
|
671
|
-
body: JSON.stringify({ ...body, projectId: this.options.projectId }),
|
|
672
|
-
expectNoContent: true
|
|
673
|
-
});
|
|
674
|
-
}
|
|
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
|
-
// ../canvas/dist/index.mjs
|
|
753
|
-
var __create2 = Object.create;
|
|
754
|
-
var __defProp3 = Object.defineProperty;
|
|
755
|
-
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
756
|
-
var __getOwnPropNames2 = Object.getOwnPropertyNames;
|
|
757
|
-
var __getProtoOf2 = Object.getPrototypeOf;
|
|
758
|
-
var __hasOwnProp2 = Object.prototype.hasOwnProperty;
|
|
759
|
-
var __typeError3 = (msg) => {
|
|
760
|
-
throw TypeError(msg);
|
|
761
|
-
};
|
|
762
|
-
var __commonJS2 = (cb, mod) => function __require() {
|
|
763
|
-
return mod || (0, cb[__getOwnPropNames2(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
764
|
-
};
|
|
765
|
-
var __copyProps2 = (to, from, except, desc) => {
|
|
766
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
767
|
-
for (let key of __getOwnPropNames2(from))
|
|
768
|
-
if (!__hasOwnProp2.call(to, key) && key !== except)
|
|
769
|
-
__defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable });
|
|
770
|
-
}
|
|
771
|
-
return to;
|
|
772
|
-
};
|
|
773
|
-
var __toESM2 = (mod, isNodeMode, target) => (target = mod != null ? __create2(__getProtoOf2(mod)) : {}, __copyProps2(
|
|
774
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
775
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
776
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
777
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
778
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp3(target, "default", { value: mod, enumerable: true }) : target,
|
|
779
|
-
mod
|
|
780
|
-
));
|
|
781
|
-
var __accessCheck3 = (obj, member, msg) => member.has(obj) || __typeError3("Cannot " + msg);
|
|
782
|
-
var __privateGet3 = (obj, member, getter) => (__accessCheck3(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
|
|
783
|
-
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);
|
|
784
|
-
var require_yocto_queue2 = __commonJS2({
|
|
785
|
-
"../../node_modules/.pnpm/yocto-queue@0.1.0/node_modules/yocto-queue/index.js"(exports, module) {
|
|
786
|
-
"use strict";
|
|
787
|
-
var Node = class {
|
|
788
|
-
/// value;
|
|
789
|
-
/// next;
|
|
790
|
-
constructor(value) {
|
|
791
|
-
this.value = value;
|
|
792
|
-
this.next = void 0;
|
|
793
|
-
}
|
|
794
|
-
};
|
|
795
|
-
var Queue = class {
|
|
796
|
-
// TODO: Use private class fields when targeting Node.js 12.
|
|
797
|
-
// #_head;
|
|
798
|
-
// #_tail;
|
|
799
|
-
// #_size;
|
|
800
|
-
constructor() {
|
|
801
|
-
this.clear();
|
|
802
|
-
}
|
|
803
|
-
enqueue(value) {
|
|
804
|
-
const node = new Node(value);
|
|
805
|
-
if (this._head) {
|
|
806
|
-
this._tail.next = node;
|
|
807
|
-
this._tail = node;
|
|
808
|
-
} else {
|
|
809
|
-
this._head = node;
|
|
810
|
-
this._tail = node;
|
|
811
|
-
}
|
|
812
|
-
this._size++;
|
|
813
|
-
}
|
|
814
|
-
dequeue() {
|
|
815
|
-
const current = this._head;
|
|
816
|
-
if (!current) {
|
|
817
|
-
return;
|
|
818
|
-
}
|
|
819
|
-
this._head = this._head.next;
|
|
820
|
-
this._size--;
|
|
821
|
-
return current.value;
|
|
822
|
-
}
|
|
823
|
-
clear() {
|
|
824
|
-
this._head = void 0;
|
|
825
|
-
this._tail = void 0;
|
|
826
|
-
this._size = 0;
|
|
827
|
-
}
|
|
828
|
-
get size() {
|
|
829
|
-
return this._size;
|
|
830
|
-
}
|
|
831
|
-
*[Symbol.iterator]() {
|
|
832
|
-
let current = this._head;
|
|
833
|
-
while (current) {
|
|
834
|
-
yield current.value;
|
|
835
|
-
current = current.next;
|
|
836
|
-
}
|
|
837
|
-
}
|
|
838
|
-
};
|
|
839
|
-
module.exports = Queue;
|
|
840
|
-
}
|
|
841
|
-
});
|
|
842
|
-
var require_p_limit2 = __commonJS2({
|
|
843
|
-
"../../node_modules/.pnpm/p-limit@3.1.0/node_modules/p-limit/index.js"(exports, module) {
|
|
844
|
-
"use strict";
|
|
845
|
-
var Queue = require_yocto_queue2();
|
|
846
|
-
var pLimit2 = (concurrency) => {
|
|
847
|
-
if (!((Number.isInteger(concurrency) || concurrency === Infinity) && concurrency > 0)) {
|
|
848
|
-
throw new TypeError("Expected `concurrency` to be a number from 1 and up");
|
|
849
|
-
}
|
|
850
|
-
const queue = new Queue();
|
|
851
|
-
let activeCount = 0;
|
|
852
|
-
const next = () => {
|
|
853
|
-
activeCount--;
|
|
854
|
-
if (queue.size > 0) {
|
|
855
|
-
queue.dequeue()();
|
|
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
|
-
};
|
|
912
|
+
body: JSON.stringify({ ...body, projectId: this.options.projectId }),
|
|
913
|
+
expectNoContent: true
|
|
914
|
+
});
|
|
1030
915
|
}
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
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
|
|
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.1.0/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",
|
|
1144
|
+
// Chrome
|
|
1126
1145
|
"Failed to fetch",
|
|
1127
1146
|
// Chrome
|
|
1128
1147
|
"NetworkError when attempting to fetch resource.",
|
|
1129
1148
|
// Firefox
|
|
1130
1149
|
"The Internet connection appears to be offline.",
|
|
1131
|
-
// Safari
|
|
1150
|
+
// Safari 16
|
|
1151
|
+
"Load failed",
|
|
1152
|
+
// Safari 17+
|
|
1132
1153
|
"Network request failed",
|
|
1133
1154
|
// `cross-fetch`
|
|
1134
|
-
"fetch failed"
|
|
1155
|
+
"fetch failed",
|
|
1156
|
+
// Undici (Node.js)
|
|
1157
|
+
"terminated"
|
|
1135
1158
|
// Undici (Node.js)
|
|
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
|
+
if (error.message === "Load failed") {
|
|
1166
|
+
return error.stack === void 0;
|
|
1167
|
+
}
|
|
1168
|
+
return errorMessages.has(error.message);
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
// ../../node_modules/.pnpm/p-retry@6.2.1/node_modules/p-retry/index.js
|
|
1137
1172
|
var AbortError = class extends Error {
|
|
1138
1173
|
constructor(message) {
|
|
1139
1174
|
super();
|
|
@@ -1154,63 +1189,71 @@ var decorateErrorWithCounts = (error, attemptNumber, options) => {
|
|
|
1154
1189
|
error.retriesLeft = retriesLeft;
|
|
1155
1190
|
return error;
|
|
1156
1191
|
};
|
|
1157
|
-
var isNetworkError = (errorMessage) => networkErrorMsgs.has(errorMessage);
|
|
1158
|
-
var getDOMException = (errorMessage) => globalThis.DOMException === void 0 ? new Error(errorMessage) : new DOMException(errorMessage);
|
|
1159
1192
|
async function pRetry(input, options) {
|
|
1160
1193
|
return new Promise((resolve, reject) => {
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
retries: 10,
|
|
1165
|
-
...options
|
|
1194
|
+
var _a, _b, _c;
|
|
1195
|
+
options = { ...options };
|
|
1196
|
+
(_a = options.onFailedAttempt) != null ? _a : options.onFailedAttempt = () => {
|
|
1166
1197
|
};
|
|
1198
|
+
(_b = options.shouldRetry) != null ? _b : options.shouldRetry = () => true;
|
|
1199
|
+
(_c = options.retries) != null ? _c : options.retries = 10;
|
|
1167
1200
|
const operation = import_retry.default.operation(options);
|
|
1201
|
+
const abortHandler = () => {
|
|
1202
|
+
var _a2;
|
|
1203
|
+
operation.stop();
|
|
1204
|
+
reject((_a2 = options.signal) == null ? void 0 : _a2.reason);
|
|
1205
|
+
};
|
|
1206
|
+
if (options.signal && !options.signal.aborted) {
|
|
1207
|
+
options.signal.addEventListener("abort", abortHandler, { once: true });
|
|
1208
|
+
}
|
|
1209
|
+
const cleanUp = () => {
|
|
1210
|
+
var _a2;
|
|
1211
|
+
(_a2 = options.signal) == null ? void 0 : _a2.removeEventListener("abort", abortHandler);
|
|
1212
|
+
operation.stop();
|
|
1213
|
+
};
|
|
1168
1214
|
operation.attempt(async (attemptNumber) => {
|
|
1169
1215
|
try {
|
|
1170
|
-
|
|
1216
|
+
const result = await input(attemptNumber);
|
|
1217
|
+
cleanUp();
|
|
1218
|
+
resolve(result);
|
|
1171
1219
|
} catch (error) {
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
} else {
|
|
1220
|
+
try {
|
|
1221
|
+
if (!(error instanceof Error)) {
|
|
1222
|
+
throw new TypeError(`Non-error was thrown: "${error}". You should only throw errors.`);
|
|
1223
|
+
}
|
|
1224
|
+
if (error instanceof AbortError) {
|
|
1225
|
+
throw error.originalError;
|
|
1226
|
+
}
|
|
1227
|
+
if (error instanceof TypeError && !isNetworkError(error)) {
|
|
1228
|
+
throw error;
|
|
1229
|
+
}
|
|
1183
1230
|
decorateErrorWithCounts(error, attemptNumber, options);
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
reject(error2);
|
|
1188
|
-
return;
|
|
1231
|
+
if (!await options.shouldRetry(error)) {
|
|
1232
|
+
operation.stop();
|
|
1233
|
+
reject(error);
|
|
1189
1234
|
}
|
|
1235
|
+
await options.onFailedAttempt(error);
|
|
1190
1236
|
if (!operation.retry(error)) {
|
|
1191
|
-
|
|
1237
|
+
throw operation.mainError();
|
|
1192
1238
|
}
|
|
1239
|
+
} catch (finalError) {
|
|
1240
|
+
decorateErrorWithCounts(finalError, attemptNumber, options);
|
|
1241
|
+
cleanUp();
|
|
1242
|
+
reject(finalError);
|
|
1193
1243
|
}
|
|
1194
1244
|
}
|
|
1195
1245
|
});
|
|
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
1246
|
});
|
|
1206
1247
|
}
|
|
1248
|
+
|
|
1249
|
+
// ../../node_modules/.pnpm/p-throttle@6.2.0/node_modules/p-throttle/index.js
|
|
1207
1250
|
var AbortError2 = class extends Error {
|
|
1208
1251
|
constructor() {
|
|
1209
1252
|
super("Throttled function aborted");
|
|
1210
1253
|
this.name = "AbortError";
|
|
1211
1254
|
}
|
|
1212
1255
|
};
|
|
1213
|
-
function pThrottle({ limit, interval, strict }) {
|
|
1256
|
+
function pThrottle({ limit, interval, strict, onDelay }) {
|
|
1214
1257
|
if (!Number.isFinite(limit)) {
|
|
1215
1258
|
throw new TypeError("Expected `limit` to be a finite number");
|
|
1216
1259
|
}
|
|
@@ -1238,32 +1281,38 @@ function pThrottle({ limit, interval, strict }) {
|
|
|
1238
1281
|
const strictTicks = [];
|
|
1239
1282
|
function strictDelay() {
|
|
1240
1283
|
const now = Date.now();
|
|
1241
|
-
if (strictTicks.length
|
|
1242
|
-
strictTicks.
|
|
1243
|
-
return 0;
|
|
1284
|
+
if (strictTicks.length > 0 && now - strictTicks.at(-1) > interval) {
|
|
1285
|
+
strictTicks.length = 0;
|
|
1244
1286
|
}
|
|
1245
|
-
|
|
1246
|
-
if (now >= earliestTime) {
|
|
1287
|
+
if (strictTicks.length < limit) {
|
|
1247
1288
|
strictTicks.push(now);
|
|
1248
1289
|
return 0;
|
|
1249
1290
|
}
|
|
1250
|
-
strictTicks
|
|
1251
|
-
|
|
1291
|
+
const nextExecutionTime = strictTicks[0] + interval;
|
|
1292
|
+
strictTicks.shift();
|
|
1293
|
+
strictTicks.push(nextExecutionTime);
|
|
1294
|
+
return Math.max(0, nextExecutionTime - now);
|
|
1252
1295
|
}
|
|
1253
1296
|
const getDelay = strict ? strictDelay : windowedDelay;
|
|
1254
1297
|
return (function_) => {
|
|
1255
|
-
const throttled = function(...
|
|
1298
|
+
const throttled = function(...arguments_) {
|
|
1256
1299
|
if (!throttled.isEnabled) {
|
|
1257
|
-
return (async () => function_.apply(this,
|
|
1300
|
+
return (async () => function_.apply(this, arguments_))();
|
|
1258
1301
|
}
|
|
1259
|
-
let
|
|
1302
|
+
let timeoutId;
|
|
1260
1303
|
return new Promise((resolve, reject) => {
|
|
1261
1304
|
const execute = () => {
|
|
1262
|
-
resolve(function_.apply(this,
|
|
1263
|
-
queue.delete(
|
|
1305
|
+
resolve(function_.apply(this, arguments_));
|
|
1306
|
+
queue.delete(timeoutId);
|
|
1264
1307
|
};
|
|
1265
|
-
|
|
1266
|
-
|
|
1308
|
+
const delay = getDelay();
|
|
1309
|
+
if (delay > 0) {
|
|
1310
|
+
timeoutId = setTimeout(execute, delay);
|
|
1311
|
+
queue.set(timeoutId, reject);
|
|
1312
|
+
onDelay == null ? void 0 : onDelay(...arguments_);
|
|
1313
|
+
} else {
|
|
1314
|
+
execute();
|
|
1315
|
+
}
|
|
1267
1316
|
});
|
|
1268
1317
|
};
|
|
1269
1318
|
throttled.abort = () => {
|
|
@@ -1275,16 +1324,29 @@ function pThrottle({ limit, interval, strict }) {
|
|
|
1275
1324
|
strictTicks.splice(0, strictTicks.length);
|
|
1276
1325
|
};
|
|
1277
1326
|
throttled.isEnabled = true;
|
|
1327
|
+
Object.defineProperty(throttled, "queueSize", {
|
|
1328
|
+
get() {
|
|
1329
|
+
return queue.size;
|
|
1330
|
+
}
|
|
1331
|
+
});
|
|
1278
1332
|
return throttled;
|
|
1279
1333
|
};
|
|
1280
1334
|
}
|
|
1335
|
+
|
|
1336
|
+
// ../canvas/dist/index.mjs
|
|
1337
|
+
var __typeError3 = (msg) => {
|
|
1338
|
+
throw TypeError(msg);
|
|
1339
|
+
};
|
|
1340
|
+
var __accessCheck3 = (obj, member, msg) => member.has(obj) || __typeError3("Cannot " + msg);
|
|
1341
|
+
var __privateGet3 = (obj, member, getter) => (__accessCheck3(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
|
|
1342
|
+
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
1343
|
function createLimitPolicy({
|
|
1282
1344
|
throttle = { interval: 1e3, limit: 10 },
|
|
1283
|
-
retry:
|
|
1345
|
+
retry: retry3 = { retries: 1, factor: 1.66 },
|
|
1284
1346
|
limit = 10
|
|
1285
1347
|
}) {
|
|
1286
1348
|
const throttler = throttle ? pThrottle(throttle) : null;
|
|
1287
|
-
const limiter = limit ? (
|
|
1349
|
+
const limiter = limit ? pLimit2(limit) : null;
|
|
1288
1350
|
return function limitPolicy(func) {
|
|
1289
1351
|
let currentFunc = async () => await func();
|
|
1290
1352
|
if (throttler) {
|
|
@@ -1295,13 +1357,13 @@ function createLimitPolicy({
|
|
|
1295
1357
|
const limitFunc = currentFunc;
|
|
1296
1358
|
currentFunc = () => limiter(limitFunc);
|
|
1297
1359
|
}
|
|
1298
|
-
if (
|
|
1360
|
+
if (retry3) {
|
|
1299
1361
|
const retryFunc = currentFunc;
|
|
1300
1362
|
currentFunc = () => pRetry(retryFunc, {
|
|
1301
|
-
...
|
|
1363
|
+
...retry3,
|
|
1302
1364
|
onFailedAttempt: async (error) => {
|
|
1303
|
-
if (
|
|
1304
|
-
await
|
|
1365
|
+
if (retry3.onFailedAttempt) {
|
|
1366
|
+
await retry3.onFailedAttempt(error);
|
|
1305
1367
|
}
|
|
1306
1368
|
if (error instanceof ApiClientError && typeof error.statusCode === "number" && error.statusCode >= 400 && error.statusCode < 500 && error.statusCode !== 429 && error.statusCode !== 408) {
|
|
1307
1369
|
throw error;
|
|
@@ -2492,7 +2554,7 @@ function createLimiter(concurrency) {
|
|
|
2492
2554
|
});
|
|
2493
2555
|
};
|
|
2494
2556
|
}
|
|
2495
|
-
async function
|
|
2557
|
+
async function retry2(fn, options) {
|
|
2496
2558
|
let lastError;
|
|
2497
2559
|
let delay = 1e3;
|
|
2498
2560
|
for (let attempt = 1; attempt <= options.retries + 1; attempt++) {
|
|
@@ -2532,7 +2594,7 @@ function createLimitPolicy2({
|
|
|
2532
2594
|
}
|
|
2533
2595
|
if (retryOptions) {
|
|
2534
2596
|
const retryFunc = currentFunc;
|
|
2535
|
-
currentFunc = () =>
|
|
2597
|
+
currentFunc = () => retry2(retryFunc, {
|
|
2536
2598
|
...retryOptions,
|
|
2537
2599
|
onFailedAttempt: async (error) => {
|
|
2538
2600
|
if (retryOptions.onFailedAttempt) {
|
|
@@ -3276,12 +3338,12 @@ function mitt_default(n) {
|
|
|
3276
3338
|
var import_rfdc = __toESM(require_rfdc(), 1);
|
|
3277
3339
|
var import_rfdc2 = __toESM(require_rfdc(), 1);
|
|
3278
3340
|
var import_rfdc3 = __toESM(require_rfdc(), 1);
|
|
3279
|
-
var
|
|
3341
|
+
var __defProp3 = Object.defineProperty;
|
|
3280
3342
|
var __typeError4 = (msg) => {
|
|
3281
3343
|
throw TypeError(msg);
|
|
3282
3344
|
};
|
|
3283
|
-
var
|
|
3284
|
-
var
|
|
3345
|
+
var __defNormalProp3 = (obj, key, value) => key in obj ? __defProp3(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3346
|
+
var __publicField3 = (obj, key, value) => __defNormalProp3(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
3285
3347
|
var __accessCheck4 = (obj, member, msg) => member.has(obj) || __typeError4("Cannot " + msg);
|
|
3286
3348
|
var __privateGet4 = (obj, member, getter) => (__accessCheck4(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
|
|
3287
3349
|
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 +3420,7 @@ var SignalInstance = class {
|
|
|
3358
3420
|
constructor(data, evaluator, onLogMessage) {
|
|
3359
3421
|
__privateAdd4(this, _evaluator);
|
|
3360
3422
|
__privateAdd4(this, _onLogMessage);
|
|
3361
|
-
|
|
3423
|
+
__publicField3(this, "signal");
|
|
3362
3424
|
this.signal = data;
|
|
3363
3425
|
__privateSet2(this, _evaluator, evaluator);
|
|
3364
3426
|
__privateSet2(this, _onLogMessage, onLogMessage);
|
|
@@ -3416,7 +3478,7 @@ var ManifestInstance = class {
|
|
|
3416
3478
|
onLogMessage = () => {
|
|
3417
3479
|
}
|
|
3418
3480
|
}) {
|
|
3419
|
-
|
|
3481
|
+
__publicField3(this, "data");
|
|
3420
3482
|
__privateAdd4(this, _mf);
|
|
3421
3483
|
__privateAdd4(this, _signalInstances);
|
|
3422
3484
|
__privateAdd4(this, _goalEvaluators, []);
|
|
@@ -4203,7 +4265,7 @@ var TransitionDataStore = class {
|
|
|
4203
4265
|
__privateAdd4(this, _data);
|
|
4204
4266
|
__privateAdd4(this, _initialData);
|
|
4205
4267
|
__privateAdd4(this, _mitt, mitt_default());
|
|
4206
|
-
|
|
4268
|
+
__publicField3(this, "events", {
|
|
4207
4269
|
on: __privateGet4(this, _mitt).on,
|
|
4208
4270
|
off: __privateGet4(this, _mitt).off
|
|
4209
4271
|
});
|
|
@@ -4568,8 +4630,8 @@ var LocalStorage = class {
|
|
|
4568
4630
|
constructor(partitionKey) {
|
|
4569
4631
|
this.partitionKey = partitionKey;
|
|
4570
4632
|
__privateAdd4(this, _LocalStorage_instances);
|
|
4571
|
-
|
|
4572
|
-
|
|
4633
|
+
__publicField3(this, "inMemoryFallback", {});
|
|
4634
|
+
__publicField3(this, "hasLocalStorageObject", typeof document !== "undefined" && typeof localStorage !== "undefined");
|
|
4573
4635
|
}
|
|
4574
4636
|
get(key) {
|
|
4575
4637
|
const keyValue = __privateMethod(this, _LocalStorage_instances, key_fn).call(this, key);
|
|
@@ -4630,7 +4692,7 @@ var VisitorDataStore = class {
|
|
|
4630
4692
|
__privateAdd4(this, _persist);
|
|
4631
4693
|
__privateAdd4(this, _visitTimeout);
|
|
4632
4694
|
__privateAdd4(this, _options);
|
|
4633
|
-
|
|
4695
|
+
__publicField3(this, "events", {
|
|
4634
4696
|
on: __privateGet4(this, _mitt2).on,
|
|
4635
4697
|
off: __privateGet4(this, _mitt2).off
|
|
4636
4698
|
});
|
|
@@ -4831,7 +4893,7 @@ var calculateScores_fn;
|
|
|
4831
4893
|
var Context = class {
|
|
4832
4894
|
constructor(options) {
|
|
4833
4895
|
__privateAdd4(this, _Context_instances);
|
|
4834
|
-
|
|
4896
|
+
__publicField3(this, "manifest");
|
|
4835
4897
|
__privateAdd4(this, _personalizationSelectionAlgorithms);
|
|
4836
4898
|
__privateAdd4(this, _serverTransitionState);
|
|
4837
4899
|
__privateAdd4(this, _scores, {});
|
|
@@ -4841,11 +4903,11 @@ var Context = class {
|
|
|
4841
4903
|
__privateAdd4(this, _commands);
|
|
4842
4904
|
__privateAdd4(this, _requireConsentForPersonalization);
|
|
4843
4905
|
__privateAdd4(this, _mitt3, mitt_default());
|
|
4844
|
-
|
|
4906
|
+
__publicField3(this, "events", {
|
|
4845
4907
|
on: __privateGet4(this, _mitt3).on,
|
|
4846
4908
|
off: __privateGet4(this, _mitt3).off
|
|
4847
4909
|
});
|
|
4848
|
-
|
|
4910
|
+
__publicField3(this, "storage");
|
|
4849
4911
|
var _a, _b, _c;
|
|
4850
4912
|
const { manifest, ...storageOptions } = options;
|
|
4851
4913
|
__privateSet2(this, _state, {});
|