@eyeclaw/eyeclaw 1.0.2 → 1.0.4
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.
- package/openclaw.plugin.json +27 -2
- package/package.json +1 -1
package/openclaw.plugin.json
CHANGED
|
@@ -3,7 +3,32 @@
|
|
|
3
3
|
"channels": ["eyeclaw"],
|
|
4
4
|
"configSchema": {
|
|
5
5
|
"type": "object",
|
|
6
|
-
"additionalProperties":
|
|
7
|
-
"properties": {
|
|
6
|
+
"additionalProperties": true,
|
|
7
|
+
"properties": {
|
|
8
|
+
"enabled": {
|
|
9
|
+
"type": "boolean",
|
|
10
|
+
"description": "Enable/disable the plugin"
|
|
11
|
+
},
|
|
12
|
+
"botId": {
|
|
13
|
+
"type": ["string", "number"],
|
|
14
|
+
"description": "Bot ID from EyeClaw platform"
|
|
15
|
+
},
|
|
16
|
+
"sdkToken": {
|
|
17
|
+
"type": "string",
|
|
18
|
+
"description": "SDK token for authentication"
|
|
19
|
+
},
|
|
20
|
+
"serverUrl": {
|
|
21
|
+
"type": "string",
|
|
22
|
+
"description": "EyeClaw server URL"
|
|
23
|
+
},
|
|
24
|
+
"reconnectInterval": {
|
|
25
|
+
"type": "number",
|
|
26
|
+
"description": "Reconnect interval in milliseconds"
|
|
27
|
+
},
|
|
28
|
+
"heartbeatInterval": {
|
|
29
|
+
"type": "number",
|
|
30
|
+
"description": "Heartbeat interval in milliseconds"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
8
33
|
}
|
|
9
34
|
}
|