@ynhcj/xiaoyi 2.5.2 → 2.5.4
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/channel.d.ts +2 -1
- package/dist/channel.js +363 -250
- package/dist/config-schema.d.ts +18 -18
- package/dist/onboarding.d.ts +6 -0
- package/dist/onboarding.js +167 -0
- package/dist/runtime.d.ts +17 -5
- package/dist/runtime.js +45 -22
- package/dist/session-manager.d.ts +78 -0
- package/dist/session-manager.js +258 -0
- package/dist/websocket.d.ts +16 -0
- package/dist/websocket.js +21 -0
- package/dist/xiaoyi-media.d.ts +81 -0
- package/dist/xiaoyi-media.js +216 -0
- package/package.json +62 -62
package/package.json
CHANGED
|
@@ -1,62 +1,62 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@ynhcj/xiaoyi",
|
|
3
|
-
"version": "2.5.
|
|
4
|
-
"description": "XiaoYi channel plugin for OpenClaw",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"build": "tsc",
|
|
9
|
-
"prepublishOnly": "npm run build"
|
|
10
|
-
},
|
|
11
|
-
"keywords": [
|
|
12
|
-
"openclaw",
|
|
13
|
-
"openclaw-plugin",
|
|
14
|
-
"xiaoyi",
|
|
15
|
-
"channel"
|
|
16
|
-
],
|
|
17
|
-
"author": "ynhcj",
|
|
18
|
-
"license": "MIT",
|
|
19
|
-
"openclaw": {
|
|
20
|
-
"extensions": ["xiaoyi.js"],
|
|
21
|
-
"channels": ["xiaoyi"],
|
|
22
|
-
"installDependencies": true,
|
|
23
|
-
"install": {
|
|
24
|
-
"npmSpec": "@ynhcj/xiaoyi@latest",
|
|
25
|
-
"localPath": ".",
|
|
26
|
-
"defaultChoice": "npm"
|
|
27
|
-
},
|
|
28
|
-
"channel": {
|
|
29
|
-
"id": "xiaoyi",
|
|
30
|
-
"label": "XiaoYi",
|
|
31
|
-
"selectionLabel": "XiaoYi (小艺)",
|
|
32
|
-
"docsPath": "/channels/xiaoyi",
|
|
33
|
-
"docsLabel": "xiaoyi",
|
|
34
|
-
"blurb": "小艺 A2A 协议支持,通过 WebSocket 连接。",
|
|
35
|
-
"order": 80,
|
|
36
|
-
"aliases": ["xy"]
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
"peerDependencies": {
|
|
40
|
-
"openclaw": "*"
|
|
41
|
-
},
|
|
42
|
-
"peerDependenciesMeta": {
|
|
43
|
-
"openclaw": {
|
|
44
|
-
"optional": true
|
|
45
|
-
}
|
|
46
|
-
},
|
|
47
|
-
"dependencies": {
|
|
48
|
-
"ws": "^8.16.0",
|
|
49
|
-
"zod": "^3.22.4"
|
|
50
|
-
},
|
|
51
|
-
"devDependencies": {
|
|
52
|
-
"@types/node": "^20.11.0",
|
|
53
|
-
"@types/ws": "^8.5.10",
|
|
54
|
-
"typescript": "^5.3.3"
|
|
55
|
-
},
|
|
56
|
-
"files": [
|
|
57
|
-
"dist",
|
|
58
|
-
"xiaoyi.js",
|
|
59
|
-
"openclaw.plugin.json",
|
|
60
|
-
"README.md"
|
|
61
|
-
]
|
|
62
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@ynhcj/xiaoyi",
|
|
3
|
+
"version": "2.5.4",
|
|
4
|
+
"description": "XiaoYi channel plugin for OpenClaw",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "tsc",
|
|
9
|
+
"prepublishOnly": "npm run build"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"openclaw",
|
|
13
|
+
"openclaw-plugin",
|
|
14
|
+
"xiaoyi",
|
|
15
|
+
"channel"
|
|
16
|
+
],
|
|
17
|
+
"author": "ynhcj",
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"openclaw": {
|
|
20
|
+
"extensions": ["xiaoyi.js"],
|
|
21
|
+
"channels": ["xiaoyi"],
|
|
22
|
+
"installDependencies": true,
|
|
23
|
+
"install": {
|
|
24
|
+
"npmSpec": "@ynhcj/xiaoyi@latest",
|
|
25
|
+
"localPath": ".",
|
|
26
|
+
"defaultChoice": "npm"
|
|
27
|
+
},
|
|
28
|
+
"channel": {
|
|
29
|
+
"id": "xiaoyi",
|
|
30
|
+
"label": "XiaoYi",
|
|
31
|
+
"selectionLabel": "XiaoYi (小艺)",
|
|
32
|
+
"docsPath": "/channels/xiaoyi",
|
|
33
|
+
"docsLabel": "xiaoyi",
|
|
34
|
+
"blurb": "小艺 A2A 协议支持,通过 WebSocket 连接。",
|
|
35
|
+
"order": 80,
|
|
36
|
+
"aliases": ["xy"]
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"openclaw": "*"
|
|
41
|
+
},
|
|
42
|
+
"peerDependenciesMeta": {
|
|
43
|
+
"openclaw": {
|
|
44
|
+
"optional": true
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"ws": "^8.16.0",
|
|
49
|
+
"zod": "^3.22.4"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@types/node": "^20.11.0",
|
|
53
|
+
"@types/ws": "^8.5.10",
|
|
54
|
+
"typescript": "^5.3.3"
|
|
55
|
+
},
|
|
56
|
+
"files": [
|
|
57
|
+
"dist",
|
|
58
|
+
"xiaoyi.js",
|
|
59
|
+
"openclaw.plugin.json",
|
|
60
|
+
"README.md"
|
|
61
|
+
]
|
|
62
|
+
}
|