feat: add retired category

This commit is contained in:
2026-02-19 15:34:05 -08:00
parent afdcc346dd
commit 603398b0e1
11 changed files with 65 additions and 0 deletions
+1
View File
@@ -10,6 +10,7 @@ enum BookStatus {
reading = "READING",
finished = "FINISHED",
toRead = "TO_READ",
retired = "RETIRED",
}
interface Book {
+1
View File
@@ -10,6 +10,7 @@ enum GameStatus {
playing = "PLAYING",
completed = "COMPLETED",
backlog = "BACKLOG",
retired = "RETIRED",
}
interface Game {
+1
View File
@@ -10,6 +10,7 @@ enum MangaStatus {
reading = "READING",
completed = "COMPLETED",
wantToRead = "WANT_TO_READ",
retired = "RETIRED",
}
interface Manga {
+1
View File
@@ -16,6 +16,7 @@ enum MusicStatus {
listening = "LISTENING",
completed = "COMPLETED",
wantToListen = "WANT_TO_LISTEN",
retired = "RETIRED",
}
interface Music {
+1
View File
@@ -17,6 +17,7 @@ enum ShowStatus {
watching = "WATCHING",
completed = "COMPLETED",
wantToWatch = "WANT_TO_WATCH",
retired = "RETIRED",
}
interface Show {