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