@langchain/langgraph-sdk 0.0.98 → 0.0.99

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.99
4
+
5
+ ### Patch Changes
6
+
7
+ - 768e2e2: feat(sdk): expose interrupt_id in types
8
+
3
9
  ## 0.0.98
4
10
 
5
11
  ### Patch Changes
package/dist/schema.d.ts CHANGED
@@ -106,6 +106,7 @@ export interface AssistantGraph {
106
106
  * An interrupt thrown inside a thread.
107
107
  */
108
108
  export interface Interrupt<TValue = unknown> {
109
+ interrupt_id?: string;
109
110
  value?: TValue;
110
111
  when: "during" | (string & {});
111
112
  resumable?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph-sdk",
3
- "version": "0.0.98",
3
+ "version": "0.0.99",
4
4
  "description": "Client library for interacting with the LangGraph API",
5
5
  "type": "module",
6
6
  "scripts": {