@digipair/skill-keycloak 0.8.10 → 0.8.12
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/index.cjs.js +10 -7
- package/index.esm.js +5 -2
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -23522,14 +23522,14 @@ function indent(str, spaces) {
|
|
|
23522
23522
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23523
23523
|
// match is required
|
|
23524
23524
|
if (!match) {
|
|
23525
|
-
return
|
|
23525
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
|
23526
23526
|
v: nextMatch1
|
|
23527
23527
|
};
|
|
23528
23528
|
}
|
|
23529
23529
|
var token = match.token, offset = match.offset;
|
|
23530
23530
|
i1 += offset;
|
|
23531
23531
|
if (token === " ") {
|
|
23532
|
-
return
|
|
23532
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
|
23533
23533
|
}
|
|
23534
23534
|
tokens1 = _to_consumable_array$3(tokens1).concat([
|
|
23535
23535
|
token
|
|
@@ -23548,7 +23548,7 @@ function indent(str, spaces) {
|
|
|
23548
23548
|
if (contextKeys.some(function(el) {
|
|
23549
23549
|
return el.startsWith(name);
|
|
23550
23550
|
})) {
|
|
23551
|
-
return
|
|
23551
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
|
23552
23552
|
}
|
|
23553
23553
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23554
23554
|
return el === name;
|
|
@@ -23567,9 +23567,9 @@ function indent(str, spaces) {
|
|
|
23567
23567
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23568
23568
|
return el.startsWith(name);
|
|
23569
23569
|
})) {
|
|
23570
|
-
return
|
|
23570
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
|
23571
23571
|
}
|
|
23572
|
-
return
|
|
23572
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
|
23573
23573
|
v: nextMatch1
|
|
23574
23574
|
};
|
|
23575
23575
|
};
|
|
@@ -27431,8 +27431,11 @@ const executePinsList = async (pinsSettingsList, context, options = {
|
|
|
27431
27431
|
for(let i = 0; i < pinsSettingsList.length; i++){
|
|
27432
27432
|
var _settings_conditions;
|
|
27433
27433
|
const settings = pinsSettingsList[i];
|
|
27434
|
-
if (typeof ((_settings_conditions = settings.conditions) == null ? void 0 : _settings_conditions.if) !== 'undefined'
|
|
27435
|
-
|
|
27434
|
+
if (typeof ((_settings_conditions = settings.conditions) == null ? void 0 : _settings_conditions.if) !== 'undefined') {
|
|
27435
|
+
const preparedSettings = await preparePinsSettings(settings, context);
|
|
27436
|
+
if (!preparedSettings.conditions.if) {
|
|
27437
|
+
continue;
|
|
27438
|
+
}
|
|
27436
27439
|
}
|
|
27437
27440
|
previous = await executePins(settings, _extends({}, context, {
|
|
27438
27441
|
previous,
|
package/index.esm.js
CHANGED
|
@@ -27402,8 +27402,11 @@ const executePinsList = async (pinsSettingsList, context, options = {
|
|
|
27402
27402
|
for(let i = 0; i < pinsSettingsList.length; i++){
|
|
27403
27403
|
var _settings_conditions;
|
|
27404
27404
|
const settings = pinsSettingsList[i];
|
|
27405
|
-
if (typeof ((_settings_conditions = settings.conditions) == null ? void 0 : _settings_conditions.if) !== 'undefined'
|
|
27406
|
-
|
|
27405
|
+
if (typeof ((_settings_conditions = settings.conditions) == null ? void 0 : _settings_conditions.if) !== 'undefined') {
|
|
27406
|
+
const preparedSettings = await preparePinsSettings(settings, context);
|
|
27407
|
+
if (!preparedSettings.conditions.if) {
|
|
27408
|
+
continue;
|
|
27409
|
+
}
|
|
27407
27410
|
}
|
|
27408
27411
|
previous = await executePins(settings, _extends({}, context, {
|
|
27409
27412
|
previous,
|