langgraph-cli 0.4.19__tar.gz → 0.4.21__tar.gz

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 (150) hide show
  1. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/PKG-INFO +3 -1
  2. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graph_prerelease_reqs/deps/additional_deps/pyproject.toml +1 -1
  3. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graph_prerelease_reqs/pyproject.toml +1 -1
  4. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/generate_schema.py +50 -5
  5. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/package.json +5 -5
  6. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/yarn.lock +113 -113
  7. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/apps/agent/package.json +2 -2
  8. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/package.json +4 -4
  9. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/yarn.lock +153 -153
  10. langgraph_cli-0.4.21/langgraph_cli/__init__.py +1 -0
  11. langgraph_cli-0.4.21/langgraph_cli/archive.py +161 -0
  12. langgraph_cli-0.4.21/langgraph_cli/cli.py +998 -0
  13. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/config.py +271 -129
  14. langgraph_cli-0.4.21/langgraph_cli/deploy.py +1704 -0
  15. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/docker.py +128 -0
  16. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/host_backend.py +57 -1
  17. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/progress.py +9 -0
  18. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/schemas.py +97 -63
  19. langgraph_cli-0.4.21/langgraph_cli/util.py +27 -0
  20. langgraph_cli-0.4.21/langgraph_cli/uv_lock.py +1000 -0
  21. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/pyproject.toml +2 -0
  22. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/schemas/schema.json +289 -4
  23. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/schemas/schema.v0.json +289 -4
  24. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/cli/test_cli.py +9 -9
  25. langgraph_cli-0.4.21/tests/unit_tests/test_archive.py +299 -0
  26. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/test_config.py +966 -5
  27. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/test_deploy_helpers.py +63 -16
  28. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/test_host_backend.py +3 -1
  29. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/test_logs_helpers.py +1 -1
  30. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/test_util.py +2 -3
  31. langgraph_cli-0.4.21/uv-examples/monorepo/apps/agent/.env.example +1 -0
  32. langgraph_cli-0.4.21/uv-examples/monorepo/apps/agent/langgraph.json +12 -0
  33. langgraph_cli-0.4.21/uv-examples/monorepo/apps/agent/pyproject.toml +20 -0
  34. langgraph_cli-0.4.21/uv-examples/monorepo/apps/agent/src/agent/__init__.py +0 -0
  35. langgraph_cli-0.4.21/uv-examples/monorepo/apps/agent/src/agent/graph.py +31 -0
  36. langgraph_cli-0.4.21/uv-examples/monorepo/libs/shared/pyproject.toml +16 -0
  37. langgraph_cli-0.4.21/uv-examples/monorepo/libs/shared/src/shared/__init__.py +3 -0
  38. langgraph_cli-0.4.21/uv-examples/monorepo/libs/shared/src/shared/utils.py +2 -0
  39. langgraph_cli-0.4.21/uv-examples/monorepo/pyproject.toml +22 -0
  40. langgraph_cli-0.4.21/uv-examples/monorepo/uv.lock +893 -0
  41. langgraph_cli-0.4.21/uv-examples/simple/.env.example +1 -0
  42. langgraph_cli-0.4.21/uv-examples/simple/langgraph.json +11 -0
  43. langgraph_cli-0.4.21/uv-examples/simple/pyproject.toml +19 -0
  44. langgraph_cli-0.4.21/uv-examples/simple/src/agent/__init__.py +0 -0
  45. langgraph_cli-0.4.21/uv-examples/simple/src/agent/graph.py +29 -0
  46. langgraph_cli-0.4.21/uv-examples/simple/uv.lock +864 -0
  47. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/uv.lock +509 -487
  48. langgraph_cli-0.4.19/langgraph_cli/__init__.py +0 -1
  49. langgraph_cli-0.4.19/langgraph_cli/cli.py +0 -2002
  50. langgraph_cli-0.4.19/langgraph_cli/helpers.py +0 -59
  51. langgraph_cli-0.4.19/langgraph_cli/util.py +0 -91
  52. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/.gitignore +0 -0
  53. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/LICENSE +0 -0
  54. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/Makefile +0 -0
  55. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/README.md +0 -0
  56. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/.env.example +0 -0
  57. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/.gitignore +0 -0
  58. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/Makefile +0 -0
  59. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graph_prerelease_reqs/agent.py +0 -0
  60. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graph_prerelease_reqs/deps/zuper_deps/pyproject.toml +0 -0
  61. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graph_prerelease_reqs/langgraph.json +0 -0
  62. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graph_prerelease_reqs_fail/agent.py +0 -0
  63. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graph_prerelease_reqs_fail/langgraph.json +0 -0
  64. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graph_prerelease_reqs_fail/pyproject.toml +0 -0
  65. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs/agent.py +0 -0
  66. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs/langgraph.json +0 -0
  67. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs/storm.py +0 -0
  68. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_a/__init__.py +0 -0
  69. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_a/graphs_submod/__init__.py +0 -0
  70. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_a/graphs_submod/agent.py +0 -0
  71. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_a/graphs_submod/subprompt.txt +0 -0
  72. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_a/hello.py +0 -0
  73. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_a/langgraph.json +0 -0
  74. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_a/prompt.txt +0 -0
  75. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_a/requirements.txt +0 -0
  76. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_b/graphs_submod/agent.py +0 -0
  77. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_b/graphs_submod/subprompt.txt +0 -0
  78. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_b/hello.py +0 -0
  79. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_b/langgraph.json +0 -0
  80. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_b/prompt.txt +0 -0
  81. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_b/requirements.txt +0 -0
  82. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_b/utils/__init__.py +0 -0
  83. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/graphs_reqs_b/utils/greeter.py +0 -0
  84. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/langgraph.json +0 -0
  85. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/my_app.py +0 -0
  86. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/pipconf.txt +0 -0
  87. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/poetry.lock +0 -0
  88. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/examples/pyproject.toml +0 -0
  89. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/.dockerignore +0 -0
  90. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/.editorconfig +0 -0
  91. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/.env.example +0 -0
  92. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/.eslintrc.cjs +0 -0
  93. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/.gitignore +0 -0
  94. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/LICENSE +0 -0
  95. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/README.md +0 -0
  96. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/jest.config.js +0 -0
  97. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/langgraph.json +0 -0
  98. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/src/agent/graph.ts +0 -0
  99. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/src/agent/state.ts +0 -0
  100. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/static/studio.png +0 -0
  101. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/tests/agent.test.ts +0 -0
  102. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/tests/graph.int.test.ts +0 -0
  103. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-examples/tsconfig.json +0 -0
  104. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/.eslintrc.cjs +0 -0
  105. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/apps/agent/langgraph.json +0 -0
  106. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/apps/agent/src/graph.ts +0 -0
  107. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/apps/agent/src/state.ts +0 -0
  108. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/apps/agent/tsconfig.json +0 -0
  109. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/libs/shared/package.json +0 -0
  110. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/libs/shared/src/index.ts +0 -0
  111. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/libs/shared/tsconfig.json +0 -0
  112. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/tsconfig.json +0 -0
  113. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/js-monorepo-example/turbo.json +0 -0
  114. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/__main__.py +0 -0
  115. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/analytics.py +0 -0
  116. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/constants.py +0 -0
  117. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/exec.py +0 -0
  118. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/py.typed +0 -0
  119. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/templates.py +0 -0
  120. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/langgraph_cli/version.py +0 -0
  121. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/apps/agent/.env.example +0 -0
  122. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/apps/agent/langgraph.json +0 -0
  123. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/apps/agent/pyproject.toml +0 -0
  124. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/apps/agent/src/agent/__init__.py +0 -0
  125. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/apps/agent/src/agent/graph.py +0 -0
  126. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/apps/agent/src/agent/state.py +0 -0
  127. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/libs/common/__init__.py +0 -0
  128. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/libs/common/helpers.py +0 -0
  129. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/libs/shared/pyproject.toml +0 -0
  130. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/libs/shared/src/shared/__init__.py +0 -0
  131. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/libs/shared/src/shared/utils.py +0 -0
  132. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/python-monorepo-example/pyproject.toml +0 -0
  133. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/schemas/version.schema.json +0 -0
  134. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/__init__.py +0 -0
  135. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/integration_tests/__init__.py +0 -0
  136. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/integration_tests/test_cli.py +0 -0
  137. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/__init__.py +0 -0
  138. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/agent.py +0 -0
  139. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/cli/__init__.py +0 -0
  140. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/cli/langgraph.json +0 -0
  141. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/cli/pyproject.toml +0 -0
  142. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/cli/test_templates.py +0 -0
  143. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/conftest.py +0 -0
  144. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/graphs/agent.py +0 -0
  145. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/helpers.py +0 -0
  146. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/multiplatform/js.mts +0 -0
  147. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/multiplatform/python.py +0 -0
  148. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/pipconfig.txt +0 -0
  149. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/test_config.json +0 -0
  150. {langgraph_cli-0.4.19 → langgraph_cli-0.4.21}/tests/unit_tests/test_docker.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: langgraph-cli
