@digipair/skill-dsp 0.71.5 → 0.71.6

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.
Files changed (2) hide show
  1. package/index.esm.js +7 -7
  2. 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 tokens = tokens1, i = i1, nextMatch = nextMatch1, {
23915
+ return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
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 tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23922
+ return nextMatch = nextMatch1, tokens = tokens1, i = i1, "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 tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23941
+ return nextMatch = nextMatch1, tokens = tokens1, i = i1, "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 tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23960
+ return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
23961
23961
  }
23962
- return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
23962
+ return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
23963
23963
  v: nextMatch1
23964
23964
  };
23965
23965
  };
@@ -27891,7 +27891,7 @@ const applyTemplate = (value, context)=>{
27891
27891
  const executePins = async (settingsOrigin, context = {})=>{
27892
27892
  var _settings_conditions, _settings_conditions1;
27893
27893
  let settings = preparePinsSettings(settingsOrigin, context);
27894
- _config.LOGGER('INFO', context.__PATH__, `execute:${settings.element}:${settings.library}:start`, context, settings);
27894
+ _config.LOGGER('INFO', context.__PATH__, `execute:${settings.library}:${settings.element}:start`, context, settings);
27895
27895
  const alias = _config.ALIAS.find((alias)=>settings.library.split(':')[0] === alias.name);
27896
27896
  const config = context.config || {};
27897
27897
  let version = (config.VERSIONS || {})[settings.library] || 'latest';
@@ -27949,7 +27949,7 @@ const executePins = async (settingsOrigin, context = {})=>{
27949
27949
  throw new Error(`Element ${settings.element} not found in library ${settings.library}`);
27950
27950
  }
27951
27951
  const result = await pins(settings.properties, settings.pins, context);
27952
- _config.LOGGER('INFO', context.__PATH__, `execute:${settings.element}:${settings.library}:end`, context, result);
27952
+ _config.LOGGER('INFO', context.__PATH__, `execute:${settings.library}:${settings.element}:end`, context, result);
27953
27953
  return result;
27954
27954
  };
27955
27955
  const executePinsList = async (pinsSettingsList, context, path = 'root')=>{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-dsp",
3
- "version": "0.71.5",
3
+ "version": "0.71.6",
4
4
  "dependencies": {
5
5
  "@ax-llm/ax": "^9.0.28"
6
6
  },