@nextclaw/server 0.11.16 → 0.11.18
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.d.ts +6 -0
- package/package.json +7 -7
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.
|
|
3
|
+
"version": "0.11.18",
|
|
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/
|
|
22
|
-
"@nextclaw/
|
|
21
|
+
"@nextclaw/core": "0.11.12",
|
|
22
|
+
"@nextclaw/mcp": "0.1.59",
|
|
23
23
|
"@nextclaw/ncp": "0.4.2",
|
|
24
|
-
"@nextclaw/
|
|
25
|
-
"@nextclaw/
|
|
26
|
-
"@nextclaw/
|
|
24
|
+
"@nextclaw/ncp-http-agent-server": "0.3.6",
|
|
25
|
+
"@nextclaw/openclaw-compat": "0.3.52",
|
|
26
|
+
"@nextclaw/runtime": "0.2.26"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/node": "^20.17.6",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"tsup": "^8.3.5",
|
|
33
33
|
"tsx": "^4.19.2",
|
|
34
34
|
"typescript": "^5.6.3",
|
|
35
|
-
"vitest": "^
|
|
35
|
+
"vitest": "^4.1.2"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"build": "tsup src/index.ts --format esm --dts --out-dir dist",
|