From 9d711999439db2611d568698740bb8dac5f95028 Mon Sep 17 00:00:00 2001 From: Rushil Perera Date: Sat, 29 Nov 2025 10:48:28 -0500 Subject: [PATCH] fix: make updatedAt in mediaListEntry optional --- src/types/title/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/title/index.ts b/src/types/title/index.ts index 254c253..af6388e 100644 --- a/src/types/title/index.ts +++ b/src/types/title/index.ts @@ -18,7 +18,7 @@ export const Title = z.object({ status: z.nullable(WatchStatus), progress: NullableNumberSchema, id: z.number().int(), - updatedAt: z.number().int().openapi({ format: "int64" }), + updatedAt: z.number().int().openapi({ format: "int64" }).optional(), }), ), countryOfOrigin: countryCodeSchema,