@botpress/runtime 1.6.9 → 1.6.10
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/dist/definition.js +3 -2
- package/dist/definition.js.map +2 -2
- package/dist/internal.js +3 -2
- package/dist/internal.js.map +2 -2
- package/dist/library.js +3 -2
- package/dist/library.js.map +2 -2
- package/dist/primitives/conversation-instance.d.ts.map +1 -1
- package/dist/primitives/conversation.d.ts +30 -9
- package/dist/primitives/conversation.d.ts.map +1 -1
- package/dist/runtime.js +3 -2
- package/dist/runtime.js.map +2 -2
- package/package.json +1 -1
package/dist/definition.js
CHANGED
|
@@ -48,7 +48,7 @@ var init_define_BUILD = __esm({
|
|
|
48
48
|
var define_PACKAGE_VERSIONS_default;
|
|
49
49
|
var init_define_PACKAGE_VERSIONS = __esm({
|
|
50
50
|
"<define:__PACKAGE_VERSIONS__>"() {
|
|
51
|
-
define_PACKAGE_VERSIONS_default = { runtime: "1.6.
|
|
51
|
+
define_PACKAGE_VERSIONS_default = { runtime: "1.6.10", adk: "not-installed", sdk: "4.17.3", llmz: "0.0.27", zai: "2.5.0", cognitive: "0.2.0" };
|
|
52
52
|
}
|
|
53
53
|
});
|
|
54
54
|
|
|
@@ -40403,7 +40403,7 @@ var BaseConversationInstance = class {
|
|
|
40403
40403
|
TrackedState;
|
|
40404
40404
|
constructor(conversation, client) {
|
|
40405
40405
|
this.id = conversation.id;
|
|
40406
|
-
this.channel = conversation.channel
|
|
40406
|
+
this.channel = `${conversation.integration}.${conversation.channel}`;
|
|
40407
40407
|
this.integration = conversation.integration;
|
|
40408
40408
|
this.tags = conversation.tags;
|
|
40409
40409
|
this.conversation = conversation;
|
|
@@ -43048,6 +43048,7 @@ var BaseConversation = class {
|
|
|
43048
43048
|
await this.#handler({
|
|
43049
43049
|
type,
|
|
43050
43050
|
message,
|
|
43051
|
+
channel: conversationInstance.channel,
|
|
43051
43052
|
event,
|
|
43052
43053
|
request: requestObject,
|
|
43053
43054
|
conversation: conversationInstance,
|