langgraph-cli 0.4.23__tar.gz → 0.4.25__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 (149) hide show
  1. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/PKG-INFO +2 -2
  2. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graph_prerelease_reqs/deps/zuper_deps/pyproject.toml +1 -1
  3. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graph_prerelease_reqs/pyproject.toml +1 -1
  4. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graph_prerelease_reqs_fail/pyproject.toml +1 -1
  5. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-examples/package.json +8 -8
  6. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-examples/yarn.lock +123 -129
  7. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-monorepo-example/apps/agent/package.json +2 -2
  8. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-monorepo-example/package.json +5 -5
  9. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-monorepo-example/yarn.lock +145 -151
  10. langgraph_cli-0.4.25/langgraph_cli/__init__.py +1 -0
  11. langgraph_cli-0.4.25/langgraph_cli/_ignore.py +124 -0
  12. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/langgraph_cli/archive.py +1 -24
  13. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/langgraph_cli/deploy.py +325 -86
  14. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/langgraph_cli/progress.py +7 -1
  15. langgraph_cli-0.4.25/langgraph_cli/util.py +50 -0
  16. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/langgraph_cli/uv_lock.py +50 -11
  17. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/pyproject.toml +1 -1
  18. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/unit_tests/test_archive.py +7 -0
  19. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/unit_tests/test_config.py +359 -0
  20. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/unit_tests/test_deploy_helpers.py +272 -11
  21. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/uv.lock +75 -74
  22. langgraph_cli-0.4.23/langgraph_cli/__init__.py +0 -1
  23. langgraph_cli-0.4.23/langgraph_cli/util.py +0 -27
  24. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/.gitignore +0 -0
  25. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/LICENSE +0 -0
  26. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/Makefile +0 -0
  27. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/README.md +0 -0
  28. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/.env.example +0 -0
  29. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/.gitignore +0 -0
  30. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/Makefile +0 -0
  31. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graph_prerelease_reqs/agent.py +0 -0
  32. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graph_prerelease_reqs/deps/additional_deps/pyproject.toml +0 -0
  33. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graph_prerelease_reqs/langgraph.json +0 -0
  34. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graph_prerelease_reqs_fail/agent.py +0 -0
  35. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graph_prerelease_reqs_fail/langgraph.json +0 -0
  36. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graphs/agent.py +0 -0
  37. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graphs/langgraph.json +0 -0
  38. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graphs/storm.py +0 -0
  39. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graphs_reqs_a/__init__.py +0 -0
  40. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graphs_reqs_a/graphs_submod/__init__.py +0 -0
  41. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graphs_reqs_a/graphs_submod/agent.py +0 -0
  42. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graphs_reqs_a/graphs_submod/subprompt.txt +0 -0
  43. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graphs_reqs_a/hello.py +0 -0
  44. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graphs_reqs_a/langgraph.json +0 -0
  45. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graphs_reqs_a/prompt.txt +0 -0
  46. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graphs_reqs_a/requirements.txt +0 -0
  47. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graphs_reqs_b/graphs_submod/agent.py +0 -0
  48. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graphs_reqs_b/graphs_submod/subprompt.txt +0 -0
  49. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graphs_reqs_b/hello.py +0 -0
  50. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graphs_reqs_b/langgraph.json +0 -0
  51. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graphs_reqs_b/prompt.txt +0 -0
  52. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graphs_reqs_b/requirements.txt +0 -0
  53. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graphs_reqs_b/utils/__init__.py +0 -0
  54. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/graphs_reqs_b/utils/greeter.py +0 -0
  55. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/langgraph.json +0 -0
  56. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/my_app.py +0 -0
  57. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/pipconf.txt +0 -0
  58. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/poetry.lock +0 -0
  59. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/examples/pyproject.toml +0 -0
  60. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/generate_schema.py +0 -0
  61. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-examples/.dockerignore +0 -0
  62. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-examples/.editorconfig +0 -0
  63. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-examples/.env.example +0 -0
  64. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-examples/.eslintrc.cjs +0 -0
  65. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-examples/.gitignore +0 -0
  66. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-examples/LICENSE +0 -0
  67. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-examples/README.md +0 -0
  68. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-examples/jest.config.js +0 -0
  69. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-examples/langgraph.json +0 -0
  70. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-examples/src/agent/graph.ts +0 -0
  71. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-examples/src/agent/state.ts +0 -0
  72. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-examples/static/studio.png +0 -0
  73. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-examples/tests/agent.test.ts +0 -0
  74. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-examples/tests/graph.int.test.ts +0 -0
  75. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-examples/tsconfig.json +0 -0
  76. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-monorepo-example/.eslintrc.cjs +0 -0
  77. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-monorepo-example/apps/agent/langgraph.json +0 -0
  78. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-monorepo-example/apps/agent/src/graph.ts +0 -0
  79. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-monorepo-example/apps/agent/src/state.ts +0 -0
  80. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-monorepo-example/apps/agent/tsconfig.json +0 -0
  81. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-monorepo-example/libs/shared/package.json +0 -0
  82. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-monorepo-example/libs/shared/src/index.ts +0 -0
  83. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-monorepo-example/libs/shared/tsconfig.json +0 -0
  84. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-monorepo-example/tsconfig.json +0 -0
  85. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/js-monorepo-example/turbo.json +0 -0
  86. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/langgraph_cli/__main__.py +0 -0
  87. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/langgraph_cli/analytics.py +0 -0
  88. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/langgraph_cli/cli.py +0 -0
  89. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/langgraph_cli/config.py +0 -0
  90. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/langgraph_cli/constants.py +0 -0
  91. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/langgraph_cli/docker.py +0 -0
  92. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/langgraph_cli/exec.py +0 -0
  93. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/langgraph_cli/host_backend.py +0 -0
  94. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/langgraph_cli/py.typed +0 -0
  95. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/langgraph_cli/schemas.py +0 -0
  96. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/langgraph_cli/templates.py +0 -0
  97. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/langgraph_cli/version.py +0 -0
  98. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/python-monorepo-example/apps/agent/.env.example +0 -0
  99. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/python-monorepo-example/apps/agent/langgraph.json +0 -0
  100. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/python-monorepo-example/apps/agent/pyproject.toml +0 -0
  101. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/python-monorepo-example/apps/agent/src/agent/__init__.py +0 -0
  102. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/python-monorepo-example/apps/agent/src/agent/graph.py +0 -0
  103. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/python-monorepo-example/apps/agent/src/agent/state.py +0 -0
  104. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/python-monorepo-example/libs/common/__init__.py +0 -0
  105. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/python-monorepo-example/libs/common/helpers.py +0 -0
  106. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/python-monorepo-example/libs/shared/pyproject.toml +0 -0
  107. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/python-monorepo-example/libs/shared/src/shared/__init__.py +0 -0
  108. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/python-monorepo-example/libs/shared/src/shared/utils.py +0 -0
  109. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/python-monorepo-example/pyproject.toml +0 -0
  110. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/schemas/schema.json +0 -0
  111. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/schemas/schema.v0.json +0 -0
  112. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/schemas/version.schema.json +0 -0
  113. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/__init__.py +0 -0
  114. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/integration_tests/__init__.py +0 -0
  115. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/integration_tests/test_cli.py +0 -0
  116. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/unit_tests/__init__.py +0 -0
  117. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/unit_tests/agent.py +0 -0
  118. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/unit_tests/cli/__init__.py +0 -0
  119. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/unit_tests/cli/langgraph.json +0 -0
  120. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/unit_tests/cli/pyproject.toml +0 -0
  121. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/unit_tests/cli/test_cli.py +0 -0
  122. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/unit_tests/cli/test_templates.py +0 -0
  123. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/unit_tests/conftest.py +0 -0
  124. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/unit_tests/graphs/agent.py +0 -0
  125. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/unit_tests/helpers.py +0 -0
  126. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/unit_tests/multiplatform/js.mts +0 -0
  127. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/unit_tests/multiplatform/python.py +0 -0
  128. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/unit_tests/pipconfig.txt +0 -0
  129. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/unit_tests/test_config.json +0 -0
  130. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/unit_tests/test_docker.py +0 -0
  131. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/unit_tests/test_host_backend.py +0 -0
  132. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/unit_tests/test_logs_helpers.py +0 -0
  133. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/tests/unit_tests/test_util.py +0 -0
  134. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/uv-examples/monorepo/apps/agent/.env.example +0 -0
  135. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/uv-examples/monorepo/apps/agent/langgraph.json +0 -0
  136. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/uv-examples/monorepo/apps/agent/pyproject.toml +0 -0
  137. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/uv-examples/monorepo/apps/agent/src/agent/__init__.py +0 -0
  138. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/uv-examples/monorepo/apps/agent/src/agent/graph.py +0 -0
  139. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/uv-examples/monorepo/libs/shared/pyproject.toml +0 -0
  140. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/uv-examples/monorepo/libs/shared/src/shared/__init__.py +0 -0
  141. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/uv-examples/monorepo/libs/shared/src/shared/utils.py +0 -0
  142. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/uv-examples/monorepo/pyproject.toml +0 -0
  143. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/uv-examples/monorepo/uv.lock +0 -0
  144. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/uv-examples/simple/.env.example +0 -0
  145. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/uv-examples/simple/langgraph.json +0 -0
  146. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/uv-examples/simple/pyproject.toml +0 -0
  147. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/uv-examples/simple/src/agent/__init__.py +0 -0
  148. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/uv-examples/simple/src/agent/graph.py +0 -0
  149. {langgraph_cli-0.4.23 → langgraph_cli-0.4.25}/uv-examples/simple/uv.lock +0 -0
