@nextclaw/server 0.10.46 → 0.10.47
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/index.js +2 -3
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -1060,9 +1060,8 @@ function messageOrDefault(action, kind, fallback) {
|
|
|
1060
1060
|
return text?.trim() ? text : fallback;
|
|
1061
1061
|
}
|
|
1062
1062
|
async function runFeishuVerifyAction(params) {
|
|
1063
|
-
const
|
|
1064
|
-
const
|
|
1065
|
-
const appSecret = String(feishuConfig.appSecret ?? "").trim();
|
|
1063
|
+
const appId = String(params.config.channels.feishu.appId ?? "").trim();
|
|
1064
|
+
const appSecret = String(params.config.channels.feishu.appSecret ?? "").trim();
|
|
1066
1065
|
if (!appId || !appSecret) {
|
|
1067
1066
|
return {
|
|
1068
1067
|
ok: false,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nextclaw/server",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.47",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Nextclaw UI/API server.",
|
|
6
6
|
"type": "module",
|
|
@@ -18,11 +18,11 @@
|
|
|
18
18
|
"@hono/node-server": "^1.13.3",
|
|
19
19
|
"hono": "^4.6.2",
|
|
20
20
|
"ws": "^8.18.0",
|
|
21
|
-
"@nextclaw/mcp": "0.1.42",
|
|
22
21
|
"@nextclaw/ncp-http-agent-server": "0.3.2",
|
|
23
|
-
"@nextclaw/
|
|
24
|
-
"@nextclaw/runtime": "0.2.14",
|
|
22
|
+
"@nextclaw/mcp": "0.1.43",
|
|
25
23
|
"@nextclaw/openclaw-compat": "0.3.26",
|
|
24
|
+
"@nextclaw/runtime": "0.2.14",
|
|
25
|
+
"@nextclaw/ncp": "0.3.2",
|
|
26
26
|
"@nextclaw/core": "0.11.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|