@langchain/langgraph-cli 0.0.8-dev.1 → 0.0.8

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 +1 -7
  2. package/package.json +1 -1
package/dist/schemas.mjs CHANGED
@@ -145,13 +145,7 @@ export const RunCreate = z
145
145
  assistant_id: z.union([z.string().uuid(), z.string()]),
146
146
  checkpoint_id: z.string().optional(),
147
147
  checkpoint: CheckpointSchema.optional(),
148
- input: z
149
- .union([
150
- z.array(z.object({}).catchall(z.any())),
151
- z.object({}).catchall(z.any()),
152
- z.null(),
153
- ])
154
- .optional(),
148
+ input: z.union([z.unknown(), z.null()]).optional(),
155
149
  command: z
156
150
  .object({
157
151
  goto: z
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph-cli",
3
- "version": "0.0.8-dev.1",
3
+ "version": "0.0.8",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": ">=18"