@larksuite/openclaw-lark 2026.4.9 → 2026.4.10-beta.0
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/package.json
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
18
|
exports.handleFeishuMessage = handleFeishuMessage;
|
|
19
19
|
const reply_history_1 = require("openclaw/plugin-sdk/reply-history");
|
|
20
|
-
const
|
|
20
|
+
const command_auth_1 = require("openclaw/plugin-sdk/command-auth");
|
|
21
21
|
const allow_from_1 = require("openclaw/plugin-sdk/allow-from");
|
|
22
22
|
const accounts_1 = require("../../core/accounts.js");
|
|
23
23
|
const lark_client_1 = require("../../core/lark-client.js");
|
|
@@ -139,7 +139,7 @@ async function handleFeishuMessage(params) {
|
|
|
139
139
|
const explicitSenderPolicy = groupConfig?.groupPolicy ?? defaultGroupConfig?.groupPolicy ?? accountFeishuCfg?.groupPolicy;
|
|
140
140
|
return explicitSenderPolicy === 'open' ? ['*'] : [];
|
|
141
141
|
})();
|
|
142
|
-
const { commandAuthorized } = await (0,
|
|
142
|
+
const { commandAuthorized } = await (0, command_auth_1.resolveSenderCommandAuthorization)({
|
|
143
143
|
rawBody: ctx.content,
|
|
144
144
|
cfg: accountScopedCfg,
|
|
145
145
|
isGroup,
|