@langchain/langgraph 0.3.10 → 0.3.11

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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @langchain/langgraph
2
2
 
3
+ ## 0.3.11
4
+
5
+ ### Patch Changes
6
+
7
+ - a0efb98: Relax `when` type for `Interrupt`
8
+ - Updated dependencies [a0efb98]
9
+ - @langchain/langgraph-sdk@0.0.100
10
+
3
11
  ## 0.3.10
4
12
 
5
13
  ### Patch Changes
@@ -129,7 +129,7 @@ export declare class Send<Node extends string = string, Args = any> implements S
129
129
  export declare function _isSend(x: unknown): x is Send;
130
130
  export type Interrupt<Value = any> = {
131
131
  value?: Value;
132
- when: "during" | (string & {});
132
+ when?: "during" | (string & {});
133
133
  resumable?: boolean;
134
134
  ns?: string[];
135
135
  interrupt_id?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph",
3
- "version": "0.3.10",
3
+ "version": "0.3.11",
4
4
  "description": "LangGraph",
5
5
  "type": "module",
6
6
  "engines": {
@@ -32,7 +32,7 @@
32
32
  "license": "MIT",
33
33
  "dependencies": {
34
34
  "@langchain/langgraph-checkpoint": "~0.0.18",
35
- "@langchain/langgraph-sdk": "~0.0.98",
35
+ "@langchain/langgraph-sdk": "~0.0.100",
36
36
  "uuid": "^10.0.0",
37
37
  "zod": "^3.25.32"
38
38
  },
@@ -51,7 +51,7 @@
51
51
  "@langchain/core": "^0.3.58",
52
52
  "@langchain/langgraph-checkpoint-postgres": "0.0.5",
53
53
  "@langchain/langgraph-checkpoint-sqlite": "0.1.5",
54
- "@langchain/langgraph-sdk": "0.0.98",
54
+ "@langchain/langgraph-sdk": "0.0.100",
55
55
  "@langchain/openai": "^0.4.0",
56
56
  "@langchain/scripts": ">=0.1.3 <0.2.0",
57
57
  "@swc/core": "^1.3.90",