Update JS SDK command types

This commit is contained in:
jacoblee93
2024-12-30 10:14:51 -08:00
parent effddca494
commit 9a9fe2fdec
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@langchain/langgraph-sdk",
"version": "0.0.32",
"version": "0.0.33",
"description": "Client library for interacting with the LangGraph API",
"type": "module",
"packageManager": "yarn@1.22.19",
+1 -1
View File
@@ -32,7 +32,7 @@ export interface Command {
/**
* An object to update the thread state with.
*/
update?: Record<string, unknown>;
update?: Record<string, unknown> | Record<string, unknown>[];
/**
* The value to return from an `interrupt` function call.