keycloakify 11.2.4 → 11.2.6

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/README.md CHANGED
@@ -134,6 +134,8 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
134
134
  </tr>
135
135
  <tr>
136
136
  <td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/oes-rioniz/"><img src="https://avatars.githubusercontent.com/u/5172296?v=4?s=100" width="100px;" alt="Omid"/><br /><sub><b>Omid</b></sub></a><br /><a href="https://github.com/keycloakify/keycloakify/commits?author=uchar" title="Tests">⚠️</a> <a href="https://github.com/keycloakify/keycloakify/commits?author=uchar" title="Code">💻</a></td>
137
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/kathari00"><img src="https://avatars.githubusercontent.com/u/42547712?v=4?s=100" width="100px;" alt="Katharina Eiserfey"/><br /><sub><b>Katharina Eiserfey</b></sub></a><br /><a href="https://github.com/keycloakify/keycloakify/commits?author=kathari00" title="Code">💻</a> <a href="https://github.com/keycloakify/keycloakify/commits?author=kathari00" title="Tests">⚠️</a> <a href="https://github.com/keycloakify/keycloakify/commits?author=kathari00" title="Documentation">📖</a></td>
138
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/luca-peruzzo"><img src="https://avatars.githubusercontent.com/u/69015314?v=4?s=100" width="100px;" alt="Luca Peruzzo"/><br /><sub><b>Luca Peruzzo</b></sub></a><br /><a href="https://github.com/keycloakify/keycloakify/commits?author=luca-peruzzo" title="Code">💻</a> <a href="https://github.com/keycloakify/keycloakify/commits?author=luca-peruzzo" title="Tests">⚠️</a></td>
137
139
  </tr>
138
140
  </tbody>
139
141
  </table>
package/bin/31.index.js CHANGED
@@ -28,8 +28,8 @@ var assert = __webpack_require__(29041);
28
28
  var external_child_process_ = __webpack_require__(32081);
29
29
  // EXTERNAL MODULE: ./dist/bin/shared/constants.js
30
30
  var constants = __webpack_require__(173);
31
- // EXTERNAL MODULE: ./node_modules/tsafe/esm/index.mjs + 1 modules
32
- var esm = __webpack_require__(66911);
31
+ // EXTERNAL MODULE: ./node_modules/tsafe/esm/index.mjs
32
+ var esm = __webpack_require__(55140);
33
33
  // EXTERNAL MODULE: ./dist/bin/tools/crawl.js
34
34
  var crawl = __webpack_require__(73036);
35
35
  // EXTERNAL MODULE: ./node_modules/tsafe/esm/objectEntries.mjs
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
- exports.id = 238;
3
- exports.ids = [238];
2
+ exports.id = 347;
3
+ exports.ids = [347];
4
4
  exports.modules = {
5
5
 
6
6
  /***/ 83101:
@@ -16,68 +16,33 @@ exports.modules = {
16
16
  * Ex: ([ "a", "b", "c", "d"] as const).filter(exclude(["a", "b"]) gives ("c" | "d")[]
17
17
  */
18
18
  function exclude(target) {
19
- var test = target instanceof Object
20
- ? function (element) { return target.indexOf(element) < 0; }
21
- : function (element) { return element !== target; };
19
+ const test = target instanceof Object
20
+ ? element => target.indexOf(element) < 0
21
+ : element => element !== target;
22
22
  return function (elemnt) {
23
23
  return test(elemnt);
24
24
  };
25
25
  }
26
+
27
+
26
28
  //# sourceMappingURL=exclude.mjs.map
27
29
 
30
+
28
31
  /***/ }),
29
32
 
30
- /***/ 66911:
33
+ /***/ 55140:
31
34
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
32
35
 
36
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
37
+ /* harmony export */ "De": () => (/* reexport safe */ _exclude_mjs__WEBPACK_IMPORTED_MODULE_1__.D)
38
+ /* harmony export */ });
39
+ /* harmony import */ var _assert_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(29041);
40
+ /* harmony import */ var _exclude_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(83101);
41
+ /* harmony import */ var _is_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(16453);
42
+
33
43
 
34
- // EXPORTS
35
- __webpack_require__.d(__webpack_exports__, {
36
- "De": () => (/* reexport */ exclude/* exclude */.D)
37
- });
38
44
 
39
- // UNUSED EXPORTS: AssertionError, Reflect, assert, capitalize, flip, id, is, isAmong, isPromiseLike, noUndefined, objectEntries, objectFromEntries, objectKeys, typeGuard, uncapitalize
40
45
 
41
- // EXTERNAL MODULE: ./node_modules/tsafe/esm/assert.mjs + 1 modules
42
- var assert = __webpack_require__(29041);
43
- // EXTERNAL MODULE: ./node_modules/tsafe/esm/exclude.mjs
44
- var exclude = __webpack_require__(83101);
45
- // EXTERNAL MODULE: ./node_modules/tsafe/esm/is.mjs
46
- var is = __webpack_require__(16453);
47
- ;// CONCATENATED MODULE: ./node_modules/tsafe/esm/isAmong.mjs
48
- var __values = (undefined && undefined.__values) || function(o) {
49
- var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
50
- if (m) return m.call(o);
51
- if (o && typeof o.length === "number") return {
52
- next: function () {
53
- if (o && i >= o.length) o = void 0;
54
- return { value: o && o[i++], done: !o };
55
- }
56
- };
57
- throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
58
- };
59
- /** https://docs.tsafe.dev/isamong */
60
- function isAmong(names, value) {
61
- var e_1, _a;
62
- try {
63
- for (var names_1 = __values(names), names_1_1 = names_1.next(); !names_1_1.done; names_1_1 = names_1.next()) {
64
- var name_1 = names_1_1.value;
65
- if (name_1 === value) {
66
- return true;
67
- }
68
- }
69
- }
70
- catch (e_1_1) { e_1 = { error: e_1_1 }; }
71
- finally {
72
- try {
73
- if (names_1_1 && !names_1_1.done && (_a = names_1.return)) _a.call(names_1);
74
- }
75
- finally { if (e_1) throw e_1.error; }
76
- }
77
- return false;
78
- }
79
- //# sourceMappingURL=isAmong.mjs.map
80
- ;// CONCATENATED MODULE: ./node_modules/tsafe/esm/index.mjs
81
46
 
