-
Notifications
You must be signed in to change notification settings - Fork 339
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
30 lines (30 loc) · 895 Bytes
/
Copy pathopenclaw.plugin.json
File metadata and controls
30 lines (30 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"id": "wechat",
"channels": ["wechat"],
"configSchema": {
"type": "object",
"properties": {
"accounts": {
"type": "object",
"additionalProperties": {
"type": "object",
"additionalProperties": true,
"properties": {
"enabled": { "type": "boolean" },
"name": { "type": "string" },
"apiKey": { "type": "string" },
"deviceType": { "type": "string", "enum": ["ipad", "mac"] },
"proxy": { "type": "string" },
"webhookPort": { "type": "integer" },
"webhookUrl": { "type": "string" },
"natappEnabled": { "type": "boolean" },
"natapiWebPort": { "type": "integer" },
"wcId": { "type": "string" },
"nickName": { "type": "string" }
},
"required": ["apiKey"]
}
}
}
}
}