@digipair/skill-vespa 0.121.14 → 0.121.16
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/dist/index.esm.js +6 -6
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -80356,14 +80356,14 @@ function indent(str, spaces) {
|
|
|
80356
80356
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
80357
80357
|
// match is required
|
|
80358
80358
|
if (!match) {
|
|
80359
|
-
return
|
|
80359
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
|
|
80360
80360
|
v: nextMatch1
|
|
80361
80361
|
};
|
|
80362
80362
|
}
|
|
80363
80363
|
var token = match.token, offset = match.offset;
|
|
80364
80364
|
i1 += offset;
|
|
80365
80365
|
if (token === ' ') {
|
|
80366
|
-
return
|
|
80366
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
|
|
80367
80367
|
}
|
|
80368
80368
|
tokens1 = _to_consumable_array$4(tokens1).concat([
|
|
80369
80369
|
token
|
|
@@ -80382,7 +80382,7 @@ function indent(str, spaces) {
|
|
|
80382
80382
|
if (contextKeys.some(function(el) {
|
|
80383
80383
|
return el.startsWith(name);
|
|
80384
80384
|
})) {
|
|
80385
|
-
return
|
|
80385
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
|
|
80386
80386
|
}
|
|
80387
80387
|
if (dateTimeIdentifiers.some(function(el) {
|
|
80388
80388
|
return el === name;
|
|
@@ -80401,9 +80401,9 @@ function indent(str, spaces) {
|
|
|
80401
80401
|
if (dateTimeIdentifiers.some(function(el) {
|
|
80402
80402
|
return el.startsWith(name);
|
|
80403
80403
|
})) {
|
|
80404
|
-
return
|
|
80404
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
|
|
80405
80405
|
}
|
|
80406
|
-
return
|
|
80406
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
|
|
80407
80407
|
v: nextMatch1
|
|
80408
80408
|
};
|
|
80409
80409
|
};
|
|
@@ -102040,7 +102040,7 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
|
102040
102040
|
if (!pins) {
|
|
102041
102041
|
throw new Error(`Element ${settings.element} not found in library ${settings.library}`);
|
|
102042
102042
|
}
|
|
102043
|
-
const result = await pins(settings.
|
|
102043
|
+
const result = await pins(settings._properties ?? settings.properties, settings.pins, context);
|
|
102044
102044
|
_config.LOGGER('INFO', context.__PATH__, `execute:${settings.library}:${settings.element}:end`, context, result);
|
|
102045
102045
|
return result;
|
|
102046
102046
|
};
|