@tiledesk/tiledesk-tybot-connector 0.2.124 → 0.2.125
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 +4 -0
- package/models/TiledeskChatbot.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -17,6 +17,10 @@ available on:
|
|
|
17
17
|
- Added flowError on JSONCondition when result = null
|
|
18
18
|
- Added fix on Filler -->
|
|
19
19
|
|
|
20
|
+
# v0.2.125 -> test
|
|
21
|
+
- class TiledeskChatbot static MAX_STEPS = 1000;
|
|
22
|
+
- class TiledeskChatbot static MAX_EXECUTION_TIME = 1000 * 3600 * 6; Increased from 4 => 6 hours
|
|
23
|
+
|
|
20
24
|
# v0.2.124 -> test
|
|
21
25
|
- TiledeskChatbot.js: fixed problem with locked-intent error.
|
|
22
26
|
- DirectivesChatbotPlug -> errorMessage is now hidden
|
|
@@ -13,8 +13,8 @@ const { TiledeskChatbotConst } = require('./TiledeskChatbotConst.js');
|
|
|
13
13
|
|
|
14
14
|
class TiledeskChatbot {
|
|
15
15
|
|
|
16
|
-
static MAX_STEPS = 100; // prod
|
|
17
|
-
static MAX_EXECUTION_TIME = 1000 *
|
|
16
|
+
static MAX_STEPS = 1000; // test 100; // prod ...
|
|
17
|
+
static MAX_EXECUTION_TIME = 1000 * 3600 * 6; // 4 hours, 1000 * 60 * 2;// test // prod...
|
|
18
18
|
|
|
19
19
|
constructor(config) {
|
|
20
20
|
if (!config.botsDataSource) {
|