@@ -1,9 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: langgraph-cli
3
- Version: 0.4.23
3
+ Version: 0.4.25
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
- Project-URL: Twitter, https://x.com/LangChain
6
+ Project-URL: Twitter, https://x.com/langchain_oss
7
7
  Project-URL: Slack, https://www.langchain.com/join-community
8
8
  Project-URL: Reddit, https://www.reddit.com/r/LangChain/
9
9
  License-Expression: MIT
@@ -5,5 +5,5 @@ description = "Test for prerelease stuff"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
7
7
  dependencies = [
8
- "langchain-openai==1.0.1"
8
+ "langchain-openai==1.1.14"
9
9
  ]
@@ -5,7 +5,7 @@ description = "Test for prerelease stuff"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
7
7
  dependencies = [
8
- "langchain-openai==1.0.0a2",
8
+ "langchain-openai==1.1.14",
9
9
  "langchain-anthropic==1.0.0a5",
10
10
  "langgraph==1.1.5"
11
11
  ]
@@ -5,7 +5,7 @@ description = "Test for prerelease stuff"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
7
7
  dependencies = [
8
- "langchain-openai==1.0.0a2",
8
+ "langchain-openai==1.1.14",
9
9
  "langgraph==1.1.2",
10
10
  "langchain_community>=0.3.0",
11
11
  ]
