@langgraph-js/sdk 4.0.0 → 4.0.1
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/tool/ToolUI.d.ts +1 -1
- package/dist/tool/ToolUI.js +1 -1
- package/package.json +1 -1
- package/src/tool/ToolUI.ts +1 -1
package/dist/tool/ToolUI.d.ts
CHANGED
|
@@ -45,7 +45,7 @@ export declare class ToolRenderData<I, D> {
|
|
|
45
45
|
} | null;
|
|
46
46
|
/** 发送恢复状态的数据 */
|
|
47
47
|
sendResumeData(response: HumanInTheLoopDecision): void;
|
|
48
|
-
get state(): "idle" | "done" | "loading";
|
|
48
|
+
get state(): "idle" | "interrupted" | "done" | "loading";
|
|
49
49
|
get input(): I | null;
|
|
50
50
|
get output(): string;
|
|
51
51
|
getJSONOutput(): D;
|
package/dist/tool/ToolUI.js
CHANGED
package/package.json
CHANGED
package/src/tool/ToolUI.ts
CHANGED