openclaw-bridge 0.2.1 → 0.3.0

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/src/types.ts CHANGED
@@ -3,6 +3,12 @@ export interface MessageRelayConfig {
3
3
  apiKey: string;
4
4
  }
5
5
 
6
+ export interface LocalManagerConfig {
7
+ enabled: boolean;
8
+ hubUrl: string;
9
+ managerPass: string;
10
+ }
11
+
6
12
  export interface BridgeConfig {
7
13
  role: "normal" | "superuser";
8
14
  agentId: string;
@@ -19,6 +25,9 @@ export interface BridgeConfig {
19
25
  messageRelay?: MessageRelayConfig;
20
26
  heartbeatIntervalMs?: number;
21
27
  offlineThresholdMs?: number;
28
+ description?: string;
29
+ supportsVision?: boolean;
30
+ localManager?: LocalManagerConfig;
22
31
  }
23
32
 
24
33
  export interface ChannelInfo {
@@ -36,12 +45,16 @@ export interface RegistryEntry {
36
45
  port: number;
37
46
  workspacePath: string;
38
47
  discordId: string | null;
48
+ discordConnected?: boolean;
39
49
  role: "normal" | "superuser";
40
50
  capabilities: string[];
41
51
  channels: ChannelInfo[];
42
52
  registeredAt: string;
43
53
  lastHeartbeat: string;
44
54
  status: "online" | "offline";
55
+ memMB?: number;
56
+ description?: string;
57
+ supportsVision?: boolean;
45
58
  }
46
59
 
47
60
  export interface DiscoverResult {
@@ -1 +0,0 @@
1
- Hello from main! This is a test file sent via bridge_send_file.
@@ -1 +0,0 @@
1
- Hello from main! This is a test file sent via bridge_send_file.
@@ -1 +0,0 @@
1
- Hello from main! This is a test file sent via bridge_send_file.