@53ai/53ai-openclaw 1.0.6 → 1.0.7

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 @@ export interface AIHubConfig {
16
16
  /** 访问令牌 */
17
17
  token?: string;
18
18
  /** WebSocket URL */
19
- websocketUrl?: string;
19
+ WSUrl?: string;
20
20
  /** 访问控制白名单 */
21
21
  allowFrom?: Array<string | number>;
22
22
  /** 访问策略: open=开放, allowlist=白名单, pairing=配对审批 */
@@ -31,7 +31,7 @@ export interface ResolvedAccount {
31
31
  accountId: string;
32
32
  name: string;
33
33
  enabled: boolean;
34
- websocketUrl: string;
34
+ WSUrl: string;
35
35
  botId: string;
36
36
  secret: string;
37
37
  token: string;
@@ -19,7 +19,7 @@
19
19
  "type": "string",
20
20
  "description": "53AIHub App Secret / Token (Alias)"
21
21
  },
22
- "websocketUrl": {
22
+ "WSUrl": {
23
23
  "type": "string",
24
24
  "description": "53AIHub WebSocket 连接地址"
25
25
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@53ai/53ai-openclaw",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "type": "module",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",