@digipair/skill-web 0.71.2 → 0.71.4
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
|
@@ -27929,7 +27929,6 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
|
27929
27929
|
}
|
|
27930
27930
|
results.push(itemResult);
|
|
27931
27931
|
}
|
|
27932
|
-
_config.LOGGER('INFO', context.__PATH__, 'execute:end', context, results);
|
|
27933
27932
|
return results;
|
|
27934
27933
|
}
|
|
27935
27934
|
if (typeof ((_settings_conditions1 = settings.conditions) == null ? void 0 : _settings_conditions1.if) !== 'undefined' && !settings.conditions.if) {
|
|
@@ -27940,7 +27939,9 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
|
27940
27939
|
if (!pins) {
|
|
27941
27940
|
throw new Error(`Element ${settings.element} not found in library ${settings.library}`);
|
|
27942
27941
|
}
|
|
27943
|
-
|
|
27942
|
+
const result = await pins(settings.properties, settings.pins, context);
|
|
27943
|
+
_config.LOGGER('INFO', context.__PATH__, 'execute:end', context, result);
|
|
27944
|
+
return result;
|
|
27944
27945
|
};
|
|
27945
27946
|
const executePinsList = async (pinsSettingsList, context, path = 'root')=>{
|
|
27946
27947
|
let previous = {};
|