@digipair/skill-web-chatbot 0.30.1 → 0.31.2

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 nextMatch = nextMatch1, tokens = tokens1, i = i1, {
52662
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
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 nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
52669
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, "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 nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
52688
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, "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 nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
52707
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
52708
52708
  }
52709
- return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
52709
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
52710
52710
  v: nextMatch1
52711
52711
  };
52712
52712
  };
@@ -56587,17 +56587,14 @@ const executePins = async (settingsOrigin, context = {})=>{
56587
56587
  };
56588
56588
  const executePinsList = async (pinsSettingsList, context)=>{
56589
56589
  let previous = {};
56590
- const steps = [];
56591
56590
  // parcourir tous les pins
56592
56591
  for(let i = 0; i < pinsSettingsList.length; i++){
56593
56592
  const settings = pinsSettingsList[i];
56594
56593
  try {
56595
56594
  previous = await executePins(settings, _extends({}, context, {
56596
56595
  previous,
56597
- steps,
56598
56596
  parent: {
56599
56597
  previous: context.previous,
56600
- steps: context.steps,
56601
56598
  parent: context.parent
56602
56599
  }
56603
56600
  }));
@@ -56607,10 +56604,6 @@ const executePinsList = async (pinsSettingsList, context)=>{
56607
56604
  }
56608
56605
  throw error;
56609
56606
  }
56610
- steps[i] = {
56611
- name: settings.name,
56612
- result: previous
56613
- };
56614
56607
  }
56615
56608
  return previous;
56616
56609
  };
package/index.esm2.js CHANGED
@@ -56567,17 +56567,14 @@ const executePins = async (settingsOrigin, context = {})=>{
56567
56567
  };
56568
56568
  const executePinsList = async (pinsSettingsList, context)=>{
56569
56569
  let previous = {};
56570
- const steps = [];
56571
56570
  // parcourir tous les pins
56572
56571
  for(let i = 0; i < pinsSettingsList.length; i++){
56573
56572
  const settings = pinsSettingsList[i];
56574
56573
  try {
56575
56574
  previous = await executePins(settings, _extends({}, context, {
56576
56575
  previous,
56577
- steps,
56578
56576
  parent: {
56579
56577
  previous: context.previous,
56580
- steps: context.steps,
56581
56578
  parent: context.parent
56582
56579
  }
56583
56580
  }));
@@ -56587,10 +56584,6 @@ const executePinsList = async (pinsSettingsList, context)=>{
56587
56584
  }
56588
56585
  throw error;
56589
56586
  }
56590
- steps[i] = {
56591
- name: settings.name,
56592
- result: previous
56593
- };
56594
56587
  }
56595
56588
  return previous;
56596
56589
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-web-chatbot",
3
- "version": "0.30.1",
3
+ "version": "0.31.2",
4
4
  "dependencies": {},
5
5
  "typings": "./index.d.ts",
6
6
  "main": "./index.cjs.js",