82
47
 
83
48
 
@@ -89,11 +54,44 @@ function isAmong(names, value) {
89
54
 
90
55
 
91
56
 
57
+ //# sourceMappingURL=index.mjs.map
92
58
 
93
59
 
60
+ /***/ }),
94
61
 
62
+ /***/ 16453:
63
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
64
+
65
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
66
+ /* harmony export */ "is": () => (/* binding */ is)
67
+ /* harmony export */ });
68
+ /* harmony import */ var _zz_internal_assertIsRefWrapper_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(49770);
69
+
70
+
71
+ /* eslint-disable @typescript-eslint/no-namespace */
72
+ /* eslint-disable @typescript-eslint/no-explicit-any */
73
+ const errorMessage = [
74
+ `Wrong usage of the ${is.name} function refer to`,
75
+ `https://docs.tsafe.dev/${is.name.toLowerCase()}`,
76
+ ].join(" ");
77
+ function is(_value) {
78
+ const ref = {};
79
+ if (_zz_internal_assertIsRefWrapper_mjs__WEBPACK_IMPORTED_MODULE_0__/* .assertIsRefWrapper.ref */ .j.ref !== undefined) {
80
+ _zz_internal_assertIsRefWrapper_mjs__WEBPACK_IMPORTED_MODULE_0__/* .assertIsRefWrapper.ref */ .j.ref = undefined;
81
+ throw new Error(errorMessage);
82
+ }
83
+ _zz_internal_assertIsRefWrapper_mjs__WEBPACK_IMPORTED_MODULE_0__/* .assertIsRefWrapper.ref */ .j.ref = ref;
84
+ Promise.resolve().then(() => {
85
+ if (_zz_internal_assertIsRefWrapper_mjs__WEBPACK_IMPORTED_MODULE_0__/* .assertIsRefWrapper.ref */ .j.ref === ref) {
86
+ throw new Error(errorMessage);
87
+ }
88
+ });
89
+ return null;
90
+ }
91
+
92
+
93
+ //# sourceMappingURL=is.mjs.map
95
94
 
96
- //# sourceMappingURL=index.mjs.map
97
95
 
98
96
  /***/ }),
99
97
 
@@ -108,8 +106,11 @@ function isAmong(names, value) {
108
106
  function objectEntries(o) {
109
107
  return Object.entries(o);
110
108
  }
109
+
110
+
111
111
  //# sourceMappingURL=objectEntries.mjs.map
112
112
 
113
+
113
114
  /***/ }),
114
115
 
115
116
  /***/ 52300:
package/bin/453.index.js CHANGED
@@ -827,8 +827,11 @@ function capitalize(str) {
827
827
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
828
828
  return (str.charAt(0).toUpperCase() + str.slice(1));
829
829
  }
830
+
831
+
830
832
  //# sourceMappingURL=capitalize.mjs.map
831
833
 
834
+
832
835
  /***/ })
833
836
 
834
837
  };
package/bin/783.index.js CHANGED
@@ -75692,8 +75692,11 @@ function symToStr(wrap) {
75692
75692
  // @ts-expect-error: We know better
75693
75693
  return Object.keys(wrap)[0];
75694
75694
  }
75695
+
75696
+
75695
75697
  //# sourceMappingURL=symToStr.mjs.map
75696
75698
 
75699
+
75697
75700
  /***/ })
75698
75701
 
75699
75702
  };
package/bin/97.index.js CHANGED
@@ -705,8 +705,11 @@ function capitalize(str) {
705
705
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
706
706
  return (str.charAt(0).toUpperCase() + str.slice(1));
707
707
  }
708
+
709
+
708
710
  //# sourceMappingURL=capitalize.mjs.map
709
711
 
712
+
710
713
  /***/ })
711
714
 
712
715
  };
