@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 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 i = i1, nextMatch = nextMatch1, tokens = tokens1, {
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 i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
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 i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
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 i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
80404
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
80405
80405
  }
80406
- return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
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.noEvalProperties ?? settings.properties, settings.pins, context);
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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-vespa",
3
- "version": "0.121.14",
3
+ "version": "0.121.16",
4
4
  "main": "./dist/index.cjs.js",
5
5
  "module": "./dist/index.esm.js",
6
6
  "types": "./dist/index.d.ts",