@digipair/skill-mongodb 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 +8 -7
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -23941,14 +23941,14 @@ function indent(str, spaces) {
|
|
|
23941
23941
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23942
23942
|
// match is required
|
|
23943
23943
|
if (!match) {
|
|
23944
|
-
return
|
|
23944
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
|
|
23945
23945
|
v: nextMatch1
|
|
23946
23946
|
};
|
|
23947
23947
|
}
|
|
23948
23948
|
var token = match.token, offset = match.offset;
|
|
23949
23949
|
i1 += offset;
|
|
23950
23950
|
if (token === " ") {
|
|
23951
|
-
return
|
|
23951
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
|
|
23952
23952
|
}
|
|
23953
23953
|
tokens1 = _to_consumable_array$a(tokens1).concat([
|
|
23954
23954
|
token
|
|
@@ -23967,7 +23967,7 @@ function indent(str, spaces) {
|
|
|
23967
23967
|
if (contextKeys.some(function(el) {
|
|
23968
23968
|
return el.startsWith(name);
|
|
23969
23969
|
})) {
|
|
23970
|
-
return
|
|
23970
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
|
|
23971
23971
|
}
|
|
23972
23972
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23973
23973
|
return el === name;
|
|
@@ -23986,9 +23986,9 @@ function indent(str, spaces) {
|
|
|
23986
23986
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23987
23987
|
return el.startsWith(name);
|
|
23988
23988
|
})) {
|
|
23989
|
-
return
|
|
23989
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
|
|
23990
23990
|
}
|
|
23991
|
-
return
|
|
23991
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
|
|
23992
23992
|
v: nextMatch1
|
|
23993
23993
|
};
|
|
23994
23994
|
};
|
|
@@ -27967,7 +27967,6 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
|
27967
27967
|
}
|
|
27968
27968
|
results.push(itemResult);
|
|
27969
27969
|
}
|
|
27970
|
-
_config.LOGGER('INFO', context.__PATH__, 'execute:end', context, results);
|
|
27971
27970
|
return results;
|
|
27972
27971
|
}
|
|
27973
27972
|
if (typeof ((_settings_conditions1 = settings.conditions) == null ? void 0 : _settings_conditions1.if) !== 'undefined' && !settings.conditions.if) {
|
|
@@ -27978,7 +27977,9 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
|
27978
27977
|
if (!pins) {
|
|
27979
27978
|
throw new Error(`Element ${settings.element} not found in library ${settings.library}`);
|
|
27980
27979
|
}
|
|
27981
|
-
|
|
27980
|
+
const result = await pins(settings.properties, settings.pins, context);
|
|
27981
|
+
_config.LOGGER('INFO', context.__PATH__, 'execute:end', context, result);
|
|
27982
|
+
return result;
|
|
27982
27983
|
};
|
|
27983
27984
|
const executePinsList = async (pinsSettingsList, context, path = 'root')=>{
|
|
27984
27985
|
let previous = {};
|