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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/handler.mjs CHANGED
@@ -4,6 +4,10 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
4
  var __getOwnPropNames = Object.getOwnPropertyNames;
5
5
  var __getProtoOf = Object.getPrototypeOf;
6
6
  var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __typeError = (msg) => {
8
+ throw TypeError(msg);
9
+ };
10
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
7
11
  var __commonJS = (cb, mod) => function __require() {
8
12
  return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
9
13
  };
@@ -23,12 +27,25 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
23
27
  isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
24
28
  mod
25
29
  ));
30
+ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
31
+ var __accessCheck = (obj, member, msg) => member.has(obj) || __typeError("Cannot " + msg);
32
+ var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
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);
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
+ });
26
43
 
27
44
  // ../../node_modules/.pnpm/yocto-queue@0.1.0/node_modules/yocto-queue/index.js
28
45
  var require_yocto_queue = __commonJS({
29
46
  "../../node_modules/.pnpm/yocto-queue@0.1.0/node_modules/yocto-queue/index.js"(exports, module) {
30
47
  "use strict";
31
- var Node = class {
48
+ var Node2 = class {
32
49
  /// value;
33
50
  /// next;
34
51
  constructor(value) {
@@ -36,7 +53,7 @@ var require_yocto_queue = __commonJS({
36
53
  this.next = void 0;
37
54
  }
38
55
  };
39
- var Queue = class {
56
+ var Queue2 = class {
40
57
  // TODO: Use private class fields when targeting Node.js 12.
41
58
  // #_head;
42
59
  // #_tail;
@@ -45,7 +62,7 @@ var require_yocto_queue = __commonJS({
45
62
  this.clear();
46
63
  }
47
64
  enqueue(value) {
48
- const node = new Node(value);
65
+ const node = new Node2(value);
49
66
  if (this._head) {
50
67
  this._tail.next = node;
51
68
  this._tail = node;
@@ -80,7 +97,7 @@ var require_yocto_queue = __commonJS({
80
97
  }
81
98
  }
82
99
  };
83
- module.exports = Queue;
100
+ module.exports = Queue2;
84
101
  }
85
102
  });
86
103
 
@@ -88,12 +105,12 @@ var require_yocto_queue = __commonJS({
88
105
  var require_p_limit = __commonJS({
89
106
  "../../node_modules/.pnpm/p-limit@3.1.0/node_modules/p-limit/index.js"(exports, module) {
90
107
  "use strict";
91
- var Queue = require_yocto_queue();
92
- var pLimit2 = (concurrency) => {
108
+ var Queue2 = require_yocto_queue();
109
+ var pLimit3 = (concurrency) => {
93
110
  if (!((Number.isInteger(concurrency) || concurrency === Infinity) && concurrency > 0)) {
94
111
  throw new TypeError("Expected `concurrency` to be a number from 1 and up");
95
112
  }
96
- const queue = new Queue();
113
+ const queue = new Queue2();
97
114
  let activeCount = 0;
98
115
  const next = () => {
99
116
  activeCount--;
@@ -138,21 +155,252 @@ var require_p_limit = __commonJS({
138
155
  });
139
156
  return generator;
140
157
  };
141
- 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();
142
390
  }
143
391
  });
144
392
 
145
393
  // ../context/dist/api/api.mjs
146
394
  var import_p_limit = __toESM(require_p_limit(), 1);
147
395
  var __defProp2 = Object.defineProperty;
148
- var __typeError = (msg) => {
396
+ var __typeError2 = (msg) => {
149
397
  throw TypeError(msg);
150
398
  };
151
- var __defNormalProp = (obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
152
- var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
153
- var __accessCheck = (obj, member, msg) => member.has(obj) || __typeError("Cannot " + msg);
154
- var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
155
- 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);
399
+ var __defNormalProp2 = (obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
400
+ var __publicField2 = (obj, key, value) => __defNormalProp2(obj, typeof key !== "symbol" ? key + "" : key, value);
401
+ var __accessCheck2 = (obj, member, msg) => member.has(obj) || __typeError2("Cannot " + msg);
402
+ var __privateGet2 = (obj, member, getter) => (__accessCheck2(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
403
+ 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);
156
404
  var defaultLimitPolicy = (0, import_p_limit.default)(6);
157
405
  var ApiClientError = class _ApiClientError extends Error {
158
406
  constructor(errorMessage, fetchMethod, fetchUri, statusCode, statusText, requestId) {
@@ -171,7 +419,7 @@ var ApiClientError = class _ApiClientError extends Error {
171
419
  };
172
420
  var ApiClient = class _ApiClient {
173
421
  constructor(options) {
174
- __publicField(this, "options");
422
+ __publicField2(this, "options");
175
423
  var _a, _b, _c, _d, _e;
176
424
  if (!options.apiKey && !options.bearerToken) {
177
425
  throw new Error("You must provide an API key or a bearer token");
@@ -341,12 +589,12 @@ var _AggregateClient = class _AggregateClient2 extends ApiClient {
341
589
  /** Fetches all aggregates for a project */
342
590
  async get(options) {
343
591
  const { projectId } = this.options;
344
- const fetchUri = this.createUrl(__privateGet(_AggregateClient2, _url), { ...options, projectId });
592
+ const fetchUri = this.createUrl(__privateGet2(_AggregateClient2, _url), { ...options, projectId });
345
593
  return await this.apiClient(fetchUri);
346
594
  }
347
595
  /** Updates or creates (based on id) an Aggregate */
348
596
  async upsert(body) {
349
- const fetchUri = this.createUrl(__privateGet(_AggregateClient2, _url));
597
+ const fetchUri = this.createUrl(__privateGet2(_AggregateClient2, _url));
350
598
  await this.apiClient(fetchUri, {
351
599
  method: "PUT",
352
600
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -355,7 +603,7 @@ var _AggregateClient = class _AggregateClient2 extends ApiClient {
355
603
  }
356
604
  /** Deletes an Aggregate */
357
605
  async remove(body) {
358
- const fetchUri = this.createUrl(__privateGet(_AggregateClient2, _url));
606
+ const fetchUri = this.createUrl(__privateGet2(_AggregateClient2, _url));
359
607
  await this.apiClient(fetchUri, {
360
608
  method: "DELETE",
361
609
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -364,7 +612,7 @@ var _AggregateClient = class _AggregateClient2 extends ApiClient {
364
612
  }
365
613
  };
366
614
  _url = /* @__PURE__ */ new WeakMap();
367
- __privateAdd(_AggregateClient, _url, "/api/v2/aggregate");
615
+ __privateAdd2(_AggregateClient, _url, "/api/v2/aggregate");
368
616
  var _url2;
369
617
  var _DimensionClient = class _DimensionClient2 extends ApiClient {
370
618
  constructor(options) {
@@ -373,12 +621,12 @@ var _DimensionClient = class _DimensionClient2 extends ApiClient {
373
621
  /** Fetches the known score dimensions for a project */
374
622
  async get(options) {
375
623
  const { projectId } = this.options;
376
- const fetchUri = this.createUrl(__privateGet(_DimensionClient2, _url2), { ...options, projectId });
624
+ const fetchUri = this.createUrl(__privateGet2(_DimensionClient2, _url2), { ...options, projectId });
377
625
  return await this.apiClient(fetchUri);
378
626
  }
379
627
  };
380
628
  _url2 = /* @__PURE__ */ new WeakMap();
381
- __privateAdd(_DimensionClient, _url2, "/api/v2/dimension");
629
+ __privateAdd2(_DimensionClient, _url2, "/api/v2/dimension");
382
630
  var _url3;
383
631
  var _valueUrl;
384
632
  var _EnrichmentClient = class _EnrichmentClient2 extends ApiClient {
@@ -388,12 +636,12 @@ var _EnrichmentClient = class _EnrichmentClient2 extends ApiClient {
388
636
  /** Fetches all enrichments and values for a project, grouped by category */
389
637
  async get(options) {
390
638
  const { projectId } = this.options;
391
- const fetchUri = this.createUrl(__privateGet(_EnrichmentClient2, _url3), { ...options, projectId });
639
+ const fetchUri = this.createUrl(__privateGet2(_EnrichmentClient2, _url3), { ...options, projectId });
392
640
  return await this.apiClient(fetchUri);
393
641
  }
394
642
  /** Updates or creates (based on id) an enrichment category */
395
643
  async upsertCategory(body) {
396
- const fetchUri = this.createUrl(__privateGet(_EnrichmentClient2, _url3));
644
+ const fetchUri = this.createUrl(__privateGet2(_EnrichmentClient2, _url3));
397
645
  await this.apiClient(fetchUri, {
398
646
  method: "PUT",
399
647
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -402,7 +650,7 @@ var _EnrichmentClient = class _EnrichmentClient2 extends ApiClient {
402
650
  }
403
651
  /** Deletes an enrichment category */
404
652
  async removeCategory(body) {
405
- const fetchUri = this.createUrl(__privateGet(_EnrichmentClient2, _url3));
653
+ const fetchUri = this.createUrl(__privateGet2(_EnrichmentClient2, _url3));
406
654
  await this.apiClient(fetchUri, {
407
655
  method: "DELETE",
408
656
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -411,7 +659,7 @@ var _EnrichmentClient = class _EnrichmentClient2 extends ApiClient {
411
659
  }
412
660
  /** Updates or creates (based on id) an enrichment value within an enrichment category */
413
661
  async upsertValue(body) {
414
- const fetchUri = this.createUrl(__privateGet(_EnrichmentClient2, _valueUrl));
662
+ const fetchUri = this.createUrl(__privateGet2(_EnrichmentClient2, _valueUrl));
415
663
  await this.apiClient(fetchUri, {
416
664
  method: "PUT",
417
665
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -420,7 +668,7 @@ var _EnrichmentClient = class _EnrichmentClient2 extends ApiClient {
420
668
  }
421
669
  /** Deletes an enrichment value within an enrichment category. The category is left alone. */
422
670
  async removeValue(body) {
423
- const fetchUri = this.createUrl(__privateGet(_EnrichmentClient2, _valueUrl));
671
+ const fetchUri = this.createUrl(__privateGet2(_EnrichmentClient2, _valueUrl));
424
672
  await this.apiClient(fetchUri, {
425
673
  method: "DELETE",
426
674
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -430,8 +678,8 @@ var _EnrichmentClient = class _EnrichmentClient2 extends ApiClient {
430
678
  };
431
679
  _url3 = /* @__PURE__ */ new WeakMap();
432
680
  _valueUrl = /* @__PURE__ */ new WeakMap();
433
- __privateAdd(_EnrichmentClient, _url3, "/api/v1/enrichments");
434
- __privateAdd(_EnrichmentClient, _valueUrl, "/api/v1/enrichment-values");
681
+ __privateAdd2(_EnrichmentClient, _url3, "/api/v1/enrichments");
682
+ __privateAdd2(_EnrichmentClient, _valueUrl, "/api/v1/enrichment-values");
435
683
  var _url4;
436
684
  var _ManifestClient = class _ManifestClient2 extends ApiClient {
437
685
  constructor(options) {
@@ -440,7 +688,7 @@ var _ManifestClient = class _ManifestClient2 extends ApiClient {
440
688
  /** Fetches the Context manifest for a project */
441
689
  async get(options) {
442
690
  const { projectId } = this.options;
443
- const fetchUri = this.createUrl(__privateGet(_ManifestClient2, _url4), { ...options, projectId });
691
+ const fetchUri = this.createUrl(__privateGet2(_ManifestClient2, _url4), { ...options, projectId });
444
692
  return await this.apiClient(fetchUri);
445
693
  }
446
694
  /** Publishes the Context manifest for a project */
@@ -454,7 +702,7 @@ var _ManifestClient = class _ManifestClient2 extends ApiClient {
454
702
  }
455
703
  };
456
704
  _url4 = /* @__PURE__ */ new WeakMap();
457
- __privateAdd(_ManifestClient, _url4, "/api/v2/manifest");
705
+ __privateAdd2(_ManifestClient, _url4, "/api/v2/manifest");
458
706
  var _url5;
459
707
  var _QuirkClient = class _QuirkClient2 extends ApiClient {
460
708
  constructor(options) {
@@ -463,480 +711,274 @@ var _QuirkClient = class _QuirkClient2 extends ApiClient {
463
711
  /** Fetches all Quirks for a project */
464
712
  async get(options) {
465
713
  const { projectId } = this.options;
466
- const fetchUri = this.createUrl(__privateGet(_QuirkClient2, _url5), { ...options, projectId });
714
+ const fetchUri = this.createUrl(__privateGet2(_QuirkClient2, _url5), { ...options, projectId });
467
715
  return await this.apiClient(fetchUri);
468
716
  }
469
- /** Updates or creates (based on id) a Quirk */
470
- async upsert(body) {
471
- const fetchUri = this.createUrl(__privateGet(_QuirkClient2, _url5));
472
- await this.apiClient(fetchUri, {
473
- method: "PUT",
474
- body: JSON.stringify({ ...body, projectId: this.options.projectId }),
475
- expectNoContent: true
476
- });
477
- }
478
- /** Deletes a Quirk */
479
- async remove(body) {
480
- const fetchUri = this.createUrl(__privateGet(_QuirkClient2, _url5));
481
- await this.apiClient(fetchUri, {
482
- method: "DELETE",
483
- body: JSON.stringify({ ...body, projectId: this.options.projectId }),
484
- expectNoContent: true
485
- });
486
- }
487
- };
488
- _url5 = /* @__PURE__ */ new WeakMap();
489
- __privateAdd(_QuirkClient, _url5, "/api/v2/quirk");
490
- var _url6;
491
- var _SignalClient = class _SignalClient2 extends ApiClient {
492
- constructor(options) {
493
- super(options);
494
- }
495
- /** Fetches all Signals for a project */
496
- async get(options) {
497
- const { projectId } = this.options;
498
- const fetchUri = this.createUrl(__privateGet(_SignalClient2, _url6), { ...options, projectId });
499
- return await this.apiClient(fetchUri);
500
- }
501
- /** Updates or creates (based on id) a Signal */
502
- async upsert(body) {
503
- const fetchUri = this.createUrl(__privateGet(_SignalClient2, _url6));
504
- await this.apiClient(fetchUri, {
505
- method: "PUT",
506
- body: JSON.stringify({ ...body, projectId: this.options.projectId }),
507
- expectNoContent: true
508
- });
509
- }
510
- /** Deletes a Signal */
511
- async remove(body) {
512
- const fetchUri = this.createUrl(__privateGet(_SignalClient2, _url6));
513
- await this.apiClient(fetchUri, {
514
- method: "DELETE",
515
- body: JSON.stringify({ ...body, projectId: this.options.projectId }),
516
- expectNoContent: true
517
- });
518
- }
519
- };
520
- _url6 = /* @__PURE__ */ new WeakMap();
521
- __privateAdd(_SignalClient, _url6, "/api/v2/signal");
522
- var _url7;
523
- var _TestClient = class _TestClient2 extends ApiClient {
524
- constructor(options) {
525
- super(options);
526
- }
527
- /** Fetches all Tests for a project */
528
- async get(options) {
529
- const { projectId } = this.options;
530
- const fetchUri = this.createUrl(__privateGet(_TestClient2, _url7), { ...options, projectId });
531
- return await this.apiClient(fetchUri);
532
- }
533
- /** Updates or creates (based on id) a Test */
534
- async upsert(body) {
535
- const fetchUri = this.createUrl(__privateGet(_TestClient2, _url7));
536
- await this.apiClient(fetchUri, {
537
- method: "PUT",
538
- body: JSON.stringify({ ...body, projectId: this.options.projectId }),
539
- expectNoContent: true
540
- });
541
- }
542
- /** Deletes a Test */
543
- async remove(body) {
544
- const fetchUri = this.createUrl(__privateGet(_TestClient2, _url7));
545
- await this.apiClient(fetchUri, {
546
- method: "DELETE",
547
- body: JSON.stringify({ ...body, projectId: this.options.projectId }),
548
- expectNoContent: true
549
- });
550
- }
551
- };
552
- _url7 = /* @__PURE__ */ new WeakMap();
553
- __privateAdd(_TestClient, _url7, "/api/v2/test");
554
-
555
- // ../canvas/dist/index.mjs
556
- var __create2 = Object.create;
557
- var __defProp3 = Object.defineProperty;
558
- var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
559
- var __getOwnPropNames2 = Object.getOwnPropertyNames;
560
- var __getProtoOf2 = Object.getPrototypeOf;
561
- var __hasOwnProp2 = Object.prototype.hasOwnProperty;
562
- var __typeError2 = (msg) => {
563
- throw TypeError(msg);
564
- };
565
- var __commonJS2 = (cb, mod) => function __require() {
566
- return mod || (0, cb[__getOwnPropNames2(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
567
- };
568
- var __copyProps2 = (to, from, except, desc) => {
569
- if (from && typeof from === "object" || typeof from === "function") {
570
- for (let key of __getOwnPropNames2(from))
571
- if (!__hasOwnProp2.call(to, key) && key !== except)
572
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable });
573
- }
574
- return to;
575
- };
576
- var __toESM2 = (mod, isNodeMode, target) => (target = mod != null ? __create2(__getProtoOf2(mod)) : {}, __copyProps2(
577
- // If the importer is in node compatibility mode or this is not an ESM
578
- // file that has been converted to a CommonJS file using a Babel-
579
- // compatible transform (i.e. "__esModule" has not been set), then set
580
- // "default" to the CommonJS "module.exports" for node compatibility.
581
- isNodeMode || !mod || !mod.__esModule ? __defProp3(target, "default", { value: mod, enumerable: true }) : target,
582
- mod
583
- ));
584
- var __accessCheck2 = (obj, member, msg) => member.has(obj) || __typeError2("Cannot " + msg);
585
- var __privateGet2 = (obj, member, getter) => (__accessCheck2(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
586
- 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);
587
- var require_yocto_queue2 = __commonJS2({
588
- "../../node_modules/.pnpm/yocto-queue@0.1.0/node_modules/yocto-queue/index.js"(exports, module) {
589
- "use strict";
590
- var Node = class {
591
- /// value;
592
- /// next;
593
- constructor(value) {
594
- this.value = value;
595
- this.next = void 0;
596
- }
597
- };
598
- var Queue = class {
599
- // TODO: Use private class fields when targeting Node.js 12.
600
- // #_head;
601
- // #_tail;
602
- // #_size;
603
- constructor() {
604
- this.clear();
605
- }
606
- enqueue(value) {
607
- const node = new Node(value);
608
- if (this._head) {
609
- this._tail.next = node;
610
- this._tail = node;
611
- } else {
612
- this._head = node;
613
- this._tail = node;
614
- }
615
- this._size++;
616
- }
617
- dequeue() {
618
- const current = this._head;
619
- if (!current) {
620
- return;
621
- }
622
- this._head = this._head.next;
623
- this._size--;
624
- return current.value;
625
- }
626
- clear() {
627
- this._head = void 0;
628
- this._tail = void 0;
629
- this._size = 0;
630
- }
631
- get size() {
632
- return this._size;
633
- }
634
- *[Symbol.iterator]() {
635
- let current = this._head;
636
- while (current) {
637
- yield current.value;
638
- current = current.next;
639
- }
640
- }
641
- };
642
- module.exports = Queue;
643
- }
644
- });
645
- var require_p_limit2 = __commonJS2({
646
- "../../node_modules/.pnpm/p-limit@3.1.0/node_modules/p-limit/index.js"(exports, module) {
647
- "use strict";
648
- var Queue = require_yocto_queue2();
649
- var pLimit2 = (concurrency) => {
650
- if (!((Number.isInteger(concurrency) || concurrency === Infinity) && concurrency > 0)) {
651
- throw new TypeError("Expected `concurrency` to be a number from 1 and up");
652
- }
653
- const queue = new Queue();
654
- let activeCount = 0;
655
- const next = () => {
656
- activeCount--;
657
- if (queue.size > 0) {
658
- queue.dequeue()();
659
- }
660
- };
661
- const run = async (fn, resolve, ...args) => {
662
- activeCount++;
663
- const result = (async () => fn(...args))();
664
- resolve(result);
665
- try {
666
- await result;
667
- } catch (e) {
668
- }
669
- next();
670
- };
671
- const enqueue = (fn, resolve, ...args) => {
672
- queue.enqueue(run.bind(null, fn, resolve, ...args));
673
- (async () => {
674
- await Promise.resolve();
675
- if (activeCount < concurrency && queue.size > 0) {
676
- queue.dequeue()();
677
- }
678
- })();
679
- };
680
- const generator = (fn, ...args) => new Promise((resolve) => {
681
- enqueue(fn, resolve, ...args);
682
- });
683
- Object.defineProperties(generator, {
684
- activeCount: {
685
- get: () => activeCount
686
- },
687
- pendingCount: {
688
- get: () => queue.size
689
- },
690
- clearQueue: {
691
- value: () => {
692
- queue.clear();
693
- }
694
- }
695
- });
696
- return generator;
697
- };
698
- module.exports = pLimit2;
699
- }
700
- });
701
- var require_retry_operation = __commonJS2({
702
- "../../node_modules/.pnpm/retry@0.13.1/node_modules/retry/lib/retry_operation.js"(exports, module) {
703
- "use strict";
704
- function RetryOperation(timeouts, options) {
705
- if (typeof options === "boolean") {
706
- options = { forever: options };
707
- }
708
- this._originalTimeouts = JSON.parse(JSON.stringify(timeouts));
709
- this._timeouts = timeouts;
710
- this._options = options || {};
711
- this._maxRetryTime = options && options.maxRetryTime || Infinity;
712
- this._fn = null;
713
- this._errors = [];
714
- this._attempts = 1;
715
- this._operationTimeout = null;
716
- this._operationTimeoutCb = null;
717
- this._timeout = null;
718
- this._operationStart = null;
719
- this._timer = null;
720
- if (this._options.forever) {
721
- this._cachedTimeouts = this._timeouts.slice(0);
722
- }
723
- }
724
- module.exports = RetryOperation;
725
- RetryOperation.prototype.reset = function() {
726
- this._attempts = 1;
727
- this._timeouts = this._originalTimeouts.slice(0);
728
- };
729
- RetryOperation.prototype.stop = function() {
730
- if (this._timeout) {
731
- clearTimeout(this._timeout);
732
- }
733
- if (this._timer) {
734
- clearTimeout(this._timer);
735
- }
736
- this._timeouts = [];
737
- this._cachedTimeouts = null;
738
- };
739
- RetryOperation.prototype.retry = function(err) {
740
- if (this._timeout) {
741
- clearTimeout(this._timeout);
742
- }
743
- if (!err) {
744
- return false;
745
- }
746
- var currentTime = (/* @__PURE__ */ new Date()).getTime();
747
- if (err && currentTime - this._operationStart >= this._maxRetryTime) {
748
- this._errors.push(err);
749
- this._errors.unshift(new Error("RetryOperation timeout occurred"));
750
- return false;
751
- }
752
- this._errors.push(err);
753
- var timeout = this._timeouts.shift();
754
- if (timeout === void 0) {
755
- if (this._cachedTimeouts) {
756
- this._errors.splice(0, this._errors.length - 1);
757
- timeout = this._cachedTimeouts.slice(-1);
758
- } else {
759
- return false;
760
- }
761
- }
762
- var self = this;
763
- this._timer = setTimeout(function() {
764
- self._attempts++;
765
- if (self._operationTimeoutCb) {
766
- self._timeout = setTimeout(function() {
767
- self._operationTimeoutCb(self._attempts);
768
- }, self._operationTimeout);
769
- if (self._options.unref) {
770
- self._timeout.unref();
771
- }
772
- }
773
- self._fn(self._attempts);
774
- }, timeout);
775
- if (this._options.unref) {
776
- this._timer.unref();
777
- }
778
- return true;
779
- };
780
- RetryOperation.prototype.attempt = function(fn, timeoutOps) {
781
- this._fn = fn;
782
- if (timeoutOps) {
783
- if (timeoutOps.timeout) {
784
- this._operationTimeout = timeoutOps.timeout;
785
- }
786
- if (timeoutOps.cb) {
787
- this._operationTimeoutCb = timeoutOps.cb;
788
- }
789
- }
790
- var self = this;
791
- if (this._operationTimeoutCb) {
792
- this._timeout = setTimeout(function() {
793
- self._operationTimeoutCb();
794
- }, self._operationTimeout);
795
- }
796
- this._operationStart = (/* @__PURE__ */ new Date()).getTime();
797
- this._fn(this._attempts);
798
- };
799
- RetryOperation.prototype.try = function(fn) {
800
- console.log("Using RetryOperation.try() is deprecated");
801
- this.attempt(fn);
802
- };
803
- RetryOperation.prototype.start = function(fn) {
804
- console.log("Using RetryOperation.start() is deprecated");
805
- this.attempt(fn);
806
- };
807
- RetryOperation.prototype.start = RetryOperation.prototype.try;
808
- RetryOperation.prototype.errors = function() {
809
- return this._errors;
810
- };
811
- RetryOperation.prototype.attempts = function() {
812
- return this._attempts;
813
- };
814
- RetryOperation.prototype.mainError = function() {
815
- if (this._errors.length === 0) {
816
- return null;
817
- }
818
- var counts = {};
819
- var mainError = null;
820
- var mainErrorCount = 0;
821
- for (var i = 0; i < this._errors.length; i++) {
822
- var error = this._errors[i];
823
- var message = error.message;
824
- var count = (counts[message] || 0) + 1;
825
- counts[message] = count;
826
- if (count >= mainErrorCount) {
827
- mainError = error;
828
- mainErrorCount = count;
829
- }
830
- }
831
- return mainError;
832
- };
833
- }
834
- });
835
- var require_retry = __commonJS2({
836
- "../../node_modules/.pnpm/retry@0.13.1/node_modules/retry/lib/retry.js"(exports) {
837
- "use strict";
838
- var RetryOperation = require_retry_operation();
839
- exports.operation = function(options) {
840
- var timeouts = exports.timeouts(options);
841
- return new RetryOperation(timeouts, {
842
- forever: options && (options.forever || options.retries === Infinity),
843
- unref: options && options.unref,
844
- maxRetryTime: options && options.maxRetryTime
845
- });
846
- };
847
- exports.timeouts = function(options) {
848
- if (options instanceof Array) {
849
- return [].concat(options);
850
- }
851
- var opts = {
852
- retries: 10,
853
- factor: 2,
854
- minTimeout: 1 * 1e3,
855
- maxTimeout: Infinity,
856
- randomize: false
857
- };
858
- for (var key in options) {
859
- opts[key] = options[key];
860
- }
861
- if (opts.minTimeout > opts.maxTimeout) {
862
- throw new Error("minTimeout is greater than maxTimeout");
863
- }
864
- var timeouts = [];
865
- for (var i = 0; i < opts.retries; i++) {
866
- timeouts.push(this.createTimeout(i, opts));
867
- }
868
- if (options && options.forever && !timeouts.length) {
869
- timeouts.push(this.createTimeout(i, opts));
717
+ /** Updates or creates (based on id) a Quirk */
718
+ async upsert(body) {
719
+ const fetchUri = this.createUrl(__privateGet2(_QuirkClient2, _url5));
720
+ await this.apiClient(fetchUri, {
721
+ method: "PUT",
722
+ body: JSON.stringify({ ...body, projectId: this.options.projectId }),
723
+ expectNoContent: true
724
+ });
725
+ }
726
+ /** Deletes a Quirk */
727
+ async remove(body) {
728
+ const fetchUri = this.createUrl(__privateGet2(_QuirkClient2, _url5));
729
+ await this.apiClient(fetchUri, {
730
+ method: "DELETE",
731
+ body: JSON.stringify({ ...body, projectId: this.options.projectId }),
732
+ expectNoContent: true
733
+ });
734
+ }
735
+ };
736
+ _url5 = /* @__PURE__ */ new WeakMap();
737
+ __privateAdd2(_QuirkClient, _url5, "/api/v2/quirk");
738
+ var _url6;
739
+ var _SignalClient = class _SignalClient2 extends ApiClient {
740
+ constructor(options) {
741
+ super(options);
742
+ }
743
+ /** Fetches all Signals for a project */
744
+ async get(options) {
745
+ const { projectId } = this.options;
746
+ const fetchUri = this.createUrl(__privateGet2(_SignalClient2, _url6), { ...options, projectId });
747
+ return await this.apiClient(fetchUri);
748
+ }
749
+ /** Updates or creates (based on id) a Signal */
750
+ async upsert(body) {
751
+ const fetchUri = this.createUrl(__privateGet2(_SignalClient2, _url6));
752
+ await this.apiClient(fetchUri, {
753
+ method: "PUT",
754
+ body: JSON.stringify({ ...body, projectId: this.options.projectId }),
755
+ expectNoContent: true
756
+ });
757
+ }
758
+ /** Deletes a Signal */
759
+ async remove(body) {
760
+ const fetchUri = this.createUrl(__privateGet2(_SignalClient2, _url6));
761
+ await this.apiClient(fetchUri, {
762
+ method: "DELETE",
763
+ body: JSON.stringify({ ...body, projectId: this.options.projectId }),
764
+ expectNoContent: true
765
+ });
766
+ }
767
+ };
768
+ _url6 = /* @__PURE__ */ new WeakMap();
769
+ __privateAdd2(_SignalClient, _url6, "/api/v2/signal");
770
+ var _url7;
771
+ var _TestClient = class _TestClient2 extends ApiClient {
772
+ constructor(options) {
773
+ super(options);
774
+ }
775
+ /** Fetches all Tests for a project */
776
+ async get(options) {
777
+ const { projectId } = this.options;
778
+ const fetchUri = this.createUrl(__privateGet2(_TestClient2, _url7), { ...options, projectId });
779
+ return await this.apiClient(fetchUri);
780
+ }
781
+ /** Updates or creates (based on id) a Test */
782
+ async upsert(body) {
783
+ const fetchUri = this.createUrl(__privateGet2(_TestClient2, _url7));
784
+ await this.apiClient(fetchUri, {
785
+ method: "PUT",
786
+ body: JSON.stringify({ ...body, projectId: this.options.projectId }),
787
+ expectNoContent: true
788
+ });
789
+ }
790
+ /** Deletes a Test */
791
+ async remove(body) {
792
+ const fetchUri = this.createUrl(__privateGet2(_TestClient2, _url7));
793
+ await this.apiClient(fetchUri, {
794
+ method: "DELETE",
795
+ body: JSON.stringify({ ...body, projectId: this.options.projectId }),
796
+ expectNoContent: true
797
+ });
798
+ }
799
+ };
800
+ _url7 = /* @__PURE__ */ new WeakMap();
801
+ __privateAdd2(_TestClient, _url7, "/api/v2/test");
802
+
803
+ // ../../node_modules/.pnpm/yocto-queue@1.2.2/node_modules/yocto-queue/index.js
804
+ var Node = class {
805
+ constructor(value) {
806
+ __publicField(this, "value");
807
+ __publicField(this, "next");
808
+ this.value = value;
809
+ }
810
+ };
811
+ var _head, _tail, _size;
812
+ var Queue = class {
813
+ constructor() {
814
+ __privateAdd(this, _head);
815
+ __privateAdd(this, _tail);
816
+ __privateAdd(this, _size);
817
+ this.clear();
818
+ }
819
+ enqueue(value) {
820
+ const node = new Node(value);
821
+ if (__privateGet(this, _head)) {
822
+ __privateGet(this, _tail).next = node;
823
+ __privateSet(this, _tail, node);
824
+ } else {
825
+ __privateSet(this, _head, node);
826
+ __privateSet(this, _tail, node);
827
+ }
828
+ __privateWrapper(this, _size)._++;
829
+ }
830
+ dequeue() {
831
+ const current = __privateGet(this, _head);
832
+ if (!current) {
833
+ return;
834
+ }
835
+ __privateSet(this, _head, __privateGet(this, _head).next);
836
+ __privateWrapper(this, _size)._--;
837
+ if (!__privateGet(this, _head)) {
838
+ __privateSet(this, _tail, void 0);
839
+ }
840
+ return current.value;
841
+ }
842
+ peek() {
843
+ if (!__privateGet(this, _head)) {
844
+ return;
845
+ }
846
+ return __privateGet(this, _head).value;
847
+ }
848
+ clear() {
849
+ __privateSet(this, _head, void 0);
850
+ __privateSet(this, _tail, void 0);
851
+ __privateSet(this, _size, 0);
852
+ }
853
+ get size() {
854
+ return __privateGet(this, _size);
855
+ }
856
+ *[Symbol.iterator]() {
857
+ let current = __privateGet(this, _head);
858
+ while (current) {
859
+ yield current.value;
860
+ current = current.next;
861
+ }
862
+ }
863
+ *drain() {
864
+ while (__privateGet(this, _head)) {
865
+ yield this.dequeue();
866
+ }
867
+ }
868
+ };
869
+ _head = new WeakMap();
870
+ _tail = new WeakMap();
871
+ _size = new WeakMap();
872
+
873
+ // ../../node_modules/.pnpm/p-limit@6.2.0/node_modules/p-limit/index.js
874
+ function pLimit2(concurrency) {
875
+ validateConcurrency(concurrency);
876
+ const queue = new Queue();
877
+ let activeCount = 0;
878
+ const resumeNext = () => {
879
+ if (activeCount < concurrency && queue.size > 0) {
880
+ queue.dequeue()();
881
+ activeCount++;
882
+ }
883
+ };
884
+ const next = () => {
885
+ activeCount--;
886
+ resumeNext();
887
+ };
888
+ const run = async (function_, resolve, arguments_) => {
889
+ const result = (async () => function_(...arguments_))();
890
+ resolve(result);
891
+ try {
892
+ await result;
893
+ } catch (e) {
894
+ }
895
+ next();
896
+ };
897
+ const enqueue = (function_, resolve, arguments_) => {
898
+ new Promise((internalResolve) => {
899
+ queue.enqueue(internalResolve);
900
+ }).then(
901
+ run.bind(void 0, function_, resolve, arguments_)
902
+ );
903
+ (async () => {
904
+ await Promise.resolve();
905
+ if (activeCount < concurrency) {
906
+ resumeNext();
870
907
  }
871
- timeouts.sort(function(a, b) {
872
- return a - b;
873
- });
874
- return timeouts;
875
- };
876
- exports.createTimeout = function(attempt, opts) {
877
- var random = opts.randomize ? Math.random() + 1 : 1;
878
- var timeout = Math.round(random * Math.max(opts.minTimeout, 1) * Math.pow(opts.factor, attempt));
879
- timeout = Math.min(timeout, opts.maxTimeout);
880
- return timeout;
881
- };
882
- exports.wrap = function(obj, options, methods) {
883
- if (options instanceof Array) {
884
- methods = options;
885
- options = null;
908
+ })();
909
+ };
910
+ const generator = (function_, ...arguments_) => new Promise((resolve) => {
911
+ enqueue(function_, resolve, arguments_);
912
+ });
913
+ Object.defineProperties(generator, {
914
+ activeCount: {
915
+ get: () => activeCount
916
+ },
917
+ pendingCount: {
918
+ get: () => queue.size
919
+ },
920
+ clearQueue: {
921
+ value() {
922
+ queue.clear();
886
923
  }
887
- if (!methods) {
888
- methods = [];
889
- for (var key in obj) {
890
- if (typeof obj[key] === "function") {
891
- methods.push(key);
924
+ },
925
+ concurrency: {
926
+ get: () => concurrency,
927
+ set(newConcurrency) {
928
+ validateConcurrency(newConcurrency);
929
+ concurrency = newConcurrency;
930
+ queueMicrotask(() => {
931
+ while (activeCount < concurrency && queue.size > 0) {
932
+ resumeNext();
892
933
  }
893
- }
894
- }
895
- for (var i = 0; i < methods.length; i++) {
896
- var method = methods[i];
897
- var original = obj[method];
898
- obj[method] = function retryWrapper(original2) {
899
- var op = exports.operation(options);
900
- var args = Array.prototype.slice.call(arguments, 1);
901
- var callback = args.pop();
902
- args.push(function(err) {
903
- if (op.retry(err)) {
904
- return;
905
- }
906
- if (err) {
907
- arguments[0] = op.mainError();
908
- }
909
- callback.apply(this, arguments);
910
- });
911
- op.attempt(function() {
912
- original2.apply(obj, args);
913
- });
914
- }.bind(obj, original);
915
- obj[method].options = options;
934
+ });
916
935
  }
917
- };
918
- }
919
- });
920
- var require_retry2 = __commonJS2({
921
- "../../node_modules/.pnpm/retry@0.13.1/node_modules/retry/index.js"(exports, module) {
922
- "use strict";
923
- module.exports = require_retry();
936
+ }
937
+ });
938
+ return generator;
939
+ }
940
+ function validateConcurrency(concurrency) {
941
+ if (!((Number.isInteger(concurrency) || concurrency === Number.POSITIVE_INFINITY) && concurrency > 0)) {
942
+ throw new TypeError("Expected `concurrency` to be a number from 1 and up");
924
943
  }
925
- });
926
- var import_p_limit2 = __toESM2(require_p_limit2());
927
- var import_retry = __toESM2(require_retry2(), 1);
928
- var networkErrorMsgs = /* @__PURE__ */ new Set([
944
+ }
945
+
946
+ // ../../node_modules/.pnpm/p-retry@6.2.1/node_modules/p-retry/index.js
947
+ var import_retry = __toESM(require_retry2(), 1);
948
+
949
+ // ../../node_modules/.pnpm/is-network-error@1.1.0/node_modules/is-network-error/index.js
950
+ var objectToString = Object.prototype.toString;
951
+ var isError = (value) => objectToString.call(value) === "[object Error]";
952
+ var errorMessages = /* @__PURE__ */ new Set([
953
+ "network error",
954
+ // Chrome
929
955
  "Failed to fetch",
930
956
  // Chrome
931
957
  "NetworkError when attempting to fetch resource.",
932
958
  // Firefox
933
959
  "The Internet connection appears to be offline.",
934
- // Safari
960
+ // Safari 16
961
+ "Load failed",
962
+ // Safari 17+
935
963
  "Network request failed",
936
964
  // `cross-fetch`
937
- "fetch failed"
965
+ "fetch failed",
966
+ // Undici (Node.js)
967
+ "terminated"
938
968
  // Undici (Node.js)
939
969
  ]);
970
+ function isNetworkError(error) {
971
+ const isValid = error && isError(error) && error.name === "TypeError" && typeof error.message === "string";
972
+ if (!isValid) {
973
+ return false;
974
+ }
975
+ if (error.message === "Load failed") {
976
+ return error.stack === void 0;
977
+ }
978
+ return errorMessages.has(error.message);
979
+ }
980
+
981
+ // ../../node_modules/.pnpm/p-retry@6.2.1/node_modules/p-retry/index.js
940
982
  var AbortError = class extends Error {
941
983
  constructor(message) {
942
984
  super();
@@ -957,63 +999,68 @@ var decorateErrorWithCounts = (error, attemptNumber, options) => {
957
999
  error.retriesLeft = retriesLeft;
958
1000
  return error;
959
1001
  };
960
- var isNetworkError = (errorMessage) => networkErrorMsgs.has(errorMessage);
961
- var getDOMException = (errorMessage) => globalThis.DOMException === void 0 ? new Error(errorMessage) : new DOMException(errorMessage);
962
1002
  async function pRetry(input, options) {
963
1003
  return new Promise((resolve, reject) => {
964
- options = {
965
- onFailedAttempt() {
966
- },
967
- retries: 10,
968
- ...options
1004
+ var _a, _b, _c;
1005
+ options = { ...options };
1006
+ (_a = options.onFailedAttempt) != null ? _a : options.onFailedAttempt = () => {
969
1007
  };
1008
+ (_b = options.shouldRetry) != null ? _b : options.shouldRetry = () => true;
1009
+ (_c = options.retries) != null ? _c : options.retries = 10;
970
1010
  const operation = import_retry.default.operation(options);
1011
+ const abortHandler = () => {
1012
+ var _a2;
1013
+ operation.stop();
1014
+ reject((_a2 = options.signal) == null ? void 0 : _a2.reason);
1015
+ };
1016
+ if (options.signal && !options.signal.aborted) {
1017
+ options.signal.addEventListener("abort", abortHandler, { once: true });
1018
+ }
1019
+ const cleanUp = () => {
1020
+ var _a2;
1021
+ (_a2 = options.signal) == null ? void 0 : _a2.removeEventListener("abort", abortHandler);
1022
+ operation.stop();
1023
+ };
971
1024
  operation.attempt(async (attemptNumber) => {
972
1025
  try {
973
- resolve(await input(attemptNumber));
1026
+ const result = await input(attemptNumber);
1027
+ cleanUp();
1028
+ resolve(result);
974
1029
  } catch (error) {
975
- if (!(error instanceof Error)) {
976
- reject(new TypeError(`Non-error was thrown: "${error}". You should only throw errors.`));
977
- return;
978
- }
979
- if (error instanceof AbortError) {
980
- operation.stop();
981
- reject(error.originalError);
982
- } else if (error instanceof TypeError && !isNetworkError(error.message)) {
983
- operation.stop();
984
- reject(error);
985
- } else {
1030
+ try {
1031
+ if (!(error instanceof Error)) {
1032
+ throw new TypeError(`Non-error was thrown: "${error}". You should only throw errors.`);
1033
+ }
1034
+ if (error instanceof AbortError) {
1035
+ throw error.originalError;
1036
+ }
1037
+ if (error instanceof TypeError && !isNetworkError(error)) {
1038
+ throw error;
1039
+ }
986
1040
  decorateErrorWithCounts(error, attemptNumber, options);
987
- try {
988
- await options.onFailedAttempt(error);
989
- } catch (error2) {
990
- reject(error2);
991
- return;
1041
+ if (!await options.shouldRetry(error)) {
1042
+ operation.stop();
1043
+ reject(error);
992
1044
  }
1045
+ await options.onFailedAttempt(error);
993
1046
  if (!operation.retry(error)) {
994
- reject(operation.mainError());
1047
+ throw operation.mainError();
995
1048
  }
1049
+ } catch (finalError) {
1050
+ decorateErrorWithCounts(finalError, attemptNumber, options);
1051
+ cleanUp();
1052
+ reject(finalError);
996
1053
  }
997
1054
  }
998
1055
  });
999
- if (options.signal && !options.signal.aborted) {
1000
- options.signal.addEventListener("abort", () => {
1001
- operation.stop();
1002
- const reason = options.signal.reason === void 0 ? getDOMException("The operation was aborted.") : options.signal.reason;
1003
- reject(reason instanceof Error ? reason : getDOMException(reason));
1004
- }, {
1005
- once: true
1006
- });
1007
- }
1008
1056
  });
1009
1057
  }
1010
- var AbortError2 = class extends Error {
1011
- constructor() {
1012
- super("Throttled function aborted");
1013
- this.name = "AbortError";
1014
- }
1015
- };
1016
- function pThrottle({ limit, interval, strict }) {
1058
+
1059
+ // ../../node_modules/.pnpm/p-throttle@7.0.0/node_modules/p-throttle/index.js
1060
+ var registry = new FinalizationRegistry(({ signal, aborted }) => {
1061
+ signal == null ? void 0 : signal.removeEventListener("abort", aborted);
1062
+ });
1063
+ function pThrottle({ limit, interval, strict, signal, onDelay }) {
1017
1064
  if (!Number.isFinite(limit)) {
1018
1065
  throw new TypeError("Expected `limit` to be a finite number");
1019
1066
  }
@@ -1041,53 +1088,75 @@ function pThrottle({ limit, interval, strict }) {
1041
1088
  const strictTicks = [];
1042
1089
  function strictDelay() {
1043
1090
  const now = Date.now();
1044
- if (strictTicks.length < limit) {
1045
- strictTicks.push(now);
1046
- return 0;
1091
+ if (strictTicks.length > 0 && now - strictTicks.at(-1) > interval) {
1092
+ strictTicks.length = 0;
1047
1093
  }
1048
- const earliestTime = strictTicks.shift() + interval;
1049
- if (now >= earliestTime) {
1094
+ if (strictTicks.length < limit) {
1050
1095
  strictTicks.push(now);
1051
1096
  return 0;
1052
1097
  }
1053
- strictTicks.push(earliestTime);
1054
- return earliestTime - now;
1098
+ const nextExecutionTime = strictTicks[0] + interval;
1099
+ strictTicks.shift();
1100
+ strictTicks.push(nextExecutionTime);
1101
+ return Math.max(0, nextExecutionTime - now);
1055
1102
  }
1056
1103
  const getDelay = strict ? strictDelay : windowedDelay;
1057
1104
  return (function_) => {
1058
- const throttled = function(...args) {
1105
+ const throttled = function(...arguments_) {
1059
1106
  if (!throttled.isEnabled) {
1060
- return (async () => function_.apply(this, args))();
1107
+ return (async () => function_.apply(this, arguments_))();
1061
1108
  }
1062
- let timeout;
1109
+ let timeoutId;
1063
1110
  return new Promise((resolve, reject) => {
1064
1111
  const execute = () => {
1065
- resolve(function_.apply(this, args));
1066
- queue.delete(timeout);
1112
+ resolve(function_.apply(this, arguments_));
1113
+ queue.delete(timeoutId);
1067
1114
  };
1068
- timeout = setTimeout(execute, getDelay());
1069
- queue.set(timeout, reject);
1115
+ const delay = getDelay();
1116
+ if (delay > 0) {
1117
+ timeoutId = setTimeout(execute, delay);
1118
+ queue.set(timeoutId, reject);
1119
+ onDelay == null ? void 0 : onDelay(...arguments_);
1120
+ } else {
1121
+ execute();
1122
+ }
1070
1123
  });
1071
1124
  };
1072
- throttled.abort = () => {
1125
+ const aborted = () => {
1073
1126
  for (const timeout of queue.keys()) {
1074
1127
  clearTimeout(timeout);
1075
- queue.get(timeout)(new AbortError2());
1128
+ queue.get(timeout)(signal.reason);
1076
1129
  }
1077
1130
  queue.clear();
1078
1131
  strictTicks.splice(0, strictTicks.length);
1079
1132
  };
1133
+ registry.register(throttled, { signal, aborted });
1134
+ signal == null ? void 0 : signal.throwIfAborted();
1135
+ signal == null ? void 0 : signal.addEventListener("abort", aborted, { once: true });
1080
1136
  throttled.isEnabled = true;
1137
+ Object.defineProperty(throttled, "queueSize", {
1138
+ get() {
1139
+ return queue.size;
1140
+ }
1141
+ });
1081
1142
  return throttled;
1082
1143
  };
1083
1144
  }
1145
+
1146
+ // ../canvas/dist/index.mjs
1147
+ var __typeError3 = (msg) => {
1148
+ throw TypeError(msg);
1149
+ };
1150
+ var __accessCheck3 = (obj, member, msg) => member.has(obj) || __typeError3("Cannot " + msg);
1151
+ var __privateGet3 = (obj, member, getter) => (__accessCheck3(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
1152
+ 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);
1084
1153
  function createLimitPolicy({
1085
1154
  throttle = { interval: 1e3, limit: 10 },
1086
- retry: retry2 = { retries: 1, factor: 1.66 },
1155
+ retry: retry3 = { retries: 1, factor: 1.66 },
1087
1156
  limit = 10
1088
1157
  }) {
1089
1158
  const throttler = throttle ? pThrottle(throttle) : null;
1090
- const limiter = limit ? (0, import_p_limit2.default)(limit) : null;
1159
+ const limiter = limit ? pLimit2(limit) : null;
1091
1160
  return function limitPolicy(func) {
1092
1161
  let currentFunc = async () => await func();
1093
1162
  if (throttler) {
@@ -1098,13 +1167,13 @@ function createLimitPolicy({
1098
1167
  const limitFunc = currentFunc;
1099
1168
  currentFunc = () => limiter(limitFunc);
1100
1169
  }
1101
- if (retry2) {
1170
+ if (retry3) {
1102
1171
  const retryFunc = currentFunc;
1103
1172
  currentFunc = () => pRetry(retryFunc, {
1104
- ...retry2,
1173
+ ...retry3,
1105
1174
  onFailedAttempt: async (error) => {
1106
- if (retry2.onFailedAttempt) {
1107
- await retry2.onFailedAttempt(error);
1175
+ if (retry3.onFailedAttempt) {
1176
+ await retry3.onFailedAttempt(error);
1108
1177
  }
1109
1178
  if (error instanceof ApiClientError && typeof error.statusCode === "number" && error.statusCode >= 400 && error.statusCode < 500 && error.statusCode !== 429 && error.statusCode !== 408) {
1110
1179
  throw error;
@@ -1244,7 +1313,7 @@ var _ContentClient = class _ContentClient2 extends ApiClient {
1244
1313
  }
1245
1314
  getContentTypes(options) {
1246
1315
  const { projectId } = this.options;
1247
- const fetchUri = this.createUrl(__privateGet2(_ContentClient2, _contentTypesUrl), { ...options, projectId });
1316
+ const fetchUri = this.createUrl(__privateGet3(_ContentClient2, _contentTypesUrl), { ...options, projectId });
1248
1317
  return this.apiClient(fetchUri);
1249
1318
  }
1250
1319
  getEntries(options) {
@@ -1252,11 +1321,11 @@ var _ContentClient = class _ContentClient2 extends ApiClient {
1252
1321
  const { skipDataResolution, filters, ...params } = options;
1253
1322
  const rewrittenFilters = rewriteFiltersForApi(filters);
1254
1323
  if (skipDataResolution) {
1255
- const url = this.createUrl(__privateGet2(_ContentClient2, _entriesUrl), { ...params, ...rewrittenFilters, projectId });
1324
+ const url = this.createUrl(__privateGet3(_ContentClient2, _entriesUrl), { ...params, ...rewrittenFilters, projectId });
1256
1325
  return this.apiClient(url);
1257
1326
  }
1258
1327
  const edgeUrl = this.createUrl(
1259
- __privateGet2(_ContentClient2, _entriesUrl),
1328
+ __privateGet3(_ContentClient2, _entriesUrl),
1260
1329
  { ...this.getEdgeOptions(params), ...rewrittenFilters },
1261
1330
  this.edgeApiHost
1262
1331
  );
@@ -1274,7 +1343,7 @@ var _ContentClient = class _ContentClient2 extends ApiClient {
1274
1343
  return this.apiClient(historyUrl);
1275
1344
  }
1276
1345
  async upsertContentType(body, opts = {}) {
1277
- const fetchUri = this.createUrl(__privateGet2(_ContentClient2, _contentTypesUrl));
1346
+ const fetchUri = this.createUrl(__privateGet3(_ContentClient2, _contentTypesUrl));
1278
1347
  if (typeof body.contentType.slugSettings === "object" && body.contentType.slugSettings !== null && Object.keys(body.contentType.slugSettings).length === 0) {
1279
1348
  delete body.contentType.slugSettings;
1280
1349
  }
@@ -1286,7 +1355,7 @@ var _ContentClient = class _ContentClient2 extends ApiClient {
1286
1355
  });
1287
1356
  }
1288
1357
  async upsertEntry(body, options) {
1289
- const fetchUri = this.createUrl(__privateGet2(_ContentClient2, _entriesUrl));
1358
+ const fetchUri = this.createUrl(__privateGet3(_ContentClient2, _entriesUrl));
1290
1359
  const headers = {};
1291
1360
  if (options == null ? void 0 : options.ifUnmodifiedSince) {
1292
1361
  headers["x-if-unmodified-since"] = options.ifUnmodifiedSince;
@@ -1300,7 +1369,7 @@ var _ContentClient = class _ContentClient2 extends ApiClient {
1300
1369
  return { modified: response.headers.get("x-modified-at") };
1301
1370
  }
1302
1371
  async deleteContentType(body) {
1303
- const fetchUri = this.createUrl(__privateGet2(_ContentClient2, _contentTypesUrl));
1372
+ const fetchUri = this.createUrl(__privateGet3(_ContentClient2, _contentTypesUrl));
1304
1373
  await this.apiClient(fetchUri, {
1305
1374
  method: "DELETE",
1306
1375
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -1308,7 +1377,7 @@ var _ContentClient = class _ContentClient2 extends ApiClient {
1308
1377
  });
1309
1378
  }
1310
1379
  async deleteEntry(body) {
1311
- const fetchUri = this.createUrl(__privateGet2(_ContentClient2, _entriesUrl));
1380
+ const fetchUri = this.createUrl(__privateGet3(_ContentClient2, _entriesUrl));
1312
1381
  await this.apiClient(fetchUri, {
1313
1382
  method: "DELETE",
1314
1383
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -1327,8 +1396,8 @@ var _ContentClient = class _ContentClient2 extends ApiClient {
1327
1396
  };
1328
1397
  _contentTypesUrl = /* @__PURE__ */ new WeakMap();
1329
1398
  _entriesUrl = /* @__PURE__ */ new WeakMap();
1330
- __privateAdd2(_ContentClient, _contentTypesUrl, "/api/v1/content-types");
1331
- __privateAdd2(_ContentClient, _entriesUrl, "/api/v1/entries");
1399
+ __privateAdd3(_ContentClient, _contentTypesUrl, "/api/v1/content-types");
1400
+ __privateAdd3(_ContentClient, _entriesUrl, "/api/v1/entries");
1332
1401
  var _url8;
1333
1402
  var _DataTypeClient = class _DataTypeClient2 extends ApiClient {
1334
1403
  constructor(options) {
@@ -1337,12 +1406,12 @@ var _DataTypeClient = class _DataTypeClient2 extends ApiClient {
1337
1406
  /** Fetches all DataTypes for a project */
1338
1407
  async get(options) {
1339
1408
  const { projectId } = this.options;
1340
- const fetchUri = this.createUrl(__privateGet2(_DataTypeClient2, _url8), { ...options, projectId });
1409
+ const fetchUri = this.createUrl(__privateGet3(_DataTypeClient2, _url8), { ...options, projectId });
1341
1410
  return await this.apiClient(fetchUri);
1342
1411
  }
1343
1412
  /** Updates or creates (based on id) a DataType */
1344
1413
  async upsert(body) {
1345
- const fetchUri = this.createUrl(__privateGet2(_DataTypeClient2, _url8));
1414
+ const fetchUri = this.createUrl(__privateGet3(_DataTypeClient2, _url8));
1346
1415
  await this.apiClient(fetchUri, {
1347
1416
  method: "PUT",
1348
1417
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -1351,7 +1420,7 @@ var _DataTypeClient = class _DataTypeClient2 extends ApiClient {
1351
1420
  }
1352
1421
  /** Deletes a DataType */
1353
1422
  async remove(body) {
1354
- const fetchUri = this.createUrl(__privateGet2(_DataTypeClient2, _url8));
1423
+ const fetchUri = this.createUrl(__privateGet3(_DataTypeClient2, _url8));
1355
1424
  await this.apiClient(fetchUri, {
1356
1425
  method: "DELETE",
1357
1426
  body: JSON.stringify({ ...body, projectId: this.options.projectId }),
@@ -1360,7 +1429,7 @@ var _DataTypeClient = class _DataTypeClient2 extends ApiClient {
1360
1429
  }
1361
1430
  };
1362
1431
  _url8 = /* @__PURE__ */ new WeakMap();
1363
- __privateAdd2(_DataTypeClient, _url8, "/api/v1/data-types");
1432
+ __privateAdd3(_DataTypeClient, _url8, "/api/v1/data-types");
1364
1433
  var CANVAS_DRAFT_STATE = 0;
1365
1434
  var CANVAS_EDITOR_STATE = 63;
1366
1435
  var CANVAS_INTERNAL_PARAM_PREFIX = "$internal_";
@@ -1456,7 +1525,7 @@ var _IntegrationPropertyEditorsClient = class _IntegrationPropertyEditorsClient2
1456
1525
  * Gets a list of property type and hook names for the current team, including public integrations' hooks.
1457
1526
  */
1458
1527
  get(options) {
1459
- const fetchUri = this.createUrl(__privateGet2(_IntegrationPropertyEditorsClient2, _baseUrl), {
1528
+ const fetchUri = this.createUrl(__privateGet3(_IntegrationPropertyEditorsClient2, _baseUrl), {
1460
1529
  ...options,
1461
1530
  teamId: this.teamId
1462
1531
  });
@@ -1466,7 +1535,7 @@ var _IntegrationPropertyEditorsClient = class _IntegrationPropertyEditorsClient2
1466
1535
  * Creates or updates a custom AI property editor on a Mesh app.
1467
1536
  */
1468
1537
  async deploy(body) {
1469
- const fetchUri = this.createUrl(__privateGet2(_IntegrationPropertyEditorsClient2, _baseUrl));
1538
+ const fetchUri = this.createUrl(__privateGet3(_IntegrationPropertyEditorsClient2, _baseUrl));
1470
1539
  await this.apiClient(fetchUri, {
1471
1540
  method: "PUT",
1472
1541
  body: JSON.stringify({ ...body, teamId: this.teamId }),
@@ -1477,7 +1546,7 @@ var _IntegrationPropertyEditorsClient = class _IntegrationPropertyEditorsClient2
1477
1546
  * Removes a custom AI property editor from a Mesh app.
1478
1547
  */
1479
1548
  async delete(body) {
1480
- const fetchUri = this.createUrl(__privateGet2(_IntegrationPropertyEditorsClient2, _baseUrl));
1549
+ const fetchUri = this.createUrl(__privateGet3(_IntegrationPropertyEditorsClient2, _baseUrl));
1481
1550
  await this.apiClient(fetchUri, {
1482
1551
  method: "DELETE",
1483
1552
  body: JSON.stringify({ ...body, teamId: this.teamId }),
@@ -1486,7 +1555,7 @@ var _IntegrationPropertyEditorsClient = class _IntegrationPropertyEditorsClient2
1486
1555
  }
1487
1556
  };
1488
1557
  _baseUrl = /* @__PURE__ */ new WeakMap();
1489
- __privateAdd2(_IntegrationPropertyEditorsClient, _baseUrl, "/api/v1/integration-property-editors");
1558
+ __privateAdd3(_IntegrationPropertyEditorsClient, _baseUrl, "/api/v1/integration-property-editors");
1490
1559
  var _url22;
1491
1560
  var _projectsUrl;
1492
1561
  var _ProjectClient = class _ProjectClient2 extends ApiClient {
@@ -1495,7 +1564,7 @@ var _ProjectClient = class _ProjectClient2 extends ApiClient {
1495
1564
  }
1496
1565
  /** Fetches single Project */
1497
1566
  async get(options) {
1498
- const fetchUri = this.createUrl(__privateGet2(_ProjectClient2, _url22), { ...options });
1567
+ const fetchUri = this.createUrl(__privateGet3(_ProjectClient2, _url22), { ...options });
1499
1568
  return await this.apiClient(fetchUri);
1500
1569
  }
1501
1570
  /**
@@ -1504,12 +1573,12 @@ var _ProjectClient = class _ProjectClient2 extends ApiClient {
1504
1573
  * When omitted, returns all accessible teams and their projects.
1505
1574
  */
1506
1575
  async getProjects(options) {
1507
- const fetchUri = this.createUrl(__privateGet2(_ProjectClient2, _projectsUrl), options ? { ...options } : {});
1576
+ const fetchUri = this.createUrl(__privateGet3(_ProjectClient2, _projectsUrl), options ? { ...options } : {});
1508
1577
  return await this.apiClient(fetchUri);
1509
1578
  }
1510
1579
  /** Updates or creates (based on id) a Project */
1511
1580
  async upsert(body) {
1512
- const fetchUri = this.createUrl(__privateGet2(_ProjectClient2, _url22));
1581
+ const fetchUri = this.createUrl(__privateGet3(_ProjectClient2, _url22));
1513
1582
  return await this.apiClient(fetchUri, {
1514
1583
  method: "PUT",
1515
1584
  body: JSON.stringify({ ...body })
@@ -1517,7 +1586,7 @@ var _ProjectClient = class _ProjectClient2 extends ApiClient {
1517
1586
  }
1518
1587
  /** Deletes a Project */
1519
1588
  async delete(body) {
1520
- const fetchUri = this.createUrl(__privateGet2(_ProjectClient2, _url22));
1589
+ const fetchUri = this.createUrl(__privateGet3(_ProjectClient2, _url22));
1521
1590
  await this.apiClient(fetchUri, {
1522
1591
  method: "DELETE",
1523
1592
  body: JSON.stringify({ ...body }),
@@ -1527,8 +1596,8 @@ var _ProjectClient = class _ProjectClient2 extends ApiClient {
1527
1596
  };
1528
1597
  _url22 = /* @__PURE__ */ new WeakMap();
1529
1598
  _projectsUrl = /* @__PURE__ */ new WeakMap();
1530
- __privateAdd2(_ProjectClient, _url22, "/api/v1/project");
1531
- __privateAdd2(_ProjectClient, _projectsUrl, "/api/v1/projects");
1599
+ __privateAdd3(_ProjectClient, _url22, "/api/v1/project");
1600
+ __privateAdd3(_ProjectClient, _projectsUrl, "/api/v1/projects");
1532
1601
  var isAllowedReferrer = (referrer) => {
1533
1602
  return Boolean(referrer == null ? void 0 : referrer.match(/(^https:\/\/|\.)(uniform.app|uniform.wtf|localhost:\d{4})\//));
1534
1603
  };
@@ -1916,7 +1985,7 @@ function createLimiter(concurrency) {
1916
1985
  });
1917
1986
  };
1918
1987
  }
1919
- async function retry(fn, options) {
1988
+ async function retry2(fn, options) {
1920
1989
  let lastError;
1921
1990
  let delay = 1e3;
1922
1991
  for (let attempt = 1; attempt <= options.retries + 1; attempt++) {
@@ -1956,7 +2025,7 @@ function createLimitPolicy2({
1956
2025
  }
1957
2026
  if (retryOptions) {
1958
2027
  const retryFunc = currentFunc;
1959
- currentFunc = () => retry(retryFunc, {
2028
+ currentFunc = () => retry2(retryFunc, {
1960
2029
  ...retryOptions,
1961
2030
  onFailedAttempt: async (error) => {
1962
2031
  if (retryOptions.onFailedAttempt) {
@@ -2030,14 +2099,14 @@ var getCanvasClient = (options) => {
2030
2099
  import "server-only";
2031
2100
 
2032
2101
  // ../project-map/dist/index.mjs
2033
- var __typeError3 = (msg) => {
2102
+ var __typeError4 = (msg) => {
2034
2103
  throw TypeError(msg);
2035
2104
  };
2036
- var __accessCheck3 = (obj, member, msg) => member.has(obj) || __typeError3("Cannot " + msg);
2037
- var __privateGet3 = (obj, member, getter) => (__accessCheck3(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
2038
- 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);
2039
- var __privateSet = (obj, member, value, setter) => (__accessCheck3(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
2040
- var __privateMethod = (obj, member, method) => (__accessCheck3(obj, member, "access private method"), method);
2105
+ var __accessCheck4 = (obj, member, msg) => member.has(obj) || __typeError4("Cannot " + msg);
2106
+ var __privateGet4 = (obj, member, getter) => (__accessCheck4(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
2107
+ 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);
2108
+ var __privateSet2 = (obj, member, value, setter) => (__accessCheck4(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
2109
+ var __privateMethod = (obj, member, method) => (__accessCheck4(obj, member, "access private method"), method);
2041
2110
  var ProjectMapClient = class extends ApiClient {
2042
2111
  constructor(options) {
2043
2112
  super(options);
@@ -2184,12 +2253,12 @@ var isDynamicRouteSegment_fn;
2184
2253
  var _Route = class _Route2 {
2185
2254
  constructor(route) {
2186
2255
  this.route = route;
2187
- __privateAdd3(this, _routeInfo);
2256
+ __privateAdd4(this, _routeInfo);
2188
2257
  var _a;
2189
- __privateSet(this, _routeInfo, __privateMethod(_a = _Route2, _Route_static, parseRouteOrPath_fn).call(_a, this.route));
2258
+ __privateSet2(this, _routeInfo, __privateMethod(_a = _Route2, _Route_static, parseRouteOrPath_fn).call(_a, this.route));
2190
2259
  }
2191
2260
  get dynamicSegmentCount() {
2192
- return __privateGet3(this, _routeInfo).segments.reduce(
2261
+ return __privateGet4(this, _routeInfo).segments.reduce(
2193
2262
  (count, segment) => {
2194
2263
  var _a;
2195
2264
  return __privateMethod(_a = _Route2, _Route_static, isDynamicRouteSegment_fn).call(_a, segment) ? count + 1 : count;
@@ -2201,7 +2270,7 @@ var _Route = class _Route2 {
2201
2270
  matches(path) {
2202
2271
  var _a, _b;
2203
2272
  const { segments: pathSegments, queryParams: pathQuery } = __privateMethod(_a = _Route2, _Route_static, parseRouteOrPath_fn).call(_a, path);
2204
- const { segments: routeSegments } = __privateGet3(this, _routeInfo);
2273
+ const { segments: routeSegments } = __privateGet4(this, _routeInfo);
2205
2274
  if (pathSegments.length !== routeSegments.length) {
2206
2275
  return { match: false };
2207
2276
  }
@@ -2222,7 +2291,7 @@ var _Route = class _Route2 {
2222
2291
  return { match: false };
2223
2292
  }
2224
2293
  }
2225
- for (const [key, value] of __privateGet3(this, _routeInfo).queryParams) {
2294
+ for (const [key, value] of __privateGet4(this, _routeInfo).queryParams) {
2226
2295
  possibleMatch.queryParams[key] = pathQuery.has(key) ? pathQuery.get(key) : value;
2227
2296
  }
2228
2297
  return possibleMatch;
@@ -2232,7 +2301,7 @@ var _Route = class _Route2 {
2232
2301
  */
2233
2302
  expand(options) {
2234
2303
  const { dynamicInputValues = {}, allowedQueryParams = [], doNotEscapeVariables = false } = options != null ? options : {};
2235
- const path = __privateGet3(this, _routeInfo).segments.map((segment) => {
2304
+ const path = __privateGet4(this, _routeInfo).segments.map((segment) => {
2236
2305
  const dynamicSegmentName = _Route2.getDynamicRouteSegmentName(segment);
2237
2306
  if (!dynamicSegmentName) {
2238
2307
  return segment;
@@ -2283,7 +2352,7 @@ isDynamicRouteSegment_fn = function(segment) {
2283
2352
  }
2284
2353
  return segment.startsWith(_Route.dynamicSegmentPrefix);
2285
2354
  };
2286
- __privateAdd3(_Route, _Route_static);
2355
+ __privateAdd4(_Route, _Route_static);
2287
2356
  _Route.dynamicSegmentPrefix = ":";
2288
2357
  function encodeRouteComponent(value, doNotEscapeVariables) {
2289
2358
  if (!doNotEscapeVariables) {