keycloakify 11.2.2 → 11.2.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/bin/main.js CHANGED
@@ -40,8 +40,7 @@ function getThisCodebaseRootDirPath() {
40
40
  /* harmony export */ "K": () => (/* binding */ readThisNpmPackageVersion)
41
41
  /* harmony export */ });
42
42
  /* harmony import */ var _getThisCodebaseRootDirPath__WEBPACK_IMPORTED_MODULE_0__ = __nccwpck_require__(58822);
43
- /* harmony import */ var tsafe_assert__WEBPACK_IMPORTED_MODULE_1__ = __nccwpck_require__(88078);
44
- /* harmony import */ var tsafe_assert__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__nccwpck_require__.n(tsafe_assert__WEBPACK_IMPORTED_MODULE_1__);
43
+ /* harmony import */ var tsafe_assert__WEBPACK_IMPORTED_MODULE_1__ = __nccwpck_require__(29041);
45
44
  /* harmony import */ var fs__WEBPACK_IMPORTED_MODULE_2__ = __nccwpck_require__(57147);
46
45
  /* harmony import */ var fs__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__nccwpck_require__.n(fs__WEBPACK_IMPORTED_MODULE_2__);
47
46
  /* harmony import */ var path__WEBPACK_IMPORTED_MODULE_3__ = __nccwpck_require__(71017);
