mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-31 12:19:58 +02:00
feat(js-sdk): add config and parent_config to thread state schema (#1411)
* feat(js-sdk): add config and parent_config to thread state schema * Bump to 0.0.5
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@langchain/langgraph-sdk",
|
||||
"version": "0.0.4",
|
||||
"version": "0.0.5",
|
||||
"description": "Client library for interacting with the LangGraph API",
|
||||
"type": "module",
|
||||
"packageManager": "yarn@1.22.19",
|
||||
|
||||
@@ -101,6 +101,9 @@ export interface ThreadState<ValuesType = DefaultValues> {
|
||||
metadata: Metadata;
|
||||
created_at: Optional<string>;
|
||||
parent_checkpoint_id: Optional<string>;
|
||||
|
||||
config: Config;
|
||||
parent_config?: Config;
|
||||
}
|
||||
|
||||
export interface Run {
|
||||
|
||||
Reference in New Issue
Block a user