3
- Version: 0.4.19
3
+ Version: 0.4.21
4
4
  Summary: CLI for interacting with LangGraph API
5
5
  Project-URL: Source, https://github.com/langchain-ai/langgraph/tree/main/libs/cli
6
6
  Project-URL: Twitter, https://x.com/LangChain
@@ -12,7 +12,9 @@ Requires-Python: >=3.10
12
12
  Requires-Dist: click>=8.1.7
13
13
  Requires-Dist: httpx>=0.24.0
14
14
  Requires-Dist: langgraph-sdk>=0.1.0; python_version >= '3.11'
15
+ Requires-Dist: pathspec>=0.11.0
15
16
  Requires-Dist: python-dotenv>=0.8.0
17
+ Requires-Dist: tomli>=2.0.1; python_version < '3.11'
16
18
  Provides-Extra: inmem
17
19
  Requires-Dist: langgraph-api<0.8.0,>=0.5.35; (python_version >= '3.11') and extra == 'inmem'
18
20
  Requires-Dist: langgraph-runtime-inmem>=0.7; (python_version >= '3.11') and extra == 'inmem'
@@ -5,5 +5,5 @@ description = "Test for prerelease stuff"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
7
7
  dependencies = [
8
- "langgraph==1.1.2"
8
+ "langgraph==1.1.5"
9
9
  ]
@@ -7,7 +7,7 @@ requires-python = ">=3.10"
7
7
  dependencies = [
8
8
  "langchain-openai==1.0.0a2",
9
9
  "langchain-anthropic==1.0.0a5",
10
- "langgraph==1.1.2"
10
+ "langgraph==1.1.5"
11
11
  ]
12
12
 
13
13
  [tool.uv]
@@ -159,8 +159,8 @@ def generate_schema():
159
159
  if k not in python_specific_props and k not in node_specific_props
160
160
  ]
161
161
 
