@tiledesk/tiledesk-tybot-connector 0.2.66 → 0.2.67

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,9 @@
5
5
  available on:
6
6
  ▶️ https://www.npmjs.com/package/@tiledesk/tiledesk-tybot-connector
7
7
 
8
+ # v0.2.67
9
+ - console.log crash fixed on noinput
10
+
8
11
  # v0.2.66
9
12
  - changed updateQuotes method
10
13
  - fix missing model in updateQuote
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tiledesk/tiledesk-tybot-connector",
3
- "version": "0.2.66",
3
+ "version": "0.2.67",
4
4
  "description": "Tiledesk Tybot connector",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -136,7 +136,7 @@ class DirReplyV2 {
136
136
  await this.chatbot.addParameter("userInput", false); // control variable. On each user input is set to true
137
137
  if (this.log) { console.log("Set userInput: false, checking...", await this.chatbot.getParameter("userInput")); }
138
138
  setTimeout(async () => {
139
- if (this.log) { onsole.log("noinput timeout triggered!"); }
139
+ if (this.log) { console.log("noinput timeout triggered!"); }
140
140
  let userInput = await this.chatbot.getParameter("userInput");
141
141
  if (!userInput) {
142
142
  if (this.log) { console.log("no 'userInput'. Executing noinput action:", noInputIntent); }