@langchain/langgraph-sdk 0.0.104 → 0.0.105

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.105
4
+
5
+ ### Patch Changes
6
+
7
+ - 7054a6a: add context to assistantBase interface
8
+
3
9
  ## 0.0.104
4
10
 
5
11
  ### Patch Changes
package/dist/schema.d.ts CHANGED
@@ -76,6 +76,8 @@ export interface AssistantBase {
76
76
  graph_id: string;
77
77
  /** The assistant config. */
78
78
  config: Config;
79
+ /** The assistant context. */
80
+ context: unknown;
79
81
  /** The time the assistant was created. */
80
82
  created_at: string;
81
83
  /** The assistant metadata. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph-sdk",
3
- "version": "0.0.104",
3
+ "version": "0.0.105",
4
4
  "description": "Client library for interacting with the LangGraph API",
5
5
  "type": "module",
6
6
  "scripts": {