package/bin/main.js CHANGED
@@ -8374,49 +8374,36 @@ __nccwpck_require__.d(__webpack_exports__, {
8374
8374
 
8375
8375
  // UNUSED EXPORTS: AssertionError
8376
8376
 
8377
- // EXTERNAL MODULE: ./node_modules/tsafe/esm/is.mjs
8378
- var is = __nccwpck_require__(16453);
8379
8377
  ;// CONCATENATED MODULE: ./node_modules/tsafe/esm/lab/overwriteReadonlyProp.mjs
8380
- var __assign = (undefined && undefined.__assign) || function () {
8381
- __assign = Object.assign || function(t) {
8382
- for (var s, i = 1, n = arguments.length; i < n; i++) {
8383
- s = arguments[i];
8384
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
8385
- t[p] = s[p];
8386
- }
8387
- return t;
8388
- };
8389
- return __assign.apply(this, arguments);
8390
- };
8391
8378
  /* eslint-disable no-empty */
8392
8379
  /* eslint-disable @typescript-eslint/no-explicit-any */
8393
-
8394
-
8395
8380
  /**
8396
8381
  * Assign a value to a property even if the object is freezed or if the property is not writable
8397
8382
  * Throw if the assignation fail ( for example if the property is non configurable write: false )
8398
8383
  * */
8399
- var overwriteReadonlyProp = function (obj, propertyName, value) {
8384
+ const overwriteReadonlyProp = (obj, propertyName, value) => {
8400
8385
  try {
8401
8386
  obj[propertyName] = value;
8402
8387
  }
8403
- catch (_a) { }
8388
+ catch { }
8404
8389
  if (obj[propertyName] === value) {
8405
8390
  return value;
8406
8391
  }
8407
- var errorDefineProperty = undefined;
8408
- var propertyDescriptor = Object.getOwnPropertyDescriptor(obj, propertyName) || {
8392
+ let errorDefineProperty = undefined;
8393
+ const propertyDescriptor = Object.getOwnPropertyDescriptor(obj, propertyName) || {
8409
8394
  "enumerable": true,
8410
8395
  "configurable": true,
8411
8396
  };
8412
8397
  if (!!propertyDescriptor.get) {
8413
- throw new Error("Probably a wrong ides to overwrite ".concat(String(propertyName), " getter"));
8398
+ throw new Error(`Probably a wrong ides to overwrite ${String(propertyName)} getter`);
8414
8399
  }
8415
8400
  try {
8416
- Object.defineProperty(obj, propertyName, __assign(__assign({}, propertyDescriptor), { value: value }));
8401
+ Object.defineProperty(obj, propertyName, {
8402
+ ...propertyDescriptor,
8403
+ value,
8404
+ });
8417
8405
  }
8418
8406
  catch (error) {
8419
- assert((0,is.is)(error));
8420
8407
  errorDefineProperty = error;
8421
8408
  }
8422
8409
  if (obj[propertyName] !== value) {
@@ -8424,74 +8411,35 @@ var overwriteReadonlyProp = function (obj, propertyName, value) {
8424
8411
  }
8425
8412
  return value;
8426
8413
  };
8414
+
8415
+
8427
8416
  //# sourceMappingURL=overwriteReadonlyProp.mjs.map
8417
+
8428
8418
  // EXTERNAL MODULE: ./node_modules/tsafe/esm/zz_internal/assertIsRefWrapper.mjs
8429
8419
  var assertIsRefWrapper = __nccwpck_require__(49770);
8430
8420
  ;// CONCATENATED MODULE: ./node_modules/tsafe/esm/assert.mjs
8431
- var __extends = (undefined && undefined.__extends) || (function () {
8432
- var extendStatics = function (d, b) {
8433
- extendStatics = Object.setPrototypeOf ||
8434
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
8435
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
8436
- return extendStatics(d, b);
8437
- };
8438
- return function (d, b) {
8439
- if (typeof b !== "function" && b !== null)
8440
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
8441
- extendStatics(d, b);
8442
- function __() { this.constructor = d; }
8443
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
8444
- };
8445
- })();
8446
- var __read = (undefined && undefined.__read) || function (o, n) {
8447
- var m = typeof Symbol === "function" && o[Symbol.iterator];
8448
- if (!m) return o;
8449
- var i = m.call(o), r, ar = [], e;
8450
- try {
8451
- while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
8452
- }
8453
- catch (error) { e = { error: error }; }
8454
- finally {
8455
- try {
8456
- if (r && !r.done && (m = i["return"])) m.call(i);
8457
- }
8458
- finally { if (e) throw e.error; }
8459
- }
8460
- return ar;
8461
- };
8462
- /* eslint-disable @typescript-eslint/no-unused-vars */
8463
8421
 
8464
8422
 
8423
+
8424
+ /* eslint-disable @typescript-eslint/no-unused-vars */
8465
8425
  /** @see <https://docs.tsafe.dev/assert#error-thrown> */
8466
- var AssertionError = /** @class */ (function (_super) {
8467
- __extends(AssertionError, _super);
8468
- function AssertionError(msg) {
8469
- var _newTarget = this.constructor;
8470
- var _this = _super.call(this, "Wrong assertion encountered" + (!msg ? "" : ": \"".concat(msg, "\""))) || this;
8471
- Object.setPrototypeOf(_this, _newTarget.prototype);
8472
- if (!_this.stack) {
8473
- return _this;
8426
+ class AssertionError extends Error {
8427
+ constructor(msg) {
8428
+ super(`Wrong assertion encountered` + (!msg ? "" : `: "${msg}"`));
8429
+ Object.setPrototypeOf(this, new.target.prototype);
8430
+ if (!this.stack) {
8431
+ return;
8474
8432
  }
8475
8433
  try {
8476
- overwriteReadonlyProp(_this, "stack", _this.stack
8434
+ overwriteReadonlyProp(this, "stack", this.stack
8477
8435
  .split("\n")
8478
- .filter(function () {
8479
- var _a = [];
8480
- for (var _i = 0; _i < arguments.length; _i++) {
8481
- _a[_i] = arguments[_i];
8482
- }
8483
- var _b = __read(_a, 2), i = _b[1];
8484
- return i !== 1 && i !== 2;
8485
- })
8436
+ .filter((...[, i]) => i !== 1 && i !== 2)
8486
8437
  .join("\n"));
8487
8438
  // eslint-disable-next-line no-empty
8488
8439
  }
8489
- catch (_a) { }
8490
- return _this;
8440
+ catch { }
8491
8441
  }
8492
- return AssertionError;
8493
- }(Error));
8494
-
8442
+ }
8495
8443
  /** https://docs.tsafe.dev/assert */
8496
8444
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
8497
8445
  function assert(condition, msg) {
@@ -8506,8 +8454,11 @@ function assert(condition, msg) {
8506
8454
  throw new AssertionError(msg);
8507
8455
  }
8508
8456
  }
8457
+
8458
+
8509
8459
  //# sourceMappingURL=assert.mjs.map
8510
8460
 
8461
+
8511
8462
  /***/ }),
8512
8463
 
8513
8464
  /***/ 38469:
@@ -8518,41 +8469,11 @@ function assert(condition, msg) {
8518
8469
  /* harmony export */ "id": () => (/* binding */ id)
8519
8470
  /* harmony export */ });
8520
8471
  /** https://docs.tsafe.dev/id */
8521
- var id = function (x) { return x; };
8522
- //# sourceMappingURL=id.mjs.map
8472
+ const id = (x) => x;
8523
8473
 
8524
- /***/ }),
8525
8474
 
8526
- /***/ 16453:
8527
- /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __nccwpck_require__) => {
8528
-
8529
- "use strict";
8530
- /* harmony export */ __nccwpck_require__.d(__webpack_exports__, {
8531
- /* harmony export */ "is": () => (/* binding */ is)
8532
- /* harmony export */ });
8533
- /* harmony import */ var _zz_internal_assertIsRefWrapper_mjs__WEBPACK_IMPORTED_MODULE_0__ = __nccwpck_require__(49770);
8534
- /* eslint-disable @typescript-eslint/no-namespace */
8535
- /* eslint-disable @typescript-eslint/no-explicit-any */
8475
+ //# sourceMappingURL=id.mjs.map
8536
8476
 
8537
- var errorMessage = [
8538
- "Wrong usage of the ".concat(is.name, " function refer to"),
8539
- "https://docs.tsafe.dev/".concat(is.name.toLowerCase()),
8540
- ].join(" ");
8541
- function is(_value) {
8542
- var ref = {};
8543
- if (_zz_internal_assertIsRefWrapper_mjs__WEBPACK_IMPORTED_MODULE_0__/* .assertIsRefWrapper.ref */ .j.ref !== undefined) {
8544
- _zz_internal_assertIsRefWrapper_mjs__WEBPACK_IMPORTED_MODULE_0__/* .assertIsRefWrapper.ref */ .j.ref = undefined;
8545
- throw new Error(errorMessage);
8546
- }
8547
- _zz_internal_assertIsRefWrapper_mjs__WEBPACK_IMPORTED_MODULE_0__/* .assertIsRefWrapper.ref */ .j.ref = ref;
8548
- Promise.resolve().then(function () {
8549
- if (_zz_internal_assertIsRefWrapper_mjs__WEBPACK_IMPORTED_MODULE_0__/* .assertIsRefWrapper.ref */ .j.ref === ref) {
8550
- throw new Error(errorMessage);
8551
- }
8552
- });
8553
- return null;
8554
- }
8555
- //# sourceMappingURL=is.mjs.map
8556
8477
 
8557
8478
  /***/ }),
8558
8479
 
@@ -8565,11 +8486,15 @@ function is(_value) {
8565
8486
  /* harmony export */ });
