@langchain/langgraph-cli 0.0.2 → 0.0.3

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/schemas.mjs +2 -2
  2. package/package.json +1 -1
package/dist/schemas.mjs CHANGED
@@ -274,7 +274,7 @@ export const ThreadSearchRequest = z
274
274
  .describe("Metadata to search for.")
275
275
  .optional(),
276
276
  status: z
277
- .enum(["idle", "busy", "interrupted"])
277
+ .enum(["idle", "busy", "interrupted", "error"])
278
278
  .describe("Filter by thread status.")
279
279
  .optional(),
280
280
  values: z
@@ -301,7 +301,7 @@ export const Thread = z.object({
301
301
  created_at: z.string(),
302
302
  updated_at: z.string(),
303
303
  metadata: z.record(z.unknown()).optional(),
304
- status: z.enum(["idle", "busy", "interrupted"]).optional(),
304
+ status: z.enum(["idle", "busy", "interrupted", "error"]).optional(),
305
305
  });
306
306
  export const ThreadCreate = z
307
307
  .object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph-cli",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": ">=18"