@ynhcj/xiaoyi-channel 0.0.116-beta → 0.0.117-beta

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.
@@ -7,5 +7,27 @@
7
7
  "type": "object",
8
8
  "additionalProperties": false,
9
9
  "properties": {}
10
+ },
11
+ "channelConfigs": {
12
+ "xiaoyi-channel": {
13
+ "schema": {
14
+ "type": "object",
15
+ "properties": {
16
+ "enabled": { "type": "boolean", "description": "Enable/disable the XY channel", "default": false },
17
+ "wsUrl1": { "type": "string", "description": "Primary WebSocket URL" },
18
+ "wsUrl2": { "type": "string", "description": "Secondary WebSocket URL" },
19
+ "apiKey": { "type": "string", "description": "API key for authentication" },
20
+ "uid": { "type": "string", "description": "User ID for file upload" },
21
+ "agentId": { "type": "string", "description": "Agent ID for this bot instance" },
22
+ "apiId": { "type": "string", "description": "API ID for push messages" },
23
+ "pushId": { "type": "string", "description": "Push ID for push messages" },
24
+ "fileUploadUrl": { "type": "string", "description": "Base URL for file upload service" },
25
+ "pushUrl": { "type": "string", "description": "URL for push message service" }
26
+ },
27
+ "required": ["apiKey", "agentId", "uid", "apiId", "pushId"]
28
+ },
29
+ "label": "Xiaoyi Channel",
30
+ "description": "Xiaoyi A2A protocol integration"
31
+ }
10
32
  }
11
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ynhcj/xiaoyi-channel",
3
- "version": "0.0.116-beta",
3
+ "version": "0.0.117-beta",
4
4
  "description": "OpenClaw Xiaoyi Channel plugin - Xiaoyi A2A protocol integration",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",