@uniformdev/next-app-router 20.61.2-alpha.4 → 20.63.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -5,10 +5,6 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
6
6
  var __getProtoOf = Object.getPrototypeOf;
7
7
  var __hasOwnProp = Object.prototype.hasOwnProperty;
8
- var __typeError = (msg) => {
9
- throw TypeError(msg);
10
- };
11
- var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
12
8
  var __commonJS = (cb, mod) => function __require() {
13
9
  return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
14
10
  };
@@ -33,25 +29,12 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
33
29
  mod
34
30
  ));
35
31
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
36
- var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
37
- var __accessCheck = (obj, member, msg) => member.has(obj) || __typeError("Cannot " + msg);
38
- var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
39
- 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);
40
- var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
41
- var __privateWrapper = (obj, member, setter, getter) => ({
42
- set _(value) {
43
- __privateSet(obj, member, value, setter);
44
- },
45
- get _() {
46
- return __privateGet(obj, member, getter);
47
- }
48
- });
49
32
 
50
33
  // ../../node_modules/.pnpm/yocto-queue@0.1.0/node_modules/yocto-queue/index.js
51
34
  var require_yocto_queue = __commonJS({
52
35
  "../../node_modules/.pnpm/yocto-queue@0.1.0/node_modules/yocto-queue/index.js"(exports2, module2) {
53
36
  "use strict";
54
- var Node2 = class {
37
+ var Node = class {
55
38
  /// value;
56
39
  /// next;
57
40
  constructor(value) {
@@ -59,7 +42,7 @@ var require_yocto_queue = __commonJS({
59
42
  this.next = void 0;
60
43
  }
61
44
  };
62
- var Queue2 = class {
45
+ var Queue = class {
63
46
  // TODO: Use private class fields when targeting Node.js 12.
64
47
  // #_head;
65
48
  // #_tail;
@@ -68,7 +51,7 @@ var require_yocto_queue = __commonJS({
68
51
  this.clear();
69
52
  }
70
53
  enqueue(value) {
71
- const node = new Node2(value);
54
+ const node = new Node(value);
72
55
  if (this._head) {
73
56
  this._tail.next = node;
74
57
  this._tail = node;
@@ -103,7 +86,7 @@ var require_yocto_queue = __commonJS({
103
86
  }
104
87
  }
105
88
  };
106
- module2.exports = Queue2;
89
+ module2.exports = Queue;
107
90
  }
108
91
  });
109
92
 
@@ -111,12 +94,12 @@ var require_yocto_queue = __commonJS({
111
94
  var require_p_limit = __commonJS({
112
95
  "../../node_modules/.pnpm/p-limit@3.1.0/node_modules/p-limit/index.js"(exports2, module2) {
113
96
  "use strict";
114
- var Queue2 = require_yocto_queue();
115
- var pLimit3 = (concurrency) => {
97
+ var Queue = require_yocto_queue();
98
+ var pLimit2 = (concurrency) => {
116
99
  if (!((Number.isInteger(concurrency) || concurrency === Infinity) && concurrency > 0)) {
117
100
  throw new TypeError("Expected `concurrency` to be a number from 1 and up");
118
101
  }
119
- const queue = new Queue2();
102
+ const queue = new Queue();
120
103
  let activeCount = 0;
121
104
  const next = () => {
122
105
  activeCount--;
@@ -161,238 +144,7 @@ var require_p_limit = __commonJS({
161
144
  });
162
145
  return generator;
163
146
  };
164
- module2.exports = pLimit3;
165
- }
166
- });
167
-
168
- // ../../node_modules/.pnpm/retry@0.13.1/node_modules/retry/lib/retry_operation.js
169
- var require_retry_operation = __commonJS({
170
- "../../node_modules/.pnpm/retry@0.13.1/node_modules/retry/lib/retry_operation.js"(exports2, module2) {
171
- "use strict";
172
- function RetryOperation(timeouts, options) {
173
- if (typeof options === "boolean") {
174
- options = { forever: options };
175
- }
176
- this._originalTimeouts = JSON.parse(JSON.stringify(timeouts));
177
- this._timeouts = timeouts;
178
- this._options = options || {};
179
- this._maxRetryTime = options && options.maxRetryTime || Infinity;
180
- this._fn = null;
181
- this._errors = [];
182
- this._attempts = 1;
183
- this._operationTimeout = null;
184
- this._operationTimeoutCb = null;
185
- this._timeout = null;
186
- this._operationStart = null;
187
- this._timer = null;
188
- if (this._options.forever) {
189
- this._cachedTimeouts = this._timeouts.slice(0);
190
- }
191
- }
192
- module2.exports = RetryOperation;
193
- RetryOperation.prototype.reset = function() {
194
- this._attempts = 1;
195
- this._timeouts = this._originalTimeouts.slice(0);
196
- };
197
- RetryOperation.prototype.stop = function() {
198
- if (this._timeout) {
199
- clearTimeout(this._timeout);
200
- }
201
- if (this._timer) {
202
- clearTimeout(this._timer);
203
- }
204
- this._timeouts = [];
205
- this._cachedTimeouts = null;
206
- };
207
- RetryOperation.prototype.retry = function(err) {
208
- if (this._timeout) {
209
- clearTimeout(this._timeout);
210
- }
211
- if (!err) {
212
- return false;
213
- }
214
- var currentTime = (/* @__PURE__ */ new Date()).getTime();
215
- if (err && currentTime - this._operationStart >= this._maxRetryTime) {
216
- this._errors.push(err);
217
- this._errors.unshift(new Error("RetryOperation timeout occurred"));
218
- return false;
219
- }
220
- this._errors.push(err);
221
- var timeout = this._timeouts.shift();
222
- if (timeout === void 0) {
223
- if (this._cachedTimeouts) {
224
- this._errors.splice(0, this._errors.length - 1);
225
- timeout = this._cachedTimeouts.slice(-1);
226
- } else {
227
- return false;
228
- }
229
- }
230
- var self = this;
231
- this._timer = setTimeout(function() {
232
- self._attempts++;
233
- if (self._operationTimeoutCb) {
234
- self._timeout = setTimeout(function() {
235
- self._operationTimeoutCb(self._attempts);
236
- }, self._operationTimeout);
237
- if (self._options.unref) {
238
- self._timeout.unref();
239
- }
240
- }
241
- self._fn(self._attempts);
242
- }, timeout);
243
- if (this._options.unref) {
244
- this._timer.unref();
245
- }
246
- return true;
247
- };
248
- RetryOperation.prototype.attempt = function(fn, timeoutOps) {
249
- this._fn = fn;
250
- if (timeoutOps) {
251
- if (timeoutOps.timeout) {
252
- this._operationTimeout = timeoutOps.timeout;
253
- }
254
- if (timeoutOps.cb) {
255
- this._operationTimeoutCb = timeoutOps.cb;
256
- }
257
- }
258
- var self = this;
259
- if (this._operationTimeoutCb) {
260
- this._timeout = setTimeout(function() {
261
- self._operationTimeoutCb();
262
- }, self._operationTimeout);
263
- }
264
- this._operationStart = (/* @__PURE__ */ new Date()).getTime();
265
- this._fn(this._attempts);
266
- };
267
- RetryOperation.prototype.try = function(fn) {
268
- console.log("Using RetryOperation.try() is deprecated");
269
- this.attempt(fn);
270
- };
271
- RetryOperation.prototype.start = function(fn) {
272
- console.log("Using RetryOperation.start() is deprecated");
273
- this.attempt(fn);
274
- };
275
- RetryOperation.prototype.start = RetryOperation.prototype.try;
276
- RetryOperation.prototype.errors = function() {
277
- return this._errors;
278
- };
279
- RetryOperation.prototype.attempts = function() {
280
- return this._attempts;
281
- };
282
- RetryOperation.prototype.mainError = function() {
283
- if (this._errors.length === 0) {
284
- return null;
285
- }
286
- var counts = {};
287
- var mainError = null;
288
- var mainErrorCount = 0;
289
- for (var i = 0; i < this._errors.length; i++) {
290
- var error = this._errors[i];
291
- var message = error.message;
292
- var count = (counts[message] || 0) + 1;
293
- counts[message] = count;
294
- if (count >= mainErrorCount) {
295
- mainError = error;
296
- mainErrorCount = count;
297
- }
298
- }
299
- return mainError;
300
- };
301
- }
302
- });
303
-
304
- // ../../node_modules/.pnpm/retry@0.13.1/node_modules/retry/lib/retry.js
305
- var require_retry = __commonJS({
306
- "../../node_modules/.pnpm/retry@0.13.1/node_modules/retry/lib/retry.js"(exports2) {
307
- "use strict";
308
- var RetryOperation = require_retry_operation();
309
- exports2.operation = function(options) {
310
- var timeouts = exports2.timeouts(options);
311
- return new RetryOperation(timeouts, {
312
- forever: options && (options.forever || options.retries === Infinity),
313
- unref: options && options.unref,
314
- maxRetryTime: options && options.maxRetryTime
315
- });
316
- };
317
- exports2.timeouts = function(options) {
318
- if (options instanceof Array) {
319
- return [].concat(options);
320
- }
321
- var opts = {
322
- retries: 10,
323
- factor: 2,
324
- minTimeout: 1 * 1e3,
325
- maxTimeout: Infinity,
326
- randomize: false
327
- };
328
- for (var key in options) {
329
- opts[key] = options[key];
330
- }
331
- if (opts.minTimeout > opts.maxTimeout) {
332
- throw new Error("minTimeout is greater than maxTimeout");
333
- }
334
- var timeouts = [];
335
- for (var i = 0; i < opts.retries; i++) {
336
- timeouts.push(this.createTimeout(i, opts));
337
- }
338
- if (options && options.forever && !timeouts.length) {
339
- timeouts.push(this.createTimeout(i, opts));
340
- }
341
- timeouts.sort(function(a, b) {
342
- return a - b;
343
- });
344
- return timeouts;
345
- };
346
- exports2.createTimeout = function(attempt, opts) {
347
- var random = opts.randomize ? Math.random() + 1 : 1;
348
- var timeout = Math.round(random * Math.max(opts.minTimeout, 1) * Math.pow(opts.factor, attempt));
349
- timeout = Math.min(timeout, opts.maxTimeout);
350
- return timeout;
351
- };
352
- exports2.wrap = function(obj, options, methods) {
353
- if (options instanceof Array) {
354
- methods = options;
355
- options = null;
356
- }
357
- if (!methods) {
358
- methods = [];
359
- for (var key in obj) {
360
- if (typeof obj[key] === "function") {
361
- methods.push(key);
362
- }
363
- }
364
- }
365
- for (var i = 0; i < methods.length; i++) {
366
- var method = methods[i];
367
- var original = obj[method];
368
- obj[method] = function retryWrapper(original2) {
369
- var op = exports2.operation(options);
370
- var args = Array.prototype.slice.call(arguments, 1);
371
- var callback = args.pop();
372
- args.push(function(err) {
373
- if (op.retry(err)) {
374
- return;
375
- }
376
- if (err) {
377
- arguments[0] = op.mainError();
378
- }
379
- callback.apply(this, arguments);
380
- });
381
- op.attempt(function() {
382
- original2.apply(obj, args);
383
- });
384
- }.bind(obj, original);
385
- obj[method].options = options;
386
- }
387
- };
388
- }
389
- });
390
-
391
- // ../../node_modules/.pnpm/retry@0.13.1/node_modules/retry/index.js
392
- var require_retry2 = __commonJS({
393
- "../../node_modules/.pnpm/retry@0.13.1/node_modules/retry/index.js"(exports2, module2) {
394
- "use strict";
395
- module2.exports = require_retry();
147
+ module2.exports = pLimit2;
396
148
  }
397
149
  });
398
150
 
@@ -426,14 +178,14 @@ var import_server_only = require("server-only");
426
178
  // ../context/dist/api/api.mjs
427
179
  var import_p_limit = __toESM(require_p_limit(), 1);
428
180
  var __defProp2 = Object.defineProperty;
429
- var __typeError2 = (msg) => {
181
+ var __typeError = (msg) => {
430
182
  throw TypeError(msg);
431
183
  };
432
- var __defNormalProp2 = (obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
433
- var __publicField2 = (obj, key, value) => __defNormalProp2(obj, typeof key !== "symbol" ? key + "" : key, value);
434
- var __accessCheck2 = (obj, member, msg) => member.has(obj) || __typeError2("Cannot " + msg);
435
- var __privateGet2 = (obj, member, getter) => (__accessCheck2(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
436
- 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);
184
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
185
+ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
186
+ var __accessCheck = (obj, member, msg) => member.has(obj) || __typeError("Cannot " + msg);
187
+ var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
188
+ 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);
437
189
  var defaultLimitPolicy = (0, import_p_limit.default)(6);
438
190
  var ApiClientError = class _ApiClientError extends Error {
439
191
  constructor(errorMessage, fetchMethod, fetchUri, statusCode, statusText, requestId) {
@@ -452,7 +204,7 @@ var ApiClientError = class _ApiClientError extends Error {
452
204
  };
453
205
  var ApiClient = class _ApiClient {
454
206
  constructor(options) {
455
- __publicField2(this, "options");
207
+ __publicField(this, "options");
456
208
  var _a, _b, _c, _d, _e;
457
209
  if (!options.apiKey && !options.bearerToken) {
458
210
  throw new Error("You must provide an API key or a bearer token");
@@ -622,12 +374,12 @@ var _AggregateClient = class _AggregateClient2 extends ApiClient {
622
374
  /** Fetches all aggregates for a project */
623
375
  async get(options) {
624
376
  const { projectId } = this.options;
625
- const fetchUri = this.createUrl(__privateGet2(_AggregateClient2, _url), { ...options, projectId });
377
+ const fetchUri = this.createUrl(__privateGet(_AggregateClient2, _url), { ...options, projectId });
626
378
  return await this.apiClient(fetchUri);
627
379
  }
628
380
  /** Updates or creates (based on id) an Aggregate */
629
381
  async upsert(body) {
630
- const fetchUri = this.createUrl(__privateGet2(_AggregateClient2, _url));
382
+ const fetchUri = this.createUrl(__privateGet(_AggregateClient2, _url));
631
383
  await this.apiClient(fetchUri, {
632
384
  method: "PUT",
633
385
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -636,7 +388,7 @@ var _AggregateClient = class _AggregateClient2 extends ApiClient {
636
388
  }
637
389
  /** Deletes an Aggregate */
638
390
  async remove(body) {
639
- const fetchUri = this.createUrl(__privateGet2(_AggregateClient2, _url));
391
+ const fetchUri = this.createUrl(__privateGet(_AggregateClient2, _url));
640
392
  await this.apiClient(fetchUri, {
641
393
  method: "DELETE",
642
394
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -645,7 +397,7 @@ var _AggregateClient = class _AggregateClient2 extends ApiClient {
645
397
  }
646
398
  };
647
399
  _url = /* @__PURE__ */ new WeakMap();
648
- __privateAdd2(_AggregateClient, _url, "/api/v2/aggregate");
400
+ __privateAdd(_AggregateClient, _url, "/api/v2/aggregate");
649
401
  var _url2;
650
402
  var _DimensionClient = class _DimensionClient2 extends ApiClient {
651
403
  constructor(options) {
@@ -654,12 +406,12 @@ var _DimensionClient = class _DimensionClient2 extends ApiClient {
654
406
  /** Fetches the known score dimensions for a project */
655
407
  async get(options) {
656
408
  const { projectId } = this.options;
657
- const fetchUri = this.createUrl(__privateGet2(_DimensionClient2, _url2), { ...options, projectId });
409
+ const fetchUri = this.createUrl(__privateGet(_DimensionClient2, _url2), { ...options, projectId });
658
410
  return await this.apiClient(fetchUri);
659
411
  }
660
412
  };
661
413
  _url2 = /* @__PURE__ */ new WeakMap();
662
- __privateAdd2(_DimensionClient, _url2, "/api/v2/dimension");
414
+ __privateAdd(_DimensionClient, _url2, "/api/v2/dimension");
663
415
  var _url3;
664
416
  var _valueUrl;
665
417
  var _EnrichmentClient = class _EnrichmentClient2 extends ApiClient {
@@ -669,12 +421,12 @@ var _EnrichmentClient = class _EnrichmentClient2 extends ApiClient {
669
421
  /** Fetches all enrichments and values for a project, grouped by category */
670
422
  async get(options) {
671
423
  const { projectId } = this.options;
672
- const fetchUri = this.createUrl(__privateGet2(_EnrichmentClient2, _url3), { ...options, projectId });
424
+ const fetchUri = this.createUrl(__privateGet(_EnrichmentClient2, _url3), { ...options, projectId });
673
425
  return await this.apiClient(fetchUri);
674
426
  }
675
427
  /** Updates or creates (based on id) an enrichment category */
676
428
  async upsertCategory(body) {
677
- const fetchUri = this.createUrl(__privateGet2(_EnrichmentClient2, _url3));
429
+ const fetchUri = this.createUrl(__privateGet(_EnrichmentClient2, _url3));
678
430
  await this.apiClient(fetchUri, {
679
431
  method: "PUT",
680
432
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -683,7 +435,7 @@ var _EnrichmentClient = class _EnrichmentClient2 extends ApiClient {
683
435
  }
684
436
  /** Deletes an enrichment category */
685
437
  async removeCategory(body) {
686
- const fetchUri = this.createUrl(__privateGet2(_EnrichmentClient2, _url3));
438
+ const fetchUri = this.createUrl(__privateGet(_EnrichmentClient2, _url3));
687
439
  await this.apiClient(fetchUri, {
688
440
  method: "DELETE",
689
441
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -692,7 +444,7 @@ var _EnrichmentClient = class _EnrichmentClient2 extends ApiClient {
692
444
  }
693
445
  /** Updates or creates (based on id) an enrichment value within an enrichment category */
694
446
  async upsertValue(body) {
695
- const fetchUri = this.createUrl(__privateGet2(_EnrichmentClient2, _valueUrl));
447
+ const fetchUri = this.createUrl(__privateGet(_EnrichmentClient2, _valueUrl));
696
448
  await this.apiClient(fetchUri, {
697
449
  method: "PUT",
698
450
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -701,7 +453,7 @@ var _EnrichmentClient = class _EnrichmentClient2 extends ApiClient {
701
453
  }
702
454
  /** Deletes an enrichment value within an enrichment category. The category is left alone. */
703
455
  async removeValue(body) {
704
- const fetchUri = this.createUrl(__privateGet2(_EnrichmentClient2, _valueUrl));
456
+ const fetchUri = this.createUrl(__privateGet(_EnrichmentClient2, _valueUrl));
705
457
  await this.apiClient(fetchUri, {
706
458
  method: "DELETE",
707
459
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -711,8 +463,8 @@ var _EnrichmentClient = class _EnrichmentClient2 extends ApiClient {
711
463
  };
712
464
  _url3 = /* @__PURE__ */ new WeakMap();
713
465
  _valueUrl = /* @__PURE__ */ new WeakMap();
714
- __privateAdd2(_EnrichmentClient, _url3, "/api/v1/enrichments");
715
- __privateAdd2(_EnrichmentClient, _valueUrl, "/api/v1/enrichment-values");
466
+ __privateAdd(_EnrichmentClient, _url3, "/api/v1/enrichments");
467
+ __privateAdd(_EnrichmentClient, _valueUrl, "/api/v1/enrichment-values");
716
468
  var _url4;
717
469
  var _ManifestClient = class _ManifestClient2 extends ApiClient {
718
470
  constructor(options) {
@@ -721,7 +473,7 @@ var _ManifestClient = class _ManifestClient2 extends ApiClient {
721
473
  /** Fetches the Context manifest for a project */
722
474
  async get(options) {
723
475
  const { projectId } = this.options;
724
- const fetchUri = this.createUrl(__privateGet2(_ManifestClient2, _url4), { ...options, projectId });
476
+ const fetchUri = this.createUrl(__privateGet(_ManifestClient2, _url4), { ...options, projectId });
725
477
  return await this.apiClient(fetchUri);
726
478
  }
727
479
  /** Publishes the Context manifest for a project */
@@ -735,7 +487,7 @@ var _ManifestClient = class _ManifestClient2 extends ApiClient {
735
487
  }
736
488
  };
737
489
  _url4 = /* @__PURE__ */ new WeakMap();
738
- __privateAdd2(_ManifestClient, _url4, "/api/v2/manifest");
490
+ __privateAdd(_ManifestClient, _url4, "/api/v2/manifest");
739
491
  var ManifestClient = _ManifestClient;
740
492
  var _url5;
741
493
  var _QuirkClient = class _QuirkClient2 extends ApiClient {
@@ -745,12 +497,12 @@ var _QuirkClient = class _QuirkClient2 extends ApiClient {
745
497
  /** Fetches all Quirks for a project */
746
498
  async get(options) {
747
499
  const { projectId } = this.options;
748
- const fetchUri = this.createUrl(__privateGet2(_QuirkClient2, _url5), { ...options, projectId });
500
+ const fetchUri = this.createUrl(__privateGet(_QuirkClient2, _url5), { ...options, projectId });
749
501
  return await this.apiClient(fetchUri);
750
502
  }
751
503
  /** Updates or creates (based on id) a Quirk */
752
504
  async upsert(body) {
753
- const fetchUri = this.createUrl(__privateGet2(_QuirkClient2, _url5));
505
+ const fetchUri = this.createUrl(__privateGet(_QuirkClient2, _url5));
754
506
  await this.apiClient(fetchUri, {
755
507
  method: "PUT",
756
508
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -759,7 +511,7 @@ var _QuirkClient = class _QuirkClient2 extends ApiClient {
759
511
  }
760
512
  /** Deletes a Quirk */
761
513
  async remove(body) {
762
- const fetchUri = this.createUrl(__privateGet2(_QuirkClient2, _url5));
514
+ const fetchUri = this.createUrl(__privateGet(_QuirkClient2, _url5));
763
515
  await this.apiClient(fetchUri, {
764
516
  method: "DELETE",
765
517
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -768,7 +520,7 @@ var _QuirkClient = class _QuirkClient2 extends ApiClient {
768
520
  }
769
521
  };
770
522
  _url5 = /* @__PURE__ */ new WeakMap();
771
- __privateAdd2(_QuirkClient, _url5, "/api/v2/quirk");
523
+ __privateAdd(_QuirkClient, _url5, "/api/v2/quirk");
772
524
  var _url6;
773
525
  var _SignalClient = class _SignalClient2 extends ApiClient {
774
526
  constructor(options) {
@@ -777,12 +529,12 @@ var _SignalClient = class _SignalClient2 extends ApiClient {
777
529
  /** Fetches all Signals for a project */
778
530
  async get(options) {
779
531
  const { projectId } = this.options;
780
- const fetchUri = this.createUrl(__privateGet2(_SignalClient2, _url6), { ...options, projectId });
532
+ const fetchUri = this.createUrl(__privateGet(_SignalClient2, _url6), { ...options, projectId });
781
533
  return await this.apiClient(fetchUri);
782
534
  }
783
535
  /** Updates or creates (based on id) a Signal */
784
536
  async upsert(body) {
785
- const fetchUri = this.createUrl(__privateGet2(_SignalClient2, _url6));
537
+ const fetchUri = this.createUrl(__privateGet(_SignalClient2, _url6));
786
538
  await this.apiClient(fetchUri, {
787
539
  method: "PUT",
788
540
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -791,7 +543,7 @@ var _SignalClient = class _SignalClient2 extends ApiClient {
791
543
  }
792
544
  /** Deletes a Signal */
793
545
  async remove(body) {
794
- const fetchUri = this.createUrl(__privateGet2(_SignalClient2, _url6));
546
+ const fetchUri = this.createUrl(__privateGet(_SignalClient2, _url6));
795
547
  await this.apiClient(fetchUri, {
796
548
  method: "DELETE",
797
549
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -800,7 +552,7 @@ var _SignalClient = class _SignalClient2 extends ApiClient {
800
552
  }
801
553
  };
802
554
  _url6 = /* @__PURE__ */ new WeakMap();
803
- __privateAdd2(_SignalClient, _url6, "/api/v2/signal");
555
+ __privateAdd(_SignalClient, _url6, "/api/v2/signal");
804
556
  var _url7;
805
557
  var _TestClient = class _TestClient2 extends ApiClient {
806
558
  constructor(options) {
@@ -809,12 +561,12 @@ var _TestClient = class _TestClient2 extends ApiClient {
809
561
  /** Fetches all Tests for a project */
810
562
  async get(options) {
811
563
  const { projectId } = this.options;
812
- const fetchUri = this.createUrl(__privateGet2(_TestClient2, _url7), { ...options, projectId });
564
+ const fetchUri = this.createUrl(__privateGet(_TestClient2, _url7), { ...options, projectId });
813
565
  return await this.apiClient(fetchUri);
814
566
  }
815
567
  /** Updates or creates (based on id) a Test */
816
568
  async upsert(body) {
817
- const fetchUri = this.createUrl(__privateGet2(_TestClient2, _url7));
569
+ const fetchUri = this.createUrl(__privateGet(_TestClient2, _url7));
818
570
  await this.apiClient(fetchUri, {
819
571
  method: "PUT",
820
572
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -823,7 +575,7 @@ var _TestClient = class _TestClient2 extends ApiClient {
823
575
  }
824
576
  /** Deletes a Test */
825
577
  async remove(body) {
826
- const fetchUri = this.createUrl(__privateGet2(_TestClient2, _url7));
578
+ const fetchUri = this.createUrl(__privateGet(_TestClient2, _url7));
827
579
  await this.apiClient(fetchUri, {
828
580
  method: "DELETE",
829
581
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -832,187 +584,393 @@ var _TestClient = class _TestClient2 extends ApiClient {
832
584
  }
833
585
  };
834
586
  _url7 = /* @__PURE__ */ new WeakMap();
835
- __privateAdd2(_TestClient, _url7, "/api/v2/test");
587
+ __privateAdd(_TestClient, _url7, "/api/v2/test");
836
588
 
837
- // ../../node_modules/.pnpm/yocto-queue@1.2.2/node_modules/yocto-queue/index.js
838
- var Node = class {
839
- constructor(value) {
840
- __publicField(this, "value");
841
- __publicField(this, "next");
842
- this.value = value;
843
- }
589
+ // ../canvas/dist/index.mjs
590
+ var __create2 = Object.create;
591
+ var __defProp3 = Object.defineProperty;
592
+ var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
593
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
594
+ var __getProtoOf2 = Object.getPrototypeOf;
595
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
596
+ var __typeError2 = (msg) => {
597
+ throw TypeError(msg);
844
598
  };
845
- var _head, _tail, _size;
846
- var Queue = class {
847
- constructor() {
848
- __privateAdd(this, _head);
849
- __privateAdd(this, _tail);
850
- __privateAdd(this, _size);
851
- this.clear();
852
- }
853
- enqueue(value) {
854
- const node = new Node(value);
855
- if (__privateGet(this, _head)) {
856
- __privateGet(this, _tail).next = node;
857
- __privateSet(this, _tail, node);
858
- } else {
859
- __privateSet(this, _head, node);
860
- __privateSet(this, _tail, node);
861
- }
862
- __privateWrapper(this, _size)._++;
863
- }
864
- dequeue() {
865
- const current = __privateGet(this, _head);
866
- if (!current) {
867
- return;
868
- }
869
- __privateSet(this, _head, __privateGet(this, _head).next);
870
- __privateWrapper(this, _size)._--;
871
- if (!__privateGet(this, _head)) {
872
- __privateSet(this, _tail, void 0);
873
- }
874
- return current.value;
875
- }
876
- peek() {
877
- if (!__privateGet(this, _head)) {
878
- return;
879
- }
880
- return __privateGet(this, _head).value;
881
- }
882
- clear() {
883
- __privateSet(this, _head, void 0);
884
- __privateSet(this, _tail, void 0);
885
- __privateSet(this, _size, 0);
599
+ var __commonJS2 = (cb, mod) => function __require() {
600
+ return mod || (0, cb[__getOwnPropNames2(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
601
+ };
602
+ var __copyProps2 = (to, from, except, desc) => {
603
+ if (from && typeof from === "object" || typeof from === "function") {
604
+ for (let key of __getOwnPropNames2(from))
605
+ if (!__hasOwnProp2.call(to, key) && key !== except)
606
+ __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable });
886
607
  }
887
- get size() {
888
- return __privateGet(this, _size);
608
+ return to;
609
+ };
610
+ var __toESM2 = (mod, isNodeMode, target) => (target = mod != null ? __create2(__getProtoOf2(mod)) : {}, __copyProps2(
611
+ // If the importer is in node compatibility mode or this is not an ESM
612
+ // file that has been converted to a CommonJS file using a Babel-
613
+ // compatible transform (i.e. "__esModule" has not been set), then set
614
+ // "default" to the CommonJS "module.exports" for node compatibility.
615
+ isNodeMode || !mod || !mod.__esModule ? __defProp3(target, "default", { value: mod, enumerable: true }) : target,
616
+ mod
617
+ ));
618
+ var __accessCheck2 = (obj, member, msg) => member.has(obj) || __typeError2("Cannot " + msg);
619
+ var __privateGet2 = (obj, member, getter) => (__accessCheck2(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
620
+ 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);
621
+ var require_yocto_queue2 = __commonJS2({
622
+ "../../node_modules/.pnpm/yocto-queue@0.1.0/node_modules/yocto-queue/index.js"(exports2, module2) {
623
+ "use strict";
624
+ var Node = class {
625
+ /// value;
626
+ /// next;
627
+ constructor(value) {
628
+ this.value = value;
629
+ this.next = void 0;
630
+ }
631
+ };
632
+ var Queue = class {
633
+ // TODO: Use private class fields when targeting Node.js 12.
634
+ // #_head;
635
+ // #_tail;
636
+ // #_size;
637
+ constructor() {
638
+ this.clear();
639
+ }
640
+ enqueue(value) {
641
+ const node = new Node(value);
642
+ if (this._head) {
643
+ this._tail.next = node;
644
+ this._tail = node;
645
+ } else {
646
+ this._head = node;
647
+ this._tail = node;
648
+ }
649
+ this._size++;
650
+ }
651
+ dequeue() {
652
+ const current = this._head;
653
+ if (!current) {
654
+ return;
655
+ }
656
+ this._head = this._head.next;
657
+ this._size--;
658
+ return current.value;
659
+ }
660
+ clear() {
661
+ this._head = void 0;
662
+ this._tail = void 0;
663
+ this._size = 0;
664
+ }
665
+ get size() {
666
+ return this._size;
667
+ }
668
+ *[Symbol.iterator]() {
669
+ let current = this._head;
670
+ while (current) {
671
+ yield current.value;
672
+ current = current.next;
673
+ }
674
+ }
675
+ };
676
+ module2.exports = Queue;
889
677
  }
890
- *[Symbol.iterator]() {
891
- let current = __privateGet(this, _head);
892
- while (current) {
893
- yield current.value;
894
- current = current.next;
895
- }
678
+ });
679
+ var require_p_limit2 = __commonJS2({
680
+ "../../node_modules/.pnpm/p-limit@3.1.0/node_modules/p-limit/index.js"(exports2, module2) {
681
+ "use strict";
682
+ var Queue = require_yocto_queue2();
683
+ var pLimit2 = (concurrency) => {
684
+ if (!((Number.isInteger(concurrency) || concurrency === Infinity) && concurrency > 0)) {
685
+ throw new TypeError("Expected `concurrency` to be a number from 1 and up");
686
+ }
687
+ const queue = new Queue();
688
+ let activeCount = 0;
689
+ const next = () => {
690
+ activeCount--;
691
+ if (queue.size > 0) {
692
+ queue.dequeue()();
693
+ }
694
+ };
695
+ const run = async (fn, resolve, ...args) => {
696
+ activeCount++;
697
+ const result = (async () => fn(...args))();
698
+ resolve(result);
699
+ try {
700
+ await result;
701
+ } catch (e) {
702
+ }
703
+ next();
704
+ };
705
+ const enqueue = (fn, resolve, ...args) => {
706
+ queue.enqueue(run.bind(null, fn, resolve, ...args));
707
+ (async () => {
708
+ await Promise.resolve();
709
+ if (activeCount < concurrency && queue.size > 0) {
710
+ queue.dequeue()();
711
+ }
712
+ })();
713
+ };
714
+ const generator = (fn, ...args) => new Promise((resolve) => {
715
+ enqueue(fn, resolve, ...args);
716
+ });
717
+ Object.defineProperties(generator, {
718
+ activeCount: {
719
+ get: () => activeCount
720
+ },
721
+ pendingCount: {
722
+ get: () => queue.size
723
+ },
724
+ clearQueue: {
725
+ value: () => {
726
+ queue.clear();
727
+ }
728
+ }
729
+ });
730
+ return generator;
731
+ };
732
+ module2.exports = pLimit2;
896
733
  }
897
- *drain() {
898
- while (__privateGet(this, _head)) {
899
- yield this.dequeue();
734
+ });
735
+ var require_retry_operation = __commonJS2({
736
+ "../../node_modules/.pnpm/retry@0.13.1/node_modules/retry/lib/retry_operation.js"(exports2, module2) {
737
+ "use strict";
738
+ function RetryOperation(timeouts, options) {
739
+ if (typeof options === "boolean") {
740
+ options = { forever: options };
741
+ }
742
+ this._originalTimeouts = JSON.parse(JSON.stringify(timeouts));
743
+ this._timeouts = timeouts;
744
+ this._options = options || {};
745
+ this._maxRetryTime = options && options.maxRetryTime || Infinity;
746
+ this._fn = null;
747
+ this._errors = [];
748
+ this._attempts = 1;
749
+ this._operationTimeout = null;
750
+ this._operationTimeoutCb = null;
751
+ this._timeout = null;
752
+ this._operationStart = null;
753
+ this._timer = null;
754
+ if (this._options.forever) {
755
+ this._cachedTimeouts = this._timeouts.slice(0);
756
+ }
900
757
  }
758
+ module2.exports = RetryOperation;
759
+ RetryOperation.prototype.reset = function() {
760
+ this._attempts = 1;
761
+ this._timeouts = this._originalTimeouts.slice(0);
762
+ };
763
+ RetryOperation.prototype.stop = function() {
764
+ if (this._timeout) {
765
+ clearTimeout(this._timeout);
766
+ }
767
+ if (this._timer) {
768
+ clearTimeout(this._timer);
769
+ }
770
+ this._timeouts = [];
771
+ this._cachedTimeouts = null;
772
+ };
773
+ RetryOperation.prototype.retry = function(err) {
774
+ if (this._timeout) {
775
+ clearTimeout(this._timeout);
776
+ }
777
+ if (!err) {
778
+ return false;
779
+ }
780
+ var currentTime = (/* @__PURE__ */ new Date()).getTime();
781
+ if (err && currentTime - this._operationStart >= this._maxRetryTime) {
782
+ this._errors.push(err);
783
+ this._errors.unshift(new Error("RetryOperation timeout occurred"));
784
+ return false;
785
+ }
786
+ this._errors.push(err);
787
+ var timeout = this._timeouts.shift();
788
+ if (timeout === void 0) {
789
+ if (this._cachedTimeouts) {
790
+ this._errors.splice(0, this._errors.length - 1);
791
+ timeout = this._cachedTimeouts.slice(-1);
792
+ } else {
793
+ return false;
794
+ }
795
+ }
796
+ var self = this;
797
+ this._timer = setTimeout(function() {
798
+ self._attempts++;
799
+ if (self._operationTimeoutCb) {
800
+ self._timeout = setTimeout(function() {
801
+ self._operationTimeoutCb(self._attempts);
802
+ }, self._operationTimeout);
803
+ if (self._options.unref) {
804
+ self._timeout.unref();
805
+ }
806
+ }
807
+ self._fn(self._attempts);
808
+ }, timeout);
809
+ if (this._options.unref) {
810
+ this._timer.unref();
811
+ }
812
+ return true;
813
+ };
814
+ RetryOperation.prototype.attempt = function(fn, timeoutOps) {
815
+ this._fn = fn;
816
+ if (timeoutOps) {
817
+ if (timeoutOps.timeout) {
818
+ this._operationTimeout = timeoutOps.timeout;
819
+ }
820
+ if (timeoutOps.cb) {
821
+ this._operationTimeoutCb = timeoutOps.cb;
822
+ }
823
+ }
824
+ var self = this;
825
+ if (this._operationTimeoutCb) {
826
+ this._timeout = setTimeout(function() {
827
+ self._operationTimeoutCb();
828
+ }, self._operationTimeout);
829
+ }
830
+ this._operationStart = (/* @__PURE__ */ new Date()).getTime();
831
+ this._fn(this._attempts);
832
+ };
833
+ RetryOperation.prototype.try = function(fn) {
834
+ console.log("Using RetryOperation.try() is deprecated");
835
+ this.attempt(fn);
836
+ };
837
+ RetryOperation.prototype.start = function(fn) {
838
+ console.log("Using RetryOperation.start() is deprecated");
839
+ this.attempt(fn);
840
+ };
841
+ RetryOperation.prototype.start = RetryOperation.prototype.try;
842
+ RetryOperation.prototype.errors = function() {
843
+ return this._errors;
844
+ };
845
+ RetryOperation.prototype.attempts = function() {
846
+ return this._attempts;
847
+ };
848
+ RetryOperation.prototype.mainError = function() {
849
+ if (this._errors.length === 0) {
850
+ return null;
851
+ }
852
+ var counts = {};
853
+ var mainError = null;
854
+ var mainErrorCount = 0;
855
+ for (var i = 0; i < this._errors.length; i++) {
856
+ var error = this._errors[i];
857
+ var message = error.message;
858
+ var count = (counts[message] || 0) + 1;
859
+ counts[message] = count;
860
+ if (count >= mainErrorCount) {
861
+ mainError = error;
862
+ mainErrorCount = count;
863
+ }
864
+ }
865
+ return mainError;
866
+ };
901
867
  }
902
- };
903
- _head = new WeakMap();
904
- _tail = new WeakMap();
905
- _size = new WeakMap();
906
-
907
- // ../../node_modules/.pnpm/p-limit@6.2.0/node_modules/p-limit/index.js
908
- function pLimit2(concurrency) {
909
- validateConcurrency(concurrency);
910
- const queue = new Queue();
911
- let activeCount = 0;
912
- const resumeNext = () => {
913
- if (activeCount < concurrency && queue.size > 0) {
914
- queue.dequeue()();
915
- activeCount++;
916
- }
917
- };
918
- const next = () => {
919
- activeCount--;
920
- resumeNext();
921
- };
922
- const run = async (function_, resolve, arguments_) => {
923
- const result = (async () => function_(...arguments_))();
924
- resolve(result);
925
- try {
926
- await result;
927
- } catch (e) {
928
- }
929
- next();
930
- };
931
- const enqueue = (function_, resolve, arguments_) => {
932
- new Promise((internalResolve) => {
933
- queue.enqueue(internalResolve);
934
- }).then(
935
- run.bind(void 0, function_, resolve, arguments_)
936
- );
937
- (async () => {
938
- await Promise.resolve();
939
- if (activeCount < concurrency) {
940
- resumeNext();
868
+ });
869
+ var require_retry = __commonJS2({
870
+ "../../node_modules/.pnpm/retry@0.13.1/node_modules/retry/lib/retry.js"(exports2) {
871
+ "use strict";
872
+ var RetryOperation = require_retry_operation();
873
+ exports2.operation = function(options) {
874
+ var timeouts = exports2.timeouts(options);
875
+ return new RetryOperation(timeouts, {
876
+ forever: options && (options.forever || options.retries === Infinity),
877
+ unref: options && options.unref,
878
+ maxRetryTime: options && options.maxRetryTime
879
+ });
880
+ };
881
+ exports2.timeouts = function(options) {
882
+ if (options instanceof Array) {
883
+ return [].concat(options);
941
884
  }
942
- })();
943
- };
944
- const generator = (function_, ...arguments_) => new Promise((resolve) => {
945
- enqueue(function_, resolve, arguments_);
946
- });
947
- Object.defineProperties(generator, {
948
- activeCount: {
949
- get: () => activeCount
950
- },
951
- pendingCount: {
952
- get: () => queue.size
953
- },
954
- clearQueue: {
955
- value() {
956
- queue.clear();
885
+ var opts = {
886
+ retries: 10,
887
+ factor: 2,
888
+ minTimeout: 1 * 1e3,
889
+ maxTimeout: Infinity,
890
+ randomize: false
891
+ };
892
+ for (var key in options) {
893
+ opts[key] = options[key];
957
894
  }
958
- },
959
- concurrency: {
960
- get: () => concurrency,
961
- set(newConcurrency) {
962
- validateConcurrency(newConcurrency);
963
- concurrency = newConcurrency;
964
- queueMicrotask(() => {
965
- while (activeCount < concurrency && queue.size > 0) {
966
- resumeNext();
895
+ if (opts.minTimeout > opts.maxTimeout) {
896
+ throw new Error("minTimeout is greater than maxTimeout");
897
+ }
898
+ var timeouts = [];
899
+ for (var i = 0; i < opts.retries; i++) {
900
+ timeouts.push(this.createTimeout(i, opts));
901
+ }
902
+ if (options && options.forever && !timeouts.length) {
903
+ timeouts.push(this.createTimeout(i, opts));
904
+ }
905
+ timeouts.sort(function(a, b) {
906
+ return a - b;
907
+ });
908
+ return timeouts;
909
+ };
910
+ exports2.createTimeout = function(attempt, opts) {
911
+ var random = opts.randomize ? Math.random() + 1 : 1;
912
+ var timeout = Math.round(random * Math.max(opts.minTimeout, 1) * Math.pow(opts.factor, attempt));
913
+ timeout = Math.min(timeout, opts.maxTimeout);
914
+ return timeout;
915
+ };
916
+ exports2.wrap = function(obj, options, methods) {
917
+ if (options instanceof Array) {
918
+ methods = options;
919
+ options = null;
920
+ }
921
+ if (!methods) {
922
+ methods = [];
923
+ for (var key in obj) {
924
+ if (typeof obj[key] === "function") {
925
+ methods.push(key);
967
926
  }
968
- });
927
+ }
969
928
  }
970
- }
971
- });
972
- return generator;
973
- }
974
- function validateConcurrency(concurrency) {
975
- if (!((Number.isInteger(concurrency) || concurrency === Number.POSITIVE_INFINITY) && concurrency > 0)) {
976
- throw new TypeError("Expected `concurrency` to be a number from 1 and up");
929
+ for (var i = 0; i < methods.length; i++) {
930
+ var method = methods[i];
931
+ var original = obj[method];
932
+ obj[method] = function retryWrapper(original2) {
933
+ var op = exports2.operation(options);
934
+ var args = Array.prototype.slice.call(arguments, 1);
935
+ var callback = args.pop();
936
+ args.push(function(err) {
937
+ if (op.retry(err)) {
938
+ return;
939
+ }
940
+ if (err) {
941
+ arguments[0] = op.mainError();
942
+ }
943
+ callback.apply(this, arguments);
944
+ });
945
+ op.attempt(function() {
946
+ original2.apply(obj, args);
947
+ });
948
+ }.bind(obj, original);
949
+ obj[method].options = options;
950
+ }
951
+ };
977
952
  }
978
- }
979
-
980
- // ../../node_modules/.pnpm/p-retry@6.2.1/node_modules/p-retry/index.js
981
- var import_retry = __toESM(require_retry2(), 1);
982
-
983
- // ../../node_modules/.pnpm/is-network-error@1.1.0/node_modules/is-network-error/index.js
984
- var objectToString = Object.prototype.toString;
985
- var isError = (value) => objectToString.call(value) === "[object Error]";
986
- var errorMessages = /* @__PURE__ */ new Set([
987
- "network error",
988
- // Chrome
953
+ });
954
+ var require_retry2 = __commonJS2({
955
+ "../../node_modules/.pnpm/retry@0.13.1/node_modules/retry/index.js"(exports2, module2) {
956
+ "use strict";
957
+ module2.exports = require_retry();
958
+ }
959
+ });
960
+ var import_p_limit2 = __toESM2(require_p_limit2());
961
+ var import_retry = __toESM2(require_retry2(), 1);
962
+ var networkErrorMsgs = /* @__PURE__ */ new Set([
989
963
  "Failed to fetch",
990
964
  // Chrome
991
965
  "NetworkError when attempting to fetch resource.",
992
966
  // Firefox
993
967
  "The Internet connection appears to be offline.",
994
- // Safari 16
995
- "Load failed",
996
- // Safari 17+
968
+ // Safari
997
969
  "Network request failed",
998
970
  // `cross-fetch`
999
- "fetch failed",
1000
- // Undici (Node.js)
1001
- "terminated"
971
+ "fetch failed"
1002
972
  // Undici (Node.js)
1003
973
  ]);
1004
- function isNetworkError(error) {
1005
- const isValid = error && isError(error) && error.name === "TypeError" && typeof error.message === "string";
1006
- if (!isValid) {
1007
- return false;
1008
- }
1009
- if (error.message === "Load failed") {
1010
- return error.stack === void 0;
1011
- }
1012
- return errorMessages.has(error.message);
1013
- }
1014
-
1015
- // ../../node_modules/.pnpm/p-retry@6.2.1/node_modules/p-retry/index.js
1016
974
  var AbortError = class extends Error {
1017
975
  constructor(message) {
1018
976
  super();
@@ -1033,68 +991,63 @@ var decorateErrorWithCounts = (error, attemptNumber, options) => {
1033
991
  error.retriesLeft = retriesLeft;
1034
992
  return error;
1035
993
  };
994
+ var isNetworkError = (errorMessage) => networkErrorMsgs.has(errorMessage);
995
+ var getDOMException = (errorMessage) => globalThis.DOMException === void 0 ? new Error(errorMessage) : new DOMException(errorMessage);
1036
996
  async function pRetry(input, options) {
1037
997
  return new Promise((resolve, reject) => {
1038
- var _a, _b, _c;
1039
- options = { ...options };
1040
- (_a = options.onFailedAttempt) != null ? _a : options.onFailedAttempt = () => {
998
+ options = {
999
+ onFailedAttempt() {
1000
+ },
1001
+ retries: 10,
1002
+ ...options
1041
1003
  };
1042
- (_b = options.shouldRetry) != null ? _b : options.shouldRetry = () => true;
1043
- (_c = options.retries) != null ? _c : options.retries = 10;
1044
1004
  const operation = import_retry.default.operation(options);
1045
- const abortHandler = () => {
1046
- var _a2;
1047
- operation.stop();
1048
- reject((_a2 = options.signal) == null ? void 0 : _a2.reason);
1049
- };
1050
- if (options.signal && !options.signal.aborted) {
1051
- options.signal.addEventListener("abort", abortHandler, { once: true });
1052
- }
1053
- const cleanUp = () => {
1054
- var _a2;
1055
- (_a2 = options.signal) == null ? void 0 : _a2.removeEventListener("abort", abortHandler);
1056
- operation.stop();
1057
- };
1058
1005
  operation.attempt(async (attemptNumber) => {
1059
1006
  try {
1060
- const result = await input(attemptNumber);
1061
- cleanUp();
1062
- resolve(result);
1007
+ resolve(await input(attemptNumber));
1063
1008
  } catch (error) {
1064
- try {
1065
- if (!(error instanceof Error)) {
1066
- throw new TypeError(`Non-error was thrown: "${error}". You should only throw errors.`);
1067
- }
1068
- if (error instanceof AbortError) {
1069
- throw error.originalError;
1070
- }
1071
- if (error instanceof TypeError && !isNetworkError(error)) {
1072
- throw error;
1073
- }
1009
+ if (!(error instanceof Error)) {
1010
+ reject(new TypeError(`Non-error was thrown: "${error}". You should only throw errors.`));
1011
+ return;
1012
+ }
1013
+ if (error instanceof AbortError) {
1014
+ operation.stop();
1015
+ reject(error.originalError);
1016
+ } else if (error instanceof TypeError && !isNetworkError(error.message)) {
1017
+ operation.stop();
1018
+ reject(error);
1019
+ } else {
1074
1020
  decorateErrorWithCounts(error, attemptNumber, options);
1075
- if (!await options.shouldRetry(error)) {
1076
- operation.stop();
1077
- reject(error);
1021
+ try {
1022
+ await options.onFailedAttempt(error);
1023
+ } catch (error2) {
1024
+ reject(error2);
1025
+ return;
1078
1026
  }
1079
- await options.onFailedAttempt(error);
1080
1027
  if (!operation.retry(error)) {
1081
- throw operation.mainError();
1028
+ reject(operation.mainError());
1082
1029
  }
1083
- } catch (finalError) {
1084
- decorateErrorWithCounts(finalError, attemptNumber, options);
1085
- cleanUp();
1086
- reject(finalError);
1087
1030
  }
1088
1031
  }
1089
1032
  });
1033
+ if (options.signal && !options.signal.aborted) {
1034
+ options.signal.addEventListener("abort", () => {
1035
+ operation.stop();
1036
+ const reason = options.signal.reason === void 0 ? getDOMException("The operation was aborted.") : options.signal.reason;
1037
+ reject(reason instanceof Error ? reason : getDOMException(reason));
1038
+ }, {
1039
+ once: true
1040
+ });
1041
+ }
1090
1042
  });
1091
1043
  }
1092
-
1093
- // ../../node_modules/.pnpm/p-throttle@7.0.0/node_modules/p-throttle/index.js
1094
- var registry = new FinalizationRegistry(({ signal, aborted }) => {
1095
- signal == null ? void 0 : signal.removeEventListener("abort", aborted);
1096
- });
1097
- function pThrottle({ limit, interval, strict, signal, onDelay }) {
1044
+ var AbortError2 = class extends Error {
1045
+ constructor() {
1046
+ super("Throttled function aborted");
1047
+ this.name = "AbortError";
1048
+ }
1049
+ };
1050
+ function pThrottle({ limit, interval, strict }) {
1098
1051
  if (!Number.isFinite(limit)) {
1099
1052
  throw new TypeError("Expected `limit` to be a finite number");
1100
1053
  }
@@ -1122,75 +1075,53 @@ function pThrottle({ limit, interval, strict, signal, onDelay }) {
1122
1075
  const strictTicks = [];
1123
1076
  function strictDelay() {
1124
1077
  const now = Date.now();
1125
- if (strictTicks.length > 0 && now - strictTicks.at(-1) > interval) {
1126
- strictTicks.length = 0;
1127
- }
1128
1078
  if (strictTicks.length < limit) {
1129
1079
  strictTicks.push(now);
1130
1080
  return 0;
1131
1081
  }
1132
- const nextExecutionTime = strictTicks[0] + interval;
1133
- strictTicks.shift();
1134
- strictTicks.push(nextExecutionTime);
1135
- return Math.max(0, nextExecutionTime - now);
1082
+ const earliestTime = strictTicks.shift() + interval;
1083
+ if (now >= earliestTime) {
1084
+ strictTicks.push(now);
1085
+ return 0;
1086
+ }
1087
+ strictTicks.push(earliestTime);
1088
+ return earliestTime - now;
1136
1089
  }
1137
1090
  const getDelay = strict ? strictDelay : windowedDelay;
1138
1091
  return (function_) => {
1139
- const throttled = function(...arguments_) {
1092
+ const throttled = function(...args) {
1140
1093
  if (!throttled.isEnabled) {
1141
- return (async () => function_.apply(this, arguments_))();
1094
+ return (async () => function_.apply(this, args))();
1142
1095
  }
1143
- let timeoutId;
1096
+ let timeout;
1144
1097
  return new Promise((resolve, reject) => {
1145
1098
  const execute = () => {
1146
- resolve(function_.apply(this, arguments_));
1147
- queue.delete(timeoutId);
1099
+ resolve(function_.apply(this, args));
1100
+ queue.delete(timeout);
1148
1101
  };
1149
- const delay = getDelay();
1150
- if (delay > 0) {
1151
- timeoutId = setTimeout(execute, delay);
1152
- queue.set(timeoutId, reject);
1153
- onDelay == null ? void 0 : onDelay(...arguments_);
1154
- } else {
1155
- execute();
1156
- }
1102
+ timeout = setTimeout(execute, getDelay());
1103
+ queue.set(timeout, reject);
1157
1104
  });
1158
1105
  };
1159
- const aborted = () => {
1106
+ throttled.abort = () => {
1160
1107
  for (const timeout of queue.keys()) {
1161
1108
  clearTimeout(timeout);
1162
- queue.get(timeout)(signal.reason);
1109
+ queue.get(timeout)(new AbortError2());
1163
1110
  }
1164
1111
  queue.clear();
1165
1112
  strictTicks.splice(0, strictTicks.length);
1166
1113
  };
1167
- registry.register(throttled, { signal, aborted });
1168
- signal == null ? void 0 : signal.throwIfAborted();
1169
- signal == null ? void 0 : signal.addEventListener("abort", aborted, { once: true });
1170
1114
  throttled.isEnabled = true;
1171
- Object.defineProperty(throttled, "queueSize", {
1172
- get() {
1173
- return queue.size;
1174
- }
1175
- });
1176
1115
  return throttled;
1177
1116
  };
1178
1117
  }
1179
-
1180
- // ../canvas/dist/index.mjs
1181
- var __typeError3 = (msg) => {
1182
- throw TypeError(msg);
1183
- };
1184
- var __accessCheck3 = (obj, member, msg) => member.has(obj) || __typeError3("Cannot " + msg);
1185
- var __privateGet3 = (obj, member, getter) => (__accessCheck3(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
1186
- 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);
1187
1118
  function createLimitPolicy({
1188
1119
  throttle = { interval: 1e3, limit: 10 },
1189
- retry: retry3 = { retries: 1, factor: 1.66 },
1120
+ retry: retry2 = { retries: 1, factor: 1.66 },
1190
1121
  limit = 10
1191
1122
  }) {
1192
1123
  const throttler = throttle ? pThrottle(throttle) : null;
1193
- const limiter = limit ? pLimit2(limit) : null;
1124
+ const limiter = limit ? (0, import_p_limit2.default)(limit) : null;
1194
1125
  return function limitPolicy(func) {
1195
1126
  let currentFunc = async () => await func();
1196
1127
  if (throttler) {
@@ -1201,13 +1132,13 @@ function createLimitPolicy({
1201
1132
  const limitFunc = currentFunc;
1202
1133
  currentFunc = () => limiter(limitFunc);
1203
1134
  }
1204
- if (retry3) {
1135
+ if (retry2) {
1205
1136
  const retryFunc = currentFunc;
1206
1137
  currentFunc = () => pRetry(retryFunc, {
1207
- ...retry3,
1138
+ ...retry2,
1208
1139
  onFailedAttempt: async (error) => {
1209
- if (retry3.onFailedAttempt) {
1210
- await retry3.onFailedAttempt(error);
1140
+ if (retry2.onFailedAttempt) {
1141
+ await retry2.onFailedAttempt(error);
1211
1142
  }
1212
1143
  if (error instanceof ApiClientError && typeof error.statusCode === "number" && error.statusCode >= 400 && error.statusCode < 500 && error.statusCode !== 429 && error.statusCode !== 408) {
1213
1144
  throw error;
@@ -1347,7 +1278,7 @@ var _ContentClient = class _ContentClient2 extends ApiClient {
1347
1278
  }
1348
1279
  getContentTypes(options) {
1349
1280
  const { projectId } = this.options;
1350
- const fetchUri = this.createUrl(__privateGet3(_ContentClient2, _contentTypesUrl), { ...options, projectId });
1281
+ const fetchUri = this.createUrl(__privateGet2(_ContentClient2, _contentTypesUrl), { ...options, projectId });
1351
1282
  return this.apiClient(fetchUri);
1352
1283
  }
1353
1284
  getEntries(options) {
@@ -1355,11 +1286,11 @@ var _ContentClient = class _ContentClient2 extends ApiClient {
1355
1286
  const { skipDataResolution, filters, ...params } = options;
1356
1287
  const rewrittenFilters = rewriteFiltersForApi(filters);
1357
1288
  if (skipDataResolution) {
1358
- const url = this.createUrl(__privateGet3(_ContentClient2, _entriesUrl), { ...params, ...rewrittenFilters, projectId });
1289
+ const url = this.createUrl(__privateGet2(_ContentClient2, _entriesUrl), { ...params, ...rewrittenFilters, projectId });
1359
1290
  return this.apiClient(url);
1360
1291
  }
1361
1292
  const edgeUrl = this.createUrl(
1362
- __privateGet3(_ContentClient2, _entriesUrl),
1293
+ __privateGet2(_ContentClient2, _entriesUrl),
1363
1294
  { ...this.getEdgeOptions(params), ...rewrittenFilters },
1364
1295
  this.edgeApiHost
1365
1296
  );
@@ -1377,7 +1308,7 @@ var _ContentClient = class _ContentClient2 extends ApiClient {
1377
1308
  return this.apiClient(historyUrl);
1378
1309
  }
1379
1310
  async upsertContentType(body, opts = {}) {
1380
- const fetchUri = this.createUrl(__privateGet3(_ContentClient2, _contentTypesUrl));
1311
+ const fetchUri = this.createUrl(__privateGet2(_ContentClient2, _contentTypesUrl));
1381
1312
  if (typeof body.contentType.slugSettings === "object" && body.contentType.slugSettings !== null && Object.keys(body.contentType.slugSettings).length === 0) {
1382
1313
  delete body.contentType.slugSettings;
1383
1314
  }
@@ -1389,7 +1320,7 @@ var _ContentClient = class _ContentClient2 extends ApiClient {
1389
1320
  });
1390
1321
  }
1391
1322
  async upsertEntry(body, options) {
1392
- const fetchUri = this.createUrl(__privateGet3(_ContentClient2, _entriesUrl));
1323
+ const fetchUri = this.createUrl(__privateGet2(_ContentClient2, _entriesUrl));
1393
1324
  const headers = {};
1394
1325
  if (options == null ? void 0 : options.ifUnmodifiedSince) {
1395
1326
  headers["x-if-unmodified-since"] = options.ifUnmodifiedSince;
@@ -1403,7 +1334,7 @@ var _ContentClient = class _ContentClient2 extends ApiClient {
1403
1334
  return { modified: response.headers.get("x-modified-at") };
1404
1335
  }
1405
1336
  async deleteContentType(body) {
1406
- const fetchUri = this.createUrl(__privateGet3(_ContentClient2, _contentTypesUrl));
1337
+ const fetchUri = this.createUrl(__privateGet2(_ContentClient2, _contentTypesUrl));
1407
1338
  await this.apiClient(fetchUri, {
1408
1339
  method: "DELETE",
1409
1340
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -1411,7 +1342,7 @@ var _ContentClient = class _ContentClient2 extends ApiClient {
1411
1342
  });
1412
1343
  }
1413
1344
  async deleteEntry(body) {
1414
- const fetchUri = this.createUrl(__privateGet3(_ContentClient2, _entriesUrl));
1345
+ const fetchUri = this.createUrl(__privateGet2(_ContentClient2, _entriesUrl));
1415
1346
  await this.apiClient(fetchUri, {
1416
1347
  method: "DELETE",
1417
1348
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -1430,8 +1361,8 @@ var _ContentClient = class _ContentClient2 extends ApiClient {
1430
1361
  };
1431
1362
  _contentTypesUrl = /* @__PURE__ */ new WeakMap();
1432
1363
  _entriesUrl = /* @__PURE__ */ new WeakMap();
1433
- __privateAdd3(_ContentClient, _contentTypesUrl, "/api/v1/content-types");
1434
- __privateAdd3(_ContentClient, _entriesUrl, "/api/v1/entries");
1364
+ __privateAdd2(_ContentClient, _contentTypesUrl, "/api/v1/content-types");
1365
+ __privateAdd2(_ContentClient, _entriesUrl, "/api/v1/entries");
1435
1366
  var _url8;
1436
1367
  var _DataTypeClient = class _DataTypeClient2 extends ApiClient {
1437
1368
  constructor(options) {
@@ -1440,12 +1371,12 @@ var _DataTypeClient = class _DataTypeClient2 extends ApiClient {
1440
1371
  /** Fetches all DataTypes for a project */
1441
1372
  async get(options) {
1442
1373
  const { projectId } = this.options;
1443
- const fetchUri = this.createUrl(__privateGet3(_DataTypeClient2, _url8), { ...options, projectId });
1374
+ const fetchUri = this.createUrl(__privateGet2(_DataTypeClient2, _url8), { ...options, projectId });
1444
1375
  return await this.apiClient(fetchUri);
1445
1376
  }
1446
1377
  /** Updates or creates (based on id) a DataType */
1447
1378
  async upsert(body) {
1448
- const fetchUri = this.createUrl(__privateGet3(_DataTypeClient2, _url8));
1379
+ const fetchUri = this.createUrl(__privateGet2(_DataTypeClient2, _url8));
1449
1380
  await this.apiClient(fetchUri, {
1450
1381
  method: "PUT",
1451
1382
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -1454,7 +1385,7 @@ var _DataTypeClient = class _DataTypeClient2 extends ApiClient {
1454
1385
  }
1455
1386
  /** Deletes a DataType */
1456
1387
  async remove(body) {
1457
- const fetchUri = this.createUrl(__privateGet3(_DataTypeClient2, _url8));
1388
+ const fetchUri = this.createUrl(__privateGet2(_DataTypeClient2, _url8));
1458
1389
  await this.apiClient(fetchUri, {
1459
1390
  method: "DELETE",
1460
1391
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -1463,7 +1394,7 @@ var _DataTypeClient = class _DataTypeClient2 extends ApiClient {
1463
1394
  }
1464
1395
  };
1465
1396
  _url8 = /* @__PURE__ */ new WeakMap();
1466
- __privateAdd3(_DataTypeClient, _url8, "/api/v1/data-types");
1397
+ __privateAdd2(_DataTypeClient, _url8, "/api/v1/data-types");
1467
1398
  function getComponentPath(ancestorsAndSelf) {
1468
1399
  const path = [];
1469
1400
  for (let i = ancestorsAndSelf.length - 1; i >= 0; i--) {
@@ -1913,7 +1844,7 @@ var _IntegrationPropertyEditorsClient = class _IntegrationPropertyEditorsClient2
1913
1844
  * Gets a list of property type and hook names for the current team, including public integrations' hooks.
1914
1845
  */
1915
1846
  get(options) {
1916
- const fetchUri = this.createUrl(__privateGet3(_IntegrationPropertyEditorsClient2, _baseUrl), {
1847
+ const fetchUri = this.createUrl(__privateGet2(_IntegrationPropertyEditorsClient2, _baseUrl), {
1917
1848
  ...options,
1918
1849
  teamId: this.teamId
1919
1850
  });
@@ -1923,7 +1854,7 @@ var _IntegrationPropertyEditorsClient = class _IntegrationPropertyEditorsClient2
1923
1854
  * Creates or updates a custom AI property editor on a Mesh app.
1924
1855
  */
1925
1856
  async deploy(body) {
1926
- const fetchUri = this.createUrl(__privateGet3(_IntegrationPropertyEditorsClient2, _baseUrl));
1857
+ const fetchUri = this.createUrl(__privateGet2(_IntegrationPropertyEditorsClient2, _baseUrl));
1927
1858
  await this.apiClient(fetchUri, {
1928
1859
  method: "PUT",
1929
1860
  body: JSON.stringify({ ...body, teamId: this.teamId }),
@@ -1934,7 +1865,7 @@ var _IntegrationPropertyEditorsClient = class _IntegrationPropertyEditorsClient2
1934
1865
  * Removes a custom AI property editor from a Mesh app.
1935
1866
  */
1936
1867
  async delete(body) {
1937
- const fetchUri = this.createUrl(__privateGet3(_IntegrationPropertyEditorsClient2, _baseUrl));
1868
+ const fetchUri = this.createUrl(__privateGet2(_IntegrationPropertyEditorsClient2, _baseUrl));
1938
1869
  await this.apiClient(fetchUri, {
1939
1870
  method: "DELETE",
1940
1871
  body: JSON.stringify({ ...body, teamId: this.teamId }),
@@ -1943,7 +1874,7 @@ var _IntegrationPropertyEditorsClient = class _IntegrationPropertyEditorsClient2
1943
1874
  }
1944
1875
  };
1945
1876
  _baseUrl = /* @__PURE__ */ new WeakMap();
1946
- __privateAdd3(_IntegrationPropertyEditorsClient, _baseUrl, "/api/v1/integration-property-editors");
1877
+ __privateAdd2(_IntegrationPropertyEditorsClient, _baseUrl, "/api/v1/integration-property-editors");
1947
1878
  var _url22;
1948
1879
  var _projectsUrl;
1949
1880
  var _ProjectClient = class _ProjectClient2 extends ApiClient {
@@ -1952,7 +1883,7 @@ var _ProjectClient = class _ProjectClient2 extends ApiClient {
1952
1883
  }
1953
1884
  /** Fetches single Project */
1954
1885
  async get(options) {
1955
- const fetchUri = this.createUrl(__privateGet3(_ProjectClient2, _url22), { ...options });
1886
+ const fetchUri = this.createUrl(__privateGet2(_ProjectClient2, _url22), { ...options });
1956
1887
  return await this.apiClient(fetchUri);
1957
1888
  }
1958
1889
  /**
@@ -1961,12 +1892,12 @@ var _ProjectClient = class _ProjectClient2 extends ApiClient {
1961
1892
  * When omitted, returns all accessible teams and their projects.
1962
1893
  */
1963
1894
  async getProjects(options) {
1964
- const fetchUri = this.createUrl(__privateGet3(_ProjectClient2, _projectsUrl), options ? { ...options } : {});
1895
+ const fetchUri = this.createUrl(__privateGet2(_ProjectClient2, _projectsUrl), options ? { ...options } : {});
1965
1896
  return await this.apiClient(fetchUri);
1966
1897
  }
1967
1898
  /** Updates or creates (based on id) a Project */
1968
1899
  async upsert(body) {
1969
- const fetchUri = this.createUrl(__privateGet3(_ProjectClient2, _url22));
1900
+ const fetchUri = this.createUrl(__privateGet2(_ProjectClient2, _url22));
1970
1901
  return await this.apiClient(fetchUri, {
1971
1902
  method: "PUT",
1972
1903
  body: JSON.stringify({ ...body })
@@ -1974,7 +1905,7 @@ var _ProjectClient = class _ProjectClient2 extends ApiClient {
1974
1905
  }
1975
1906
  /** Deletes a Project */
1976
1907
  async delete(body) {
1977
- const fetchUri = this.createUrl(__privateGet3(_ProjectClient2, _url22));
1908
+ const fetchUri = this.createUrl(__privateGet2(_ProjectClient2, _url22));
1978
1909
  await this.apiClient(fetchUri, {
1979
1910
  method: "DELETE",
1980
1911
  body: JSON.stringify({ ...body }),
@@ -1984,8 +1915,8 @@ var _ProjectClient = class _ProjectClient2 extends ApiClient {
1984
1915
  };
1985
1916
  _url22 = /* @__PURE__ */ new WeakMap();
1986
1917
  _projectsUrl = /* @__PURE__ */ new WeakMap();
1987
- __privateAdd3(_ProjectClient, _url22, "/api/v1/project");
1988
- __privateAdd3(_ProjectClient, _projectsUrl, "/api/v1/projects");
1918
+ __privateAdd2(_ProjectClient, _url22, "/api/v1/project");
1919
+ __privateAdd2(_ProjectClient, _projectsUrl, "/api/v1/projects");
1989
1920
  var ROUTE_URL = "/api/v1/route";
1990
1921
  var RouteClient = class extends ApiClient {
1991
1922
  constructor(options) {
@@ -2243,7 +2174,7 @@ function createLimiter(concurrency) {
2243
2174
  });
2244
2175
  };
2245
2176
  }
2246
- async function retry2(fn, options) {
2177
+ async function retry(fn, options) {
2247
2178
  let lastError;
2248
2179
  let delay = 1e3;
2249
2180
  for (let attempt = 1; attempt <= options.retries + 1; attempt++) {
@@ -2283,7 +2214,7 @@ function createLimitPolicy2({
2283
2214
  }
2284
2215
  if (retryOptions) {
2285
2216
  const retryFunc = currentFunc;
2286
- currentFunc = () => retry2(retryFunc, {
2217
+ currentFunc = () => retry(retryFunc, {
2287
2218
  ...retryOptions,
2288
2219
  onFailedAttempt: async (error) => {
2289
2220
  if (retryOptions.onFailedAttempt) {
@@ -2417,14 +2348,14 @@ var getManifest = async (options) => {
2417
2348
  var import_server_only3 = require("server-only");
2418
2349
 
2419
2350
  // ../project-map/dist/index.mjs
2420
- var __typeError4 = (msg) => {
2351
+ var __typeError3 = (msg) => {
2421
2352
  throw TypeError(msg);
2422
2353
  };
2423
- var __accessCheck4 = (obj, member, msg) => member.has(obj) || __typeError4("Cannot " + msg);
2424
- var __privateGet4 = (obj, member, getter) => (__accessCheck4(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
2425
- 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);
2426
- var __privateSet2 = (obj, member, value, setter) => (__accessCheck4(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
2427
- var __privateMethod = (obj, member, method) => (__accessCheck4(obj, member, "access private method"), method);
2354
+ var __accessCheck3 = (obj, member, msg) => member.has(obj) || __typeError3("Cannot " + msg);
2355
+ var __privateGet3 = (obj, member, getter) => (__accessCheck3(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
2356
+ 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);
2357
+ var __privateSet = (obj, member, value, setter) => (__accessCheck3(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
2358
+ var __privateMethod = (obj, member, method) => (__accessCheck3(obj, member, "access private method"), method);
2428
2359
  var ProjectMapClient = class extends ApiClient {
2429
2360
  constructor(options) {
2430
2361
  super(options);
@@ -2571,12 +2502,12 @@ var isDynamicRouteSegment_fn;
2571
2502
  var _Route = class _Route2 {
2572
2503
  constructor(route) {
2573
2504
  this.route = route;
2574
- __privateAdd4(this, _routeInfo);
2505
+ __privateAdd3(this, _routeInfo);
2575
2506
  var _a;
2576
- __privateSet2(this, _routeInfo, __privateMethod(_a = _Route2, _Route_static, parseRouteOrPath_fn).call(_a, this.route));
2507
+ __privateSet(this, _routeInfo, __privateMethod(_a = _Route2, _Route_static, parseRouteOrPath_fn).call(_a, this.route));
2577
2508
  }
2578
2509
  get dynamicSegmentCount() {
2579
- return __privateGet4(this, _routeInfo).segments.reduce(
2510
+ return __privateGet3(this, _routeInfo).segments.reduce(
2580
2511
  (count, segment) => {
2581
2512
  var _a;
2582
2513
  return __privateMethod(_a = _Route2, _Route_static, isDynamicRouteSegment_fn).call(_a, segment) ? count + 1 : count;
@@ -2588,7 +2519,7 @@ var _Route = class _Route2 {
2588
2519
  matches(path) {
2589
2520
  var _a, _b;
2590
2521
  const { segments: pathSegments, queryParams: pathQuery } = __privateMethod(_a = _Route2, _Route_static, parseRouteOrPath_fn).call(_a, path);
2591
- const { segments: routeSegments } = __privateGet4(this, _routeInfo);
2522
+ const { segments: routeSegments } = __privateGet3(this, _routeInfo);
2592
2523
  if (pathSegments.length !== routeSegments.length) {
2593
2524
  return { match: false };
2594
2525
  }
@@ -2609,7 +2540,7 @@ var _Route = class _Route2 {
2609
2540
  return { match: false };
2610
2541
  }
2611
2542
  }
2612
- for (const [key, value] of __privateGet4(this, _routeInfo).queryParams) {
2543
+ for (const [key, value] of __privateGet3(this, _routeInfo).queryParams) {
2613
2544
  possibleMatch.queryParams[key] = pathQuery.has(key) ? pathQuery.get(key) : value;
2614
2545
  }
2615
2546
  return possibleMatch;
@@ -2619,7 +2550,7 @@ var _Route = class _Route2 {
2619
2550
  */
2620
2551
  expand(options) {
2621
2552
  const { dynamicInputValues = {}, allowedQueryParams = [], doNotEscapeVariables = false } = options != null ? options : {};
2622
- const path = __privateGet4(this, _routeInfo).segments.map((segment) => {
2553
+ const path = __privateGet3(this, _routeInfo).segments.map((segment) => {
2623
2554
  const dynamicSegmentName = _Route2.getDynamicRouteSegmentName(segment);
2624
2555
  if (!dynamicSegmentName) {
2625
2556
  return segment;
@@ -2670,7 +2601,7 @@ isDynamicRouteSegment_fn = function(segment) {
2670
2601
  }
2671
2602
  return segment.startsWith(_Route.dynamicSegmentPrefix);
2672
2603
  };
2673
- __privateAdd4(_Route, _Route_static);
2604
+ __privateAdd3(_Route, _Route_static);
2674
2605
  _Route.dynamicSegmentPrefix = ":";
2675
2606
  function encodeRouteComponent(value, doNotEscapeVariables) {
2676
2607
  if (!doNotEscapeVariables) {