@blade-hq/agent-react 2610.0.0-beta.56 → 2610.0.0-beta.57
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/dist/components/ChatInput.d.ts +6 -3
- package/dist/components/ChatSurface.d.ts +1 -2
- package/dist/index.js +12 -22
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/public-api.md +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blade-hq/agent-react",
|
|
3
|
-
"version": "2610.0.0-beta.
|
|
3
|
+
"version": "2610.0.0-beta.57",
|
|
4
4
|
"description": "Blade Agent React 绑定:BladeProvider、useAgentSession、开箱即用的 ChatView 聊天界面。",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"access": "public"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@blade-hq/agent-client": "2610.0.0-beta.
|
|
34
|
+
"@blade-hq/agent-client": "2610.0.0-beta.57"
|
|
35
35
|
},
|
|
36
36
|
"bundledDependencies": [],
|
|
37
37
|
"peerDependencies": {
|
package/public-api.md
CHANGED
|
@@ -1723,8 +1723,9 @@ message: string | null | undefined
|
|
|
1723
1723
|
pause_reason: string | null | undefined
|
|
1724
1724
|
paused: boolean | undefined
|
|
1725
1725
|
revision: number | undefined
|
|
1726
|
+
running: boolean | undefined
|
|
1726
1727
|
session_id: string | undefined
|
|
1727
|
-
status: "error" | "ok" | "conflict"
|
|
1728
|
+
status: "error" | "ok" | "conflict" | "queued"
|
|
1728
1729
|
```
|
|
1729
1730
|
|
|
1730
1731
|
## `QueuedMessage` (interface)
|
|
@@ -1957,6 +1958,7 @@ askUserAnswer: Record<string, unknown> | undefined
|
|
|
1957
1958
|
kbIds: number[] | undefined
|
|
1958
1959
|
mode: string | undefined
|
|
1959
1960
|
model: string | undefined
|
|
1961
|
+
queueWhenRunning: boolean | undefined
|
|
1960
1962
|
replayDecision: "keep_replay" | "continue_replay" | undefined
|
|
1961
1963
|
thinkingOverride: boolean | undefined
|
|
1962
1964
|
whatif: { from_step: number; quotes: Array<Record<string, unknown>>; deprecate_entry_ids: string[]; } | undefined
|