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

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,14 @@ available on:
17
17
  - Added flowError on JSONCondition when result = null
18
18
  - Added fix on Filler -->
19
19
 
20
+ # v0.2.130
21
+ - (TiledeskChatbotUtil) fix process.env.API_ENDPOINT => process.env.API_URL
22
+ - index.js /block => added "token": "NO-TOKEN"
23
+ - (TiledeskChatbotUtil) added: chatbot.addParameter(TiledeskChatbotConst.API_BASE_URL, process.env.API_ENDPOINT);
24
+
25
+ # v0.2.130-rc5
26
+ - (TiledeskChatbotUtil) fix process.env.API_ENDPOINT => process.env.API_URL
27
+
20
28
  # v0.2.130-rc4
21
29
  - (TiledeskChatbotUtil) process.env.API_ENDPOINT => process.env.API_URL
22
30
 
@@ -522,7 +522,7 @@ class TiledeskChatbotUtil {
522
522
  await chatbot.addParameter(TiledeskChatbotConst.REQ_CHATBOT_TOKEN_v2, "JWT " + chatbotToken);
523
523
  }
524
524
 
525
- if (process.env.API_ENDPOINT) {
525
+ if (process.env.API_URL) {
526
526
  await chatbot.addParameter(TiledeskChatbotConst.API_BASE_URL, process.env.API_URL);
527
527
  }
528
528
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tiledesk/tiledesk-tybot-connector",
3
- "version": "0.2.130-rc4",
3
+ "version": "0.2.130",
4
4
  "description": "Tiledesk Tybot connector",
5
5
  "main": "index.js",
6
6
  "scripts": {