@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.
Files changed (2) hide show
  1. package/dist/index.js +3 -2
  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 appId = String(params.config.channels.feishu.appId ?? "").trim();
1064
- const appSecret = String(params.config.channels.feishu.appSecret ?? "").trim();
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.44",
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.40",
21
+ "@nextclaw/mcp": "0.1.42",
22
22
  "@nextclaw/ncp-http-agent-server": "0.3.2",
23
- "@nextclaw/core": "0.11.0",
23
+ "@nextclaw/ncp": "0.3.2",
24
24
  "@nextclaw/runtime": "0.2.14",
25
25
  "@nextclaw/openclaw-compat": "0.3.26",
26
- "@nextclaw/ncp": "0.3.2"
26
+ "@nextclaw/core": "0.11.0"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/node": "^20.17.6",