@@ -21,25 +21,25 @@
21
21
  "test:all": "yarn test && yarn test:int && yarn lint:langgraph"
22
22
  },
23
23
  "dependencies": {
24
- "@langchain/core": "^1.1.38",
25
- "@langchain/langgraph": "^1.2.6"
24
+ "@langchain/core": "^1.1.42",
25
+ "@langchain/langgraph": "^1.2.9"
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.58.0",
33
- "@typescript-eslint/parser": "^8.58.0",
34
- "dotenv": "^17.3.1",
35
- "eslint": "^10.1.0",
32
+ "@typescript-eslint/eslint-plugin": "^8.59.1",
33
+ "@typescript-eslint/parser": "^8.59.1",
34
+ "dotenv": "^17.4.2",
35
+ "eslint": "^10.2.1",
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",
39
39
  "eslint-plugin-prettier": "^5.5.5",
40
40
  "jest": "^30.3.0",
41
- "prettier": "^3.8.1",
42
- "ts-jest": "^29.4.6",
41
+ "prettier": "^3.8.3",
42
+ "ts-jest": "^29.4.9",
43
43
  "typescript": "^5.9.3"
44
44
  }
45
45
  }
@@ -474,26 +474,26 @@
474
474
  resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.2.tgz#bccdf615bcf7b6e8db830ec0b8d21c9a25de597b"
475
475
  integrity sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==
476
476
 
477
- "@eslint/config-array@^0.23.3":
478
- version "0.23.3"
479
- resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.23.3.tgz#3f4a93dd546169c09130cbd10f2415b13a20a219"
480
- integrity sha512-j+eEWmB6YYLwcNOdlwQ6L2OsptI/LO6lNBuLIqe5R7RetD658HLoF+Mn7LzYmAWWNNzdC6cqP+L6r8ujeYXWLw==
477
+ "@eslint/config-array@^0.23.5":
478
+ version "0.23.5"
479
+ resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.23.5.tgz#56e86d243049195d8acc0c06a1b3dfdc3fa3de95"
480
+ integrity sha512-Y3kKLvC1dvTOT+oGlqNQ1XLqK6D1HU2YXPc52NmAlJZbMMWDzGYXMiPRJ8TYD39muD/OTjlZmNJ4ib7dvSrMBA==
481
481
  dependencies:
482
- "@eslint/object-schema" "^3.0.3"
482
+ "@eslint/object-schema" "^3.0.5"
483
483
  debug "^4.3.1"
484
484
  minimatch "^10.2.4"
485
485
 
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==
486
+ "@eslint/config-helpers@^0.5.5":
487
+ version "0.5.5"
488
+ resolved "https://registry.yarnpkg.com/@eslint/config-helpers/-/config-helpers-0.5.5.tgz#ae16134e4792ac5fbdc533548a24ac1ea9f7f3ae"
489
+ integrity sha512-eIJYKTCECbP/nsKaaruF6LW967mtbQbsw4JTtSVkUQc9MneSkbrgPJAbKl9nWr0ZeowV8BfsarBmPpBzGelA2w==
490
490
  dependencies:
491
- "@eslint/core" "^1.1.1"
491
+ "@eslint/core" "^1.2.1"
492
492
 
493
- "@eslint/core@^1.1.1":
494
- version "1.1.1"
495
- resolved "https://registry.yarnpkg.com/@eslint/core/-/core-1.1.1.tgz#450f3d2be2d463ccd51119544092256b4e88df32"
496
- integrity sha512-QUPblTtE51/7/Zhfv8BDwO0qkkzQL7P/aWWbqcf4xWLEYn1oKjdO0gglQBB4GAsu7u6wjijbCmzsUTy6mnk6oQ==
493
+ "@eslint/core@^1.2.1":
494
+ version "1.2.1"
495
+ resolved "https://registry.yarnpkg.com/@eslint/core/-/core-1.2.1.tgz#c1da7cd1b82fa8787f98b5629fb811848a1b63ce"
496
+ integrity sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==
497
497
  dependencies:
498
498
  "@types/json-schema" "^7.0.15"
499
499
 
@@ -517,17 +517,17 @@
517
517
  resolved "https://registry.yarnpkg.com/@eslint/js/-/js-10.0.1.tgz#1e8a876f50117af8ab67e47d5ad94d38d6622583"
518
518
  integrity sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==
519
519
 
520
- "@eslint/object-schema@^3.0.3":
521
- version "3.0.3"
522
- resolved "https://registry.yarnpkg.com/@eslint/object-schema/-/object-schema-3.0.3.tgz#5bf671e52e382e4adc47a9906f2699374637db6b"
523
- integrity sha512-iM869Pugn9Nsxbh/YHRqYiqd23AmIbxJOcpUMOuWCVNdoQJ5ZtwL6h3t0bcZzJUlC3Dq9jCFCESBZnX0GTv7iQ==
520
+ "@eslint/object-schema@^3.0.5":
521
+ version "3.0.5"
522
+ resolved "https://registry.yarnpkg.com/@eslint/object-schema/-/object-schema-3.0.5.tgz#88e9bf4d11d2b19c082e78ebe7ce88724a5eb091"
523
+ integrity sha512-vqTaUEgxzm+YDSdElad6PiRoX4t8VGDjCtt05zn4nU810UIx/uNEV7/lZJ6KwFThKZOzOxzXy48da+No7HZaMw==
524
524
 
