@digipair/skill-chatbot 0.31.2 → 0.31.3

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.cjs.js CHANGED
@@ -67,7 +67,7 @@ const answer = (params, pinsSettingsList, context)=>new ChatbotService().answer(
67
67
  const execute = (params, pinsSettingsList, context)=>new ChatbotService().execute(params, pinsSettingsList, context);
68
68
  // SCENES
69
69
  const boost = (params, pinsSettingsList, context)=>new ChatbotService().boost(params, pinsSettingsList, context);
70
- const boostBySteps = (params, pinsSettingsList, context)=>new ChatbotService().boost(params, pinsSettingsList, context);
70
+ const boostBySteps = (params, pinsSettingsList, context)=>new ChatbotService().boostBySteps(params, pinsSettingsList, context);
71
71
 
72
72
  exports.answer = answer;
73
73
  exports.boost = boost;
package/index.esm.js CHANGED
@@ -63,6 +63,6 @@ const answer = (params, pinsSettingsList, context)=>new ChatbotService().answer(
63
63
  const execute = (params, pinsSettingsList, context)=>new ChatbotService().execute(params, pinsSettingsList, context);
64
64
  // SCENES
65
65
  const boost = (params, pinsSettingsList, context)=>new ChatbotService().boost(params, pinsSettingsList, context);
66
- const boostBySteps = (params, pinsSettingsList, context)=>new ChatbotService().boost(params, pinsSettingsList, context);
66
+ const boostBySteps = (params, pinsSettingsList, context)=>new ChatbotService().boostBySteps(params, pinsSettingsList, context);
67
67
 
68
68
  export { answer, boost, boostBySteps, execute };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-chatbot",
3
- "version": "0.31.2",
3
+ "version": "0.31.3",
4
4
  "dependencies": {},
5
5
  "typings": "./index.d.ts",
6
6
  "main": "./index.cjs.js",