@langchain/langgraph-sdk 0.0.47 → 0.0.48

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/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export { Client } from "./client.js";
2
- export type { Assistant, AssistantVersion, AssistantGraph, Config, DefaultValues, GraphSchema, Metadata, Run, Thread, ThreadTask, ThreadState, ThreadStatus, Cron, Checkpoint, Interrupt, ListNamespaceResponse, Item, SearchItem, SearchItemsResponse, CronCreateResponse, CronCreateForThreadResponse, } from "./schema.js";
2
+ export type { AssistantBase, Assistant, AssistantVersion, AssistantGraph, Config, DefaultValues, GraphSchema, Metadata, Run, Thread, ThreadTask, ThreadState, ThreadStatus, Cron, Checkpoint, Interrupt, ListNamespaceResponse, Item, SearchItem, SearchItemsResponse, CronCreateResponse, CronCreateForThreadResponse, } from "./schema.js";
3
3
  export { overrideFetchImplementation } from "./singletons/fetch.js";
4
4
  export type { OnConflictBehavior, Command } from "./types.js";
5
5
  export type { StreamMode } from "./types.stream.js";
package/dist/schema.d.ts CHANGED
@@ -77,14 +77,14 @@ export interface AssistantBase {
77
77
  metadata: Metadata;
78
78
  /** The version of the assistant. */
79
79
  version: number;
80
+ /** The name of the assistant */
81
+ name: string;
80
82
  }
81
83
  export interface AssistantVersion extends AssistantBase {
82
84
  }
83
85
  export interface Assistant extends AssistantBase {
84
86
  /** The last time the assistant was updated. */
85
87
  updated_at: string;
86
- /** The name of the assistant */
87
- name: string;
88
88
  }
89
89
  export interface AssistantGraph {
90
90
  nodes: Array<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph-sdk",
3
- "version": "0.0.47",
3
+ "version": "0.0.48",
4
4
  "description": "Client library for interacting with the LangGraph API",
5
5
  "type": "module",
6
6
  "packageManager": "yarn@1.22.19",