@tiledesk/tiledesk-tybot-connector 0.2.130-rc3 → 0.2.130-rc4

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
@@ -17,6 +17,9 @@ available on:
17
17
  - Added flowError on JSONCondition when result = null
18
18
  - Added fix on Filler -->
19
19
 
20
+ # v0.2.130-rc4
21
+ - (TiledeskChatbotUtil) process.env.API_ENDPOINT => process.env.API_URL
22
+
20
23
  # v0.2.130-rc3
21
24
  - index.js /block => added "token": "NO-TOKEN"
22
25
  - (TiledeskChatbotUtil) added: chatbot.addParameter(TiledeskChatbotConst.API_BASE_URL, process.env.API_ENDPOINT);
@@ -24,7 +27,6 @@ available on:
24
27
  # v0.2.129 -> test
25
28
  - (TiledeskChatbot) sending as "info": "An error occurred while getting locked intent:'" + locked_intent + "'"
26
29
  - (DirectivesChatbotPlug) added try catch on new TiledeskClient() => try {tdclient = new TiledeskClient({...})}
27
- - index.js /block => added "token": "NO-TOKEN"
28
30
 
29
31
  # v0.2.128 -> test
30
32
  - Updated axios from 0.27.2 to 1.7.7
@@ -523,7 +523,7 @@ class TiledeskChatbotUtil {
523
523
  }
524
524
 
525
525
  if (process.env.API_ENDPOINT) {
526
- await chatbot.addParameter(TiledeskChatbotConst.API_BASE_URL, process.env.API_ENDPOINT);
526
+ await chatbot.addParameter(TiledeskChatbotConst.API_BASE_URL, process.env.API_URL);
527
527
  }
528
528
 
529
529
  if (message.text && message.sender !== "_tdinternal") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tiledesk/tiledesk-tybot-connector",
3
- "version": "0.2.130-rc3",
3
+ "version": "0.2.130-rc4",
4
4
  "description": "Tiledesk Tybot connector",
5
5
  "main": "index.js",
6
6
  "scripts": {