@botfabrik/engine-webclient 4.104.33-alpha.11 → 4.104.33-alpha.12

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.
@@ -44,7 +44,12 @@ const emitMessageToGuestAction = async (nsp, session, action) => {
44
44
  nsp.to(session.id).emit('action', { type: ActionTypes.TYPING_ON });
45
45
  await waitForTyping(action['message']);
46
46
  }
47
- await sendToChatClient(nsp, session, action);
47
+ const actionToSend = {
48
+ ...action,
49
+ detectedIntent: undefined,
50
+ executionTrace: undefined,
51
+ };
52
+ await sendToChatClient(nsp, session, actionToSend);
48
53
  await waitFor(500);
49
54
  };
50
55
  const sendToChatClient = async (nsp, session, action) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botfabrik/engine-webclient",
3
- "version": "4.104.33-alpha.11",
3
+ "version": "4.104.33-alpha.12",
4
4
  "description": "Webclient for Botfabriks Bot Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -50,5 +50,5 @@
50
50
  "tsx": "^4.21.0",
51
51
  "typescript": "5.9.3"
52
52
  },
53
- "gitHead": "223a670ad1a7300d258b1a5df450a31c5ce3d6ab"
53
+ "gitHead": "479c95cc75349f46226751908cee7ff89ca918df"
54
54
  }