@langchain/langgraph-cli 0.0.7 → 0.0.8-dev.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.
@@ -41,7 +41,9 @@ type Inspect<T> = T extends unknown
41
41
 
42
42
  type ReflectCompiled<T> = T extends { RunInput: infer S; RunOutput: infer U }
43
43
  ? { state: S; update: U }
44
- : never;
44
+ : T extends { "~InputType": infer InputType; "~OutputType": infer OutputType }
45
+ ? { state: OutputType; update: InputType }
46
+ : never;
45
47
 
46
48
  // @ts-expect-error
47
49
  type Reflect<T> =
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph-cli",
3
- "version": "0.0.7",
3
+ "version": "0.0.8-dev.1",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": ">=18"
@@ -51,9 +51,9 @@
51
51
  "@babel/code-frame": "^7.26.2"
52
52
  },
53
53
  "peerDependencies": {
54
- "@langchain/core": "^0.3.27",
55
- "@langchain/langgraph": "^0.2.39",
56
- "@langchain/langgraph-checkpoint": "^0.0.13",
54
+ "@langchain/core": "^0.3.36",
55
+ "@langchain/langgraph": "^0.2.43",
56
+ "@langchain/langgraph-checkpoint": "^0.0.14",
57
57
  "typescript": "^5.5.4"
58
58
  },
59
59
  "devDependencies": {