@langchain/langgraph-sdk 0.0.15 → 0.0.16

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/dist/client.cjs CHANGED
@@ -437,6 +437,7 @@ class ThreadsClient extends BaseClient {
437
437
  limit: options?.limit ?? 10,
438
438
  before: options?.before,
439
439
  metadata: options?.metadata,
440
+ checkpoint: options?.checkpoint,
440
441
  },
441
442
  });
442
443
  }
package/dist/client.d.ts CHANGED
@@ -258,6 +258,7 @@ export declare class ThreadsClient extends BaseClient {
258
258
  getHistory<ValuesType = DefaultValues>(threadId: string, options?: {
259
259
  limit?: number;
260
260
  before?: Config;
261
+ checkpoint?: Partial<Omit<Checkpoint, "thread_id">>;
261
262
  metadata?: Metadata;
262
263
  }): Promise<ThreadState<ValuesType>[]>;
263
264
  }
package/dist/client.js CHANGED
@@ -432,6 +432,7 @@ export class ThreadsClient extends BaseClient {
432
432
  limit: options?.limit ?? 10,
433
433
  before: options?.before,
434
434
  metadata: options?.metadata,
435
+ checkpoint: options?.checkpoint,
435
436
  },
436
437
  });
437
438
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph-sdk",
3
- "version": "0.0.15",
3
+ "version": "0.0.16",
4
4
  "description": "Client library for interacting with the LangGraph API",
5
5
  "type": "module",
6
6
  "packageManager": "yarn@1.22.19",