@openclaw/msteams 2026.5.3-beta.4 → 2026.5.4-beta.1
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 +1 -1
- package/dist/{channel-_BNxPm8L.js → channel-BOwKBAvY.js} +2 -2
- package/dist/channel-config-api.js +1 -1
- package/dist/channel-plugin-api.js +1 -1
- package/dist/{config-schema-BB9atA3D.js → config-schema-DwOEthCC.js} +4 -0
- package/dist/setup-plugin-api.js +1 -1
- package/dist/{src-Cp9jIjdt.js → src-CP7V_TeZ.js} +4 -4
- package/dist/test-api.js +1 -1
- package/openclaw.plugin.json +25 -0
- package/package.json +4 -4
package/dist/api.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { t as msteamsPlugin } from "./channel-
|
|
1
|
+
import { t as msteamsPlugin } from "./channel-BOwKBAvY.js";
|
|
2
2
|
import { i as msteamsSetupAdapter, n as openDelegatedOAuthUrl, r as createMSTeamsSetupWizardBase, t as msteamsSetupWizard } from "./setup-surface-BLkFQYIQ.js";
|
|
3
3
|
export { createMSTeamsSetupWizardBase, msteamsPlugin, msteamsSetupAdapter, msteamsSetupWizard, openDelegatedOAuthUrl };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { o as buildProbeChannelStatusSummary, r as PAIRING_APPROVED_MESSAGE, s as chunkTextForOutbound, t as DEFAULT_ACCOUNT_ID, u as createDefaultChannelRuntimeState } from "./runtime-api-DV1iVMn1.js";
|
|
2
2
|
import { h as resolveMSTeamsCredentials } from "./graph-users-9uQJepqr.js";
|
|
3
3
|
import { a as parseMSTeamsTeamChannelInput, c as resolveMSTeamsUserAllowlist, i as parseMSTeamsConversationId, n as normalizeMSTeamsMessagingTarget, r as normalizeMSTeamsUserInput, s as resolveMSTeamsChannelAllowlist, t as looksLikeMSTeamsTargetId } from "./resolve-allowlist-D41JSziq.js";
|
|
4
|
-
import { t as MSTeamsChannelConfigSchema } from "./config-schema-
|
|
4
|
+
import { t as MSTeamsChannelConfigSchema } from "./config-schema-DwOEthCC.js";
|
|
5
5
|
import { r as resolveMSTeamsGroupToolPolicy } from "./policy-DTnU2GR7.js";
|
|
6
6
|
import { i as msteamsSetupAdapter, t as msteamsSetupWizard } from "./setup-surface-BLkFQYIQ.js";
|
|
7
7
|
import { describeAccountSnapshot } from "openclaw/plugin-sdk/account-helpers";
|
|
@@ -928,7 +928,7 @@ const msteamsPlugin = createChatChannelPlugin({
|
|
|
928
928
|
})
|
|
929
929
|
}),
|
|
930
930
|
gateway: { startAccount: async (ctx) => {
|
|
931
|
-
const { monitorMSTeamsProvider } = await import("./src-
|
|
931
|
+
const { monitorMSTeamsProvider } = await import("./src-CP7V_TeZ.js");
|
|
932
932
|
const port = ctx.cfg.channels?.msteams?.webhook?.port ?? 3978;
|
|
933
933
|
ctx.setStatus({
|
|
934
934
|
accountId: ctx.accountId,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { t as MSTeamsChannelConfigSchema } from "./config-schema-
|
|
1
|
+
import { t as MSTeamsChannelConfigSchema } from "./config-schema-DwOEthCC.js";
|
|
2
2
|
export { MSTeamsChannelConfigSchema };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { t as msteamsPlugin } from "./channel-
|
|
1
|
+
import { t as msteamsPlugin } from "./channel-BOwKBAvY.js";
|
|
2
2
|
export { msteamsPlugin };
|
|
@@ -29,6 +29,10 @@ const MSTeamsChannelConfigSchema = buildChannelConfigSchema(MSTeamsConfigSchema,
|
|
|
29
29
|
"streaming.progress.toolProgress": {
|
|
30
30
|
label: "MS Teams Progress Tool Lines",
|
|
31
31
|
help: "Show compact tool/progress lines in progress mode (default: true). Set false to keep only the title until final delivery."
|
|
32
|
+
},
|
|
33
|
+
"streaming.progress.commandText": {
|
|
34
|
+
label: "MS Teams Progress Command Text",
|
|
35
|
+
help: "Command/exec detail in progress lines: \"raw\" preserves released behavior; \"status\" shows only the tool label."
|
|
32
36
|
}
|
|
33
37
|
} });
|
|
34
38
|
//#endregion
|
package/dist/setup-plugin-api.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { h as resolveMSTeamsCredentials } from "./graph-users-9uQJepqr.js";
|
|
2
|
-
import { t as MSTeamsChannelConfigSchema } from "./config-schema-
|
|
2
|
+
import { t as MSTeamsChannelConfigSchema } from "./config-schema-DwOEthCC.js";
|
|
3
3
|
import { i as msteamsSetupAdapter, t as msteamsSetupWizard } from "./setup-surface-BLkFQYIQ.js";
|
|
4
4
|
import { describeAccountSnapshot } from "openclaw/plugin-sdk/account-helpers";
|
|
5
5
|
import { formatAllowFromLowercase } from "openclaw/plugin-sdk/allow-from";
|
|
@@ -18,7 +18,7 @@ import { resolveDualTextControlCommandGate } from "openclaw/plugin-sdk/command-g
|
|
|
18
18
|
import { filterSupplementalContextItems, resolveChannelContextVisibilityMode, shouldIncludeSupplementalContext } from "openclaw/plugin-sdk/context-visibility-runtime";
|
|
19
19
|
import { evaluateSenderGroupAccessForPolicy } from "openclaw/plugin-sdk/group-access";
|
|
20
20
|
import { DEFAULT_GROUP_HISTORY_LIMIT, buildPendingHistoryContextFromMap, recordPendingHistoryEntryIfEnabled } from "openclaw/plugin-sdk/reply-history";
|
|
21
|
-
import { createChannelProgressDraftGate, formatChannelProgressDraftLine, formatChannelProgressDraftText, isChannelProgressDraftWorkToolName, resolveChannelPreviewStreamMode, resolveChannelProgressDraftMaxLines, resolveChannelStreamingBlockEnabled, resolveChannelStreamingPreviewToolProgress } from "openclaw/plugin-sdk/channel-streaming";
|
|
21
|
+
import { createChannelProgressDraftGate, formatChannelProgressDraftLine, formatChannelProgressDraftLineForEntry, formatChannelProgressDraftText, isChannelProgressDraftWorkToolName, resolveChannelPreviewStreamMode, resolveChannelProgressDraftMaxLines, resolveChannelStreamingBlockEnabled, resolveChannelStreamingPreviewToolProgress } from "openclaw/plugin-sdk/channel-streaming";
|
|
22
22
|
//#region extensions/msteams/src/feedback-reflection-prompt.ts
|
|
23
23
|
/** Max chars of the thumbed-down response to include in the reflection prompt. */
|
|
24
24
|
const MAX_RESPONSE_CHARS = 500;
|
|
@@ -2145,15 +2145,15 @@ function createMSTeamsReplyDispatcher(params) {
|
|
|
2145
2145
|
...streamController.shouldSuppressDefaultToolProgressMessages() ? { suppressDefaultToolProgressMessages: true } : {},
|
|
2146
2146
|
...streamController.shouldStreamPreviewToolProgress() ? {
|
|
2147
2147
|
onToolStart: async (payload) => {
|
|
2148
|
-
await streamController.pushProgressLine(
|
|
2148
|
+
await streamController.pushProgressLine(formatChannelProgressDraftLineForEntry(msteamsCfg, {
|
|
2149
2149
|
event: "tool",
|
|
2150
2150
|
name: payload.name,
|
|
2151
2151
|
phase: payload.phase,
|
|
2152
2152
|
args: payload.args
|
|
2153
|
-
}), { toolName: payload.name });
|
|
2153
|
+
}, payload.detailMode ? { detailMode: payload.detailMode } : void 0), { toolName: payload.name });
|
|
2154
2154
|
},
|
|
2155
2155
|
onItemEvent: async (payload) => {
|
|
2156
|
-
await streamController.pushProgressLine(
|
|
2156
|
+
await streamController.pushProgressLine(formatChannelProgressDraftLineForEntry(msteamsCfg, {
|
|
2157
2157
|
event: "item",
|
|
2158
2158
|
itemKind: payload.kind,
|
|
2159
2159
|
title: payload.title,
|
package/dist/test-api.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { t as msteamsPlugin } from "./channel-
|
|
1
|
+
import { t as msteamsPlugin } from "./channel-BOwKBAvY.js";
|
|
2
2
|
export { msteamsPlugin };
|
package/openclaw.plugin.json
CHANGED
|
@@ -281,6 +281,13 @@
|
|
|
281
281
|
},
|
|
282
282
|
"toolProgress": {
|
|
283
283
|
"type": "boolean"
|
|
284
|
+
},
|
|
285
|
+
"commandText": {
|
|
286
|
+
"type": "string",
|
|
287
|
+
"enum": [
|
|
288
|
+
"raw",
|
|
289
|
+
"status"
|
|
290
|
+
]
|
|
284
291
|
}
|
|
285
292
|
},
|
|
286
293
|
"additionalProperties": false
|
|
@@ -310,8 +317,22 @@
|
|
|
310
317
|
"exclusiveMinimum": 0,
|
|
311
318
|
"maximum": 9007199254740991
|
|
312
319
|
},
|
|
320
|
+
"render": {
|
|
321
|
+
"type": "string",
|
|
322
|
+
"enum": [
|
|
323
|
+
"text",
|
|
324
|
+
"rich"
|
|
325
|
+
]
|
|
326
|
+
},
|
|
313
327
|
"toolProgress": {
|
|
314
328
|
"type": "boolean"
|
|
329
|
+
},
|
|
330
|
+
"commandText": {
|
|
331
|
+
"type": "string",
|
|
332
|
+
"enum": [
|
|
333
|
+
"raw",
|
|
334
|
+
"status"
|
|
335
|
+
]
|
|
315
336
|
}
|
|
316
337
|
},
|
|
317
338
|
"additionalProperties": false
|
|
@@ -698,6 +719,10 @@
|
|
|
698
719
|
"streaming.progress.toolProgress": {
|
|
699
720
|
"label": "MS Teams Progress Tool Lines",
|
|
700
721
|
"help": "Show compact tool/progress lines in progress mode (default: true). Set false to keep only the title until final delivery."
|
|
722
|
+
},
|
|
723
|
+
"streaming.progress.commandText": {
|
|
724
|
+
"label": "MS Teams Progress Command Text",
|
|
725
|
+
"help": "Command/exec detail in progress lines: \"raw\" preserves released behavior; \"status\" shows only the tool label."
|
|
701
726
|
}
|
|
702
727
|
}
|
|
703
728
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/msteams",
|
|
3
|
-
"version": "2026.5.
|
|
3
|
+
"version": "2026.5.4-beta.1",
|
|
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.
|
|
25
|
+
"openclaw": ">=2026.5.4-beta.1"
|
|
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.
|
|
61
|
+
"pluginApi": ">=2026.5.4-beta.1"
|
|
62
62
|
},
|
|
63
63
|
"build": {
|
|
64
|
-
"openclawVersion": "2026.5.
|
|
64
|
+
"openclawVersion": "2026.5.4-beta.1"
|
|
65
65
|
},
|
|
66
66
|
"release": {
|
|
67
67
|
"publishToClawHub": true,
|