Fix firstEntry type in api response

This commit is contained in:
Zoe Roux 2025-07-19 11:57:26 +02:00
parent 7939cc1c79
commit 616c7140d3
No known key found for this signature in database

View File

@ -81,7 +81,7 @@ export const FullSerie = t.Intersect([
t.Object({
translations: t.Optional(TranslationRecord(SerieTranslation)),
studios: t.Optional(t.Array(Studio)),
firstEntry: t.Optional(Entry),
firstEntry: t.Optional(t.Nullable(Entry)),
nextEntry: t.Optional(t.Nullable(Entry)),
}),
]);