@@ -53,7 +52,7 @@ function getThisCodebaseRootDirPath() {
53
52
  function readThisNpmPackageVersion() {
54
53
  const version = JSON.parse(fs__WEBPACK_IMPORTED_MODULE_2__.readFileSync((0,path__WEBPACK_IMPORTED_MODULE_3__.join)((0,_getThisCodebaseRootDirPath__WEBPACK_IMPORTED_MODULE_0__/* .getThisCodebaseRootDirPath */ .e)(), "package.json"))
55
54
  .toString("utf8"))["version"];
56
- (0,tsafe_assert__WEBPACK_IMPORTED_MODULE_1__.assert)(typeof version === "string");
55
+ (0,tsafe_assert__WEBPACK_IMPORTED_MODULE_1__/* .assert */ .h)(typeof version === "string");
57
56
  return version;
58
57
  }
59
58
  //# sourceMappingURL=readThisNpmPackageVersion.js.map
@@ -8177,217 +8176,6 @@ exports.defineExport = (obj, key, fn) => {
8177
8176
  };
8178
8177
 
8179
8178
 
8180
- /***/ }),
8181
-
8182
- /***/ 88078:
8183
- /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
8184
-
8185
- "use strict";
8186
-
8187
- var __extends = (this && this.__extends) || (function () {
8188
- var extendStatics = function (d, b) {
8189
- extendStatics = Object.setPrototypeOf ||
8190
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
8191
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
8192
- return extendStatics(d, b);
8193
- };
8194
- return function (d, b) {
8195
- if (typeof b !== "function" && b !== null)
8196
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
8197
- extendStatics(d, b);
8198
- function __() { this.constructor = d; }
8199
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
8200
- };
8201
- })();
8202
- var __read = (this && this.__read) || function (o, n) {
8203
- var m = typeof Symbol === "function" && o[Symbol.iterator];
8204
- if (!m) return o;
8205
- var i = m.call(o), r, ar = [], e;
8206
- try {
8207
- while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
8208
- }
8209
- catch (error) { e = { error: error }; }
8210
- finally {
8211
- try {
8212
- if (r && !r.done && (m = i["return"])) m.call(i);
8213
- }
8214
- finally { if (e) throw e.error; }
8215
- }
8216
- return ar;
8217
- };
8218
- Object.defineProperty(exports, "__esModule", ({ value: true }));
8219
- exports.assert = exports.AssertionError = void 0;
8220
- /* eslint-disable @typescript-eslint/no-unused-vars */
8221
- var overwriteReadonlyProp_1 = __nccwpck_require__(47803);
8222
- var assertIsRefWrapper_1 = __nccwpck_require__(92562);
8223
- /** @see <https://docs.tsafe.dev/assert#error-thrown> */
8224
- var AssertionError = /** @class */ (function (_super) {
8225
- __extends(AssertionError, _super);
8226
- function AssertionError(msg) {
8227
- var _newTarget = this.constructor;
8228
- var _this = _super.call(this, "Wrong assertion encountered" + (!msg ? "" : ": \"".concat(msg, "\""))) || this;
8229
- Object.setPrototypeOf(_this, _newTarget.prototype);
8230
- if (!_this.stack) {
8231
- return _this;
8232
- }
8233
- try {
8234
- (0, overwriteReadonlyProp_1.overwriteReadonlyProp)(_this, "stack", _this.stack
8235
- .split("\n")
8236
- .filter(function () {
8237
- var _a = [];
8238
- for (var _i = 0; _i < arguments.length; _i++) {
8239
- _a[_i] = arguments[_i];
8240
- }
8241
- var _b = __read(_a, 2), i = _b[1];
8242
- return i !== 1 && i !== 2;
8243
- })
8244
- .join("\n"));
8245
- // eslint-disable-next-line no-empty
8246
- }
8247
- catch (_a) { }
8248
- return _this;
8249
- }
8250
- return AssertionError;
8251
- }(Error));
8252
- exports.AssertionError = AssertionError;
8253
- /** https://docs.tsafe.dev/assert */
8254
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
8255
- function assert(condition, msg) {
8256
- if (arguments.length === 0) {
8257
- condition = true;
8258
- }
8259
- if (assertIsRefWrapper_1.assertIsRefWrapper.ref !== undefined) {
8260
- assertIsRefWrapper_1.assertIsRefWrapper.ref = undefined;
8261
- return;
8262
- }
8263
- if (!condition) {
8264
- throw new AssertionError(msg);
8265
- }
8266
- }
8267
- exports.assert = assert;
8268
- //# sourceMappingURL=assert.js.map
8269
-
8270
- /***/ }),
8271
-
8272
- /***/ 43047:
8273
- /***/ ((__unused_webpack_module, exports) => {
8274
-
8275
- "use strict";
8276
-
8277
- Object.defineProperty(exports, "__esModule", ({ value: true }));
8278
- exports.id = void 0;
8279
- /** https://docs.tsafe.dev/id */
8280
- var id = function (x) { return x; };
8281
- exports.id = id;
8282
- //# sourceMappingURL=id.js.map
8283
-
8284
- /***/ }),
8285
-
8286
- /***/ 94655:
8287
- /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
8288
-
8289
- "use strict";
8290
-
8291
- /* eslint-disable @typescript-eslint/no-namespace */
8292
- /* eslint-disable @typescript-eslint/no-explicit-any */
8293
- Object.defineProperty(exports, "__esModule", ({ value: true }));
8294
- exports.is = void 0;
8295
- var assertIsRefWrapper_1 = __nccwpck_require__(92562);
8296
- var errorMessage = [
8297
- "Wrong usage of the ".concat(is.name, " function refer to"),
8298
- "https://docs.tsafe.dev/".concat(is.name.toLowerCase()),
8299
- ].join(" ");
8300
- function is(_value) {
8301
- var ref = {};
8302
- if (assertIsRefWrapper_1.assertIsRefWrapper.ref !== undefined) {
8303
- assertIsRefWrapper_1.assertIsRefWrapper.ref = undefined;
8304
- throw new Error(errorMessage);
8305
- }
8306
- assertIsRefWrapper_1.assertIsRefWrapper.ref = ref;
8307
- Promise.resolve().then(function () {
8308
- if (assertIsRefWrapper_1.assertIsRefWrapper.ref === ref) {
8309
- throw new Error(errorMessage);
8310
- }
8311
- });
8312
- return null;
8313
- }
8314
- exports.is = is;
8315
- //# sourceMappingURL=is.js.map
8316
-
8317
- /***/ }),
8318
-
8319
- /***/ 47803:
8320
- /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
8321
-
8322
- "use strict";
8323
-
8324
- var __assign = (this && this.__assign) || function () {
8325
- __assign = Object.assign || function(t) {
8326
- for (var s, i = 1, n = arguments.length; i < n; i++) {
8327
- s = arguments[i];
8328
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
8329
- t[p] = s[p];
8330
- }
8331
- return t;
8332
- };
8333
- return __assign.apply(this, arguments);
8334
- };
8335
- Object.defineProperty(exports, "__esModule", ({ value: true }));
8336
- exports.overwriteReadonlyProp = void 0;
8337
- /* eslint-disable no-empty */
8338
- /* eslint-disable @typescript-eslint/no-explicit-any */
8339
- var assert_1 = __nccwpck_require__(88078);
8340
- var is_1 = __nccwpck_require__(94655);
8341
- /**
8342
- * Assign a value to a property even if the object is freezed or if the property is not writable
8343
- * Throw if the assignation fail ( for example if the property is non configurable write: false )
8344
- * */
8345
- var overwriteReadonlyProp = function (obj, propertyName, value) {
8346
- try {
8347
- obj[propertyName] = value;
8348
- }
8349
- catch (_a) { }
8350
- if (obj[propertyName] === value) {
8351
- return value;
8352
- }
8353
- var errorDefineProperty = undefined;
8354
- var propertyDescriptor = Object.getOwnPropertyDescriptor(obj, propertyName) || {
8355
- "enumerable": true,
8356
- "configurable": true,
8357
- };
8358
- if (!!propertyDescriptor.get) {
8359
- throw new Error("Probably a wrong ides to overwrite ".concat(String(propertyName), " getter"));
8360
- }
8361
- try {
8362
- Object.defineProperty(obj, propertyName, __assign(__assign({}, propertyDescriptor), { value: value }));
8363
- }
8364
- catch (error) {
8365
- (0, assert_1.assert)((0, is_1.is)(error));
8366
- errorDefineProperty = error;
8367
- }
8368
- if (obj[propertyName] !== value) {
8369
- throw errorDefineProperty || new Error("Can't assign");
8370
- }
8371
- return value;
8372
- };
8373
- exports.overwriteReadonlyProp = overwriteReadonlyProp;
8374
- //# sourceMappingURL=overwriteReadonlyProp.js.map
8375
-
8376
- /***/ }),
8377
-
8378
- /***/ 92562:
8379
- /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
8380
-
8381
- "use strict";
8382
-
8383
- Object.defineProperty(exports, "__esModule", ({ value: true }));
8384
- exports.assertIsRefWrapper = void 0;
8385
- var id_1 = __nccwpck_require__(43047);
8386
- exports.assertIsRefWrapper = {
8387
- "ref": (0, id_1.id)(undefined),
8388
- };
8389
- //# sourceMappingURL=assertIsRefWrapper.js.map
8390
-
8391
8179
  /***/ }),