162
- # Create Python schema with python_version and pip_config_file
163
- python_schema = {
162
+ # Create legacy Python schema with python_version and pip_config_file
163
+ legacy_python_schema = {
164
164
  "type": "object",
165
165
  "properties": {
166
166
  # Include Python-specific properties
@@ -170,10 +170,45 @@ def generate_schema():
170
170
  },
171
171
  "required": ["dependencies", "graphs"],
172
172
  }
173
+ legacy_python_schema["properties"]["pip_installer"] = {
174
+ "anyOf": [
175
+ {"type": "string", "enum": ["auto", "pip", "uv"]},
176
+ {"type": "null"},
177
+ ]
178
+ }
179
+
180
+ uv_source_python_schema = {
181
+ "type": "object",
182
+ "properties": {
183
+ **{
184
+ k: config_schema["properties"][k].copy()
185
+ for k in python_specific_props + common_props
186
+ },
187
+ },
188
+ "required": ["graphs", "source"],
189
+ }
190
+ # source must be a UvSource object (not null)
191
+ uv_source_python_schema["properties"]["source"] = {"$ref": "#/$defs/UvSource"}
192
+ uv_source_python_schema["properties"]["pip_installer"] = {
193
+ "anyOf": [
194
+ {"type": "string", "enum": ["auto", "pip", "uv"]},
195
+ {"type": "null"},
196
+ ]
197
+ }
173
198
 
174
199
  # Add enum constraint for python_version
175
- if "python_version" in python_schema["properties"]:
176
- python_schema["properties"]["python_version"]["enum"] = ["3.11", "3.12", "3.13"]
200
+ if "python_version" in legacy_python_schema["properties"]:
201
+ legacy_python_schema["properties"]["python_version"]["enum"] = [
202
+ "3.11",
203
+ "3.12",
204
+ "3.13",
205
+ ]
206
+ if "python_version" in uv_source_python_schema["properties"]:
207
+ uv_source_python_schema["properties"]["python_version"]["enum"] = [
208
+ "3.11",
209
+ "3.12",
210
+ "3.13",
211
+ ]
177
212
 
178
213
  # Create Node.js schema with node_version
179
214
  node_schema = {
@@ -186,6 +221,12 @@ def generate_schema():
186
221
  },
187
222
  "required": ["node_version", "graphs"],
188
223
  }
224
+ node_schema["properties"]["pip_installer"] = {
225
+ "anyOf": [
226
+ {"type": "string", "enum": ["auto", "pip", "uv"]},
227
+ {"type": "null"},
228
+ ]
229
+ }
189
230
 
190
231
  # Add enum constraint for node_version
191
232
  if "node_version" in node_schema["properties"]:
@@ -202,7 +243,11 @@ def generate_schema():
202
243
  ]
203
244
 
204
245
  # Replace the Config schema with a oneOf constraint
205
- config_schema["oneOf"] = [python_schema, node_schema]
246
+ config_schema["oneOf"] = [
247
+ legacy_python_schema,
248
+ uv_source_python_schema,
249
+ node_schema,
250
+ ]
206
251
 
207
252
  # Remove the properties field as it's now defined in the oneOf subschemas
208
253
  if "properties" in config_schema:
@@ -21,18 +21,18 @@
21
21
  "test:all": "yarn test && yarn test:int && yarn lint:langgraph"
22
22
  },
