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
View File
@@ -12,6 +12,7 @@ import {
LuArrowDownToLine,
LuArrowDownWideNarrow,
LuArrowLeft,
LuArrowLeftRight,
LuArrowLeftToLine,
LuArrowRight,
LuArrowRightToLine,
@@ -126,6 +127,7 @@ export const AppIcon = {
arrowDownS: LuChevronDown,
arrowDownToLine: LuArrowDownToLine,
arrowLeft: LuArrowLeft,
arrowLeftRight: LuArrowLeftRight,
arrowLeftS: LuChevronLeft,
arrowLeftToLine: LuArrowLeftToLine,
arrowRight: LuArrowRight,
+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>;