@openclaw/msteams 2026.2.23 → 2026.2.24

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 2026.2.24
4
+
5
+ ### Changes
6
+
7
+ - Version alignment with core OpenClaw release numbers.
8
+
3
9
  ## 2026.2.22
4
10
 
5
11
  ### Changes
package/package.json CHANGED
@@ -1,15 +1,12 @@
1
1
  {
2
2
  "name": "@openclaw/msteams",
3
- "version": "2026.2.23",
3
+ "version": "2026.2.24",
4
4
  "description": "OpenClaw Microsoft Teams channel plugin",
5
5
  "type": "module",
6
6
  "dependencies": {
7
7
  "@microsoft/agents-hosting": "^1.3.1",
8
8
  "express": "^5.2.1"
9
9
  },
10
- "devDependencies": {
11
- "openclaw": "workspace:*"
12
- },
13
10
  "openclaw": {
14
11
  "extensions": [
15
12
  "./index.ts"
@@ -68,6 +68,7 @@ export function createMSTeamsReplyDispatcher(params: {
68
68
  core.channel.reply.createReplyDispatcherWithTyping({
69
69
  ...prefixOptions,
70
70
  humanDelay: core.channel.reply.resolveHumanDelayConfig(params.cfg, params.agentId),
71
+ typingCallbacks,
71
72
  deliver: async (payload) => {
72
73
  const tableMode = core.channel.text.resolveMarkdownTableMode({
73
74
  cfg: params.cfg,
@@ -121,7 +122,6 @@ export function createMSTeamsReplyDispatcher(params: {
121
122
  hint,
122
123
  });
123
124
  },
124
- onReplyStart: typingCallbacks.onReplyStart,
125
125
  });
126
126
 
127
127
  return {