8392
8180
 
8393
8181
  /***/ 39491:
@@ -8572,6 +8360,216 @@ module.exports = require("util");
8572
8360
  "use strict";
8573
8361
  module.exports = require("zlib");
8574
8362
 
8363
+ /***/ }),
8364
+
8365
+ /***/ 29041:
8366
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __nccwpck_require__) => {
8367
+
8368
+ "use strict";
8369
+
8370
+ // EXPORTS
8371
+ __nccwpck_require__.d(__webpack_exports__, {
8372
+ "h": () => (/* binding */ assert)
8373
+ });
8374
+
8375
+ // UNUSED EXPORTS: AssertionError
8376
+
8377
+ // EXTERNAL MODULE: ./node_modules/tsafe/esm/is.mjs
8378
+ var is = __nccwpck_require__(16453);
8379
+ ;// 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
+ /* eslint-disable no-empty */
8392
+ /* eslint-disable @typescript-eslint/no-explicit-any */
8393
+
8394
+
8395
+ /**
8396
+ * Assign a value to a property even if the object is freezed or if the property is not writable
8397
+ * Throw if the assignation fail ( for example if the property is non configurable write: false )
8398
+ * */
8399
+ var overwriteReadonlyProp = function (obj, propertyName, value) {
8400
+ try {
8401
+ obj[propertyName] = value;
8402
+ }
8403
+ catch (_a) { }
8404
+ if (obj[propertyName] === value) {
8405
+ return value;
8406
+ }
8407
+ var errorDefineProperty = undefined;
8408
+ var propertyDescriptor = Object.getOwnPropertyDescriptor(obj, propertyName) || {
8409
+ "enumerable": true,
8410
+ "configurable": true,
8411
+ };
8412
+ if (!!propertyDescriptor.get) {
8413
+ throw new Error("Probably a wrong ides to overwrite ".concat(String(propertyName), " getter"));
8414
+ }
8415
+ try {
8416
+ Object.defineProperty(obj, propertyName, __assign(__assign({}, propertyDescriptor), { value: value }));
8417
+ }
8418
+ catch (error) {
8419
+ assert((0,is.is)(error));
8420
+ errorDefineProperty = error;
8421
+ }
8422
+ if (obj[propertyName] !== value) {
8423
+ throw errorDefineProperty || new Error("Can't assign");
8424
+ }
8425
+ return value;
8426
+ };
8427
+ //# sourceMappingURL=overwriteReadonlyProp.mjs.map
8428
+ // EXTERNAL MODULE: ./node_modules/tsafe/esm/zz_internal/assertIsRefWrapper.mjs
8429
+ var assertIsRefWrapper = __nccwpck_require__(49770);
8430
+ ;// 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
+
8464
+
8465
+ /** @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;
8474
+ }
8475
+ try {
8476
+ overwriteReadonlyProp(_this, "stack", _this.stack
8477
+ .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
+ })
8486
+ .join("\n"));
8487
+ // eslint-disable-next-line no-empty
8488
+ }
8489
+ catch (_a) { }
8490
+ return _this;
8491
+ }
8492
+ return AssertionError;
8493
+ }(Error));
8494
+
8495
+ /** https://docs.tsafe.dev/assert */
8496
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
8497
+ function assert(condition, msg) {
8498
+ if (arguments.length === 0) {
8499
+ condition = true;
8500
+ }
8501
+ if (assertIsRefWrapper/* assertIsRefWrapper.ref */.j.ref !== undefined) {
8502
+ assertIsRefWrapper/* assertIsRefWrapper.ref */.j.ref = undefined;
8503
+ return;
8504
+ }
8505
+ if (!condition) {
8506
+ throw new AssertionError(msg);
8507
+ }
8508
+ }
8509
+ //# sourceMappingURL=assert.mjs.map
8510
+
8511
+ /***/ }),
8512
+
8513
+ /***/ 38469:
8514
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __nccwpck_require__) => {
8515
+
8516
+ "use strict";
8517
+ /* harmony export */ __nccwpck_require__.d(__webpack_exports__, {
8518
+ /* harmony export */ "id": () => (/* binding */ id)
8519
+ /* harmony export */ });
8520
+ /** https://docs.tsafe.dev/id */
8521
+ var id = function (x) { return x; };
8522
+ //# sourceMappingURL=id.mjs.map
8523
+
8524
+ /***/ }),
8525
+
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 */
8536
+
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
+
8557
+ /***/ }),
8558
+
8559
+ /***/ 49770:
8560
+ /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __nccwpck_require__) => {
8561
+
8562
+ "use strict";
8563
+ /* harmony export */ __nccwpck_require__.d(__webpack_exports__, {
8564
+ /* harmony export */ "j": () => (/* binding */ assertIsRefWrapper)
8565
+ /* harmony export */ });
8566
+ /* harmony import */ var _id_mjs__WEBPACK_IMPORTED_MODULE_0__ = __nccwpck_require__(38469);
8567
+
8568
+ var assertIsRefWrapper = {
8569
+ "ref": (0,_id_mjs__WEBPACK_IMPORTED_MODULE_0__.id)(undefined),
8570
+ };
8571
+ //# sourceMappingURL=assertIsRefWrapper.mjs.map
8572
+
8575
8573
  /***/ })