525
- "@eslint/plugin-kit@^0.6.1":
526
- version "0.6.1"
527
- resolved "https://registry.yarnpkg.com/@eslint/plugin-kit/-/plugin-kit-0.6.1.tgz#eb9e6689b56ce8bc1855bb33090e63f3fc115e8e"
528
- integrity sha512-iH1B076HoAshH1mLpHMgwdGeTs0CYwL0SPMkGuSebZrwBp16v415e9NZXg2jtrqPVQjf6IANe2Vtlr5KswtcZQ==
525
+ "@eslint/plugin-kit@^0.7.1":
526
+ version "0.7.1"
527
+ resolved "https://registry.yarnpkg.com/@eslint/plugin-kit/-/plugin-kit-0.7.1.tgz#c4125fd015eceeb09b793109fdbcd4dd0a02d346"
528
+ integrity sha512-rZAP3aVgB9ds9KOeUSL+zZ21hPmo8dh6fnIFwRQj5EAZl9gzR7wxYbYXYysAM8CTqGmUGyp2S4kUdV17MnGuWQ==
529
529
  dependencies:
530
- "@eslint/core" "^1.1.1"
530
+ "@eslint/core" "^1.2.1"
531
531
  levn "^0.4.1"
532
532
 
533
533
  "@humanfs/core@^0.19.1":
@@ -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.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==
893
+ "@langchain/core@^1.1.42":
894
+ version "1.1.42"
895
+ resolved "https://registry.yarnpkg.com/@langchain/core/-/core-1.1.42.tgz#607bfd34c1414c9cbeb2859fda1b254a14c28085"
896
+ integrity sha512-d0tN96BrwPMryYyWR9VfyAntSivn7EQrZCe5Kpxum93tcjTXbKKmKvItFec8AluQt88iTcmAJrahUZUNfzGwTA==
897
897
  dependencies:
898
898
  "@cfworker/json-schema" "^4.0.2"
899
899
  "@standard-schema/spec" "^1.1.0"
@@ -904,7 +904,6 @@
904
904
  langsmith ">=0.5.0 <1.0.0"
905
905
  mustache "^4.2.0"
906
906
  p-queue "^6.6.2"
907
- uuid "^11.1.0"
908
907
  zod "^3.25.76 || ^4"
909
908
 
910
909
  "@langchain/langgraph-checkpoint@^1.0.1":
@@ -914,23 +913,23 @@
914
913
  dependencies:
915
914
  uuid "^10.0.0"
916
915
 
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==
916
+ "@langchain/langgraph-sdk@~1.8.9":
917
+ version "1.8.10"
918
+ resolved "https://registry.yarnpkg.com/@langchain/langgraph-sdk/-/langgraph-sdk-1.8.10.tgz#bd175cda1ab629845ef28b22b45f3bdd1f65b029"
919
+ integrity sha512-wrB3rkRw5KAmsqezwvKP3midT4qJrV6Hj9XJMYo+cbvXC4HYpSAmyY/VriSyeTFRbLG/OP/pY2Yz+9Z54nSaXQ==
921
920
  dependencies:
922
921
  "@types/json-schema" "^7.0.15"
923
922
  p-queue "^9.0.1"
924
923
  p-retry "^7.1.1"
925
924
  uuid "^13.0.0"
926
925
 
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==
926
+ "@langchain/langgraph@^1.2.9":
927
+ version "1.2.9"
928
+ resolved "https://registry.yarnpkg.com/@langchain/langgraph/-/langgraph-1.2.9.tgz#4f0ba159062c3649c83cf5f621ef926b96933e32"
929
+ integrity sha512-3c7BtGycHC2v9p6w/Hv8L7kEl1YnZYOQTDJtmAp3knk6JOedO7d2bYP3y0SRyhv5orUEGf/KGvx8ZsB/ideP7g==
931
930
  dependencies:
932
931
  "@langchain/langgraph-checkpoint" "^1.0.1"
933
- "@langchain/langgraph-sdk" "~1.8.1"
932
+ "@langchain/langgraph-sdk" "~1.8.9"
934
933
  "@standard-schema/spec" "1.1.0"
935
934
  uuid "^10.0.0"
936
935
 
@@ -1098,100 +1097,100 @@
1098
1097
  dependencies:
1099
1098
  "@types/yargs-parser" "*"
1100
1099
 
1101
- "@typescript-eslint/eslint-plugin@^8.58.0":
1102
- version "8.58.0"
1103
- resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.58.0.tgz#ad40e492f1931f46da1bd888e52b9e56df9063aa"
1104
- integrity sha512-RLkVSiNuUP1C2ROIWfqX+YcUfLaSnxGE/8M+Y57lopVwg9VTYYfhuz15Yf1IzCKgZj6/rIbYTmJCUSqr76r0Wg==
1100
+ "@typescript-eslint/eslint-plugin@^8.59.1":
1101
+ version "8.59.1"
1102
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.59.1.tgz#781bc6f9002982cfaf75a185240e24ad7276628a"
1103
+ integrity sha512-BOziFIfE+6osHO9FoJG4zjoHUcvI7fTNBSpdAwrNH0/TLvzjsk2oo8XSSOT2HhqUyhZPfHv4UOffoJ9oEEQ7Ag==
1105
1104
  dependencies:
