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