8576
8574
 
8577
8575
  /******/ });
@@ -11312,7 +11310,7 @@ program
11312
11310
  .task({
11313
11311
  skip,
11314
11312
  handler: async (cliCommandOptions) => {
11315
- const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(941), __nccwpck_require__.e(860), __nccwpck_require__.e(31), __nccwpck_require__.e(573)]).then(__nccwpck_require__.bind(__nccwpck_require__, 82573));
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));
11316
11314
  await command({ cliCommandOptions });
11317
11315
  }
11318
11316
  });
@@ -11360,7 +11358,7 @@ program
11360
11358
  .task({
11361
11359
  skip,
11362
11360
  handler: async (cliCommandOptions) => {
11363
- const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(941), __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));
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));
11364
11362
  await command({ cliCommandOptions });
11365
11363
  }
11366
11364
  });
@@ -11372,7 +11370,7 @@ program
11372
11370
  .task({
11373
11371
  skip,
11374
11372
  handler: async (cliCommandOptions) => {
11375
- const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(941), __nccwpck_require__.e(31), __nccwpck_require__.e(453)]).then(__nccwpck_require__.bind(__nccwpck_require__, 93453));
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));
11376
11374
  await command({ cliCommandOptions });
11377
11375
  }
11378
11376
  });
@@ -11384,7 +11382,7 @@ program
11384
11382
  .task({
11385
11383
  skip,
11386
11384
  handler: async (cliCommandOptions) => {
11387
- const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(941), __nccwpck_require__.e(31), __nccwpck_require__.e(97)]).then(__nccwpck_require__.bind(__nccwpck_require__, 98097));
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));
11388
11386
  await command({ cliCommandOptions });
