Adjust filters
This commit is contained in:
parent
53f3758d2a
commit
8afd626806
2 changed files with 3 additions and 2 deletions
|
@ -230,7 +230,7 @@ export type NDAlbumListParams = {
|
||||||
|
|
||||||
export enum NDSongListSort {
|
export enum NDSongListSort {
|
||||||
ALBUM = 'album, order_album_artist_name, disc_number, track_number, title',
|
ALBUM = 'album, order_album_artist_name, disc_number, track_number, title',
|
||||||
ALBUM_ARTIST = 'albumArtist',
|
ALBUM_ARTIST = 'order_album_artist_name, album, disc_number, track_number, title',
|
||||||
ALBUM_SONGS = 'album, discNumber, trackNumber',
|
ALBUM_SONGS = 'album, discNumber, trackNumber',
|
||||||
ARTIST = 'artist',
|
ARTIST = 'artist',
|
||||||
BPM = 'bpm',
|
BPM = 'bpm',
|
||||||
|
@ -246,7 +246,7 @@ export enum NDSongListSort {
|
||||||
RECENTLY_ADDED = 'createdAt',
|
RECENTLY_ADDED = 'createdAt',
|
||||||
TITLE = 'title',
|
TITLE = 'title',
|
||||||
TRACK = 'track',
|
TRACK = 'track',
|
||||||
YEAR = 'year',
|
YEAR = 'year, album, discNumber, trackNumber',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type NDSongListParams = {
|
export type NDSongListParams = {
|
||||||
|
|
|
@ -461,6 +461,7 @@ export type SongListQuery = {
|
||||||
albumIds?: string[];
|
albumIds?: string[];
|
||||||
artistIds?: string[];
|
artistIds?: string[];
|
||||||
jfParams?: {
|
jfParams?: {
|
||||||
|
artistIds?: string;
|
||||||
filters?: string;
|
filters?: string;
|
||||||
genreIds?: string;
|
genreIds?: string;
|
||||||
genres?: string;
|
genres?: string;
|
||||||
|
|
Reference in a new issue