@langchain/langgraph-sdk 0.0.85 → 0.0.86

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.
Files changed (2) hide show
  1. package/dist/schema.d.ts +8 -0
  2. package/package.json +1 -1
package/dist/schema.d.ts CHANGED
@@ -130,6 +130,8 @@ export interface Thread<ValuesType = DefaultValues> {
130
130
  export interface Cron {
131
131
  /** The ID of the cron */
132
132
  cron_id: string;
133
+ /** The ID of the assistant */
134
+ assistant_id: string;
133
135
  /** The ID of the thread */
134
136
  thread_id: Optional<string>;
135
137
  /** The end date to stop running the cron. */
@@ -142,6 +144,12 @@ export interface Cron {
142
144
  updated_at: string;
143
145
  /** The run payload to use for creating new run. */
144
146
  payload: Record<string, unknown>;
147
+ /** The user ID of the cron */
148
+ user_id: Optional<string>;
149
+ /** The next run date of the cron */
150
+ next_run_date: Optional<string>;
151
+ /** The metadata of the cron */
152
+ metadata: Record<string, unknown>;
145
153
  }
146
154
  export type DefaultValues = Record<string, unknown>[] | Record<string, unknown>;
147
155
  export interface ThreadState<ValuesType = DefaultValues> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph-sdk",
3
- "version": "0.0.85",
3
+ "version": "0.0.86",
4
4
  "description": "Client library for interacting with the LangGraph API",
5
5
  "type": "module",
6
6
  "packageManager": "yarn@1.22.19",