diff --git a/src/Jellyfin.Database/Jellyfin.Database.Implementations/Enums/ViewType.cs b/src/Jellyfin.Database/Jellyfin.Database.Implementations/Enums/ViewType.cs
index b2bcbf2bb6..34810b9199 100644
--- a/src/Jellyfin.Database/Jellyfin.Database.Implementations/Enums/ViewType.cs
+++ b/src/Jellyfin.Database/Jellyfin.Database.Implementations/Enums/ViewType.cs
@@ -108,5 +108,50 @@ public enum ViewType
///
/// Shows upcoming.
///
- Upcoming = 20
+ Upcoming = 20,
+
+ ///
+ /// Shows authors.
+ ///
+ Authors = 21,
+
+ ///
+ /// Shows books.
+ ///
+ Books = 22,
+
+ ///
+ /// Shows folders.
+ ///
+ Folders = 23,
+
+ ///
+ /// Shows mixed media.
+ ///
+ Mixed = 24,
+
+ ///
+ /// Shows photos.
+ ///
+ Photos = 25,
+
+ ///
+ /// Shows photo albums.
+ ///
+ PhotoAlbums = 26,
+
+ ///
+ /// Shows series timers.
+ ///
+ SeriesTimers = 27,
+
+ ///
+ /// Shows studios.
+ ///
+ Studios = 28,
+
+ ///
+ /// Shows videos.
+ ///
+ Videos = 29
}