@digipair/skill-keycloak 0.71.1 → 0.71.3
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.esm.js +3 -2
- package/package.json +1 -1
package/index.esm.js
CHANGED
@@ -27933,7 +27933,6 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
27933
27933
|
}
|
27934
27934
|
results.push(itemResult);
|
27935
27935
|
}
|
27936
|
-
_config.LOGGER('INFO', context.__PATH__, 'execute:end', context, results);
|
27937
27936
|
return results;
|
27938
27937
|
}
|
27939
27938
|
if (typeof ((_settings_conditions1 = settings.conditions) == null ? void 0 : _settings_conditions1.if) !== 'undefined' && !settings.conditions.if) {
|
@@ -27944,7 +27943,9 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
27944
27943
|
if (!pins) {
|
27945
27944
|
throw new Error(`Element ${settings.element} not found in library ${settings.library}`);
|
27946
27945
|
}
|
27947
|
-
|
27946
|
+
const result = await pins(settings.properties, settings.pins, context);
|
27947
|
+
_config.LOGGER('INFO', context.__PATH__, 'execute:end', context, result);
|
27948
|
+
return result;
|
27948
27949
|
};
|
27949
27950
|
const executePinsList = async (pinsSettingsList, context, path = 'root')=>{
|
27950
27951
|
let previous = {};
|