11389
11387
  }
11390
11388
  });
@@ -11396,7 +11394,7 @@ program
11396
11394
  .task({
11397
11395
  skip,
11398
11396
  handler: async (cliCommandOptions) => {
11399
- const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(941), __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));
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));
11400
11398
  await command({ cliCommandOptions });
11401
11399
  }
11402
11400
  });
@@ -11408,7 +11406,7 @@ program
11408
11406
  .task({
11409
11407
  skip,
11410
11408
  handler: async (cliCommandOptions) => {
11411
- const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(941), __nccwpck_require__.e(31), __nccwpck_require__.e(780)]).then(__nccwpck_require__.bind(__nccwpck_require__, 75780));
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));
11412
11410
  await command({ cliCommandOptions });
11413
11411
  }
11414
11412
  });
@@ -11420,7 +11418,7 @@ program
11420
11418
  .task({
11421
11419
  skip,
11422
11420
  handler: async (cliCommandOptions) => {
11423
- const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(941), __nccwpck_require__.e(31), __nccwpck_require__.e(193)]).then(__nccwpck_require__.bind(__nccwpck_require__, 23193));
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));
11424
11422
  await command({ cliCommandOptions });
11425
11423
  }
11426
11424
  });
@@ -11432,7 +11430,7 @@ program
11432
11430
  .task({
11433
11431
  skip,
11434
11432
  handler: async (cliCommandOptions) => {
11435
- const { command } = await Promise.all(/* import() */[__nccwpck_require__.e(941), __nccwpck_require__.e(31), __nccwpck_require__.e(786)]).then(__nccwpck_require__.bind(__nccwpck_require__, 10786));
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));
11436
11434
  await command({ cliCommandOptions });
11437
11435
  }
11438
11436
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keycloakify",
3
- "version": "11.2.2",
3
+ "version": "11.2.4",
4
4
  "description": "Framework to create custom Keycloak UIs",
5
5
  "repository": {
6
6
  "type": "git",
@@ -979,6 +979,7 @@
979
979
  "bin/main.js",
980
980
  "bin/193.index.js",
981
981
  "bin/20.index.js",
982
+ "bin/238.index.js",
982
983
  "bin/266.index.js",
983
984
  "bin/304.index.js",
984
985
  "bin/31.index.js",
@@ -991,12 +992,11 @@
991
992
  "bin/720.index.js",
992
993
  "bin/743.index.js",
993
994
  "bin/780.index.js",
995
+ "bin/783.index.js",
994
996
  "bin/786.index.js",
995
- "bin/860.index.js",
996
997
  "bin/877.index.js",
997
998
  "bin/903.index.js",
998
999
  "bin/932.index.js",
999
- "bin/941.index.js",
1000
1000
  "bin/97.index.js",
1001
1001
  "bin/shared/constants.js",
1002
1002
  "bin/shared/buildContext.d.ts",
@@ -1032,7 +1032,7 @@
1032
1032
  ],
1033
1033
  "homepage": "https://www.keycloakify.dev",
1034
1034
  "dependencies": {
1035
- "tsafe": "^1.6.6"
1035
+ "tsafe": "^1.7.4"
1036
1036
  },
1037
1037
  "devDependencies": {
1038
1038
  "@babel/core": "^7.24.5",
@@ -166,7 +166,7 @@ function decodeHtmlEntities(htmlStr){
166
166
  areSamePath(path, []) &&
167
167
  ["login-idp-link-confirm.ftl", "login-idp-link-email.ftl" ]?seq_contains(xKeycloakify.pageId)
168
168
  ) || (
169
- ["masterAdminClient", "delegateForUpdate", "defaultRole"]?seq_contains(key) &&
169
+ ["masterAdminClient", "delegateForUpdate", "defaultRole", "smtpConfig"]?seq_contains(key) &&
170
170
  areSamePath(path, ["realm"])
171
171
  ) || (
172
172
  xKeycloakify.pageId == "error.ftl" &&