1106
1105
  "@eslint-community/regexpp" "^4.12.2"
1107
- "@typescript-eslint/scope-manager" "8.58.0"
1108
- "@typescript-eslint/type-utils" "8.58.0"
1109
- "@typescript-eslint/utils" "8.58.0"
1110
- "@typescript-eslint/visitor-keys" "8.58.0"
1106
+ "@typescript-eslint/scope-manager" "8.59.1"
1107
+ "@typescript-eslint/type-utils" "8.59.1"
1108
+ "@typescript-eslint/utils" "8.59.1"
1109
+ "@typescript-eslint/visitor-keys" "8.59.1"
1111
1110
  ignore "^7.0.5"
1112
1111
  natural-compare "^1.4.0"
1113
1112
  ts-api-utils "^2.5.0"
1114
1113
 
1115
- "@typescript-eslint/parser@^8.58.0":
1116
- version "8.58.0"
1117
- resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.58.0.tgz#da04ece1967b6c2fe8f10c3473dabf3825795ef7"
1118
- integrity sha512-rLoGZIf9afaRBYsPUMtvkDWykwXwUPL60HebR4JgTI8mxfFe2cQTu3AGitANp4b9B2QlVru6WzjgB2IzJKiCSA==
1114
+ "@typescript-eslint/parser@^8.59.1":
1115
+ version "8.59.1"
1116
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.59.1.tgz#835d20a62350659a082a1ae2a60b822c40488905"
1117
+ integrity sha512-HDQH9O/47Dxi1ceDhBXdaldtf/WV9yRYMjbjCuNk3qnaTD564qwv61Y7+gTxwxRKzSrgO5uhtw584igXVuuZkA==
1119
1118
  dependencies:
1120
- "@typescript-eslint/scope-manager" "8.58.0"
1121
- "@typescript-eslint/types" "8.58.0"
1122
- "@typescript-eslint/typescript-estree" "8.58.0"
1123
- "@typescript-eslint/visitor-keys" "8.58.0"
1119
+ "@typescript-eslint/scope-manager" "8.59.1"
1120
+ "@typescript-eslint/types" "8.59.1"
1121
+ "@typescript-eslint/typescript-estree" "8.59.1"
1122
+ "@typescript-eslint/visitor-keys" "8.59.1"
1124
1123
  debug "^4.4.3"
1125
1124
 
1126
- "@typescript-eslint/project-service@8.58.0":
1127
- version "8.58.0"
1128
- resolved "https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.58.0.tgz#66ceda0aabf7427aec3e2713fa43eb278dead2aa"
1129
- integrity sha512-8Q/wBPWLQP1j16NxoPNIKpDZFMaxl7yWIoqXWYeWO+Bbd2mjgvoF0dxP2jKZg5+x49rgKdf7Ck473M8PC3V9lg==
1125
+ "@typescript-eslint/project-service@8.59.1":
1126
+ version "8.59.1"
1127
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.59.1.tgz#49efe87c37ef84262f23df8bf62fdc56698ca6fe"
1128
+ integrity sha512-+MuHQlHiEr00Of/IQbE/MmEoi44znZHbR/Pz7Opq4HryUOlRi+/44dro9Ycy8Fyo+/024IWtw8m4JUMCGTYxDg==
1130
1129
  dependencies:
1131
- "@typescript-eslint/tsconfig-utils" "^8.58.0"
1132
- "@typescript-eslint/types" "^8.58.0"
1130
+ "@typescript-eslint/tsconfig-utils" "^8.59.1"
1131
+ "@typescript-eslint/types" "^8.59.1"
1133
1132
  debug "^4.4.3"
1134
1133
 
1135
- "@typescript-eslint/scope-manager@8.58.0":
1136
- version "8.58.0"
1137
- resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.58.0.tgz#e304142775e49a1b7ac3c8bf2536714447c72cab"
1138
- integrity sha512-W1Lur1oF50FxSnNdGp3Vs6P+yBRSmZiw4IIjEeYxd8UQJwhUF0gDgDD/W/Tgmh73mxgEU3qX0Bzdl/NGuSPEpQ==
1134
+ "@typescript-eslint/scope-manager@8.59.1":
1135
+ version "8.59.1"
1136
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.59.1.tgz#ed90d054fc3db2d0c81464db3a953a94fb85bb58"
1137
+ integrity sha512-LwuHQI4pDOYVKvmH2dkaJo6YZCSgouVgnS/z7yBPKBMvgtBvyLqiLy9Z6b7+m/TRcX1NFYUqZetI5Y+aT4GEfg==
1139
1138
  dependencies:
1140
- "@typescript-eslint/types" "8.58.0"
1141
- "@typescript-eslint/visitor-keys" "8.58.0"
1139
+ "@typescript-eslint/types" "8.59.1"
1140
+ "@typescript-eslint/visitor-keys" "8.59.1"
1142
1141
 
