@digipair/skill-keycloak 0.114.1 → 0.114.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/dist/index.cjs.js +70 -78
- package/dist/index.esm.js +77 -85
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -1310,12 +1310,12 @@ var identifiers$1 = {
|
|
|
1310
1310
|
rcompareIdentifiers: rcompareIdentifiers
|
|
1311
1311
|
};
|
|
1312
1312
|
|
|
1313
|
-
function _class_call_check(instance, Constructor) {
|
|
1313
|
+
function _class_call_check$1(instance, Constructor) {
|
|
1314
1314
|
if (!(instance instanceof Constructor)) {
|
|
1315
1315
|
throw new TypeError("Cannot call a class as a function");
|
|
1316
1316
|
}
|
|
1317
1317
|
}
|
|
1318
|
-
function _defineProperties(target, props) {
|
|
1318
|
+
function _defineProperties$1(target, props) {
|
|
1319
1319
|
for(var i = 0; i < props.length; i++){
|
|
1320
1320
|
var descriptor = props[i];
|
|
1321
1321
|
descriptor.enumerable = descriptor.enumerable || false;
|
|
@@ -1324,8 +1324,8 @@ function _defineProperties(target, props) {
|
|
|
1324
1324
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
1325
1325
|
}
|
|
1326
1326
|
}
|
|
1327
|
-
function _create_class(Constructor, protoProps, staticProps) {
|
|
1328
|
-
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
1327
|
+
function _create_class$1(Constructor, protoProps, staticProps) {
|
|
1328
|
+
if (protoProps) _defineProperties$1(Constructor.prototype, protoProps);
|
|
1329
1329
|
return Constructor;
|
|
1330
1330
|
}
|
|
1331
1331
|
function _instanceof$6(left, right) {
|
|
@@ -1346,7 +1346,7 @@ var parseOptions = parseOptions_1;
|
|
|
1346
1346
|
var compareIdentifiers = identifiers$1.compareIdentifiers;
|
|
1347
1347
|
var SemVer$d = /*#__PURE__*/ function() {
|
|
1348
1348
|
function SemVer(version, options) {
|
|
1349
|
-
_class_call_check(this, SemVer);
|
|
1349
|
+
_class_call_check$1(this, SemVer);
|
|
1350
1350
|
options = parseOptions(options);
|
|
1351
1351
|
if (_instanceof$6(version, SemVer)) {
|
|
1352
1352
|
if (version.loose === !!options.loose && version.includePrerelease === !!options.includePrerelease) {
|
|
@@ -1401,7 +1401,7 @@ var SemVer$d = /*#__PURE__*/ function() {
|
|
|
1401
1401
|
this.build = m[5] ? m[5].split('.') : [];
|
|
1402
1402
|
this.format();
|
|
1403
1403
|
}
|
|
1404
|
-
_create_class(SemVer, [
|
|
1404
|
+
_create_class$1(SemVer, [
|
|
1405
1405
|
{
|
|
1406
1406
|
key: "format",
|
|
1407
1407
|
value: function format() {
|
|
@@ -1982,78 +1982,70 @@ var coerce$1 = function(version, options) {
|
|
|
1982
1982
|
};
|
|
1983
1983
|
var coerce_1 = coerce$1;
|
|
1984
1984
|
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
Object.defineProperty(target, descriptor.key, descriptor);
|
|
2003
|
-
}
|
|
2004
|
-
}
|
|
2005
|
-
function _create_class(Constructor, protoProps, staticProps) {
|
|
2006
|
-
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
2007
|
-
return Constructor;
|
|
2008
|
-
}
|
|
2009
|
-
var LRUCache = /*#__PURE__*/ function() {
|
|
2010
|
-
function LRUCache() {
|
|
2011
|
-
_class_call_check(this, LRUCache);
|
|
2012
|
-
this.max = 1000;
|
|
2013
|
-
this.map = new Map();
|
|
2014
|
-
}
|
|
2015
|
-
_create_class(LRUCache, [
|
|
2016
|
-
{
|
|
2017
|
-
key: "get",
|
|
2018
|
-
value: function get(key) {
|
|
2019
|
-
var value = this.map.get(key);
|
|
2020
|
-
if (value === undefined) {
|
|
2021
|
-
return undefined;
|
|
2022
|
-
} else {
|
|
2023
|
-
// Remove the key from the map and add it to the end
|
|
2024
|
-
this.map.delete(key);
|
|
2025
|
-
this.map.set(key, value);
|
|
2026
|
-
return value;
|
|
2027
|
-
}
|
|
2028
|
-
}
|
|
2029
|
-
},
|
|
2030
|
-
{
|
|
2031
|
-
key: "delete",
|
|
2032
|
-
value: function _delete(key) {
|
|
2033
|
-
return this.map.delete(key);
|
|
2034
|
-
}
|
|
2035
|
-
},
|
|
2036
|
-
{
|
|
2037
|
-
key: "set",
|
|
2038
|
-
value: function set(key, value) {
|
|
2039
|
-
var deleted = this.delete(key);
|
|
2040
|
-
if (!deleted && value !== undefined) {
|
|
2041
|
-
// If cache is full, delete the least recently used item
|
|
2042
|
-
if (this.map.size >= this.max) {
|
|
2043
|
-
var firstKey = this.map.keys().next().value;
|
|
2044
|
-
this.delete(firstKey);
|
|
2045
|
-
}
|
|
2046
|
-
this.map.set(key, value);
|
|
2047
|
-
}
|
|
2048
|
-
return this;
|
|
2049
|
-
}
|
|
2050
|
-
}
|
|
2051
|
-
]);
|
|
2052
|
-
return LRUCache;
|
|
2053
|
-
}();
|
|
2054
|
-
lrucache = LRUCache;
|
|
2055
|
-
return lrucache;
|
|
1985
|
+
function _class_call_check(instance, Constructor) {
|
|
1986
|
+
if (!(instance instanceof Constructor)) {
|
|
1987
|
+
throw new TypeError("Cannot call a class as a function");
|
|
1988
|
+
}
|
|
1989
|
+
}
|
|
1990
|
+
function _defineProperties(target, props) {
|
|
1991
|
+
for(var i = 0; i < props.length; i++){
|
|
1992
|
+
var descriptor = props[i];
|
|
1993
|
+
descriptor.enumerable = descriptor.enumerable || false;
|
|
1994
|
+
descriptor.configurable = true;
|
|
1995
|
+
if ("value" in descriptor) descriptor.writable = true;
|
|
1996
|
+
Object.defineProperty(target, descriptor.key, descriptor);
|
|
1997
|
+
}
|
|
1998
|
+
}
|
|
1999
|
+
function _create_class(Constructor, protoProps, staticProps) {
|
|
2000
|
+
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
2001
|
+
return Constructor;
|
|
2056
2002
|
}
|
|
2003
|
+
var LRUCache = /*#__PURE__*/ function() {
|
|
2004
|
+
function LRUCache() {
|
|
2005
|
+
_class_call_check(this, LRUCache);
|
|
2006
|
+
this.max = 1000;
|
|
2007
|
+
this.map = new Map();
|
|
2008
|
+
}
|
|
2009
|
+
_create_class(LRUCache, [
|
|
2010
|
+
{
|
|
2011
|
+
key: "get",
|
|
2012
|
+
value: function get(key) {
|
|
2013
|
+
var value = this.map.get(key);
|
|
2014
|
+
if (value === undefined) {
|
|
2015
|
+
return undefined;
|
|
2016
|
+
} else {
|
|
2017
|
+
// Remove the key from the map and add it to the end
|
|
2018
|
+
this.map.delete(key);
|
|
2019
|
+
this.map.set(key, value);
|
|
2020
|
+
return value;
|
|
2021
|
+
}
|
|
2022
|
+
}
|
|
2023
|
+
},
|
|
2024
|
+
{
|
|
2025
|
+
key: "delete",
|
|
2026
|
+
value: function _delete(key) {
|
|
2027
|
+
return this.map.delete(key);
|
|
2028
|
+
}
|
|
2029
|
+
},
|
|
2030
|
+
{
|
|
2031
|
+
key: "set",
|
|
2032
|
+
value: function set(key, value) {
|
|
2033
|
+
var deleted = this.delete(key);
|
|
2034
|
+
if (!deleted && value !== undefined) {
|
|
2035
|
+
// If cache is full, delete the least recently used item
|
|
2036
|
+
if (this.map.size >= this.max) {
|
|
2037
|
+
var firstKey = this.map.keys().next().value;
|
|
2038
|
+
this.delete(firstKey);
|
|
2039
|
+
}
|
|
2040
|
+
this.map.set(key, value);
|
|
2041
|
+
}
|
|
2042
|
+
return this;
|
|
2043
|
+
}
|
|
2044
|
+
}
|
|
2045
|
+
]);
|
|
2046
|
+
return LRUCache;
|
|
2047
|
+
}();
|
|
2048
|
+
var lrucache = LRUCache;
|
|
2057
2049
|
|
|
2058
2050
|
var range;
|
|
2059
2051
|
var hasRequiredRange;
|
|
@@ -2357,7 +2349,7 @@ function requireRange () {
|
|
|
2357
2349
|
return Range;
|
|
2358
2350
|
}();
|
|
2359
2351
|
range = Range;
|
|
2360
|
-
var LRU =
|
|
2352
|
+
var LRU = lrucache;
|
|
2361
2353
|
var cache = new LRU();
|
|
2362
2354
|
var parseOptions = parseOptions_1;
|
|
2363
2355
|
var Comparator = requireComparator();
|
package/dist/index.esm.js
CHANGED
|
@@ -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(target, props) {
|
|
41555
|
+
function _defineProperties$1$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(target, props) {
|
|
|
41561
41561
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
41562
41562
|
}
|
|
41563
41563
|
}
|
|
41564
|
-
function _create_class$1(Constructor, protoProps, staticProps) {
|
|
41565
|
-
if (protoProps) _defineProperties$1(Constructor.prototype, protoProps);
|
|
41566
|
-
if (staticProps) _defineProperties$1(Constructor, staticProps);
|
|
41564
|
+
function _create_class$1$1(Constructor, protoProps, staticProps) {
|
|
41565
|
+
if (protoProps) _defineProperties$1$1(Constructor.prototype, protoProps);
|
|
41566
|
+
if (staticProps) _defineProperties$1$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(Parser, [
|
|
41685
|
+
_create_class$1$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(instance, Constructor) {
|
|
42897
|
+
function _class_call_check$1$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(this, CelParser);
|
|
42979
|
+
_class_call_check$1$1(this, CelParser);
|
|
42980
42980
|
var _this;
|
|
42981
42981
|
_this = _super.call(this, allTokens);
|
|
42982
42982
|
_define_property$1(_assert_this_initialized$1(_this), "expr", _this.RULE('expr', function() {
|
|
@@ -45764,12 +45764,12 @@ var identifiers$1 = {
|
|
|
45764
45764
|
rcompareIdentifiers: rcompareIdentifiers
|
|
45765
45765
|
};
|
|
45766
45766
|
|
|
45767
|
-
function _class_call_check(instance, Constructor) {
|
|
45767
|
+
function _class_call_check$1(instance, Constructor) {
|
|
45768
45768
|
if (!(instance instanceof Constructor)) {
|
|
45769
45769
|
throw new TypeError("Cannot call a class as a function");
|
|
45770
45770
|
}
|
|
45771
45771
|
}
|
|
45772
|
-
function _defineProperties(target, props) {
|
|
45772
|
+
function _defineProperties$1(target, props) {
|
|
45773
45773
|
for(var i = 0; i < props.length; i++){
|
|
45774
45774
|
var descriptor = props[i];
|
|
45775
45775
|
descriptor.enumerable = descriptor.enumerable || false;
|
|
@@ -45778,8 +45778,8 @@ function _defineProperties(target, props) {
|
|
|
45778
45778
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
45779
45779
|
}
|
|
45780
45780
|
}
|
|
45781
|
-
function _create_class(Constructor, protoProps, staticProps) {
|
|
45782
|
-
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
45781
|
+
function _create_class$1(Constructor, protoProps, staticProps) {
|
|
45782
|
+
if (protoProps) _defineProperties$1(Constructor.prototype, protoProps);
|
|
45783
45783
|
return Constructor;
|
|
45784
45784
|
}
|
|
45785
45785
|
function _instanceof$6(left, right) {
|
|
@@ -45800,7 +45800,7 @@ var parseOptions = parseOptions_1;
|
|
|
45800
45800
|
var compareIdentifiers = identifiers$1.compareIdentifiers;
|
|
45801
45801
|
var SemVer$d = /*#__PURE__*/ function() {
|
|
45802
45802
|
function SemVer(version, options) {
|
|
45803
|
-
_class_call_check(this, SemVer);
|
|
45803
|
+
_class_call_check$1(this, SemVer);
|
|
45804
45804
|
options = parseOptions(options);
|
|
45805
45805
|
if (_instanceof$6(version, SemVer)) {
|
|
45806
45806
|
if (version.loose === !!options.loose && version.includePrerelease === !!options.includePrerelease) {
|
|
@@ -45855,7 +45855,7 @@ var SemVer$d = /*#__PURE__*/ function() {
|
|
|
45855
45855
|
this.build = m[5] ? m[5].split('.') : [];
|
|
45856
45856
|
this.format();
|
|
45857
45857
|
}
|
|
45858
|
-
_create_class(SemVer, [
|
|
45858
|
+
_create_class$1(SemVer, [
|
|
45859
45859
|
{
|
|
45860
45860
|
key: "format",
|
|
45861
45861
|
value: function format() {
|
|
@@ -46436,78 +46436,70 @@ var coerce$1 = function(version, options) {
|
|
|
46436
46436
|
};
|
|
46437
46437
|
var coerce_1 = coerce$1;
|
|
46438
46438
|
|
|
46439
|
-
|
|
46440
|
-
|
|
46441
|
-
|
|
46442
|
-
|
|
46443
|
-
|
|
46444
|
-
|
|
46445
|
-
|
|
46446
|
-
|
|
46447
|
-
|
|
46448
|
-
|
|
46449
|
-
|
|
46450
|
-
|
|
46451
|
-
|
|
46452
|
-
var descriptor = props[i];
|
|
46453
|
-
descriptor.enumerable = descriptor.enumerable || false;
|
|
46454
|
-
descriptor.configurable = true;
|
|
46455
|
-
if ("value" in descriptor) descriptor.writable = true;
|
|
46456
|
-
Object.defineProperty(target, descriptor.key, descriptor);
|
|
46457
|
-
}
|
|
46458
|
-
}
|
|
46459
|
-
function _create_class(Constructor, protoProps, staticProps) {
|
|
46460
|
-
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
46461
|
-
return Constructor;
|
|
46462
|
-
}
|
|
46463
|
-
var LRUCache = /*#__PURE__*/ function() {
|
|
46464
|
-
function LRUCache() {
|
|
46465
|
-
_class_call_check(this, LRUCache);
|
|
46466
|
-
this.max = 1000;
|
|
46467
|
-
this.map = new Map();
|
|
46468
|
-
}
|
|
46469
|
-
_create_class(LRUCache, [
|
|
46470
|
-
{
|
|
46471
|
-
key: "get",
|
|
46472
|
-
value: function get(key) {
|
|
46473
|
-
var value = this.map.get(key);
|
|
46474
|
-
if (value === undefined) {
|
|
46475
|
-
return undefined;
|
|
46476
|
-
} else {
|
|
46477
|
-
// Remove the key from the map and add it to the end
|
|
46478
|
-
this.map.delete(key);
|
|
46479
|
-
this.map.set(key, value);
|
|
46480
|
-
return value;
|
|
46481
|
-
}
|
|
46482
|
-
}
|
|
46483
|
-
},
|
|
46484
|
-
{
|
|
46485
|
-
key: "delete",
|
|
46486
|
-
value: function _delete(key) {
|
|
46487
|
-
return this.map.delete(key);
|
|
46488
|
-
}
|
|
46489
|
-
},
|
|
46490
|
-
{
|
|
46491
|
-
key: "set",
|
|
46492
|
-
value: function set(key, value) {
|
|
46493
|
-
var deleted = this.delete(key);
|
|
46494
|
-
if (!deleted && value !== undefined) {
|
|
46495
|
-
// If cache is full, delete the least recently used item
|
|
46496
|
-
if (this.map.size >= this.max) {
|
|
46497
|
-
var firstKey = this.map.keys().next().value;
|
|
46498
|
-
this.delete(firstKey);
|
|
46499
|
-
}
|
|
46500
|
-
this.map.set(key, value);
|
|
46501
|
-
}
|
|
46502
|
-
return this;
|
|
46503
|
-
}
|
|
46504
|
-
}
|
|
46505
|
-
]);
|
|
46506
|
-
return LRUCache;
|
|
46507
|
-
}();
|
|
46508
|
-
lrucache = LRUCache;
|
|
46509
|
-
return lrucache;
|
|
46439
|
+
function _class_call_check(instance, Constructor) {
|
|
46440
|
+
if (!(instance instanceof Constructor)) {
|
|
46441
|
+
throw new TypeError("Cannot call a class as a function");
|
|
46442
|
+
}
|
|
46443
|
+
}
|
|
46444
|
+
function _defineProperties(target, props) {
|
|
46445
|
+
for(var i = 0; i < props.length; i++){
|
|
46446
|
+
var descriptor = props[i];
|
|
46447
|
+
descriptor.enumerable = descriptor.enumerable || false;
|
|
46448
|
+
descriptor.configurable = true;
|
|
46449
|
+
if ("value" in descriptor) descriptor.writable = true;
|
|
46450
|
+
Object.defineProperty(target, descriptor.key, descriptor);
|
|
46451
|
+
}
|
|
46510
46452
|
}
|
|
46453
|
+
function _create_class(Constructor, protoProps, staticProps) {
|
|
46454
|
+
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
46455
|
+
return Constructor;
|
|
46456
|
+
}
|
|
46457
|
+
var LRUCache = /*#__PURE__*/ function() {
|
|
46458
|
+
function LRUCache() {
|
|
46459
|
+
_class_call_check(this, LRUCache);
|
|
46460
|
+
this.max = 1000;
|
|
46461
|
+
this.map = new Map();
|
|
46462
|
+
}
|
|
46463
|
+
_create_class(LRUCache, [
|
|
46464
|
+
{
|
|
46465
|
+
key: "get",
|
|
46466
|
+
value: function get(key) {
|
|
46467
|
+
var value = this.map.get(key);
|
|
46468
|
+
if (value === undefined) {
|
|
46469
|
+
return undefined;
|
|
46470
|
+
} else {
|
|
46471
|
+
// Remove the key from the map and add it to the end
|
|
46472
|
+
this.map.delete(key);
|
|
46473
|
+
this.map.set(key, value);
|
|
46474
|
+
return value;
|
|
46475
|
+
}
|
|
46476
|
+
}
|
|
46477
|
+
},
|
|
46478
|
+
{
|
|
46479
|
+
key: "delete",
|
|
46480
|
+
value: function _delete(key) {
|
|
46481
|
+
return this.map.delete(key);
|
|
46482
|
+
}
|
|
46483
|
+
},
|
|
46484
|
+
{
|
|
46485
|
+
key: "set",
|
|
46486
|
+
value: function set(key, value) {
|
|
46487
|
+
var deleted = this.delete(key);
|
|
46488
|
+
if (!deleted && value !== undefined) {
|
|
46489
|
+
// If cache is full, delete the least recently used item
|
|
46490
|
+
if (this.map.size >= this.max) {
|
|
46491
|
+
var firstKey = this.map.keys().next().value;
|
|
46492
|
+
this.delete(firstKey);
|
|
46493
|
+
}
|
|
46494
|
+
this.map.set(key, value);
|
|
46495
|
+
}
|
|
46496
|
+
return this;
|
|
46497
|
+
}
|
|
46498
|
+
}
|
|
46499
|
+
]);
|
|
46500
|
+
return LRUCache;
|
|
46501
|
+
}();
|
|
46502
|
+
var lrucache = LRUCache;
|
|
46511
46503
|
|
|
46512
46504
|
var range;
|
|
46513
46505
|
var hasRequiredRange;
|
|
@@ -46811,7 +46803,7 @@ function requireRange () {
|
|
|
46811
46803
|
return Range;
|
|
46812
46804
|
}();
|
|
46813
46805
|
range = Range;
|
|
46814
|
-
var LRU =
|
|
46806
|
+
var LRU = lrucache;
|
|
46815
46807
|
var cache = new LRU();
|
|
46816
46808
|
var parseOptions = parseOptions_1;
|
|
46817
46809
|
var Comparator = requireComparator();
|