8566
8487
  /* harmony import */ var _id_mjs__WEBPACK_IMPORTED_MODULE_0__ = __nccwpck_require__(38469);
8567
8488
 
8568
- var assertIsRefWrapper = {
8489
+
8490
+ const assertIsRefWrapper = {
8569
8491
  "ref": (0,_id_mjs__WEBPACK_IMPORTED_MODULE_0__.id)(undefined),
8570
8492
  };
8493
+
8494
+
8571
8495
  //# sourceMappingURL=assertIsRefWrapper.mjs.map
8572
8496
 
8497
+
8573
8498
  /***/ })
8574
8499
 
8575
8500
  /******/ });
@@ -11310,7 +11235,7 @@ program
11310
11235
  .task({
11311
11236
  skip,
11312
11237
  handler: async (cliCommandOptions) => {
11313
- const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(238), __nccwpck_require__.e(783), __nccwpck_require__.e(31), __nccwpck_require__.e(573)]).then(__nccwpck_require__.bind(__nccwpck_require__, 82573));
11238
+ const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(347), __nccwpck_require__.e(783), __nccwpck_require__.e(31), __nccwpck_require__.e(573)]).then(__nccwpck_require__.bind(__nccwpck_require__, 82573));
11314
11239
  await command({ cliCommandOptions });
11315
11240
  }
11316
11241
  });
@@ -11358,7 +11283,7 @@ program
11358
11283
  .task({
11359
11284
  skip,
11360
11285
  handler: async (cliCommandOptions) => {
11361
- const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(238), __nccwpck_require__.e(903), __nccwpck_require__.e(33), __nccwpck_require__.e(36), __nccwpck_require__.e(31), __nccwpck_require__.e(20), __nccwpck_require__.e(526)]).then(__nccwpck_require__.bind(__nccwpck_require__, 80526));
11286
+ const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(347), __nccwpck_require__.e(903), __nccwpck_require__.e(33), __nccwpck_require__.e(36), __nccwpck_require__.e(31), __nccwpck_require__.e(20), __nccwpck_require__.e(526)]).then(__nccwpck_require__.bind(__nccwpck_require__, 80526));
11362
11287
  await command({ cliCommandOptions });
11363
11288
  }
11364
11289
  });
@@ -11370,7 +11295,7 @@ program
11370
11295
  .task({
11371
11296
  skip,
11372
11297
  handler: async (cliCommandOptions) => {
11373
- const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(238), __nccwpck_require__.e(31), __nccwpck_require__.e(453)]).then(__nccwpck_require__.bind(__nccwpck_require__, 93453));
11298
+ const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(347), __nccwpck_require__.e(31), __nccwpck_require__.e(453)]).then(__nccwpck_require__.bind(__nccwpck_require__, 93453));
11374
11299
  await command({ cliCommandOptions });
11375
11300
  }
11376
11301
  });
@@ -11382,7 +11307,7 @@ program
11382
11307
  .task({
11383
11308
  skip,
11384
11309
  handler: async (cliCommandOptions) => {
11385
- const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(238), __nccwpck_require__.e(31), __nccwpck_require__.e(97)]).then(__nccwpck_require__.bind(__nccwpck_require__, 98097));
11310
+ const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(347), __nccwpck_require__.e(31), __nccwpck_require__.e(97)]).then(__nccwpck_require__.bind(__nccwpck_require__, 98097));
11386
11311
  await command({ cliCommandOptions });
11387
11312
  }
11388
11313
  });
@@ -11394,7 +11319,7 @@ program
11394
11319
  .task({
11395
11320
  skip,
11396
11321
  handler: async (cliCommandOptions) => {
11397
- const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(238), __nccwpck_require__.e(903), __nccwpck_require__.e(33), __nccwpck_require__.e(31), __nccwpck_require__.e(20), __nccwpck_require__.e(932)]).then(__nccwpck_require__.bind(__nccwpck_require__, 16932));
11322
+ const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(347), __nccwpck_require__.e(903), __nccwpck_require__.e(33), __nccwpck_require__.e(31), __nccwpck_require__.e(20), __nccwpck_require__.e(932)]).then(__nccwpck_require__.bind(__nccwpck_require__, 16932));
11398
11323
  await command({ cliCommandOptions });
