openmates 0.10.0-alpha.2 → 0.10.0-alpha.3

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/cli.js CHANGED
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  getExtForLang,
4
4
  serializeToYaml
5
- } from "./chunk-XIGU2TJJ.js";
5
+ } from "./chunk-R4HKMYBT.js";
6
6
  export {
7
7
  getExtForLang,
8
8
  serializeToYaml
package/dist/index.js CHANGED
@@ -6,7 +6,7 @@ import {
6
6
  getExtForLang,
7
7
  parseNewChatSuggestionText,
8
8
  serializeToYaml
9
- } from "./chunk-XIGU2TJJ.js";
9
+ } from "./chunk-R4HKMYBT.js";
10
10
  export {
11
11
  MATE_NAMES,
12
12
  MEMORY_TYPE_REGISTRY,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openmates",
3
- "version": "0.10.0-alpha.2",
3
+ "version": "0.10.0-alpha.3",
4
4
  "description": "OpenMates CLI and SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -8123,6 +8123,7 @@ async function sendMessageStreaming(client, params, redactor) {
8123
8123
  try {
8124
8124
  const mentionCtx = await client.buildMentionContext();
8125
8125
  const parsed = parseMentions(params.message, mentionCtx);
8126
+ finalMessage = parsed.processedMessage;
8126
8127
  if (parsed.unresolved.length > 0) {
8127
8128
  clearTyping();
8128
8129
  for (const u of parsed.unresolved) {
@@ -8259,7 +8260,6 @@ async function sendMessageStreaming(client, params, redactor) {
8259
8260
  );
8260
8261
  }
8261
8262
  }
8262
- finalMessage = parsed.processedMessage;
8263
8263
  } catch {
8264
8264
  }
8265
8265
  }