@langchain/langgraph-sdk 0.0.32 → 0.0.33

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +1 -1
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -13,7 +13,7 @@ export interface Command {
13
13
  /**
14
14
  * An object to update the thread state with.
15
15
  */
16
- update?: Record<string, unknown>;
16
+ update?: Record<string, unknown> | [string, unknown][];
17
17
  /**
18
18
  * The value to return from an `interrupt` function call.
19
19
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph-sdk",
3
- "version": "0.0.32",
3
+ "version": "0.0.33",
4
4
  "description": "Client library for interacting with the LangGraph API",
5
5
  "type": "module",
6
6
  "packageManager": "yarn@1.22.19",