@feihan-im/openclaw-plugin 0.1.11 → 0.1.12

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,7 +7,36 @@
7
7
  "setupEntry": "./dist/setup-entry.js",
8
8
  "configSchema": {
9
9
  "type": "object",
10
- "properties": {}
10
+ "properties": {
11
+ "appId": {
12
+ "type": "string",
13
+ "description": "App ID"
14
+ },
15
+ "appSecret": {
16
+ "type": "string",
17
+ "description": "App Secret"
18
+ },
19
+ "backendUrl": {
20
+ "type": "string",
21
+ "description": "Backend URL"
22
+ },
23
+ "enabled": {
24
+ "type": "boolean",
25
+ "description": "Enable this channel",
26
+ "default": true
27
+ },
28
+ "enableEncryption": {
29
+ "type": "boolean",
30
+ "description": "Enable encryption",
31
+ "default": false
32
+ },
33
+ "requestTimeout": {
34
+ "type": "number",
35
+ "description": "Request timeout in milliseconds",
36
+ "default": 30000
37
+ }
38
+ },
39
+ "required": ["appId", "appSecret", "backendUrl"]
11
40
  },
12
41
  "uiHints": {
13
42
  "appId": { "label": "App ID" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@feihan-im/openclaw-plugin",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "Feihan IM OpenClaw channel plugin",
5
5
  "author": "上海飞函安全科技有限公司",
6
6
  "type": "module",