core: make project updated timestamp optional to support legacy project data

This commit is contained in:
Dax Raad 2025-12-09 15:18:35 -05:00
parent 238f441bcb
commit edffcc32cf

View file

@ -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(),
}),
})