1143
- "@typescript-eslint/tsconfig-utils@8.58.0", "@typescript-eslint/tsconfig-utils@^8.58.0":
1144
- version "8.58.0"
1145
- resolved "https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.58.0.tgz#c5a8edb21f31e0fdee565724e1b984171c559482"
1146
- integrity sha512-doNSZEVJsWEu4htiVC+PR6NpM+pa+a4ClH9INRWOWCUzMst/VA9c4gXq92F8GUD1rwhNvRLkgjfYtFXegXQF7A==
1142
+ "@typescript-eslint/tsconfig-utils@8.59.1", "@typescript-eslint/tsconfig-utils@^8.59.1":
1143
+ version "8.59.1"
1144
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.59.1.tgz#ba2a779a444f1d5cb92a606f9b209d239fd4cab1"
1145
+ integrity sha512-/0nEyPbX7gRsk0Uwfe4ALwwgxuA66d/l2mhRDNlAvaj4U3juhUtJNq0DsY8M2AYwwb9rEq2hrC3IcIcEt++iJA==
1147
1146
 
1148
- "@typescript-eslint/type-utils@8.58.0":
1149
- version "8.58.0"
1150
- resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.58.0.tgz#ce0e72cd967ffbbe8de322db6089bd4374be352f"
1151
- integrity sha512-aGsCQImkDIqMyx1u4PrVlbi/krmDsQUs4zAcCV6M7yPcPev+RqVlndsJy9kJ8TLihW9TZ0kbDAzctpLn5o+lOg==
1147
+ "@typescript-eslint/type-utils@8.59.1":
1148
+ version "8.59.1"
1149
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.59.1.tgz#9c83d3f2ed9187a815e8120f72c08317e513e409"
1150
+ integrity sha512-klWPBR2ciQHS3f++ug/mVnWKPjBUo7icEL3FAO1lhAR1Z1i5NQYZ1EannMSRYcq5qCv5wNALlXr6fksRHyYl7w==
1152
1151
  dependencies:
1153
- "@typescript-eslint/types" "8.58.0"
1154
- "@typescript-eslint/typescript-estree" "8.58.0"
1155
- "@typescript-eslint/utils" "8.58.0"
1152
+ "@typescript-eslint/types" "8.59.1"
1153
+ "@typescript-eslint/typescript-estree" "8.59.1"
1154
+ "@typescript-eslint/utils" "8.59.1"
1156
1155
  debug "^4.4.3"
1157
1156
  ts-api-utils "^2.5.0"
1158
1157
 
1159
- "@typescript-eslint/types@8.58.0", "@typescript-eslint/types@^8.58.0":
1160
- version "8.58.0"
1161
- resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.58.0.tgz#e94ae7abdc1c6530e71183c1007b61fa93112a5a"
1162
- integrity sha512-O9CjxypDT89fbHxRfETNoAnHj/i6IpRK0CvbVN3qibxlLdo5p5hcLmUuCCrHMpxiWSwKyI8mCP7qRNYuOJ0Uww==
1158
+ "@typescript-eslint/types@8.59.1", "@typescript-eslint/types@^8.59.1":
1159
+ version "8.59.1"
1160
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.59.1.tgz#c1d014d3f03a97e0113a8899fc9d4e45a7fb0ca9"
1161
+ integrity sha512-ZDCjgccSdYPw5Bxh+my4Z0lJU96ZDN7jbBzvmEn0FZx3RtU1C7VWl6NbDx94bwY3V5YsgwRzJPOgeY2Q/nLG8A==
1163
1162
 
1164
- "@typescript-eslint/typescript-estree@8.58.0":
1165
- version "8.58.0"
1166
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.58.0.tgz#ed233faa8e2f2a2e1357c3e7d553d6465a0ee59a"
1167
- integrity sha512-7vv5UWbHqew/dvs+D3e1RvLv1v2eeZ9txRHPnEEBUgSNLx5ghdzjHa0sgLWYVKssH+lYmV0JaWdoubo0ncGYLA==
1163
+ "@typescript-eslint/typescript-estree@8.59.1":
1164
+ version "8.59.1"
1165
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.59.1.tgz#4391fadf98a22c869c5b6522dbf4e491e53e351a"
1166
+ integrity sha512-OUd+vJS05sSkOip+BkZ/2NS8RMxrAAJemsC6vU3kmfLyeaJT0TftHkV9mcx2107MmsBVXXexhVu4F0TZXyMl4g==
1168
1167
  dependencies:
1169
- "@typescript-eslint/project-service" "8.58.0"
1170
- "@typescript-eslint/tsconfig-utils" "8.58.0"
1171
- "@typescript-eslint/types" "8.58.0"
1172
- "@typescript-eslint/visitor-keys" "8.58.0"
1168
+ "@typescript-eslint/project-service" "8.59.1"
1169
+ "@typescript-eslint/tsconfig-utils" "8.59.1"
1170
+ "@typescript-eslint/types" "8.59.1"
1171
+ "@typescript-eslint/visitor-keys" "8.59.1"
1173
1172
  debug "^4.4.3"
1174
1173
  minimatch "^10.2.2"
1175
1174
  semver "^7.7.3"
1176
1175
  tinyglobby "^0.2.15"
1177
1176
  ts-api-utils "^2.5.0"
1178
1177
 
