@nextclaw/server 0.11.16 → 0.11.17

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.d.ts +6 -0
  2. package/package.json +4 -4
package/dist/index.d.ts CHANGED
@@ -1070,6 +1070,12 @@ type UiServerEvent = {
1070
1070
  payload: {
1071
1071
  sessionKey: string;
1072
1072
  };
1073
+ } | {
1074
+ type: "session.run-status";
1075
+ payload: {
1076
+ sessionKey: string;
1077
+ status: "running" | "idle";
1078
+ };
1073
1079
  } | {
1074
1080
  type: "session.summary.upsert";
1075
1081
  payload: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextclaw/server",
3
- "version": "0.11.16",
3
+ "version": "0.11.17",
4
4
  "private": false,
5
5
  "description": "Nextclaw UI/API server.",
6
6
  "type": "module",
@@ -20,10 +20,10 @@
20
20
  "ws": "^8.18.0",
21
21
  "@nextclaw/mcp": "0.1.58",
22
22
  "@nextclaw/ncp-http-agent-server": "0.3.6",
23
- "@nextclaw/ncp": "0.4.2",
24
- "@nextclaw/core": "0.11.11",
25
23
  "@nextclaw/runtime": "0.2.25",
26
- "@nextclaw/openclaw-compat": "0.3.50"
24
+ "@nextclaw/core": "0.11.11",
25
+ "@nextclaw/openclaw-compat": "0.3.51",
26
+ "@nextclaw/ncp": "0.4.2"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/node": "^20.17.6",