@tiledesk/tiledesk-tybot-connector 0.2.134 → 0.2.136
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.136
|
|
21
|
+
- TdCache rollback
|
|
22
|
+
|
|
23
|
+
# v0.2.135
|
|
24
|
+
- Updated to redis 4.7.0 + Tdcache.js
|
|
25
|
+
- Disabled close_directive_test.js - DirClose directive - too old, not passing
|
|
26
|
+
- Disabled conversation-gpt_assistant_test.js
|
|
27
|
+
|
|
20
28
|
# v0.2.134
|
|
21
29
|
- Added filter for mweb on hidden messages
|
|
22
30
|
|
package/package.json
CHANGED
|
@@ -178,7 +178,7 @@ class DirectivesChatbotPlug {
|
|
|
178
178
|
async nextDirective(directives) {
|
|
179
179
|
if (this.log) {console.log("....nextDirective() checkStep():");}
|
|
180
180
|
const go_on = await TiledeskChatbot.checkStep(
|
|
181
|
-
this.context.tdcache, this.context.requestId, this.chatbot
|
|
181
|
+
this.context.tdcache, this.context.requestId, this.chatbot?.MAX_STEPS, this.chatbot?.MAX_EXECUTION_TIME, this.log
|
|
182
182
|
);
|
|
183
183
|
// const current_step = await TiledeskChatbot.currentStep(this.context.tdcache, this.context.requestId);
|
|
184
184
|
// if (this.log) {console.log("........nextDirective() currentStep:", current_step);}
|