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.
@@ -16,7 +16,7 @@
16
16
  },
17
17
  "registry.baseUrl": {
18
18
  "label": "OpenViking URL",
19
- "placeholder": "http://69.5.7.190:1933",
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://69.5.7.190:3080",
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.1",
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
@@ -122,6 +122,7 @@ export class BridgeHeartbeat {
122
122
  } catch {
123
123
  // Token decode failed — skip
124
124
  }
125
+ this.entry.discordConnected = !!this.entry.discordId;
125
126
 
126
127
  const channels = this.extractChannels(this.configPath);
127
128
  this.entry.channels = channels;
package/src/types.ts CHANGED
@@ -36,6 +36,7 @@ export interface RegistryEntry {
36
36
  port: number;
37
37
  workspacePath: string;
38
38
  discordId: string | null;
39
+ discordConnected?: boolean;
39
40
  role: "normal" | "superuser";
40
41
  capabilities: string[];
41
42
  channels: ChannelInfo[];