@cored-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": "@cored-im/openclaw-plugin",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "Cored IM channel plugin for OpenClaw",
5
5
  "author": "Cored Limited",
6
6
  "type": "module",