openclaw-bridge 0.2.1 → 0.2.2
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 +2 -2
- package/package.json +1 -1
- package/src/heartbeat.ts +1 -0
- package/src/types.ts +1 -0
package/openclaw.plugin.json
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
},
|
|
17
17
|
"registry.baseUrl": {
|
|
18
18
|
"label": "OpenViking URL",
|
|
19
|
-
"placeholder": "http://
|
|
19
|
+
"placeholder": "http://your-server:1933",
|
|
20
20
|
"help": "OpenViking server for gateway registry"
|
|
21
21
|
},
|
|
22
22
|
"registry.apiKey": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
"fileRelay.baseUrl": {
|
|
27
27
|
"label": "FileRelay URL",
|
|
28
|
-
"placeholder": "http://
|
|
28
|
+
"placeholder": "http://your-server:3080",
|
|
29
29
|
"help": "FileRelay server for cross-machine file transfer"
|
|
30
30
|
},
|
|
31
31
|
"fileRelay.apiKey": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-bridge",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"author": "Bill Zhao (https://www.linkedin.com/in/billzhaodi/)",
|
|
5
5
|
"description": "Cross-gateway communication plugin for OpenClaw — agent discovery, file transfer, real-time messaging, and session handoff",
|
|
6
6
|
"type": "module",
|
package/src/heartbeat.ts
CHANGED