@digipair/skill-keycloak 0.119.0 → 0.119.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.esm.js +90 -82
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -22846,14 +22846,14 @@ function indent(str, spaces) {
|
|
|
22846
22846
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
22847
22847
|
// match is required
|
|
22848
22848
|
if (!match) {
|
|
22849
|
-
return
|
|
22849
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
|
|
22850
22850
|
v: nextMatch1
|
|
22851
22851
|
};
|
|
22852
22852
|
}
|
|
22853
22853
|
var token = match.token, offset = match.offset;
|
|
22854
22854
|
i1 += offset;
|
|
22855
22855
|
if (token === ' ') {
|
|
22856
|
-
return
|
|
22856
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
|
|
22857
22857
|
}
|
|
22858
22858
|
tokens1 = _to_consumable_array$4(tokens1).concat([
|
|
22859
22859
|
token
|
|
@@ -22872,7 +22872,7 @@ function indent(str, spaces) {
|
|
|
22872
22872
|
if (contextKeys.some(function(el) {
|
|
22873
22873
|
return el.startsWith(name);
|
|
22874
22874
|
})) {
|
|
22875
|
-
return
|
|
22875
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
|
|
22876
22876
|
}
|
|
22877
22877
|
if (dateTimeIdentifiers.some(function(el) {
|
|
22878
22878
|
return el === name;
|
|
@@ -22891,9 +22891,9 @@ function indent(str, spaces) {
|
|
|
22891
22891
|
if (dateTimeIdentifiers.some(function(el) {
|
|
22892
22892
|
return el.startsWith(name);
|
|
22893
22893
|
})) {
|
|
22894
|
-
return
|
|
22894
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
|
|
22895
22895
|
}
|
|
22896
|
-
return
|
|
22896
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
|
|
22897
22897
|
v: nextMatch1
|
|
22898
22898
|
};
|
|
22899
22899
|
};
|
|
@@ -41552,7 +41552,7 @@ function _class_call_check$3(instance, Constructor) {
|
|
|
41552
41552
|
throw new TypeError("Cannot call a class as a function");
|
|
41553
41553
|
}
|
|
41554
41554
|
}
|
|
41555
|
-
function _defineProperties$1
|
|
41555
|
+
function _defineProperties$1(target, props) {
|
|
41556
41556
|
for(var i = 0; i < props.length; i++){
|
|
41557
41557
|
var descriptor = props[i];
|
|
41558
41558
|
descriptor.enumerable = descriptor.enumerable || false;
|
|
@@ -41561,9 +41561,9 @@ function _defineProperties$1$1(target, props) {
|
|
|
41561
41561
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
41562
41562
|
}
|
|
41563
41563
|
}
|
|
41564
|
-
function _create_class$1
|
|
41565
|
-
if (protoProps) _defineProperties$1
|
|
41566
|
-
if (staticProps) _defineProperties$1
|
|
41564
|
+
function _create_class$1(Constructor, protoProps, staticProps) {
|
|
41565
|
+
if (protoProps) _defineProperties$1(Constructor.prototype, protoProps);
|
|
41566
|
+
if (staticProps) _defineProperties$1(Constructor, staticProps);
|
|
41567
41567
|
return Constructor;
|
|
41568
41568
|
}
|
|
41569
41569
|
function _get_prototype_of$3(o) {
|
|
@@ -41682,7 +41682,7 @@ var Parser = /*#__PURE__*/ function() {
|
|
|
41682
41682
|
this.skipValidations = has$1(config, "skipValidations") ? config.skipValidations // casting assumes the end user passing the correct type
|
|
41683
41683
|
: DEFAULT_PARSER_CONFIG.skipValidations;
|
|
41684
41684
|
}
|
|
41685
|
-
_create_class$1
|
|
41685
|
+
_create_class$1(Parser, [
|
|
41686
41686
|
{
|
|
41687
41687
|
key: "performSelfAnalysis",
|
|
41688
41688
|
value: function performSelfAnalysis() {
|
|
@@ -42894,7 +42894,7 @@ function _assert_this_initialized$1(self1) {
|
|
|
42894
42894
|
}
|
|
42895
42895
|
return self1;
|
|
42896
42896
|
}
|
|
42897
|
-
function _class_call_check$1
|
|
42897
|
+
function _class_call_check$1(instance, Constructor) {
|
|
42898
42898
|
if (!(instance instanceof Constructor)) {
|
|
42899
42899
|
throw new TypeError("Cannot call a class as a function");
|
|
42900
42900
|
}
|
|
@@ -42976,7 +42976,7 @@ var CelParser = /*#__PURE__*/ function(CstParser) {
|
|
|
42976
42976
|
_inherits$1(CelParser, CstParser);
|
|
42977
42977
|
var _super = _create_super$1(CelParser);
|
|
42978
42978
|
function CelParser() {
|
|
42979
|
-
_class_call_check$1
|
|
42979
|
+
_class_call_check$1(this, CelParser);
|
|
42980
42980
|
var _this;
|
|
42981
42981
|
_this = _super.call(this, allTokens);
|
|
42982
42982
|
_define_property$2(_assert_this_initialized$1(_this), "expr", _this.RULE('expr', function() {
|
|
@@ -45959,12 +45959,12 @@ var identifiers$1 = {
|
|
|
45959
45959
|
rcompareIdentifiers: rcompareIdentifiers
|
|
45960
45960
|
};
|
|
45961
45961
|
|
|
45962
|
-
function _class_call_check
|
|
45962
|
+
function _class_call_check(instance, Constructor) {
|
|
45963
45963
|
if (!(instance instanceof Constructor)) {
|
|
45964
45964
|
throw new TypeError("Cannot call a class as a function");
|
|
45965
45965
|
}
|
|
45966
45966
|
}
|
|
45967
|
-
function _defineProperties
|
|
45967
|
+
function _defineProperties(target, props) {
|
|
45968
45968
|
for(var i = 0; i < props.length; i++){
|
|
45969
45969
|
var descriptor = props[i];
|
|
45970
45970
|
descriptor.enumerable = descriptor.enumerable || false;
|
|
@@ -45973,8 +45973,8 @@ function _defineProperties$1(target, props) {
|
|
|
45973
45973
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
45974
45974
|
}
|
|
45975
45975
|
}
|
|
45976
|
-
function _create_class
|
|
45977
|
-
if (protoProps) _defineProperties
|
|
45976
|
+
function _create_class(Constructor, protoProps, staticProps) {
|
|
45977
|
+
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
45978
45978
|
return Constructor;
|
|
45979
45979
|
}
|
|
45980
45980
|
function _instanceof$6(left, right) {
|
|
@@ -45995,7 +45995,7 @@ var parseOptions = parseOptions_1;
|
|
|
45995
45995
|
var compareIdentifiers = identifiers$1.compareIdentifiers;
|
|
45996
45996
|
var SemVer$d = /*#__PURE__*/ function() {
|
|
45997
45997
|
function SemVer(version, options) {
|
|
45998
|
-
_class_call_check
|
|
45998
|
+
_class_call_check(this, SemVer);
|
|
45999
45999
|
options = parseOptions(options);
|
|
46000
46000
|
if (_instanceof$6(version, SemVer)) {
|
|
46001
46001
|
if (version.loose === !!options.loose && version.includePrerelease === !!options.includePrerelease) {
|
|
@@ -46050,7 +46050,7 @@ var SemVer$d = /*#__PURE__*/ function() {
|
|
|
46050
46050
|
this.build = m[5] ? m[5].split('.') : [];
|
|
46051
46051
|
this.format();
|
|
46052
46052
|
}
|
|
46053
|
-
_create_class
|
|
46053
|
+
_create_class(SemVer, [
|
|
46054
46054
|
{
|
|
46055
46055
|
key: "format",
|
|
46056
46056
|
value: function format() {
|
|
@@ -46631,70 +46631,78 @@ var coerce$1 = function(version, options) {
|
|
|
46631
46631
|
};
|
|
46632
46632
|
var coerce_1 = coerce$1;
|
|
46633
46633
|
|
|
46634
|
-
|
|
46635
|
-
|
|
46636
|
-
|
|
46637
|
-
|
|
46638
|
-
|
|
46639
|
-
|
|
46640
|
-
|
|
46641
|
-
|
|
46642
|
-
|
|
46643
|
-
|
|
46644
|
-
|
|
46645
|
-
|
|
46646
|
-
|
|
46647
|
-
|
|
46648
|
-
|
|
46649
|
-
|
|
46650
|
-
|
|
46634
|
+
var lrucache;
|
|
46635
|
+
var hasRequiredLrucache;
|
|
46636
|
+
|
|
46637
|
+
function requireLrucache () {
|
|
46638
|
+
if (hasRequiredLrucache) return lrucache;
|
|
46639
|
+
hasRequiredLrucache = 1;
|
|
46640
|
+
function _class_call_check(instance, Constructor) {
|
|
46641
|
+
if (!(instance instanceof Constructor)) {
|
|
46642
|
+
throw new TypeError("Cannot call a class as a function");
|
|
46643
|
+
}
|
|
46644
|
+
}
|
|
46645
|
+
function _defineProperties(target, props) {
|
|
46646
|
+
for(var i = 0; i < props.length; i++){
|
|
46647
|
+
var descriptor = props[i];
|
|
46648
|
+
descriptor.enumerable = descriptor.enumerable || false;
|
|
46649
|
+
descriptor.configurable = true;
|
|
46650
|
+
if ("value" in descriptor) descriptor.writable = true;
|
|
46651
|
+
Object.defineProperty(target, descriptor.key, descriptor);
|
|
46652
|
+
}
|
|
46653
|
+
}
|
|
46654
|
+
function _create_class(Constructor, protoProps, staticProps) {
|
|
46655
|
+
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
46656
|
+
return Constructor;
|
|
46657
|
+
}
|
|
46658
|
+
var LRUCache = /*#__PURE__*/ function() {
|
|
46659
|
+
function LRUCache() {
|
|
46660
|
+
_class_call_check(this, LRUCache);
|
|
46661
|
+
this.max = 1000;
|
|
46662
|
+
this.map = new Map();
|
|
46663
|
+
}
|
|
46664
|
+
_create_class(LRUCache, [
|
|
46665
|
+
{
|
|
46666
|
+
key: "get",
|
|
46667
|
+
value: function get(key) {
|
|
46668
|
+
var value = this.map.get(key);
|
|
46669
|
+
if (value === undefined) {
|
|
46670
|
+
return undefined;
|
|
46671
|
+
} else {
|
|
46672
|
+
// Remove the key from the map and add it to the end
|
|
46673
|
+
this.map.delete(key);
|
|
46674
|
+
this.map.set(key, value);
|
|
46675
|
+
return value;
|
|
46676
|
+
}
|
|
46677
|
+
}
|
|
46678
|
+
},
|
|
46679
|
+
{
|
|
46680
|
+
key: "delete",
|
|
46681
|
+
value: function _delete(key) {
|
|
46682
|
+
return this.map.delete(key);
|
|
46683
|
+
}
|
|
46684
|
+
},
|
|
46685
|
+
{
|
|
46686
|
+
key: "set",
|
|
46687
|
+
value: function set(key, value) {
|
|
46688
|
+
var deleted = this.delete(key);
|
|
46689
|
+
if (!deleted && value !== undefined) {
|
|
46690
|
+
// If cache is full, delete the least recently used item
|
|
46691
|
+
if (this.map.size >= this.max) {
|
|
46692
|
+
var firstKey = this.map.keys().next().value;
|
|
46693
|
+
this.delete(firstKey);
|
|
46694
|
+
}
|
|
46695
|
+
this.map.set(key, value);
|
|
46696
|
+
}
|
|
46697
|
+
return this;
|
|
46698
|
+
}
|
|
46699
|
+
}
|
|
46700
|
+
]);
|
|
46701
|
+
return LRUCache;
|
|
46702
|
+
}();
|
|
46703
|
+
lrucache = LRUCache;
|
|
46704
|
+
return lrucache;
|
|
46651
46705
|
}
|
|
46652
|
-
var LRUCache = /*#__PURE__*/ function() {
|
|
46653
|
-
function LRUCache() {
|
|
46654
|
-
_class_call_check(this, LRUCache);
|
|
46655
|
-
this.max = 1000;
|
|
46656
|
-
this.map = new Map();
|
|
46657
|
-
}
|
|
46658
|
-
_create_class(LRUCache, [
|
|
46659
|
-
{
|
|
46660
|
-
key: "get",
|
|
46661
|
-
value: function get(key) {
|
|
46662
|
-
var value = this.map.get(key);
|
|
46663
|
-
if (value === undefined) {
|
|
46664
|
-
return undefined;
|
|
46665
|
-
} else {
|
|
46666
|
-
// Remove the key from the map and add it to the end
|
|
46667
|
-
this.map.delete(key);
|
|
46668
|
-
this.map.set(key, value);
|
|
46669
|
-
return value;
|
|
46670
|
-
}
|
|
46671
|
-
}
|
|
46672
|
-
},
|
|
46673
|
-
{
|
|
46674
|
-
key: "delete",
|
|
46675
|
-
value: function _delete(key) {
|
|
46676
|
-
return this.map.delete(key);
|
|
46677
|
-
}
|
|
46678
|
-
},
|
|
46679
|
-
{
|
|
46680
|
-
key: "set",
|
|
46681
|
-
value: function set(key, value) {
|
|
46682
|
-
var deleted = this.delete(key);
|
|
46683
|
-
if (!deleted && value !== undefined) {
|
|
46684
|
-
// If cache is full, delete the least recently used item
|
|
46685
|
-
if (this.map.size >= this.max) {
|
|
46686
|
-
var firstKey = this.map.keys().next().value;
|
|
46687
|
-
this.delete(firstKey);
|
|
46688
|
-
}
|
|
46689
|
-
this.map.set(key, value);
|
|
46690
|
-
}
|
|
46691
|
-
return this;
|
|
46692
|
-
}
|
|
46693
|
-
}
|
|
46694
|
-
]);
|
|
46695
|
-
return LRUCache;
|
|
46696
|
-
}();
|
|
46697
|
-
var lrucache = LRUCache;
|
|
46698
46706
|
|
|
46699
46707
|
var range;
|
|
46700
46708
|
var hasRequiredRange;
|
|
@@ -46998,7 +47006,7 @@ function requireRange () {
|
|
|
46998
47006
|
return Range;
|
|
46999
47007
|
}();
|
|
47000
47008
|
range = Range;
|
|
47001
|
-
var LRU =
|
|
47009
|
+
var LRU = requireLrucache();
|
|
47002
47010
|
var cache = new LRU();
|
|
47003
47011
|
var parseOptions = parseOptions_1;
|
|
47004
47012
|
var Comparator = requireComparator();
|