@openclaw-china/qqbot 0.1.5 → 0.1.6

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.
@@ -1,44 +1,44 @@
1
- {
2
- "id": "qqbot",
3
- "name": "QQ Bot",
4
- "description": "QQ 开放平台机器人消息渠道插件",
5
- "version": "0.1.0",
6
- "channels": ["qqbot"],
7
- "configSchema": {
8
- "type": "object",
9
- "additionalProperties": false,
10
- "properties": {
11
- "enabled": { "type": "boolean" },
12
- "appId": { "type": "string" },
13
- "clientSecret": { "type": "string" },
14
- "asr": {
15
- "type": "object",
16
- "additionalProperties": false,
17
- "properties": {
18
- "enabled": { "type": "boolean" },
19
- "appId": { "type": "string" },
20
- "secretId": { "type": "string" },
21
- "secretKey": { "type": "string" }
22
- }
23
- },
24
- "markdownSupport": { "type": "boolean" },
25
- "dmPolicy": { "type": "string", "enum": ["open", "pairing", "allowlist"] },
26
- "groupPolicy": { "type": "string", "enum": ["open", "allowlist", "disabled"] },
27
- "requireMention": { "type": "boolean" },
28
- "allowFrom": { "type": "array", "items": { "type": "string" } },
29
- "groupAllowFrom": { "type": "array", "items": { "type": "string" } },
30
- "historyLimit": { "type": "integer", "minimum": 0 },
31
- "textChunkLimit": { "type": "integer", "minimum": 1 },
32
- "replyFinalOnly": { "type": "boolean" },
33
- "maxFileSizeMB": { "type": "number", "exclusiveMinimum": 0 },
34
- "mediaTimeoutMs": { "type": "integer", "minimum": 1 }
35
- }
36
- },
37
- "uiHints": {
38
- "appId": { "label": "App ID" },
39
- "clientSecret": { "label": "Client Secret", "sensitive": true },
40
- "asr.appId": { "label": "ASR App ID" },
41
- "asr.secretId": { "label": "ASR Secret ID", "sensitive": true },
42
- "asr.secretKey": { "label": "ASR Secret Key", "sensitive": true }
43
- }
44
- }
1
+ {
2
+ "id": "qqbot",
3
+ "name": "QQ Bot",
4
+ "description": "QQ 开放平台机器人消息渠道插件",
5
+ "version": "0.1.0",
6
+ "channels": ["qqbot"],
7
+ "configSchema": {
8
+ "type": "object",
9
+ "additionalProperties": false,
10
+ "properties": {
11
+ "enabled": { "type": "boolean" },
12
+ "appId": { "type": "string" },
13
+ "clientSecret": { "type": "string" },
14
+ "asr": {
15
+ "type": "object",
16
+ "additionalProperties": false,
17
+ "properties": {
18
+ "enabled": { "type": "boolean" },
19
+ "appId": { "type": "string" },
20
+ "secretId": { "type": "string" },
21
+ "secretKey": { "type": "string" }
22
+ }
23
+ },
24
+ "markdownSupport": { "type": "boolean" },
25
+ "dmPolicy": { "type": "string", "enum": ["open", "pairing", "allowlist"] },
26
+ "groupPolicy": { "type": "string", "enum": ["open", "allowlist", "disabled"] },
27
+ "requireMention": { "type": "boolean" },
28
+ "allowFrom": { "type": "array", "items": { "type": "string" } },
29
+ "groupAllowFrom": { "type": "array", "items": { "type": "string" } },
30
+ "historyLimit": { "type": "integer", "minimum": 0 },
31
+ "textChunkLimit": { "type": "integer", "minimum": 1 },
32
+ "replyFinalOnly": { "type": "boolean" },
33
+ "maxFileSizeMB": { "type": "number", "exclusiveMinimum": 0 },
34
+ "mediaTimeoutMs": { "type": "integer", "minimum": 1 }
35
+ }
36
+ },
37
+ "uiHints": {
38
+ "appId": { "label": "App ID" },
39
+ "clientSecret": { "label": "Client Secret", "sensitive": true },
40
+ "asr.appId": { "label": "ASR App ID" },
41
+ "asr.secretId": { "label": "ASR Secret ID", "sensitive": true },
42
+ "asr.secretKey": { "label": "ASR Secret Key", "sensitive": true }
43
+ }
44
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclaw-china/qqbot",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "type": "module",
5
5
  "description": "Moltbot QQ Bot channel plugin",
6
6
  "license": "MIT",
@@ -87,7 +87,7 @@
87
87
  "release": "npm run build && npm publish"
88
88
  },
89
89
  "dependencies": {
90
- "@openclaw-china/shared": "0.1.31",
90
+ "@openclaw-china/shared": "0.1.32",
91
91
  "ws": "^8.18.0"
92
92
  },
93
93
  "devDependencies": {