@langchain/langgraph-sdk 0.1.1 → 0.1.2

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.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 3b1e137: Add `description` field for assistants auth handlers
8
+
3
9
  ## 0.1.1
4
10
 
5
11
  ### Patch Changes
@@ -19,6 +19,7 @@ interface AssistantCreate {
19
19
  context?: Maybe<unknown>;
20
20
  if_exists?: Maybe<"raise" | "do_nothing">;
21
21
  name?: Maybe<string>;
22
+ description?: Maybe<string>;
22
23
  graph_id: string;
23
24
  }
24
25
  /**
@@ -38,6 +39,7 @@ interface AssistantUpdate {
38
39
  context?: Maybe<unknown>;
39
40
  graph_id?: Maybe<string>;
40
41
  name?: Maybe<string>;
42
+ description?: Maybe<string>;
41
43
  version?: Maybe<number>;
42
44
  }
43
45
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph-sdk",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Client library for interacting with the LangGraph API",
5
5
  "type": "module",
6
6
  "scripts": {