@langchain/langgraph-sdk 0.0.95 → 0.0.96

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,11 @@
1
1
  # @langchain/langgraph-sdk
2
2
 
3
+ ## 0.0.96
4
+
5
+ ### Patch Changes
6
+
7
+ - 53b8c30: fix(sdk): `runs.join()` returns the thread values
8
+
3
9
  ## 0.0.95
4
10
 
5
11
  ### Patch Changes
package/dist/client.d.ts CHANGED
@@ -409,7 +409,7 @@ export declare class RunsClient<TStateType = DefaultValues, TUpdateType = TState
409
409
  */
410
410
  join(threadId: string, runId: string, options?: {
411
411
  signal?: AbortSignal;
412
- }): Promise<void>;
412
+ }): Promise<TStateType>;
413
413
  /**
414
414
  * Stream output from a run in real-time, until the run is done.
415
415
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph-sdk",
3
- "version": "0.0.95",
3
+ "version": "0.0.96",
4
4
  "description": "Client library for interacting with the LangGraph API",
5
5
  "type": "module",
6
6
  "scripts": {