23
23
  "dependencies": {
24
- "@langchain/core": "^1.1.32",
25
- "@langchain/langgraph": "^1.2.2"
24
+ "@langchain/core": "^1.1.38",
25
+ "@langchain/langgraph": "^1.2.6"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@eslint/eslintrc": "^3.3.5",
29
29
  "@eslint/js": "^10.0.1",
30
30
  "@tsconfig/recommended": "^1.0.13",
31
31
  "@types/jest": "^30.0.0",
32
- "@typescript-eslint/eslint-plugin": "^8.57.0",
33
- "@typescript-eslint/parser": "^8.57.0",
32
+ "@typescript-eslint/eslint-plugin": "^8.58.0",
33
+ "@typescript-eslint/parser": "^8.58.0",
34
34
  "dotenv": "^17.3.1",
35
- "eslint": "^10.0.3",
35
+ "eslint": "^10.1.0",
36
36
  "eslint-config-prettier": "^10.1.8",
37
37
  "eslint-plugin-import": "^2.32.0",
38
38
  "eslint-plugin-no-instanceof": "^1.0.1",
@@ -483,14 +483,14 @@
483
483
  debug "^4.3.1"
484
484
  minimatch "^10.2.4"
485
485
 
486
- "@eslint/config-helpers@^0.5.2":
487
- version "0.5.2"
488
- resolved "https://registry.yarnpkg.com/@eslint/config-helpers/-/config-helpers-0.5.2.tgz#314c7b03d02a371ad8c0a7f6821d5a8a8437ba9d"
489
- integrity sha512-a5MxrdDXEvqnIq+LisyCX6tQMPF/dSJpCfBgBauY+pNZ28yCtSsTvyTYrMhaI+LK26bVyCJfJkT0u8KIj2i1dQ==
486
+ "@eslint/config-helpers@^0.5.3":
487
+ version "0.5.3"
488
+ resolved "https://registry.yarnpkg.com/@eslint/config-helpers/-/config-helpers-0.5.3.tgz#721fe6bbb90d74b0c80d6ff2428e5bbcb002becb"
489
+ integrity sha512-lzGN0onllOZCGroKJmRwY6QcEHxbjBw1gwB8SgRSqK8YbbtEXMvKynsXc3553ckIEBxsbMBU7oOZXKIPGZNeZw==
490
490
  dependencies:
491
- "@eslint/core" "^1.1.0"
491
+ "@eslint/core" "^1.1.1"
492
492
 
493
- "@eslint/core@^1.1.0", "@eslint/core@^1.1.1":
493
+ "@eslint/core@^1.1.1":
494
494
  version "1.1.1"
495
495
  resolved "https://registry.yarnpkg.com/@eslint/core/-/core-1.1.1.tgz#450f3d2be2d463ccd51119544092256b4e88df32"
496
496
  integrity sha512-QUPblTtE51/7/Zhfv8BDwO0qkkzQL7P/aWWbqcf4xWLEYn1oKjdO0gglQBB4GAsu7u6wjijbCmzsUTy6mnk6oQ==
@@ -890,10 +890,10 @@
890
890
  "@jridgewell/resolve-uri" "^3.1.0"
891
891
  "@jridgewell/sourcemap-codec" "^1.4.14"
892
892
 
893
- "@langchain/core@^1.1.32":
894
- version "1.1.32"
895
- resolved "https://registry.yarnpkg.com/@langchain/core/-/core-1.1.32.tgz#a9baf37e5cb40e8b877160d5d03ef3bf6e8e250d"
896
- integrity sha512-ZZNiER5tceFXqZOghfrxNHzM60gcQL5XK/8Ow5+o4OuKHrP1p/RUQBDM9Y1nddi/VmKQj+ncaXXM5KovXTEGGQ==
893
+ "@langchain/core@^1.1.38":
894
+ version "1.1.38"
895
+ resolved "https://registry.yarnpkg.com/@langchain/core/-/core-1.1.38.tgz#b5939b2e77af408771c9bb95bf56a5ad8183313e"
896
+ integrity sha512-C340wH1YL10CiVOFlEpQMp0zQE85/eBLKX/gi1Lv7shAyUmR3CQ0t/mXlCd5RsZa6ntAN1kDJnp64ArWey9XAA==
897
897
  dependencies:
898
898
  "@cfworker/json-schema" "^4.0.2"
899
899
  "@standard-schema/spec" "^1.1.0"
@@ -907,30 +907,30 @@
907
907
  uuid "^11.1.0"
908
908
  zod "^3.25.76 || ^4"
909
909
 
910
- "@langchain/langgraph-checkpoint@^1.0.0":
911
- version "1.0.0"
912
- resolved "https://registry.yarnpkg.com/@langchain/langgraph-checkpoint/-/langgraph-checkpoint-1.0.0.tgz#ece2ede439d0d0b0b532c4be7817fd5029afe4f8"
913
- integrity sha512-xrclBGvNCXDmi0Nz28t3vjpxSH6UYx6w5XAXSiiB1WEdc2xD2iY/a913I3x3a31XpInUW/GGfXXfePfaghV54A==
910
+ "@langchain/langgraph-checkpoint@^1.0.1":
911
+ version "1.0.1"
912
+ resolved "https://registry.yarnpkg.com/@langchain/langgraph-checkpoint/-/langgraph-checkpoint-1.0.1.tgz#0ee5bdfeb9878d8d1d99347f23e199e5afd52995"
913
+ integrity sha512-HM0cJLRpIsSlWBQ/xuDC67l52SqZ62Bh2Y61DX+Xorqwoh5e1KxYvfCD7GnSTbWWhjBOutvnR0vPhu4orFkZfw==
914
914
  dependencies:
915
915
  uuid "^10.0.0"
916
916
 
917
- "@langchain/langgraph-sdk@~1.7.0":
918
- version "1.7.2"
919
- resolved "https://registry.yarnpkg.com/@langchain/langgraph-sdk/-/langgraph-sdk-1.7.2.tgz#8273ef749082d6e1c7c7e281d75287b2b4deedfa"
920
- integrity sha512-8ad5OTwqc15J/DxLNJYLn3IC2mpfow09nxJdszxhwm3KgsolGZIUV6g7m67C2p4j3cbQZD5USHt3hKEL0ahqoA==
917
+ "@langchain/langgraph-sdk@~1.8.1":
918
+ version "1.8.3"
919
+ resolved "https://registry.yarnpkg.com/@langchain/langgraph-sdk/-/langgraph-sdk-1.8.3.tgz#deedc9bddd863693c6ab5f3a74058548b040377d"
920
+ integrity sha512-Py0S5yVtlOHz410aEsSGLRKjtsK2giDvfPS1JjAjTdcs71khuJufFtUZFwmwdJCbsG4DaGurRLHOAJu9jO4a0g==
921
921
  dependencies:
922
922
  "@types/json-schema" "^7.0.15"
923
923
  p-queue "^9.0.1"
924
924
  p-retry "^7.1.1"
925
925
  uuid "^13.0.0"
926
926
 
927
- "@langchain/langgraph@^1.2.2":
928
- version "1.2.2"
929
- resolved "https://registry.yarnpkg.com/@langchain/langgraph/-/langgraph-1.2.2.tgz#747cc0ddb6fe350906c7f982289499f072345701"
930
- integrity sha512-1F94azb3b3TpHi5Jxa7gFvAYXuSIsEobEXk3/PD7+gkOobIC5Jty3+/ATSkH7joUo0bXCF/rgMOjRGusi6YvSQ==
927
+ "@langchain/langgraph@^1.2.6":
928
+ version "1.2.6"
929
+ resolved "https://registry.yarnpkg.com/@langchain/langgraph/-/langgraph-1.2.6.tgz#e6a578f96fbbc1c54ba78e0298884671dad5d195"
930
+ integrity sha512-5cX402dNGN6w9+0mlMU2dgUiKx6Y1tlENp7x05e9ByDbQCHSDc0kyqRWNFLGc7vatQ92S4ylxQrcCJvi8Fr4SQ==
931
931
  dependencies:
932
- "@langchain/langgraph-checkpoint" "^1.0.0"
933
- "@langchain/langgraph-sdk" "~1.7.0"
932
+ "@langchain/langgraph-checkpoint" "^1.0.1"
933
+ "@langchain/langgraph-sdk" "~1.8.1"
934
934
  "@standard-schema/spec" "1.1.0"
935
935
  uuid "^10.0.0"
936
936
 
@@ -1103,100 +1103,100 @@
1103
1103
  dependencies:
1104
1104
  "@types/yargs-parser" "*"
1105
1105
 
1106
- "@typescript-eslint/eslint-plugin@^8.57.0":
1107
- version "8.57.0"
1108
- resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.57.0.tgz#6e4085604ab63f55b3dcc61ce2c16965b2c36374"
1109
- integrity sha512-qeu4rTHR3/IaFORbD16gmjq9+rEs9fGKdX0kF6BKSfi+gCuG3RCKLlSBYzn/bGsY9Tj7KE/DAQStbp8AHJGHEQ==
1106
+ "@typescript-eslint/eslint-plugin@^8.58.0":
1107
+ version "8.58.0"
1108
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.58.0.tgz#ad40e492f1931f46da1bd888e52b9e56df9063aa"
1109
+ integrity sha512-RLkVSiNuUP1C2ROIWfqX+YcUfLaSnxGE/8M+Y57lopVwg9VTYYfhuz15Yf1IzCKgZj6/rIbYTmJCUSqr76r0Wg==
1110
1110
  dependencies:
1111
1111
  "@eslint-community/regexpp" "^4.12.2"
1112
- "@typescript-eslint/scope-manager" "8.57.0"
1113
- "@typescript-eslint/type-utils" "8.57.0"
1114
- "@typescript-eslint/utils" "8.57.0"
1115
- "@typescript-eslint/visitor-keys" "8.57.0"
1112
+ "@typescript-eslint/scope-manager" "8.58.0"
1113
+ "@typescript-eslint/type-utils" "8.58.0"
1114
+ "@typescript-eslint/utils" "8.58.0"
1115
+ "@typescript-eslint/visitor-keys" "8.58.0"
1116
1116
  ignore "^7.0.5"
1117
1117
  natural-compare "^1.4.0"
1118
- ts-api-utils "^2.4.0"
1118
+ ts-api-utils "^2.5.0"
1119
1119
 
1120
- "@typescript-eslint/parser@^8.57.0":
1121
- version "8.57.0"
1122
- resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.57.0.tgz#444c57a943e8b04f255cda18a94c8e023b46b08c"
1123
- integrity sha512-XZzOmihLIr8AD1b9hL9ccNMzEMWt/dE2u7NyTY9jJG6YNiNthaD5XtUHVF2uCXZ15ng+z2hT3MVuxnUYhq6k1g==
1120
+ "@typescript-eslint/parser@^8.58.0":
1121
+ version "8.58.0"
1122
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.58.0.tgz#da04ece1967b6c2fe8f10c3473dabf3825795ef7"
1123
+ integrity sha512-rLoGZIf9afaRBYsPUMtvkDWykwXwUPL60HebR4JgTI8mxfFe2cQTu3AGitANp4b9B2QlVru6WzjgB2IzJKiCSA==
1124
1124
  dependencies:
1125
- "@typescript-eslint/scope-manager" "8.57.0"
1126
- "@typescript-eslint/types" "8.57.0"
1127
- "@typescript-eslint/typescript-estree" "8.57.0"
1128
- "@typescript-eslint/visitor-keys" "8.57.0"
1125
+ "@typescript-eslint/scope-manager" "8.58.0"
1126
+ "@typescript-eslint/types" "8.58.0"
1127
+ "@typescript-eslint/typescript-estree" "8.58.0"
1128
+ "@typescript-eslint/visitor-keys" "8.58.0"
1129
1129
  debug "^4.4.3"
1130
1130
 
1131
- "@typescript-eslint/project-service@8.57.0":
1132
- version "8.57.0"
1133
- resolved "https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.57.0.tgz#2014ed527bcd0eff8aecb7e44879ae3150604ab3"
1134
- integrity sha512-pR+dK0BlxCLxtWfaKQWtYr7MhKmzqZxuii+ZjuFlZlIGRZm22HnXFqa2eY+90MUz8/i80YJmzFGDUsi8dMOV5w==
1131
+ "@typescript-eslint/project-service@8.58.0":
1132
+ version "8.58.0"
1133
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.58.0.tgz#66ceda0aabf7427aec3e2713fa43eb278dead2aa"
1134
+ integrity sha512-8Q/wBPWLQP1j16NxoPNIKpDZFMaxl7yWIoqXWYeWO+Bbd2mjgvoF0dxP2jKZg5+x49rgKdf7Ck473M8PC3V9lg==
1135
1135
  dependencies:
1136
- "@typescript-eslint/tsconfig-utils" "^8.57.0"
1137
- "@typescript-eslint/types" "^8.57.0"
1136
+ "@typescript-eslint/tsconfig-utils" "^8.58.0"
1137
+ "@typescript-eslint/types" "^8.58.0"
1138
1138
  debug "^4.4.3"
1139
1139
 
1140
- "@typescript-eslint/scope-manager@8.57.0":
1141
- version "8.57.0"
1142
- resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.57.0.tgz#7d2a2aeaaef2ae70891b21939fadb4cb0b19f840"
1143
- integrity sha512-nvExQqAHF01lUM66MskSaZulpPL5pgy5hI5RfrxviLgzZVffB5yYzw27uK/ft8QnKXI2X0LBrHJFr1TaZtAibw==
1140
+ "@typescript-eslint/scope-manager@8.58.0":
1141
+ version "8.58.0"
1142
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.58.0.tgz#e304142775e49a1b7ac3c8bf2536714447c72cab"
1143
+ integrity sha512-W1Lur1oF50FxSnNdGp3Vs6P+yBRSmZiw4IIjEeYxd8UQJwhUF0gDgDD/W/Tgmh73mxgEU3qX0Bzdl/NGuSPEpQ==
1144
1144
  dependencies:
1145
- "@typescript-eslint/types" "8.57.0"
1146
- "@typescript-eslint/visitor-keys" "8.57.0"
1145
+ "@typescript-eslint/types" "8.58.0"
1146
+ "@typescript-eslint/visitor-keys" "8.58.0"
1147
1147
 
1148
- "@typescript-eslint/tsconfig-utils@8.57.0", "@typescript-eslint/tsconfig-utils@^8.57.0":
1149
- version "8.57.0"
1150
- resolved "https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.57.0.tgz#cf2f2822af3887d25dd325b6bea6c3f60a83a0b4"
1151
- integrity sha512-LtXRihc5ytjJIQEH+xqjB0+YgsV4/tW35XKX3GTZHpWtcC8SPkT/d4tqdf1cKtesryHm2bgp6l555NYcT2NLvA==
1148
+ "@typescript-eslint/tsconfig-utils@8.58.0", "@typescript-eslint/tsconfig-utils@^8.58.0":
1149
+ version "8.58.0"
1150
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.58.0.tgz#c5a8edb21f31e0fdee565724e1b984171c559482"
1151
+ integrity sha512-doNSZEVJsWEu4htiVC+PR6NpM+pa+a4ClH9INRWOWCUzMst/VA9c4gXq92F8GUD1rwhNvRLkgjfYtFXegXQF7A==
1152
1152
 
1153
- "@typescript-eslint/type-utils@8.57.0":
1154
- version "8.57.0"
1155
- resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.57.0.tgz#2877af4c2e8f0998b93a07dad1c34ce1bb669448"
1156
- integrity sha512-yjgh7gmDcJ1+TcEg8x3uWQmn8ifvSupnPfjP21twPKrDP/pTHlEQgmKcitzF/rzPSmv7QjJ90vRpN4U+zoUjwQ==
1153
+ "@typescript-eslint/type-utils@8.58.0":
1154
+ version "8.58.0"
1155
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.58.0.tgz#ce0e72cd967ffbbe8de322db6089bd4374be352f"
1156
+ integrity sha512-aGsCQImkDIqMyx1u4PrVlbi/krmDsQUs4zAcCV6M7yPcPev+RqVlndsJy9kJ8TLihW9TZ0kbDAzctpLn5o+lOg==
1157
1157
  dependencies:
1158
- "@typescript-eslint/types" "8.57.0"
1159
- "@typescript-eslint/typescript-estree" "8.57.0"
1160
- "@typescript-eslint/utils" "8.57.0"
1158
+ "@typescript-eslint/types" "8.58.0"
1159
+ "@typescript-eslint/typescript-estree" "8.58.0"
1160
+ "@typescript-eslint/utils" "8.58.0"
1161
1161
  debug "^4.4.3"
1162
- ts-api-utils "^2.4.0"
1163
-
1164
- "@typescript-eslint/types@8.57.0", "@typescript-eslint/types@^8.57.0":
1165
- version "8.57.0"
1166
- resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.57.0.tgz#4fa5385ffd1cd161fa5b9dce93e0493d491b8dc6"
1167
- integrity sha512-dTLI8PEXhjUC7B9Kre+u0XznO696BhXcTlOn0/6kf1fHaQW8+VjJAVHJ3eTI14ZapTxdkOmc80HblPQLaEeJdg==
1168
-
1169
- "@typescript-eslint/typescript-estree@8.57.0":
1170
- version "8.57.0"
1171
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.57.0.tgz#e0e4a89bfebb207de314826df876e2dabc7dea04"
1172
- integrity sha512-m7faHcyVg0BT3VdYTlX8GdJEM7COexXxS6KqGopxdtkQRvBanK377QDHr4W/vIPAR+ah9+B/RclSW5ldVniO1Q==
1173
- dependencies:
1174
- "@typescript-eslint/project-service" "8.57.0"
1175
- "@typescript-eslint/tsconfig-utils" "8.57.0"
1176
- "@typescript-eslint/types" "8.57.0"
1177
- "@typescript-eslint/visitor-keys" "8.57.0"
1162
+ ts-api-utils "^2.5.0"
1163
+
1164
+ "@typescript-eslint/types@8.58.0", "@typescript-eslint/types@^8.58.0":
1165
+ version "8.58.0"
1166
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.58.0.tgz#e94ae7abdc1c6530e71183c1007b61fa93112a5a"
1167
+ integrity sha512-O9CjxypDT89fbHxRfETNoAnHj/i6IpRK0CvbVN3qibxlLdo5p5hcLmUuCCrHMpxiWSwKyI8mCP7qRNYuOJ0Uww==
1168
+
1169
+ "@typescript-eslint/typescript-estree@8.58.0":
1170
+ version "8.58.0"
1171
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.58.0.tgz#ed233faa8e2f2a2e1357c3e7d553d6465a0ee59a"
1172
+ integrity sha512-7vv5UWbHqew/dvs+D3e1RvLv1v2eeZ9txRHPnEEBUgSNLx5ghdzjHa0sgLWYVKssH+lYmV0JaWdoubo0ncGYLA==
1173
+ dependencies:
1174
+ "@typescript-eslint/project-service" "8.58.0"
1175
+ "@typescript-eslint/tsconfig-utils" "8.58.0"
1176
+ "@typescript-eslint/types" "8.58.0"
1177
+ "@typescript-eslint/visitor-keys" "8.58.0"
1178
1178
  debug "^4.4.3"
1179
1179
  minimatch "^10.2.2"
1180
1180
  semver "^7.7.3"
1181
1181
  tinyglobby "^0.2.15"
1182
- ts-api-utils "^2.4.0"
1182
+ ts-api-utils "^2.5.0"
1183
1183
 
1184
- "@typescript-eslint/utils@8.57.0":
1185
- version "8.57.0"
1186
- resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.57.0.tgz#c7193385b44529b788210d20c94c11de79ad3498"
1187
- integrity sha512-5iIHvpD3CZe06riAsbNxxreP+MuYgVUsV0n4bwLH//VJmgtt54sQeY2GszntJ4BjYCpMzrfVh2SBnUQTtys2lQ==
1184
+ "@typescript-eslint/utils@8.58.0":
1185
+ version "8.58.0"
1186
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.58.0.tgz#21a74a7963b0d288b719a4121c7dd555adaab3c3"
1187
+ integrity sha512-RfeSqcFeHMHlAWzt4TBjWOAtoW9lnsAGiP3GbaX9uVgTYYrMbVnGONEfUCiSss+xMHFl+eHZiipmA8WkQ7FuNA==
1188
1188
  dependencies:
1189
1189
  "@eslint-community/eslint-utils" "^4.9.1"
1190
- "@typescript-eslint/scope-manager" "8.57.0"
1191
- "@typescript-eslint/types" "8.57.0"
1192
- "@typescript-eslint/typescript-estree" "8.57.0"
1190
+ "@typescript-eslint/scope-manager" "8.58.0"
1191
+ "@typescript-eslint/types" "8.58.0"
1192
+ "@typescript-eslint/typescript-estree" "8.58.0"
1193
1193
 
1194
- "@typescript-eslint/visitor-keys@8.57.0":
1195
- version "8.57.0"
1196
- resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.57.0.tgz#23aea662279bb66209700854453807a119350f85"
1197
- integrity sha512-zm6xx8UT/Xy2oSr2ZXD0pZo7Jx2XsCoID2IUh9YSTFRu7z+WdwYTRk6LhUftm1crwqbuoF6I8zAFeCMw0YjwDg==
1194
+ "@typescript-eslint/visitor-keys@8.58.0":
1195
+ version "8.58.0"
1196
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.58.0.tgz#2abd55a4be70fd55967aceaba4330b9ba9f45189"
1197
+ integrity sha512-XJ9UD9+bbDo4a4epraTwG3TsNPeiB9aShrUneAVXy8q4LuwowN+qu89/6ByLMINqvIMeI9H9hOHQtg/ijrYXzQ==
1198
1198
  dependencies:
1199
- "@typescript-eslint/types" "8.57.0"
1199
+ "@typescript-eslint/types" "8.58.0"
1200
1200
  eslint-visitor-keys "^5.0.0"
1201
1201
 
1202
1202
  "@ungap/structured-clone@^1.3.0":
@@ -2275,15 +2275,15 @@ eslint-visitor-keys@^5.0.0, eslint-visitor-keys@^5.0.1:
2275
2275
  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz#9e3c9489697824d2d4ce3a8ad12628f91e9f59be"
2276
2276
  integrity sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==
2277
2277
 
2278
- eslint@^10.0.3:
2279
- version "10.0.3"
2280
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-10.0.3.tgz#360a7de7f2706eb8a32caa17ca983f0089efe694"
2281
- integrity sha512-COV33RzXZkqhG9P2rZCFl9ZmJ7WL+gQSCRzE7RhkbclbQPtLAWReL7ysA0Sh4c8Im2U9ynybdR56PV0XcKvqaQ==
2278
+ eslint@^10.1.0:
2279
+ version "10.1.0"
2280
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-10.1.0.tgz#9ca98e654e642ab2e1af6d1e9d8613857ac341b4"
2281
+ integrity sha512-S9jlY/ELKEUwwQnqWDO+f+m6sercqOPSqXM5Go94l7DOmxHVDgmSFGWEzeE/gwgTAr0W103BWt0QLe/7mabIvA==
2282
2282
  dependencies:
2283
2283
  "@eslint-community/eslint-utils" "^4.8.0"
2284
2284
  "@eslint-community/regexpp" "^4.12.2"
2285
2285
  "@eslint/config-array" "^0.23.3"
2286
- "@eslint/config-helpers" "^0.5.2"
2286
+ "@eslint/config-helpers" "^0.5.3"
2287
2287
  "@eslint/core" "^1.1.1"
2288
2288
  "@eslint/plugin-kit" "^0.6.1"
2289
2289
  "@humanfs/node" "^0.16.6"
@@ -2296,7 +2296,7 @@ eslint@^10.0.3:
2296
2296
  escape-string-regexp "^4.0.0"
2297
2297
  eslint-scope "^9.1.2"
2298
2298
  eslint-visitor-keys "^5.0.1"
2299
- espree "^11.1.1"
2299
+ espree "^11.2.0"
2300
2300
  esquery "^1.7.0"
2301
2301
  esutils "^2.0.2"
2302
2302
  fast-deep-equal "^3.1.3"
@@ -2320,10 +2320,10 @@ espree@^10.0.1:
2320
2320
  acorn-jsx "^5.3.2"
2321
2321
  eslint-visitor-keys "^4.0.0"
2322
2322
 
2323
- espree@^11.1.1:
2324
- version "11.1.1"
2325
- resolved "https://registry.yarnpkg.com/espree/-/espree-11.1.1.tgz#866f6bc9ccccd6f28876b7a6463abb281b9cb847"
2326
- integrity sha512-AVHPqQoZYc+RUM4/3Ly5udlZY/U4LS8pIG05jEjWM2lQMU/oaZ7qshzAl2YP1tfNmXfftH3ohurfwNAug+MnsQ==
2323
+ espree@^11.2.0:
2324
+ version "11.2.0"
2325
+ resolved "https://registry.yarnpkg.com/espree/-/espree-11.2.0.tgz#01d5e47dc332aaba3059008362454a8cc34ccaa5"
2326
+ integrity sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==
2327
2327
  dependencies:
2328
2328
  acorn "^8.16.0"
2329
2329
  acorn-jsx "^5.3.2"
@@ -2483,9 +2483,9 @@ flat-cache@^4.0.0:
2483
2483
  keyv "^4.5.4"
2484
2484
 
2485
2485
  flatted@^3.2.9:
2486
- version "3.3.1"
2487
- resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a"
2488
- integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==
2486
+ version "3.4.2"
2487
+ resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.4.2.tgz#f5c23c107f0f37de8dbdf24f13722b3b98d52726"
2488
+ integrity sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==
2489
2489
 
2490
2490
  for-each@^0.3.3:
2491
2491
  version "0.3.3"
@@ -2696,9 +2696,9 @@ graceful-fs@^4.2.11:
2696
2696
  integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
2697
2697
 
2698
2698
  handlebars@^4.7.8:
2699
- version "4.7.8"
2700
- resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.8.tgz#41c42c18b1be2365439188c77c6afae71c0cd9e9"
2701
- integrity sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==
2699
+ version "4.7.9"
2700
+ resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.9.tgz#6f139082ab58dc4e5a0e51efe7db5ae890d56a0f"
2701
+ integrity sha512-4E71E0rpOaQuJR2A3xDZ+GM1HyWYv1clR58tC8emQNeQe3RH7MAzSbat+V0wG78LQBo6m6bzSG/L4pBuCsgnUQ==
2702
2702
  dependencies:
2703
2703
  minimist "^1.2.5"
2704
2704
  neo-async "^2.6.2"
@@ -4639,10 +4639,10 @@ to-regex-range@^5.0.1:
4639
4639
  dependencies:
4640
4640
  is-number "^7.0.0"
4641
4641
 
4642
- ts-api-utils@^2.4.0:
4643
- version "2.4.0"
4644
- resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-2.4.0.tgz#2690579f96d2790253bdcf1ca35d569ad78f9ad8"
4645
- integrity sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==
4642
+ ts-api-utils@^2.5.0:
4643
+ version "2.5.0"
4644
+ resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-2.5.0.tgz#4acd4a155e22734990a5ed1fe9e97f113bcb37c1"
4645
+ integrity sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==
4646
4646
 
4647
4647
  ts-jest@^29.4.6:
4648
4648
  version "29.4.6"
@@ -9,8 +9,8 @@
9
9
  },