11399
11324
  }
11400
11325
  });
@@ -11406,7 +11331,7 @@ program
11406
11331
  .task({
11407
11332
  skip,
11408
11333
  handler: async (cliCommandOptions) => {
11409
- const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(238), __nccwpck_require__.e(31), __nccwpck_require__.e(780)]).then(__nccwpck_require__.bind(__nccwpck_require__, 75780));
11334
+ const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(347), __nccwpck_require__.e(31), __nccwpck_require__.e(780)]).then(__nccwpck_require__.bind(__nccwpck_require__, 75780));
11410
11335
  await command({ cliCommandOptions });
11411
11336
  }
11412
11337
  });
@@ -11418,7 +11343,7 @@ program
11418
11343
  .task({
11419
11344
  skip,
11420
11345
  handler: async (cliCommandOptions) => {
11421
- const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(238), __nccwpck_require__.e(31), __nccwpck_require__.e(193)]).then(__nccwpck_require__.bind(__nccwpck_require__, 23193));
11346
+ const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(347), __nccwpck_require__.e(31), __nccwpck_require__.e(193)]).then(__nccwpck_require__.bind(__nccwpck_require__, 23193));
11422
11347
  await command({ cliCommandOptions });
11423
11348
  }
11424
11349
  });
@@ -11430,7 +11355,7 @@ program
11430
11355
  .task({
11431
11356
  skip,
11432
11357
  handler: async (cliCommandOptions) => {
11433
- const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(238), __nccwpck_require__.e(31), __nccwpck_require__.e(786)]).then(__nccwpck_require__.bind(__nccwpck_require__, 10786));
11358
+ const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(347), __nccwpck_require__.e(31), __nccwpck_require__.e(786)]).then(__nccwpck_require__.bind(__nccwpck_require__, 10786));
11434
11359
  await command({ cliCommandOptions });
11435
11360
  }
11436
11361
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keycloakify",
3
- "version": "11.2.4",
3
+ "version": "11.2.6",
4
4
  "description": "Framework to create custom Keycloak UIs",
5
5
  "repository": {
6
6
  "type": "git",
@@ -979,11 +979,11 @@
979
979
  "bin/main.js",
980
980
  "bin/193.index.js",
981
981
  "bin/20.index.js",
982
- "bin/238.index.js",
983
982
  "bin/266.index.js",
984
983
  "bin/304.index.js",
985
984
  "bin/31.index.js",
986
985
  "bin/33.index.js",
986
+ "bin/347.index.js",
987
987
  "bin/36.index.js",
988
988
  "bin/453.index.js",
989
989
  "bin/526.index.js",
@@ -1032,7 +1032,7 @@
1032
1032
  ],
1033
1033
  "homepage": "https://www.keycloakify.dev",
1034
1034
  "dependencies": {
1035
- "tsafe": "^1.7.4"
1035
+ "tsafe": "^1.7.5"
1036
1036
  },
