@53ai/53ai-openclaw 1.0.5 → 1.0.6
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/CHANGELOG.md +11 -0
- package/README.md +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
6
6
|
|
|
7
|
+
## [1.0.6] - 2026-03-19
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- 文档更新:修正了 `botId` 和 `secret` 的说明。
|
|
11
|
+
|
|
12
|
+
## [1.0.5] - 2026-03-19
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- 重构了接口名称,将 `Hub53AIMessageData` 简化为 `MessageData`。
|
|
16
|
+
- 代码格式优化。
|
|
17
|
+
|
|
7
18
|
## [1.0.4] - 2026-03-19
|
|
8
19
|
|
|
9
20
|
### Fixed
|
package/README.md
CHANGED
|
@@ -95,9 +95,9 @@ openclaw config set channels.53aihub.enabled true
|
|
|
95
95
|
|
|
96
96
|
| 参数 | 必填 | 默认值 | 说明 |
|
|
97
97
|
|------|------|--------|------|
|
|
98
|
-
| `botId` | 是 | - | 53AIHub 智能体 ID
|
|
99
|
-
| `secret` | 是 | - | 53AIHub
|
|
100
|
-
| `websocketUrl` | 是 | - | 53AIHub
|
|
98
|
+
| `botId` | 是 | - | 53AIHub 智能体 ID |
|
|
99
|
+
| `secret` | 是 | - | 53AIHub Secret |
|
|
100
|
+
| `websocketUrl` | 是 | - | 53AIHub 长连接连接地址 |
|
|
101
101
|
| `token` | 否 | - | secret 的别名,与 secret 二选一 |
|
|
102
102
|
| `enabled` | 否 | false | 是否启用通道 |
|
|
103
103
|
| `accessPolicy` | 否 | `open` | 访问策略: `open`=开放所有用户, `allowlist`=仅白名单用户, `pairing`=首次使用需审批, `disabled`=禁用 |
|