10
10
  "dependencies": {
11
11
  "@js-monorepo-example/shared": "*",
12
- "@langchain/core": "^1.1.32",
13
- "@langchain/langgraph": "^1.2.2"
12
+ "@langchain/core": "^1.1.38",
13
+ "@langchain/langgraph": "^1.2.6"
14
14
  },
15
15
  "devDependencies": {
16
16
  "typescript": "^5.9.3"
@@ -17,18 +17,18 @@
17
17
  "lint": "eslint 'apps/**/*.ts' 'libs/**/*.ts'"
18
18
  },
19
19
  "devDependencies": {
20
- "turbo": "^2.8.17",
20
+ "turbo": "^2.9.3",
21
21
  "typescript": "^5.9.3",
22
22
  "@tsconfig/recommended": "^1.0.13",
23
23
  "@eslint/eslintrc": "^3.3.5",
24
24
  "@eslint/js": "^10.0.1",
25
- "eslint": "^10.0.3",
25
+ "eslint": "^10.1.0",
26
26
  "eslint-config-prettier": "^10.1.8",
27
27
  "eslint-plugin-import": "^2.27.5",
28
28
  "eslint-plugin-no-instanceof": "^1.0.1",
29
29
  "eslint-plugin-prettier": "^5.5.5",
30
- "@typescript-eslint/eslint-plugin": "^8.57.0",
31
- "@typescript-eslint/parser": "^8.57.0",
30
+ "@typescript-eslint/eslint-plugin": "^8.58.0",
31
+ "@typescript-eslint/parser": "^8.58.0",
32
32
  "prettier": "^3.8.1"
33
33
  }
34
34
  }