@tiledesk/tiledesk-tybot-connector 0.2.51-rc1 → 0.2.52
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,20 +5,16 @@
|
|
|
5
5
|
available on:
|
|
6
6
|
▶️ https://www.npmjs.com/package/@tiledesk/tiledesk-tybot-connector
|
|
7
7
|
|
|
8
|
-
#
|
|
9
|
-
- Fix bug:
|
|
8
|
+
# v0.2.52
|
|
9
|
+
- Fix bug: wrong call at getKeyFromIntegration in Qapla' directive
|
|
10
10
|
|
|
11
|
-
#
|
|
12
|
-
-
|
|
11
|
+
# v0.2.51
|
|
12
|
+
- Improved AskGPTV2 action
|
|
13
|
+
- Added Hubspot action
|
|
14
|
+
- Added Customerio action (hidden)
|
|
13
15
|
|
|
14
|
-
#
|
|
15
|
-
- Added
|
|
16
|
-
|
|
17
|
-
# 0.2.50-rc2
|
|
18
|
-
- Added DirAskGPTV2
|
|
19
|
-
|
|
20
|
-
# 0.2.50-rc1
|
|
21
|
-
- Added quotes for GPT actions
|
|
16
|
+
# v0.2.50
|
|
17
|
+
- Added AskGPTV2 action
|
|
22
18
|
|
|
23
19
|
# v0.2.49
|
|
24
20
|
- resplacebotv2, added "/" + blockName (so the blockname will be implicitly executed), removing the need to specify the "/" in the body of the replacebot editor
|
package/package.json
CHANGED
|
@@ -165,7 +165,7 @@ class DirAskGPTV2 {
|
|
|
165
165
|
}
|
|
166
166
|
if (this.log) { console.log("DirAskGPT resbody:", resbody); }
|
|
167
167
|
let answer = resbody.answer;
|
|
168
|
-
let source = resbody.source
|
|
168
|
+
let source = resbody.source;
|
|
169
169
|
await this.#assignAttributes(action, answer, source);
|
|
170
170
|
|
|
171
171
|
if (err) {
|
|
@@ -289,7 +289,7 @@ class DirQapla {
|
|
|
289
289
|
return new Promise((resolve) => {
|
|
290
290
|
|
|
291
291
|
const INTEGRATIONS_HTTPREQUEST = {
|
|
292
|
-
url: server_base_url + "/" + this.context.projectId + "/integration/name/
|
|
292
|
+
url: server_base_url + "/" + this.context.projectId + "/integration/name/qapla",
|
|
293
293
|
headers: {
|
|
294
294
|
'Content-Type': 'application/json',
|
|
295
295
|
'Authorization': 'JWT ' + this.context.token
|