From 65c12472f1615e1e97106d501dc55f7c55075899 Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Sat, 27 Jul 2024 12:56:21 -0400 Subject: [PATCH] added startedat an completeat structs --- .../anilist/types/AniListCurrentUserWatchListType.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/frontend/src/anilist/types/AniListCurrentUserWatchListType.ts b/frontend/src/anilist/types/AniListCurrentUserWatchListType.ts index 124173d..f48fed8 100644 --- a/frontend/src/anilist/types/AniListCurrentUserWatchListType.ts +++ b/frontend/src/anilist/types/AniListCurrentUserWatchListType.ts @@ -46,6 +46,16 @@ export interface MediaList { } } status: string + startedAt: { + year: number + month: number + day: number + } + completedAt: { + year?: number + month?: number + day?: number + } notes?: string progress: number score: number