@tiledesk/tiledesk-tybot-connector 0.2.71 → 0.2.72

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/CHANGELOG.md CHANGED
@@ -5,6 +5,10 @@
5
5
  available on:
6
6
  ▶️ https://www.npmjs.com/package/@tiledesk/tiledesk-tybot-connector
7
7
 
8
+
9
+ # v0.2.72
10
+ - Fix. userParams not in /reserved...
11
+
8
12
  # v0.2.71
9
13
  - Fix. DirReplyV2 "NoInput" bug. Refactored with the introduction of "timeout_id", an ID specific for each noInput timeout: this.chatbot.addParameter(TiledeskChatbotConst.USER_INPUT, timeout_id)
10
14
 
package/index.js CHANGED
@@ -414,7 +414,7 @@ router.get('/ext/reserved/parameters/requests/:requestid', async (req, res) => {
414
414
  // }
415
415
  // }
416
416
  // }
417
- TiledeskChatbotUtil.userFlowAttributes(parameters);
417
+ const userParams = TiledeskChatbotUtil.userFlowAttributes(parameters);
418
418
  res.send(userParams);
419
419
  }
420
420
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tiledesk/tiledesk-tybot-connector",
3
- "version": "0.2.71",
3
+ "version": "0.2.72",
4
4
  "description": "Tiledesk Tybot connector",
5
5
  "main": "index.js",
6
6
  "scripts": {