@openclaw/msteams 2026.5.10-beta.3 → 2026.5.10-beta.4

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/api.js CHANGED
@@ -1,3 +1,3 @@
1
- import { t as msteamsPlugin } from "./channel-C86_kLud.js";
1
+ import { t as msteamsPlugin } from "./channel-BApPsQGS.js";
2
2
  import { i as msteamsSetupAdapter, n as openDelegatedOAuthUrl, r as createMSTeamsSetupWizardBase, t as msteamsSetupWizard } from "./setup-surface-Ce463w3t.js";
3
3
  export { createMSTeamsSetupWizardBase, msteamsPlugin, msteamsSetupAdapter, msteamsSetupWizard, openDelegatedOAuthUrl };
@@ -965,7 +965,7 @@ const msteamsPlugin = createChatChannelPlugin({
965
965
  })
966
966
  }),
967
967
  gateway: { startAccount: async (ctx) => {
968
- const { monitorMSTeamsProvider } = await import("./src-CghTs6GS.js");
968
+ const { monitorMSTeamsProvider } = await import("./src-BEhrsfns.js");
969
969
  const port = ctx.cfg.channels?.msteams?.webhook?.port ?? 3978;
970
970
  ctx.setStatus({
971
971
  accountId: ctx.accountId,
@@ -1,2 +1,2 @@
1
- import { t as msteamsPlugin } from "./channel-C86_kLud.js";
1
+ import { t as msteamsPlugin } from "./channel-BApPsQGS.js";
2
2
  export { msteamsPlugin };
@@ -2475,12 +2475,14 @@ async function resolveMSTeamsInboundMedia(params) {
2475
2475
  }
2476
2476
  //#endregion
2477
2477
  //#region extensions/msteams/src/monitor-handler/thread-session.ts
2478
+ const TRAILING_THREAD_SUFFIX = /(?::thread:[^:]+)+$/;
2478
2479
  function resolveMSTeamsRouteSessionKey(params) {
2479
2480
  const channelThreadId = params.isChannel ? params.conversationMessageId ?? params.replyToId ?? void 0 : void 0;
2481
+ const cleanBase = params.baseSessionKey.replace(TRAILING_THREAD_SUFFIX, "");
2480
2482
  return resolveThreadSessionKeys({
2481
- baseSessionKey: params.baseSessionKey,
2483
+ baseSessionKey: cleanBase,
2482
2484
  threadId: channelThreadId,
2483
- parentSessionKey: channelThreadId ? params.baseSessionKey : void 0
2485
+ parentSessionKey: channelThreadId ? cleanBase : void 0
2484
2486
  }).sessionKey;
2485
2487
  }
2486
2488
  //#endregion
package/dist/test-api.js CHANGED
@@ -1,2 +1,2 @@
1
- import { t as msteamsPlugin } from "./channel-C86_kLud.js";
1
+ import { t as msteamsPlugin } from "./channel-BApPsQGS.js";
2
2
  export { msteamsPlugin };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclaw/msteams",
3
- "version": "2026.5.10-beta.3",
3
+ "version": "2026.5.10-beta.4",
4
4
  "description": "OpenClaw Microsoft Teams channel plugin",
5
5
  "repository": {
6
6
  "type": "git",
@@ -22,7 +22,7 @@
22
22
  "openclaw": "workspace:*"
23
23
  },
24
24
  "peerDependencies": {
25
- "openclaw": ">=2026.5.10-beta.3"
25
+ "openclaw": ">=2026.5.10-beta.4"
26
26
  },
27
27
  "peerDependenciesMeta": {
28
28
  "openclaw": {
@@ -58,10 +58,10 @@
58
58
  "minHostVersion": ">=2026.4.10"
59
59
  },
60
60
  "compat": {
61
- "pluginApi": ">=2026.5.10-beta.3"
61
+ "pluginApi": ">=2026.5.10-beta.4"
62
62
  },
63
63
  "build": {
64
- "openclawVersion": "2026.5.10-beta.3"
64
+ "openclawVersion": "2026.5.10-beta.4"
65
65
  },
66
66
  "release": {
67
67
  "publishToClawHub": true,