keycloakify 11.6.0 → 11.6.2
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/{805.index.js → 174.index.js} +111 -2
- package/bin/363.index.js +1528 -0
- package/bin/453.index.js +1 -1
- package/bin/{33.index.js → 568.index.js} +2 -113
- package/bin/735.index.js +53 -24
- package/bin/{653.index.js → 840.index.js} +387 -213
- package/bin/921.index.js +1 -1
- package/bin/930.index.js +165 -0
- package/bin/946.index.js +20 -0
- package/bin/initialize-admin-theme.d.ts +4 -0
- package/bin/main.js +72 -18
- package/bin/{eject-file.d.ts → own.d.ts} +2 -1
- package/bin/shared/addSyncExtensionsToPostinstallScript.d.ts +10 -0
- package/bin/shared/customHandler.d.ts +1 -1
- package/bin/shared/customHandler.js.map +1 -1
- package/bin/{postinstall/uiModuleMeta.d.ts → sync-extensions/extensionModuleMeta.d.ts} +5 -5
- package/bin/sync-extensions/getExtensionModuleFileSourceCodeReadyToBeCopied.d.ts +12 -0
- package/bin/sync-extensions/index.d.ts +1 -0
- package/bin/{postinstall/installUiModulesPeerDependencies.d.ts → sync-extensions/installExtensionModulesPeerDependencies.d.ts} +3 -3
- package/bin/{postinstall → sync-extensions}/managedGitignoreFile.d.ts +4 -4
- package/bin/tools/isKnownByGit.d.ts +3 -0
- package/bin/tools/npmInstall.d.ts +1 -1
- package/package.json +27 -22
- package/src/bin/eject-page.ts +1 -3
- package/src/bin/initialize-account-theme/initializeAccountTheme_singlePage.ts +3 -1
- package/src/bin/initialize-admin-theme.ts +146 -0
- package/src/bin/main.ts +76 -17
- package/src/bin/own.ts +209 -0
- package/src/bin/shared/addSyncExtensionsToPostinstallScript.ts +70 -0
- package/src/bin/shared/customHandler.ts +1 -0
- package/src/bin/{postinstall/uiModuleMeta.ts → sync-extensions/extensionModuleMeta.ts} +55 -43
- package/src/bin/{postinstall/getUiModuleFileSourceCodeReadyToBeCopied.ts → sync-extensions/getExtensionModuleFileSourceCodeReadyToBeCopied.ts} +32 -21
- package/src/bin/sync-extensions/index.ts +1 -0
- package/src/bin/{postinstall/installUiModulesPeerDependencies.ts → sync-extensions/installExtensionModulesPeerDependencies.ts} +16 -14
- package/src/bin/{postinstall → sync-extensions}/managedGitignoreFile.ts +18 -18
- package/src/bin/{postinstall/postinstall.ts → sync-extensions/sync-extension.ts} +14 -26
- package/src/bin/tools/isKnownByGit.ts +45 -0
- package/src/bin/tools/listInstalledModules.ts +2 -2
- package/src/bin/tools/npmInstall.ts +46 -9
- package/src/bin/tools/untrackFromGit.ts +19 -3
- package/bin/356.index.js +0 -755
- package/bin/854.index.js +0 -68
- package/bin/postinstall/getUiModuleFileSourceCodeReadyToBeCopied.d.ts +0 -12
- package/bin/postinstall/index.d.ts +0 -1
- package/bin/tools/isTrackedByGit.d.ts +0 -3
- package/src/bin/eject-file.ts +0 -68
- package/src/bin/postinstall/index.ts +0 -1
- package/src/bin/tools/isTrackedByGit.ts +0 -29
- /package/bin/{postinstall/postinstall.d.ts → sync-extensions/sync-extension.d.ts} +0 -0
@@ -1,8 +1,64 @@
|
|
1
1
|
"use strict";
|
2
|
-
exports.id =
|
3
|
-
exports.ids = [
|
2
|
+
exports.id = 174;
|
3
|
+
exports.ids = [174];
|
4
4
|
exports.modules = {
|
5
5
|
|
6
|
+
/***/ 50689:
|
7
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
8
|
+
|
9
|
+
|
10
|
+
var __extends = (this && this.__extends) || (function () {
|
11
|
+
var extendStatics = function (d, b) {
|
12
|
+
extendStatics = Object.setPrototypeOf ||
|
13
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
14
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
15
|
+
return extendStatics(d, b);
|
16
|
+
};
|
17
|
+
return function (d, b) {
|
18
|
+
if (typeof b !== "function" && b !== null)
|
19
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
20
|
+
extendStatics(d, b);
|
21
|
+
function __() { this.constructor = d; }
|
22
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
23
|
+
};
|
24
|
+
})();
|
25
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
26
|
+
exports.VoidDeferred = exports.Deferred = void 0;
|
27
|
+
var overwriteReadonlyProp_1 = __webpack_require__(47803);
|
28
|
+
var Deferred = /** @class */ (function () {
|
29
|
+
function Deferred() {
|
30
|
+
var _this_1 = this;
|
31
|
+
this.isPending = true;
|
32
|
+
var resolve;
|
33
|
+
var reject;
|
34
|
+
this.pr = new Promise(function (resolve_, reject_) {
|
35
|
+
resolve = function (value) {
|
36
|
+
(0, overwriteReadonlyProp_1.overwriteReadonlyProp)(_this_1, "isPending", false);
|
37
|
+
resolve_(value);
|
38
|
+
};
|
39
|
+
reject = function (error) {
|
40
|
+
(0, overwriteReadonlyProp_1.overwriteReadonlyProp)(_this_1, "isPending", false);
|
41
|
+
reject_(error);
|
42
|
+
};
|
43
|
+
});
|
44
|
+
this.resolve = resolve;
|
45
|
+
this.reject = reject;
|
46
|
+
}
|
47
|
+
return Deferred;
|
48
|
+
}());
|
49
|
+
exports.Deferred = Deferred;
|
50
|
+
var VoidDeferred = /** @class */ (function (_super) {
|
51
|
+
__extends(VoidDeferred, _super);
|
52
|
+
function VoidDeferred() {
|
53
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
54
|
+
}
|
55
|
+
return VoidDeferred;
|
56
|
+
}(Deferred));
|
57
|
+
exports.VoidDeferred = VoidDeferred;
|
58
|
+
//# sourceMappingURL=Deferred.js.map
|
59
|
+
|
60
|
+
/***/ }),
|
61
|
+
|
6
62
|
/***/ 53501:
|
7
63
|
/***/ (function(__unused_webpack_module, exports) {
|
8
64
|
|
@@ -653,6 +709,59 @@ exports.Polyfill = typeof Set !== "undefined" ? Set : LightSetImpl;
|
|
653
709
|
|
654
710
|
/***/ }),
|
655
711
|
|
712
|
+
/***/ 47803:
|
713
|
+
/***/ (function(__unused_webpack_module, exports) {
|
714
|
+
|
715
|
+
|
716
|
+
var __assign = (this && this.__assign) || function () {
|
717
|
+
__assign = Object.assign || function(t) {
|
718
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
719
|
+
s = arguments[i];
|
720
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
721
|
+
t[p] = s[p];
|
722
|
+
}
|
723
|
+
return t;
|
724
|
+
};
|
725
|
+
return __assign.apply(this, arguments);
|
726
|
+
};
|
727
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
728
|
+
exports.overwriteReadonlyProp = void 0;
|
729
|
+
/**
|
730
|
+
* Assign a value to a property even if the object is freezed or if the property is not writable
|
731
|
+
* Throw if the assignation fail ( for example if the property is non configurable write: false )
|
732
|
+
* */
|
733
|
+
var overwriteReadonlyProp = function (obj, propertyName, value) {
|
734
|
+
try {
|
735
|
+
obj[propertyName] = value;
|
736
|
+
}
|
737
|
+
catch (_a) { }
|
738
|
+
if (obj[propertyName] === value) {
|
739
|
+
return value;
|
740
|
+
}
|
741
|
+
var errorDefineProperty = undefined;
|
742
|
+
var propertyDescriptor = Object.getOwnPropertyDescriptor(obj, propertyName) || {
|
743
|
+
"enumerable": true,
|
744
|
+
"configurable": true,
|
745
|
+
};
|
746
|
+
if (!!propertyDescriptor.get) {
|
747
|
+
throw new Error("Probably a wrong ides to overwrite ".concat(String(propertyName), " getter"));
|
748
|
+
}
|
749
|
+
try {
|
750
|
+
Object.defineProperty(obj, propertyName, __assign(__assign({}, propertyDescriptor), { value: value }));
|
751
|
+
}
|
752
|
+
catch (error) {
|
753
|
+
errorDefineProperty = error;
|
754
|
+
}
|
755
|
+
if (obj[propertyName] !== value) {
|
756
|
+
throw errorDefineProperty || new Error("Can't assign");
|
757
|
+
}
|
758
|
+
return value;
|
759
|
+
};
|
760
|
+
exports.overwriteReadonlyProp = overwriteReadonlyProp;
|
761
|
+
//# sourceMappingURL=overwriteReadonlyProp.js.map
|
762
|
+
|
763
|
+
/***/ }),
|
764
|
+
|
656
765
|
/***/ 47393:
|
657
766
|
/***/ ((__unused_webpack_module, exports) => {
|
658
767
|
|