@nextclaw/ui 0.3.7 → 0.3.9
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 +20 -0
- package/dist/assets/index-BN_YuYNC.js +230 -0
- package/dist/index.html +1 -1
- package/package.json +1 -1
- package/src/api/config.ts +11 -4
- package/src/api/types.ts +51 -4
- package/src/components/config/ChannelForm.tsx +94 -20
- package/src/hooks/useConfig.ts +12 -1
- package/dist/assets/index-DI6zQUcL.js +0 -230
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @nextclaw/ui
|
|
2
2
|
|
|
3
|
+
## 0.3.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Introduce Action Schema v1 end-to-end:
|
|
8
|
+
- add schema-driven `actions` metadata in config schema response
|
|
9
|
+
- add unified action execute API (`POST /api/config/actions/:actionId/execute`)
|
|
10
|
+
- migrate Feishu verify flow to generic action runner in UI
|
|
11
|
+
- expose Discord/Slack `allowBots` fields in channel config form
|
|
12
|
+
|
|
13
|
+
## 0.3.8
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Align UI host semantics with always-public runtime behavior.
|
|
18
|
+
- Treat `ui.host` as read-only in config metadata/hints.
|
|
19
|
+
- Set UI host schema default/placeholder to `0.0.0.0`.
|
|
20
|
+
- Add `readOnly` field to UI hint typings in core/server/ui packages.
|
|
21
|
+
- Clarify docs that CLI start paths enforce public UI host.
|
|
22
|
+
|
|
3
23
|
## 0.3.7
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|