1179
- "@typescript-eslint/utils@8.58.0":
1180
- version "8.58.0"
1181
- resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.58.0.tgz#21a74a7963b0d288b719a4121c7dd555adaab3c3"
1182
- integrity sha512-RfeSqcFeHMHlAWzt4TBjWOAtoW9lnsAGiP3GbaX9uVgTYYrMbVnGONEfUCiSss+xMHFl+eHZiipmA8WkQ7FuNA==
1178
+ "@typescript-eslint/utils@8.59.1":
1179
+ version "8.59.1"
1180
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.59.1.tgz#cf6204d69701bbbc5b150f98c18aeef0a42c10bd"
1181
+ integrity sha512-3pIeoXhCeYH9FSCBI8P3iNwJlGuzPlYKkTlen2O9T1DSeeg8UG8jstq6BLk+Mda0qup7mgk4z4XL4OzRaxZ8LA==
1183
1182
  dependencies:
1184
1183
  "@eslint-community/eslint-utils" "^4.9.1"
1185
- "@typescript-eslint/scope-manager" "8.58.0"
1186
- "@typescript-eslint/types" "8.58.0"
1187
- "@typescript-eslint/typescript-estree" "8.58.0"
1184
+ "@typescript-eslint/scope-manager" "8.59.1"
1185
+ "@typescript-eslint/types" "8.59.1"
1186
+ "@typescript-eslint/typescript-estree" "8.59.1"
1188
1187
 
1189
- "@typescript-eslint/visitor-keys@8.58.0":
1190
- version "8.58.0"
1191
- resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.58.0.tgz#2abd55a4be70fd55967aceaba4330b9ba9f45189"
1192
- integrity sha512-XJ9UD9+bbDo4a4epraTwG3TsNPeiB9aShrUneAVXy8q4LuwowN+qu89/6ByLMINqvIMeI9H9hOHQtg/ijrYXzQ==
1188
+ "@typescript-eslint/visitor-keys@8.59.1":
1189
+ version "8.59.1"
1190
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.59.1.tgz#b5cba576287a3eeb0b400b62813189abcc3f976a"
1191
+ integrity sha512-LdDNl6C5iJExcM0Yh0PwAIBb9PrSiCsWamF/JyEZawm3kFDnRoaq3LGE4bpyRao/fWeGKKyw7icx0YxrLFC5Cg==
1193
1192
  dependencies:
1194
- "@typescript-eslint/types" "8.58.0"
1193
+ "@typescript-eslint/types" "8.59.1"
1195
1194
  eslint-visitor-keys "^5.0.0"
1196
1195
 
1197
1196
  "@ungap/structured-clone@^1.3.0":
@@ -1909,10 +1908,10 @@ doctrine@^2.1.0:
1909
1908
  dependencies:
1910
1909
  esutils "^2.0.2"
1911
1910
 
1912
- dotenv@^17.3.1:
1913
- version "17.3.1"
1914
- resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-17.3.1.tgz#2706f5b0165e45a1503348187b8468f87fe6aae2"
1915
- integrity sha512-IO8C/dzEb6O3F9/twg6ZLXz164a2fhTnEWb95H23Dm4OuN+92NmEAlTrupP9VW6Jm3sO26tQlqyvyi4CsnY9GA==
1911
+ dotenv@^17.4.2:
1912
+ version "17.4.2"
1913
+ resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-17.4.2.tgz#c07e54a746e11eba021dd9e1047ced5afdc1c034"
1914
+ integrity sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==
1916
1915
 
1917
1916
  dunder-proto@^1.0.0, dunder-proto@^1.0.1:
1918
1917
  version "1.0.1"
@@ -2263,17 +2262,17 @@ eslint-visitor-keys@^5.0.0, eslint-visitor-keys@^5.0.1:
2263
2262
  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz#9e3c9489697824d2d4ce3a8ad12628f91e9f59be"
2264
2263
  integrity sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==
2265
2264
 
2266
- eslint@^10.1.0:
2267
- version "10.1.0"
2268
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-10.1.0.tgz#9ca98e654e642ab2e1af6d1e9d8613857ac341b4"
2269
- integrity sha512-S9jlY/ELKEUwwQnqWDO+f+m6sercqOPSqXM5Go94l7DOmxHVDgmSFGWEzeE/gwgTAr0W103BWt0QLe/7mabIvA==
2265
+ eslint@^10.2.1:
2266
+ version "10.2.1"
2267
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-10.2.1.tgz#224b2a6caeb34473eddcf918762363e2e063222a"
2268
+ integrity sha512-wiyGaKsDgqXvF40P8mDwiUp/KQjE1FdrIEJsM8PZ3XCiniTMXS3OHWWUe5FI5agoCnr8x4xPrTDZuxsBlNHl+Q==
2270
2269
  dependencies:
2271
2270
  "@eslint-community/eslint-utils" "^4.8.0"
2272
2271
  "@eslint-community/regexpp" "^4.12.2"
2273
- "@eslint/config-array" "^0.23.3"
2274
- "@eslint/config-helpers" "^0.5.3"
2275
- "@eslint/core" "^1.1.1"
2276
- "@eslint/plugin-kit" "^0.6.1"
2272
+ "@eslint/config-array" "^0.23.5"
2273
+ "@eslint/config-helpers" "^0.5.5"
2274
+ "@eslint/core" "^1.2.1"
2275
+ "@eslint/plugin-kit" "^0.7.1"
2277
2276
  "@humanfs/node" "^0.16.6"
2278
2277
  "@humanwhocodes/module-importer" "^1.0.1"
2279
2278
  "@humanwhocodes/retry" "^0.4.2"
