@uniformdev/next-app-router 20.63.0 → 20.63.1-alpha.12

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.
@@ -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 Node = class {
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 Queue = class {
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 Node(value);
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 = Queue;
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 Queue = require_yocto_queue();
99
- var pLimit2 = (concurrency) => {
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 Queue();
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 = pLimit2;
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 __defNormalProp = (obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
348
- var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
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
- __publicField(this, "options");
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");
@@ -722,418 +963,212 @@ var _TestClient = class _TestClient2 extends ApiClient {
722
963
  super(options);
723
964
  }
724
965
  /** 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
- };
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);
1030
970
  }
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));
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
- timeouts.sort(function(a, b) {
1069
- return a - b;
1070
- });
1071
- return timeouts;
1072
- };
1073
- exports.createTimeout = function(attempt, opts) {
1074
- var random = opts.randomize ? Math.random() + 1 : 1;
1075
- var timeout = Math.round(random * Math.max(opts.minTimeout, 1) * Math.pow(opts.factor, attempt));
1076
- timeout = Math.min(timeout, opts.maxTimeout);
1077
- return timeout;
1078
- };
1079
- exports.wrap = function(obj, options, methods) {
1080
- if (options instanceof Array) {
1081
- methods = options;
1082
- options = null;
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
- if (!methods) {
1085
- methods = [];
1086
- for (var key in obj) {
1087
- if (typeof obj[key] === "function") {
1088
- methods.push(key);
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
- var require_retry2 = __commonJS2({
1118
- "../../node_modules/.pnpm/retry@0.13.1/node_modules/retry/index.js"(exports, module) {
1119
- "use strict";
1120
- module.exports = require_retry();
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
- var import_p_limit2 = __toESM2(require_p_limit2());
1124
- var import_retry = __toESM2(require_retry2(), 1);
1125
- var networkErrorMsgs = /* @__PURE__ */ new Set([
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,68 @@ 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
- options = {
1162
- onFailedAttempt() {
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
- resolve(await input(attemptNumber));
1216
+ const result = await input(attemptNumber);
1217
+ cleanUp();
1218
+ resolve(result);
1171
1219
  } catch (error) {
1172
- if (!(error instanceof Error)) {
1173
- reject(new TypeError(`Non-error was thrown: "${error}". You should only throw errors.`));
1174
- return;
1175
- }
1176
- if (error instanceof AbortError) {
1177
- operation.stop();
1178
- reject(error.originalError);
1179
- } else if (error instanceof TypeError && !isNetworkError(error.message)) {
1180
- operation.stop();
1181
- reject(error);
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
- try {
1185
- await options.onFailedAttempt(error);
1186
- } catch (error2) {
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
- reject(operation.mainError());
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
  }
1207
- var AbortError2 = class extends Error {
1208
- constructor() {
1209
- super("Throttled function aborted");
1210
- this.name = "AbortError";
1211
- }
1212
- };
1213
- function pThrottle({ limit, interval, strict }) {
1248
+
1249
+ // ../../node_modules/.pnpm/p-throttle@7.0.0/node_modules/p-throttle/index.js
1250
+ var registry = new FinalizationRegistry(({ signal, aborted }) => {
1251
+ signal == null ? void 0 : signal.removeEventListener("abort", aborted);
1252
+ });
1253
+ function pThrottle({ limit, interval, strict, signal, onDelay }) {
1214
1254
  if (!Number.isFinite(limit)) {
1215
1255
  throw new TypeError("Expected `limit` to be a finite number");
1216
1256
  }
@@ -1238,53 +1278,75 @@ function pThrottle({ limit, interval, strict }) {
1238
1278
  const strictTicks = [];
1239
1279
  function strictDelay() {
1240
1280
  const now = Date.now();
1241
- if (strictTicks.length < limit) {
1242
- strictTicks.push(now);
1243
- return 0;
1281
+ if (strictTicks.length > 0 && now - strictTicks.at(-1) > interval) {
1282
+ strictTicks.length = 0;
1244
1283
  }
1245
- const earliestTime = strictTicks.shift() + interval;
1246
- if (now >= earliestTime) {
1284
+ if (strictTicks.length < limit) {
1247
1285
  strictTicks.push(now);
1248
1286
  return 0;
1249
1287
  }
1250
- strictTicks.push(earliestTime);
1251
- return earliestTime - now;
1288
+ const nextExecutionTime = strictTicks[0] + interval;
1289
+ strictTicks.shift();
1290
+ strictTicks.push(nextExecutionTime);
1291
+ return Math.max(0, nextExecutionTime - now);
1252
1292
  }
1253
1293
  const getDelay = strict ? strictDelay : windowedDelay;
1254
1294
  return (function_) => {
1255
- const throttled = function(...args) {
1295
+ const throttled = function(...arguments_) {
1256
1296
  if (!throttled.isEnabled) {
1257
- return (async () => function_.apply(this, args))();
1297
+ return (async () => function_.apply(this, arguments_))();
1258
1298
  }
1259
- let timeout;
1299
+ let timeoutId;
1260
1300
  return new Promise((resolve, reject) => {
1261
1301
  const execute = () => {
1262
- resolve(function_.apply(this, args));
1263
- queue.delete(timeout);
1302
+ resolve(function_.apply(this, arguments_));
1303
+ queue.delete(timeoutId);
1264
1304
  };
1265
- timeout = setTimeout(execute, getDelay());
1266
- queue.set(timeout, reject);
1305
+ const delay = getDelay();
1306
+ if (delay > 0) {
1307
+ timeoutId = setTimeout(execute, delay);
1308
+ queue.set(timeoutId, reject);
1309
+ onDelay == null ? void 0 : onDelay(...arguments_);
1310
+ } else {
1311
+ execute();
1312
+ }
1267
1313
  });
1268
1314
  };
1269
- throttled.abort = () => {
1315
+ const aborted = () => {
1270
1316
  for (const timeout of queue.keys()) {
1271
1317
  clearTimeout(timeout);
1272
- queue.get(timeout)(new AbortError2());
1318
+ queue.get(timeout)(signal.reason);
1273
1319
  }
1274
1320
  queue.clear();
1275
1321
  strictTicks.splice(0, strictTicks.length);
1276
1322
  };
1323
+ registry.register(throttled, { signal, aborted });
1324
+ signal == null ? void 0 : signal.throwIfAborted();
1325
+ signal == null ? void 0 : signal.addEventListener("abort", aborted, { once: true });
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: retry2 = { retries: 1, factor: 1.66 },
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 ? (0, import_p_limit2.default)(limit) : null;
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 (retry2) {
1360
+ if (retry3) {
1299
1361
  const retryFunc = currentFunc;
1300
1362
  currentFunc = () => pRetry(retryFunc, {
1301
- ...retry2,
1363
+ ...retry3,
1302
1364
  onFailedAttempt: async (error) => {
1303
- if (retry2.onFailedAttempt) {
1304
- await retry2.onFailedAttempt(error);
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;
@@ -1694,7 +1756,7 @@ function hasReferencedVariables(value) {
1694
1756
  return variableTokenCount;
1695
1757
  }
1696
1758
  function walkNodeTree(node, visitor, options) {
1697
- var _a, _b;
1759
+ var _a, _b, _c;
1698
1760
  const componentQueue = [
1699
1761
  {
1700
1762
  ancestorsAndSelf: Array.isArray(node) ? node : [{ node, type: "root" }],
@@ -1702,12 +1764,14 @@ function walkNodeTree(node, visitor, options) {
1702
1764
  }
1703
1765
  ];
1704
1766
  const childContexts = /* @__PURE__ */ new Map();
1767
+ const order = (_a = options == null ? void 0 : options.order) != null ? _a : "dfs";
1768
+ const takeNext = () => order === "bfs" ? componentQueue.shift() : componentQueue.pop();
1705
1769
  do {
1706
- const currentQueueEntry = componentQueue.pop();
1770
+ const currentQueueEntry = takeNext();
1707
1771
  if (!currentQueueEntry) continue;
1708
1772
  const currentComponent = currentQueueEntry.ancestorsAndSelf[0];
1709
1773
  let visitDescendants = true;
1710
- let descendantContext = (_a = childContexts.get(currentComponent.node)) != null ? _a : currentQueueEntry.context;
1774
+ let descendantContext = (_b = childContexts.get(currentComponent.node)) != null ? _b : currentQueueEntry.context;
1711
1775
  let visitorInfo;
1712
1776
  if (currentComponent.type === "root" && isRootEntryReference(currentComponent) || currentComponent.type === "block") {
1713
1777
  visitorInfo = {
@@ -1894,39 +1958,11 @@ function walkNodeTree(node, visitor, options) {
1894
1958
  continue;
1895
1959
  }
1896
1960
  const slots = "slots" in currentComponent.node && currentComponent.node.slots;
1897
- if (slots) {
1898
- const slotKeys = Object.keys(slots);
1899
- for (let slotIndex = slotKeys.length - 1; slotIndex >= 0; slotIndex--) {
1900
- const slotKey = slotKeys[slotIndex];
1901
- const components = slots[slotKey];
1902
- for (let componentIndex = components.length - 1; componentIndex >= 0; componentIndex--) {
1903
- const enqueueingComponent = components[componentIndex];
1904
- const parentSlotIndexFn = () => {
1905
- const result = currentComponent.node.slots[slotKey].findIndex(
1906
- (x) => x === enqueueingComponent
1907
- );
1908
- return result;
1909
- };
1910
- componentQueue.push({
1911
- ancestorsAndSelf: [
1912
- {
1913
- type: "slot",
1914
- node: enqueueingComponent,
1915
- parentSlot: slotKey,
1916
- parentSlotIndexFn
1917
- },
1918
- ...currentQueueEntry.ancestorsAndSelf
1919
- ],
1920
- context: descendantContext
1921
- });
1922
- }
1923
- }
1924
- }
1961
+ const childEntries = [];
1925
1962
  const properties = getPropertiesValue(currentComponent.node);
1926
1963
  if (properties) {
1927
1964
  const propertyEntries = Object.entries(properties);
1928
- for (let propIndex = propertyEntries.length - 1; propIndex >= 0; propIndex--) {
1929
- const [propKey, propObject] = propertyEntries[propIndex];
1965
+ for (const [propKey, propObject] of propertyEntries) {
1930
1966
  if (!isNestedNodeType(propObject.type)) {
1931
1967
  continue;
1932
1968
  }
@@ -1946,13 +1982,12 @@ function walkNodeTree(node, visitor, options) {
1946
1982
  continue;
1947
1983
  }
1948
1984
  }
1949
- const blocks = (_b = propObject.value) != null ? _b : [];
1950
- for (let blockIndex = blocks.length - 1; blockIndex >= 0; blockIndex--) {
1951
- const enqueueingBlock = blocks[blockIndex];
1985
+ const blocks = (_c = propObject.value) != null ? _c : [];
1986
+ for (const enqueueingBlock of blocks) {
1952
1987
  const blockIndexFn = () => {
1953
1988
  return getBlockValue(currentComponent.node, propKey).findIndex((x) => x === enqueueingBlock);
1954
1989
  };
1955
- componentQueue.push({
1990
+ childEntries.push({
1956
1991
  ancestorsAndSelf: [
1957
1992
  {
1958
1993
  type: "block",
@@ -1967,6 +2002,36 @@ function walkNodeTree(node, visitor, options) {
1967
2002
  }
1968
2003
  }
1969
2004
  }
2005
+ if (slots) {
2006
+ const slotKeys = Object.keys(slots);
2007
+ for (const slotKey of slotKeys) {
2008
+ const components = slots[slotKey];
2009
+ for (const enqueueingComponent of components) {
2010
+ const parentSlotIndexFn = () => {
2011
+ const result = currentComponent.node.slots[slotKey].findIndex(
2012
+ (x) => x === enqueueingComponent
2013
+ );
2014
+ return result;
2015
+ };
2016
+ childEntries.push({
2017
+ ancestorsAndSelf: [
2018
+ {
2019
+ type: "slot",
2020
+ node: enqueueingComponent,
2021
+ parentSlot: slotKey,
2022
+ parentSlotIndexFn
2023
+ },
2024
+ ...currentQueueEntry.ancestorsAndSelf
2025
+ ],
2026
+ context: descendantContext
2027
+ });
2028
+ }
2029
+ }
2030
+ }
2031
+ if (order === "dfs") {
2032
+ childEntries.reverse();
2033
+ }
2034
+ componentQueue.push(...childEntries);
1970
2035
  } while (componentQueue.length > 0);
1971
2036
  }
1972
2037
  function isNestedNodeType(type) {
@@ -2489,7 +2554,7 @@ function createLimiter(concurrency) {
2489
2554
  });
2490
2555
  };
2491
2556
  }
2492
- async function retry(fn, options) {
2557
+ async function retry2(fn, options) {
2493
2558
  let lastError;
2494
2559
  let delay = 1e3;
2495
2560
  for (let attempt = 1; attempt <= options.retries + 1; attempt++) {
@@ -2529,7 +2594,7 @@ function createLimitPolicy2({
2529
2594
  }
2530
2595
  if (retryOptions) {
2531
2596
  const retryFunc = currentFunc;
2532
- currentFunc = () => retry(retryFunc, {
2597
+ currentFunc = () => retry2(retryFunc, {
2533
2598
  ...retryOptions,
2534
2599
  onFailedAttempt: async (error) => {
2535
2600
  if (retryOptions.onFailedAttempt) {
@@ -3272,12 +3337,12 @@ function mitt_default(n) {
3272
3337
  var import_rfdc = __toESM(require_rfdc(), 1);
3273
3338
  var import_rfdc2 = __toESM(require_rfdc(), 1);
3274
3339
  var import_rfdc3 = __toESM(require_rfdc(), 1);
3275
- var __defProp4 = Object.defineProperty;
3340
+ var __defProp3 = Object.defineProperty;
3276
3341
  var __typeError4 = (msg) => {
3277
3342
  throw TypeError(msg);
3278
3343
  };
3279
- var __defNormalProp2 = (obj, key, value) => key in obj ? __defProp4(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3280
- var __publicField2 = (obj, key, value) => __defNormalProp2(obj, typeof key !== "symbol" ? key + "" : key, value);
3344
+ var __defNormalProp3 = (obj, key, value) => key in obj ? __defProp3(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3345
+ var __publicField3 = (obj, key, value) => __defNormalProp3(obj, typeof key !== "symbol" ? key + "" : key, value);
3281
3346
  var __accessCheck4 = (obj, member, msg) => member.has(obj) || __typeError4("Cannot " + msg);
3282
3347
  var __privateGet4 = (obj, member, getter) => (__accessCheck4(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
3283
3348
  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);
@@ -3354,7 +3419,7 @@ var SignalInstance = class {
3354
3419
  constructor(data, evaluator, onLogMessage) {
3355
3420
  __privateAdd4(this, _evaluator);
3356
3421
  __privateAdd4(this, _onLogMessage);
3357
- __publicField2(this, "signal");
3422
+ __publicField3(this, "signal");
3358
3423
  this.signal = data;
3359
3424
  __privateSet2(this, _evaluator, evaluator);
3360
3425
  __privateSet2(this, _onLogMessage, onLogMessage);
@@ -3412,7 +3477,7 @@ var ManifestInstance = class {
3412
3477
  onLogMessage = () => {
3413
3478
  }
3414
3479
  }) {
3415
- __publicField2(this, "data");
3480
+ __publicField3(this, "data");
3416
3481
  __privateAdd4(this, _mf);
3417
3482
  __privateAdd4(this, _signalInstances);
3418
3483
  __privateAdd4(this, _goalEvaluators, []);
@@ -4199,7 +4264,7 @@ var TransitionDataStore = class {
4199
4264
  __privateAdd4(this, _data);
4200
4265
  __privateAdd4(this, _initialData);
4201
4266
  __privateAdd4(this, _mitt, mitt_default());
4202
- __publicField2(this, "events", {
4267
+ __publicField3(this, "events", {
4203
4268
  on: __privateGet4(this, _mitt).on,
4204
4269
  off: __privateGet4(this, _mitt).off
4205
4270
  });
@@ -4564,8 +4629,8 @@ var LocalStorage = class {
4564
4629
  constructor(partitionKey) {
4565
4630
  this.partitionKey = partitionKey;
4566
4631
  __privateAdd4(this, _LocalStorage_instances);
4567
- __publicField2(this, "inMemoryFallback", {});
4568
- __publicField2(this, "hasLocalStorageObject", typeof document !== "undefined" && typeof localStorage !== "undefined");
4632
+ __publicField3(this, "inMemoryFallback", {});
4633
+ __publicField3(this, "hasLocalStorageObject", typeof document !== "undefined" && typeof localStorage !== "undefined");
4569
4634
  }
4570
4635
  get(key) {
4571
4636
  const keyValue = __privateMethod(this, _LocalStorage_instances, key_fn).call(this, key);
@@ -4626,7 +4691,7 @@ var VisitorDataStore = class {
4626
4691
  __privateAdd4(this, _persist);
4627
4692
  __privateAdd4(this, _visitTimeout);
4628
4693
  __privateAdd4(this, _options);
4629
- __publicField2(this, "events", {
4694
+ __publicField3(this, "events", {
4630
4695
  on: __privateGet4(this, _mitt2).on,
4631
4696
  off: __privateGet4(this, _mitt2).off
4632
4697
  });
@@ -4827,7 +4892,7 @@ var calculateScores_fn;
4827
4892
  var Context = class {
4828
4893
  constructor(options) {
4829
4894
  __privateAdd4(this, _Context_instances);
4830
- __publicField2(this, "manifest");
4895
+ __publicField3(this, "manifest");
4831
4896
  __privateAdd4(this, _personalizationSelectionAlgorithms);
4832
4897
  __privateAdd4(this, _serverTransitionState);
4833
4898
  __privateAdd4(this, _scores, {});
@@ -4837,11 +4902,11 @@ var Context = class {
4837
4902
  __privateAdd4(this, _commands);
4838
4903
  __privateAdd4(this, _requireConsentForPersonalization);
4839
4904
  __privateAdd4(this, _mitt3, mitt_default());
4840
- __publicField2(this, "events", {
4905
+ __publicField3(this, "events", {
4841
4906
  on: __privateGet4(this, _mitt3).on,
4842
4907
  off: __privateGet4(this, _mitt3).off
4843
4908
  });
4844
- __publicField2(this, "storage");
4909
+ __publicField3(this, "storage");
4845
4910
  var _a, _b, _c;
4846
4911
  const { manifest, ...storageOptions } = options;
4847
4912
  __privateSet2(this, _state, {});