@digipair/skill-dsp 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 +8 -7
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -23912,14 +23912,14 @@ function indent(str, spaces) {
|
|
|
23912
23912
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23913
23913
|
// match is required
|
|
23914
23914
|
if (!match) {
|
|
23915
|
-
return
|
|
23915
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
|
23916
23916
|
v: nextMatch1
|
|
23917
23917
|
};
|
|
23918
23918
|
}
|
|
23919
23919
|
var token = match.token, offset = match.offset;
|
|
23920
23920
|
i1 += offset;
|
|
23921
23921
|
if (token === " ") {
|
|
23922
|
-
return
|
|
23922
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
|
23923
23923
|
}
|
|
23924
23924
|
tokens1 = _to_consumable_array$2(tokens1).concat([
|
|
23925
23925
|
token
|
|
@@ -23938,7 +23938,7 @@ function indent(str, spaces) {
|
|
|
23938
23938
|
if (contextKeys.some(function(el) {
|
|
23939
23939
|
return el.startsWith(name);
|
|
23940
23940
|
})) {
|
|
23941
|
-
return
|
|
23941
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
|
23942
23942
|
}
|
|
23943
23943
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23944
23944
|
return el === name;
|
|
@@ -23957,9 +23957,9 @@ function indent(str, spaces) {
|
|
|
23957
23957
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23958
23958
|
return el.startsWith(name);
|
|
23959
23959
|
})) {
|
|
23960
|
-
return
|
|
23960
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
|
23961
23961
|
}
|
|
23962
|
-
return
|
|
23962
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
|
23963
23963
|
v: nextMatch1
|
|
23964
23964
|
};
|
|
23965
23965
|
};
|
|
@@ -27938,7 +27938,6 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
|
27938
27938
|
}
|
|
27939
27939
|
results.push(itemResult);
|
|
27940
27940
|
}
|
|
27941
|
-
_config.LOGGER('INFO', context.__PATH__, 'execute:end', context, results);
|
|
27942
27941
|
return results;
|
|
27943
27942
|
}
|
|
27944
27943
|
if (typeof ((_settings_conditions1 = settings.conditions) == null ? void 0 : _settings_conditions1.if) !== 'undefined' && !settings.conditions.if) {
|
|
@@ -27949,7 +27948,9 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
|
27949
27948
|
if (!pins) {
|
|
27950
27949
|
throw new Error(`Element ${settings.element} not found in library ${settings.library}`);
|
|
27951
27950
|
}
|
|
27952
|
-
|
|
27951
|
+
const result = await pins(settings.properties, settings.pins, context);
|
|
27952
|
+
_config.LOGGER('INFO', context.__PATH__, 'execute:end', context, result);
|
|
27953
|
+
return result;
|
|
27953
27954
|
};
|
|
27954
27955
|
const executePinsList = async (pinsSettingsList, context, path = 'root')=>{
|
|
27955
27956
|
let previous = {};
|