1037
1037
  "devDependencies": {
1038
1038
  "@babel/core": "^7.24.5",
@@ -166,7 +166,7 @@ export function keycloakify(params: keycloakify.Params) {
166
166
  [
167
167
  `(`,
168
168
  `(window.kcContext === undefined || import.meta.env.MODE === "development")?`,
169
- `"${urlPathname ?? "/"}":`,
169
+ `import.meta.env.BASE_URL:`,
170
170
  `(window.kcContext["x-keycloakify"].resourcesPath + "/${WELL_KNOWN_DIRECTORY_BASE_NAME.DIST}/")`,
171
171
  `)`
172
172
  ].join("")
@@ -1,7 +1,7 @@
1
1
  /******/ (() => { // webpackBootstrap
2
2
  /******/ var __webpack_modules__ = ({
3
3
 
4
- /***/ 6:
4
+ /***/ 841:
5
5
  /***/ ((__unused_webpack_module, __webpack_exports__, __nccwpck_require__) => {
6
6
 
7
7
  "use strict";
@@ -55,49 +55,46 @@ var constants = __nccwpck_require__(173);
55
55
  * Ex: ([ "a", "b", "c", "d"] as const).filter(exclude(["a", "b"]) gives ("c" | "d")[]
56
56
  */
57
57
  function exclude(target) {
58
- var test = target instanceof Object
59
- ? function (element) { return target.indexOf(element) < 0; }
60
- : function (element) { return element !== target; };
58
+ const test = target instanceof Object
59
+ ? element => target.indexOf(element) < 0
60
+ : element => element !== target;
61
61
  return function (elemnt) {
62
62
  return test(elemnt);
63
63
  };
64
64
  }
65
+
66
+
65
67
  //# sourceMappingURL=exclude.mjs.map
66
- // EXTERNAL MODULE: ./node_modules/tsafe/esm/is.mjs
67
- var is = __nccwpck_require__(453);
68
- ;// CONCATENATED MODULE: ./node_modules/tsafe/esm/isAmong.mjs
69
- var __values = (undefined && undefined.__values) || function(o) {
70
- var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
71
- if (m) return m.call(o);
72
- if (o && typeof o.length === "number") return {
73
- next: function () {
74
- if (o && i >= o.length) o = void 0;
75
- return { value: o && o[i++], done: !o };
76
- }
77
- };
78
- throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
79
- };
80
- /** https://docs.tsafe.dev/isamong */
81
- function isAmong(names, value) {
82
- var e_1, _a;
83
- try {
84
- for (var names_1 = __values(names), names_1_1 = names_1.next(); !names_1_1.done; names_1_1 = names_1.next()) {
85
- var name_1 = names_1_1.value;
86
- if (name_1 === value) {
87
- return true;
88
- }
89
- }
68
+
69
+ // EXTERNAL MODULE: ./node_modules/tsafe/esm/zz_internal/assertIsRefWrapper.mjs
70
+ var assertIsRefWrapper = __nccwpck_require__(770);
71
+ ;// CONCATENATED MODULE: ./node_modules/tsafe/esm/is.mjs
72
+
73
+
74
+ /* eslint-disable @typescript-eslint/no-namespace */
75
+ /* eslint-disable @typescript-eslint/no-explicit-any */
76
+ const errorMessage = [
77
+ `Wrong usage of the ${is.name} function refer to`,
78
+ `https://docs.tsafe.dev/${is.name.toLowerCase()}`,
79
+ ].join(" ");
80
+ function is(_value) {
81
+ const ref = {};
82
+ if (assertIsRefWrapper/* assertIsRefWrapper.ref */.j.ref !== undefined) {
83
+ assertIsRefWrapper/* assertIsRefWrapper.ref */.j.ref = undefined;
84
+ throw new Error(errorMessage);
90
85
  }
91
- catch (e_1_1) { e_1 = { error: e_1_1 }; }
92
- finally {
93
- try {
94
- if (names_1_1 && !names_1_1.done && (_a = names_1.return)) _a.call(names_1);
86
+ assertIsRefWrapper/* assertIsRefWrapper.ref */.j.ref = ref;
87
+ Promise.resolve().then(() => {
88
+ if (assertIsRefWrapper/* assertIsRefWrapper.ref */.j.ref === ref) {
89
+ throw new Error(errorMessage);
95
90
  }
96
- finally { if (e_1) throw e_1.error; }
97
- }
98
- return false;
91
+ });
92
+ return null;
99
93
  }
100
- //# sourceMappingURL=isAmong.mjs.map
94
+
95
+
96
+ //# sourceMappingURL=is.mjs.map
97
+
101
98
  ;// CONCATENATED MODULE: ./node_modules/tsafe/esm/index.mjs
102
99
 
103
100
 
@@ -115,6 +112,7 @@ function isAmong(names, value) {
115
112
 
116
113
 
117
114
  //# sourceMappingURL=index.mjs.map
115
+
118
116
  // EXTERNAL MODULE: ./dist/bin/tools/crawl.js
119
117
  var crawl = __nccwpck_require__(36);
120
118
  ;// CONCATENATED MODULE: ./node_modules/tsafe/esm/objectEntries.mjs
@@ -123,7 +121,10 @@ var crawl = __nccwpck_require__(36);
123
121
  function objectEntries(o) {
124
122
  return Object.entries(o);
125
123
  }
124
+
125
+
126
126
  //# sourceMappingURL=objectEntries.mjs.map
127
+
127
128
  // EXTERNAL MODULE: ./node_modules/tsafe/esm/id.mjs
128
129
  var id = __nccwpck_require__(469);
129
130
  // EXTERNAL MODULE: ./node_modules/chalk/source/index.js
@@ -1453,7 +1454,7 @@ const id_1 = __nccwpck_require__(47);
1453
1454
  const fs_rm_1 = __nccwpck_require__(699);
1454
1455
  const copyKeycloakResourcesToPublic_1 = __nccwpck_require__(601);
1455
1456
  const assert_1 = __nccwpck_require__(78);
1456
- const buildContext_1 = __nccwpck_require__(6);
1457
+ const buildContext_1 = __nccwpck_require__(841);
1457
1458
  const magic_string_1 = __importDefault(__nccwpck_require__(734));
1458
1459
  const generateKcGenTs_1 = __nccwpck_require__(582);
1459
1460
  function keycloakify(params) {
@@ -1549,7 +1550,7 @@ function keycloakify(params) {
1549
1550
  transformedCode.replaceAll(/import\.meta\.env(?:(?:\.BASE_URL)|(?:\["BASE_URL"\]))/g, [
1550
1551
  `(`,
1551
1552
  `(window.kcContext === undefined || import.meta.env.MODE === "development")?`,
1552
- `"${urlPathname !== null && urlPathname !== void 0 ? urlPathname : "/"}":`,
1553
+ `import.meta.env.BASE_URL:`,
1553
1554
  `(window.kcContext["x-keycloakify"].resourcesPath + "/${constants_1.WELL_KNOWN_DIRECTORY_BASE_NAME.DIST}/")`,
1554
1555
  `)`
1555
1556
  ].join(""));
@@ -5370,44 +5371,13 @@ exports.id = id;
5370
5371
 
5371
5372
  /***/ }),
5372
5373
 
5373
- /***/ 655:
5374
- /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
5375
-
5376
- "use strict";
5377
-
5378
- /* eslint-disable @typescript-eslint/no-namespace */
5379
- /* eslint-disable @typescript-eslint/no-explicit-any */
5380
- Object.defineProperty(exports, "__esModule", ({ value: true }));
5381
- exports.is = void 0;
5382
- var assertIsRefWrapper_1 = __nccwpck_require__(562);
5383
- var errorMessage = [
5384
- "Wrong usage of the ".concat(is.name, " function refer to"),
5385
- "https://docs.tsafe.dev/".concat(is.name.toLowerCase()),
5386
- ].join(" ");
5387
- function is(_value) {
5388
- var ref = {};
5389
- if (assertIsRefWrapper_1.assertIsRefWrapper.ref !== undefined) {
5390
- assertIsRefWrapper_1.assertIsRefWrapper.ref = undefined;
5391
- throw new Error(errorMessage);
5392
- }
5393
- assertIsRefWrapper_1.assertIsRefWrapper.ref = ref;
5394
- Promise.resolve().then(function () {
5395
- if (assertIsRefWrapper_1.assertIsRefWrapper.ref === ref) {
5396
- throw new Error(errorMessage);
5397
- }
5398
- });
5399
- return null;
5400
- }
5401
- exports.is = is;
5402
- //# sourceMappingURL=is.js.map
5403
-
5404
- /***/ }),
5405
-
5406
5374
  /***/ 803:
5407
- /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
5375
+ /***/ (function(__unused_webpack_module, exports) {
5408
5376
 
5409
5377
  "use strict";
5410
5378
 
5379
+ /* eslint-disable no-empty */
5380
+ /* eslint-disable @typescript-eslint/no-explicit-any */
5411
5381
  var __assign = (this && this.__assign) || function () {
5412
5382
  __assign = Object.assign || function(t) {
5413
5383
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -5421,10 +5391,6 @@ var __assign = (this && this.__assign) || function () {
5421
5391
  };
5422
5392
  Object.defineProperty(exports, "__esModule", ({ value: true }));
5423
5393
  exports.overwriteReadonlyProp = void 0;
5424
- /* eslint-disable no-empty */
5425
- /* eslint-disable @typescript-eslint/no-explicit-any */
5426
- var assert_1 = __nccwpck_require__(78);
5427
- var is_1 = __nccwpck_require__(655);
5428
5394
  /**
5429
5395
  * Assign a value to a property even if the object is freezed or if the property is not writable
5430
5396
  * Throw if the assignation fail ( for example if the property is non configurable write: false )
@@ -5449,7 +5415,6 @@ var overwriteReadonlyProp = function (obj, propertyName, value) {
5449
5415
  Object.defineProperty(obj, propertyName, __assign(__assign({}, propertyDescriptor), { value: value }));
5450
5416
  }
5451
5417
  catch (error) {
5452
- (0, assert_1.assert)((0, is_1.is)(error));
5453
5418
  errorDefineProperty = error;
5454
5419
  }
5455
5420
  if (obj[propertyName] !== value) {
@@ -5529,49 +5494,36 @@ __nccwpck_require__.d(__webpack_exports__, {
5529
5494
 
5530
5495
  // UNUSED EXPORTS: AssertionError
5531
5496
 
5532
- // EXTERNAL MODULE: ./node_modules/tsafe/esm/is.mjs
5533
- var is = __nccwpck_require__(453);
5534
5497
  ;// CONCATENATED MODULE: ./node_modules/tsafe/esm/lab/overwriteReadonlyProp.mjs
5535
- var __assign = (undefined && undefined.__assign) || function () {
5536
- __assign = Object.assign || function(t) {
5537
- for (var s, i = 1, n = arguments.length; i < n; i++) {
5538
- s = arguments[i];
5539
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
5540
- t[p] = s[p];
5541
- }
5542
- return t;
5543
- };
5544
- return __assign.apply(this, arguments);
5545
- };
5546
5498
  /* eslint-disable no-empty */
5547
5499
  /* eslint-disable @typescript-eslint/no-explicit-any */
5548
-
5549
-
5550
5500
  /**
5551
5501
  * Assign a value to a property even if the object is freezed or if the property is not writable
5552
5502
  * Throw if the assignation fail ( for example if the property is non configurable write: false )
5553
5503
  * */
5554
- var overwriteReadonlyProp = function (obj, propertyName, value) {
5504
+ const overwriteReadonlyProp = (obj, propertyName, value) => {
5555
5505
  try {
5556
5506
  obj[propertyName] = value;
5557
5507
  }
5558
- catch (_a) { }
5508
+ catch { }
5559
5509
  if (obj[propertyName] === value) {
5560
5510
  return value;
5561
5511
  }
5562
- var errorDefineProperty = undefined;
5563
- var propertyDescriptor = Object.getOwnPropertyDescriptor(obj, propertyName) || {
5512
+ let errorDefineProperty = undefined;
5513
+ const propertyDescriptor = Object.getOwnPropertyDescriptor(obj, propertyName) || {
5564
5514
  "enumerable": true,
5565
5515
  "configurable": true,
5566
5516
  };
5567
5517
  if (!!propertyDescriptor.get) {
5568
- throw new Error("Probably a wrong ides to overwrite ".concat(String(propertyName), " getter"));
5518
+ throw new Error(`Probably a wrong ides to overwrite ${String(propertyName)} getter`);
5569
5519
  }
5570
5520
  try {
5571
- Object.defineProperty(obj, propertyName, __assign(__assign({}, propertyDescriptor), { value: value }));
5521
+ Object.defineProperty(obj, propertyName, {
5522
+ ...propertyDescriptor,
5523
+ value,
5524
+ });
5572
5525
  }
5573
5526
  catch (error) {
5574
- assert((0,is.is)(error));
5575
5527
  errorDefineProperty = error;
5576
5528
  }
5577
5529
  if (obj[propertyName] !== value) {
@@ -5579,74 +5531,35 @@ var overwriteReadonlyProp = function (obj, propertyName, value) {
5579
5531
  }
5580
5532
  return value;
5581
5533
  };
5534
+
5535
+
5582
5536
  //# sourceMappingURL=overwriteReadonlyProp.mjs.map
5537
+
5583
5538
  // EXTERNAL MODULE: ./node_modules/tsafe/esm/zz_internal/assertIsRefWrapper.mjs
5584
5539
  var assertIsRefWrapper = __nccwpck_require__(770);
5585
5540
  ;// CONCATENATED MODULE: ./node_modules/tsafe/esm/assert.mjs
5586
- var __extends = (undefined && undefined.__extends) || (function () {
5587
- var extendStatics = function (d, b) {
5588
- extendStatics = Object.setPrototypeOf ||
5589
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5590
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
5591
- return extendStatics(d, b);
5592
- };
5593
- return function (d, b) {
5594
- if (typeof b !== "function" && b !== null)
5595
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
5596
- extendStatics(d, b);
5597
- function __() { this.constructor = d; }
5598
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
5599
- };
5600
- })();
5601
- var __read = (undefined && undefined.__read) || function (o, n) {
5602
- var m = typeof Symbol === "function" && o[Symbol.iterator];
5603
- if (!m) return o;
5604
- var i = m.call(o), r, ar = [], e;
5605
- try {
5606
- while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
5607
- }
5608
- catch (error) { e = { error: error }; }
5609
- finally {
5610
- try {
5611
- if (r && !r.done && (m = i["return"])) m.call(i);
5612
- }
5613
- finally { if (e) throw e.error; }
5614
- }
5615
- return ar;
5616
- };
5617
- /* eslint-disable @typescript-eslint/no-unused-vars */
5618
5541
 
5619
5542
 
5543
+
5544
+ /* eslint-disable @typescript-eslint/no-unused-vars */
5620
5545
  /** @see <https://docs.tsafe.dev/assert#error-thrown> */
5621
- var AssertionError = /** @class */ (function (_super) {
5622
- __extends(AssertionError, _super);
5623
- function AssertionError(msg) {
5624
- var _newTarget = this.constructor;
5625
- var _this = _super.call(this, "Wrong assertion encountered" + (!msg ? "" : ": \"".concat(msg, "\""))) || this;
5626
- Object.setPrototypeOf(_this, _newTarget.prototype);
5627
- if (!_this.stack) {
5628
- return _this;
5546
+ class AssertionError extends Error {
5547
+ constructor(msg) {
5548
+ super(`Wrong assertion encountered` + (!msg ? "" : `: "${msg}"`));
5549
+ Object.setPrototypeOf(this, new.target.prototype);
5550
+ if (!this.stack) {
5551
+ return;
5629
5552
  }
5630
5553
  try {
5631
- overwriteReadonlyProp(_this, "stack", _this.stack
5554
+ overwriteReadonlyProp(this, "stack", this.stack
5632
5555
  .split("\n")
5633
- .filter(function () {
5634
- var _a = [];
5635
- for (var _i = 0; _i < arguments.length; _i++) {
5636
- _a[_i] = arguments[_i];
5637
- }
5638
- var _b = __read(_a, 2), i = _b[1];
5639
- return i !== 1 && i !== 2;
5640
- })
5556
+ .filter((...[, i]) => i !== 1 && i !== 2)
5641
5557
  .join("\n"));
5642
5558
  // eslint-disable-next-line no-empty
5643
5559
  }
5644
- catch (_a) { }
5645
- return _this;
5560
+ catch { }
5646
5561
  }
5647
- return AssertionError;
5648
- }(Error));
5649
-
5562
+ }
5650
5563
  /** https://docs.tsafe.dev/assert */
5651
5564
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
5652
5565
  function assert(condition, msg) {
@@ -5661,8 +5574,11 @@ function assert(condition, msg) {
5661
5574
  throw new AssertionError(msg);
5662
5575
  }
5663
5576
  }
5577
+
5578
+
5664
5579
  //# sourceMappingURL=assert.mjs.map
5665
5580
 
5581
+
5666
5582
  /***/ }),
5667
5583
 
5668
5584
  /***/ 469:
@@ -5673,41 +5589,11 @@ function assert(condition, msg) {
5673
5589
  /* harmony export */ "id": () => (/* binding */ id)
5674
5590
  /* harmony export */ });
5675
5591
  /** https://docs.tsafe.dev/id */
5676
- var id = function (x) { return x; };
5677
- //# sourceMappingURL=id.mjs.map
5678
-
5679
- /***/ }),
5592
+ const id = (x) => x;
5680
5593
 
5681
- /***/ 453:
5682
- /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __nccwpck_require__) => {
5683
5594
 
5684
- "use strict";
5685
- /* harmony export */ __nccwpck_require__.d(__webpack_exports__, {
5686
- /* harmony export */ "is": () => (/* binding */ is)
5687
- /* harmony export */ });
5688
- /* harmony import */ var _zz_internal_assertIsRefWrapper_mjs__WEBPACK_IMPORTED_MODULE_0__ = __nccwpck_require__(770);
5689
- /* eslint-disable @typescript-eslint/no-namespace */
5690
- /* eslint-disable @typescript-eslint/no-explicit-any */
5595
+ //# sourceMappingURL=id.mjs.map
5691
5596
 
5692
- var errorMessage = [
5693
- "Wrong usage of the ".concat(is.name, " function refer to"),
5694
- "https://docs.tsafe.dev/".concat(is.name.toLowerCase()),
5695
- ].join(" ");
5696
- function is(_value) {
5697
- var ref = {};
5698
- if (_zz_internal_assertIsRefWrapper_mjs__WEBPACK_IMPORTED_MODULE_0__/* .assertIsRefWrapper.ref */ .j.ref !== undefined) {
5699
- _zz_internal_assertIsRefWrapper_mjs__WEBPACK_IMPORTED_MODULE_0__/* .assertIsRefWrapper.ref */ .j.ref = undefined;
5700
- throw new Error(errorMessage);
5701
- }
5702
- _zz_internal_assertIsRefWrapper_mjs__WEBPACK_IMPORTED_MODULE_0__/* .assertIsRefWrapper.ref */ .j.ref = ref;
5703
- Promise.resolve().then(function () {
5704
- if (_zz_internal_assertIsRefWrapper_mjs__WEBPACK_IMPORTED_MODULE_0__/* .assertIsRefWrapper.ref */ .j.ref === ref) {
5705
- throw new Error(errorMessage);
5706
- }
5707
- });
5708
- return null;
5709
- }
5710
- //# sourceMappingURL=is.mjs.map
5711
5597
 
5712
5598
  /***/ }),
5713
5599
 
@@ -5720,11 +5606,15 @@ function is(_value) {
5720
5606
  /* harmony export */ });
5721
5607
  /* harmony import */ var _id_mjs__WEBPACK_IMPORTED_MODULE_0__ = __nccwpck_require__(469);
5722
5608
 
5723
- var assertIsRefWrapper = {
5609
+
5610
+ const assertIsRefWrapper = {
5724
5611
  "ref": (0,_id_mjs__WEBPACK_IMPORTED_MODULE_0__.id)(undefined),
5725
5612
  };
5613
+
5614
+
5726
5615
  //# sourceMappingURL=assertIsRefWrapper.mjs.map
5727
5616
 
5617
+
5728
5618
  /***/ }),
5729
5619
 
5730
5620
  /***/ 300: