fix: make updatedAt in mediaListEntry optional

This commit is contained in:
2025-11-29 10:48:28 -05:00
parent 24d507a48f
commit 9d71199943

View File

@@ -18,7 +18,7 @@ export const Title = z.object({
status: z.nullable(WatchStatus), status: z.nullable(WatchStatus),
progress: NullableNumberSchema, progress: NullableNumberSchema,
id: z.number().int(), id: z.number().int(),
updatedAt: z.number().int().openapi({ format: "int64" }), updatedAt: z.number().int().openapi({ format: "int64" }).optional(),
}), }),
), ),
countryOfOrigin: countryCodeSchema, countryOfOrigin: countryCodeSchema,