@nextclaw/openclaw-compat 0.3.29 → 0.3.31
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 +4 -1
- package/package.json +10 -10
package/dist/index.d.ts
CHANGED
|
@@ -60,7 +60,9 @@ type OpenClawPluginNcpAgentRuntimeRegistration = {
|
|
|
60
60
|
kind: string;
|
|
61
61
|
label?: string;
|
|
62
62
|
createRuntime: (params: RuntimeFactoryParams) => NcpAgentRuntime;
|
|
63
|
-
describeSessionType?: (
|
|
63
|
+
describeSessionType?: (params?: {
|
|
64
|
+
describeMode?: "observation" | "probe";
|
|
65
|
+
}) => Promise<{
|
|
64
66
|
ready?: boolean;
|
|
65
67
|
reason?: string | null;
|
|
66
68
|
reasonMessage?: string | null;
|
|
@@ -321,6 +323,7 @@ type PluginReplyDispatchParams = {
|
|
|
321
323
|
kind: string;
|
|
322
324
|
}) => Promise<void> | void;
|
|
323
325
|
onError?: (error: unknown) => void;
|
|
326
|
+
onReplyStart?: () => Promise<void> | void;
|
|
324
327
|
};
|
|
325
328
|
};
|
|
326
329
|
type PluginRuntime = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nextclaw/openclaw-compat",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.31",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "OpenClaw plugin compatibility layer for NextClaw.",
|
|
6
6
|
"type": "module",
|
|
@@ -19,21 +19,21 @@
|
|
|
19
19
|
"jiti": "^1.21.7",
|
|
20
20
|
"jszip": "^3.10.1",
|
|
21
21
|
"tar": "^7.4.3",
|
|
22
|
-
"@nextclaw/channel-plugin-email": "0.2.16",
|
|
23
22
|
"@nextclaw/channel-plugin-dingtalk": "0.2.16",
|
|
24
|
-
"@nextclaw/channel-plugin-slack": "0.2.16",
|
|
25
|
-
"@nextclaw/channel-plugin-mochat": "0.2.16",
|
|
26
|
-
"@nextclaw/channel-plugin-feishu": "0.2.19",
|
|
27
23
|
"@nextclaw/channel-plugin-discord": "0.2.16",
|
|
24
|
+
"@nextclaw/channel-plugin-email": "0.2.16",
|
|
25
|
+
"@nextclaw/channel-plugin-feishu": "0.2.20",
|
|
26
|
+
"@nextclaw/channel-plugin-mochat": "0.2.16",
|
|
27
|
+
"@nextclaw/channel-plugin-slack": "0.2.16",
|
|
28
|
+
"@nextclaw/channel-plugin-telegram": "0.2.16",
|
|
28
29
|
"@nextclaw/channel-plugin-qq": "0.2.16",
|
|
30
|
+
"@nextclaw/channel-plugin-weixin": "0.1.9",
|
|
29
31
|
"@nextclaw/channel-plugin-wecom": "0.2.16",
|
|
30
|
-
"@nextclaw/
|
|
32
|
+
"@nextclaw/channel-plugin-whatsapp": "0.2.16",
|
|
31
33
|
"@nextclaw/channel-runtime": "0.4.2",
|
|
34
|
+
"@nextclaw/core": "0.11.1",
|
|
32
35
|
"@nextclaw/ncp": "0.3.2",
|
|
33
|
-
"@nextclaw/
|
|
34
|
-
"@nextclaw/channel-plugin-weixin": "0.1.9",
|
|
35
|
-
"@nextclaw/channel-plugin-whatsapp": "0.2.16",
|
|
36
|
-
"@nextclaw/core": "0.11.1"
|
|
36
|
+
"@nextclaw/ncp-toolkit": "0.4.2"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/node": "^20.17.6",
|