reimplement genre detail route

This commit is contained in:
jeffvli
2025-11-24 20:19:09 -08:00
parent eba485034a
commit d3132ad570
30 changed files with 443 additions and 190 deletions
+2 -2
View File
@@ -431,7 +431,7 @@ export interface AlbumListQuery extends AlbumListNavidromeQuery, BaseQuery<Album
artistIds?: string[];
compilation?: boolean;
favorite?: boolean;
genres?: string[];
genreIds?: string[];
limit?: number;
maxYear?: number;
minYear?: number;
@@ -765,7 +765,7 @@ export interface ArtistListQuery extends BaseQuery<ArtistListSort> {
}
// Artist List
export type ArtistListResponse = BasePaginatedResponse<Artist[]>;
export type ArtistListResponse = BasePaginatedResponse<AlbumArtist[]>;
type ArtistListSortMap = {
jellyfin: Record<ArtistListSort, JFArtistListSort | undefined>;