@@ -2683,7 +2682,7 @@ graceful-fs@^4.2.11:
2683
2682
  resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
2684
2683
  integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
2685
2684
 
2686
- handlebars@^4.7.8:
2685
+ handlebars@^4.7.9:
2687
2686
  version "4.7.9"
2688
2687
  resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.9.tgz#6f139082ab58dc4e5a0e51efe7db5ae890d56a0f"
2689
2688
  integrity sha512-4E71E0rpOaQuJR2A3xDZ+GM1HyWYv1clR58tC8emQNeQe3RH7MAzSbat+V0wG78LQBo6m6bzSG/L4pBuCsgnUQ==
@@ -4130,10 +4129,10 @@ prettier-linter-helpers@^1.0.1:
4130
4129
  dependencies:
4131
4130
  fast-diff "^1.1.2"
4132
4131
 
4133
- prettier@^3.8.1:
4134
- version "3.8.1"
4135
- resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.8.1.tgz#edf48977cf991558f4fcbd8a3ba6015ba2a3a173"
4136
- integrity sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==
4132
+ prettier@^3.8.3:
4133
+ version "3.8.3"
4134
+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.8.3.tgz#560f2de55bf01b4c0503bc629d5df99b9a1d09b0"
4135
+ integrity sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw==
4137
4136
 
4138
4137
  pretty-format@30.2.0, pretty-format@^30.0.0:
4139
4138
  version "30.2.0"
@@ -4287,7 +4286,7 @@ semver@^6.3.1:
4287
4286
  resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
4288
4287
  integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
4289
4288
 
4290
- semver@^7.5.3, semver@^7.5.4, semver@^7.7.2, semver@^7.7.3:
4289
+ semver@^7.5.3, semver@^7.5.4, semver@^7.7.2, semver@^7.7.3, semver@^7.7.4:
4291
4290
  version "7.7.4"
4292
4291
  resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.4.tgz#28464e36060e991fa7a11d0279d2d3f3b57a7e8a"
4293
4292
  integrity sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==
@@ -4623,18 +4622,18 @@ ts-api-utils@^2.5.0:
4623
4622
  resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-2.5.0.tgz#4acd4a155e22734990a5ed1fe9e97f113bcb37c1"
4624
4623
  integrity sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==
4625
4624
 
4626
- ts-jest@^29.4.6:
4627
- version "29.4.6"
4628
- resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.4.6.tgz#51cb7c133f227396818b71297ad7409bb77106e9"
4629
- integrity sha512-fSpWtOO/1AjSNQguk43hb/JCo16oJDnMJf3CdEGNkqsEX3t0KX96xvyX1D7PfLCpVoKu4MfVrqUkFyblYoY4lA==
4625
+ ts-jest@^29.4.9:
4626
+ version "29.4.9"
4627
+ resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.4.9.tgz#47dc33d0f5c36bddcedd16afefae285e0b049d2d"
4628
+ integrity sha512-LTb9496gYPMCqjeDLdPrKuXtncudeV1yRZnF4Wo5l3SFi0RYEnYRNgMrFIdg+FHvfzjCyQk1cLncWVqiSX+EvQ==
4630
4629
  dependencies:
4631
4630
  bs-logger "^0.2.6"
4632
4631
  fast-json-stable-stringify "^2.1.0"
4633
- handlebars "^4.7.8"
4632
+ handlebars "^4.7.9"
4634
4633
  json5 "^2.2.3"
4635
4634
  lodash.memoize "^4.1.2"
4636
4635
  make-error "^1.3.6"
4637
- semver "^7.7.3"
4636
+ semver "^7.7.4"
4638
4637
  type-fest "^4.41.0"
4639
4638
  yargs-parser "^21.1.1"
4640
4639
 
@@ -4854,11 +4853,6 @@ uuid@10.0.0, uuid@^10.0.0:
4854
4853
  resolved "https://registry.yarnpkg.com/uuid/-/uuid-10.0.0.tgz#5a95aa454e6e002725c79055fd42aaba30ca6294"
4855
4854
  integrity sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==
4856
4855
 
4857
- uuid@^11.1.0:
4858
- version "11.1.0"
4859
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-11.1.0.tgz#9549028be1753bb934fc96e2bca09bb4105ae912"
4860
- integrity sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==
4861
-
4862
4856
  uuid@^13.0.0:
4863
4857
  version "13.0.0"
4864
4858
  resolved "https://registry.yarnpkg.com/uuid/-/uuid-13.0.0.tgz#263dc341b19b4d755eb8fe36b78d95a6b65707e8"
@@ -9,8 +9,8 @@
9
9
  },
10
10
  "dependencies": {
11
11
  "@js-monorepo-example/shared": "*",
12
- "@langchain/core": "^1.1.38",
13
- "@langchain/langgraph": "^1.2.6"
12
+ "@langchain/core": "^1.1.42",
13
+ "@langchain/langgraph": "^1.2.9"
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.9.3",
20
+ "turbo": "^2.9.7",
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.1.0",
25
+ "eslint": "^10.2.1",
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.58.0",
31
- "@typescript-eslint/parser": "^8.58.0",
32
- "prettier": "^3.8.1"
30
+ "@typescript-eslint/eslint-plugin": "^8.59.1",
31
+ "@typescript-eslint/parser": "^8.59.1",
32
+ "prettier": "^3.8.3"
33
33
  }
34
34
  }