@botpress/runtime 1.6.8 → 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/internal.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.8", adk: "not-installed", sdk: "4.17.3", llmz: "0.0.27", zai: "2.4.1", cognitive: "0.2.0" };
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
 
@@ -42143,7 +42143,7 @@ var BaseConversationInstance = class {
42143
42143
  TrackedState;
42144
42144
  constructor(conversation, client) {
42145
42145
  this.id = conversation.id;
42146
- this.channel = conversation.channel;
42146
+ this.channel = `${conversation.integration}.${conversation.channel}`;
42147
42147
  this.integration = conversation.integration;
42148
42148
  this.tags = conversation.tags;
42149
42149
  this.conversation = conversation;
@@ -42396,6 +42396,7 @@ var BaseConversation = class {
42396
42396
  await this.#handler({
42397
42397
  type,
42398
42398
  message,
42399
+ channel: conversationInstance.channel,
42399
42400
  event,
42400
42401
  request: requestObject,
42401
42402
  conversation: conversationInstance,