diff options
| author | Dax Raad <[email protected]> | 2025-12-09 15:18:35 -0500 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-12-09 15:18:55 -0500 |
| commit | edffcc32cf30e92c3375d268eafe1831e551fdc2 (patch) | |
| tree | f3d384b638c876ac2abf08c1427ea442186bc772 | |
| parent | 238f441bcbd587b502ada43448c3b794ee89ab8a (diff) | |
| download | opencode-edffcc32cf30e92c3375d268eafe1831e551fdc2.tar.gz opencode-edffcc32cf30e92c3375d268eafe1831e551fdc2.zip | |
core: make project updated timestamp optional to support legacy project data
| -rw-r--r-- | packages/opencode/src/project/project.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/opencode/src/project/project.ts b/packages/opencode/src/project/project.ts index 4ed35ec0f..bce489b9d 100644 --- a/packages/opencode/src/project/project.ts +++ b/packages/opencode/src/project/project.ts @@ -28,7 +28,7 @@ export namespace Project { .optional(), time: z.object({ created: z.number(), - updated: z.number().optional(), + updated: z.number(), initialized: z.number().optional(), }), }) |
