@digipair/skill-web-chatbot 0.33.0 → 0.33.1

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.cjs2.js CHANGED
@@ -52659,14 +52659,14 @@ function indent(str, spaces) {
52659
52659
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
52660
52660
  // match is required
52661
52661
  if (!match) {
52662
- return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
52662
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
52663
52663
  v: nextMatch1
52664
52664
  };
52665
52665
  }
52666
52666
  var token = match.token, offset = match.offset;
52667
52667
  i1 += offset;
52668
52668
  if (token === " ") {
52669
- return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
52669
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
52670
52670
  }
52671
52671
  tokens1 = _to_consumable_array$9(tokens1).concat([
52672
52672
  token
@@ -52685,7 +52685,7 @@ function indent(str, spaces) {
52685
52685
  if (contextKeys.some(function(el) {
52686
52686
  return el.startsWith(name);
52687
52687
  })) {
52688
- return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
52688
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
52689
52689
  }
52690
52690
  if (dateTimeIdentifiers.some(function(el) {
52691
52691
  return el === name;
@@ -52704,9 +52704,9 @@ function indent(str, spaces) {
52704
52704
  if (dateTimeIdentifiers.some(function(el) {
52705
52705
  return el.startsWith(name);
52706
52706
  })) {
52707
- return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
52707
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
52708
52708
  }
52709
- return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
52709
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
52710
52710
  v: nextMatch1
52711
52711
  };
52712
52712
  };
@@ -56543,7 +56543,9 @@ const executePins = async (settingsOrigin, context = {})=>{
56543
56543
  const alias = _config$1.ALIAS.find((alias)=>settings.library.split(':')[0] === alias.name);
56544
56544
  if (alias) {
56545
56545
  settings = await preparePinsSettings(_extends({}, settings, alias), {
56546
- settings
56546
+ settings: _extends({}, settings, {
56547
+ library: settings.library.substring(alias.name.length + 1)
56548
+ })
56547
56549
  });
56548
56550
  }
56549
56551
  if ((_settings_conditions = settings.conditions) == null ? void 0 : _settings_conditions.each) {
package/index.esm2.js CHANGED
@@ -52639,14 +52639,14 @@ function indent(str, spaces) {
52639
52639
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
52640
52640
  // match is required
52641
52641
  if (!match) {
52642
- return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
52642
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
52643
52643
  v: nextMatch1
52644
52644
  };
52645
52645
  }
52646
52646
  var token = match.token, offset = match.offset;
52647
52647
  i1 += offset;
52648
52648
  if (token === " ") {
52649
- return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
52649
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
52650
52650
  }
52651
52651
  tokens1 = _to_consumable_array$9(tokens1).concat([
52652
52652
  token
@@ -52665,7 +52665,7 @@ function indent(str, spaces) {
52665
52665
  if (contextKeys.some(function(el) {
52666
52666
  return el.startsWith(name);
52667
52667
  })) {
52668
- return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
52668
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
52669
52669
  }
52670
52670
  if (dateTimeIdentifiers.some(function(el) {
52671
52671
  return el === name;
@@ -52684,9 +52684,9 @@ function indent(str, spaces) {
52684
52684
  if (dateTimeIdentifiers.some(function(el) {
52685
52685
  return el.startsWith(name);
52686
52686
  })) {
52687
- return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
52687
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
52688
52688
  }
52689
- return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
52689
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
52690
52690
  v: nextMatch1
52691
52691
  };
52692
52692
  };
@@ -56523,7 +56523,9 @@ const executePins = async (settingsOrigin, context = {})=>{
56523
56523
  const alias = _config$1.ALIAS.find((alias)=>settings.library.split(':')[0] === alias.name);
56524
56524
  if (alias) {
56525
56525
  settings = await preparePinsSettings(_extends({}, settings, alias), {
56526
- settings
56526
+ settings: _extends({}, settings, {
56527
+ library: settings.library.substring(alias.name.length + 1)
56528
+ })
56527
56529
  });
56528
56530
  }
56529
56531
  if ((_settings_conditions = settings.conditions) == null ? void 0 : _settings_conditions.each) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-web-chatbot",
3
- "version": "0.33.0",
3
+ "version": "0.33.1",
4
4
  "dependencies": {},
5
5
  "typings": "./index.d.ts",
6
6
  "main": "./index.cjs.js",