Ability to query for recently added and recently played albums

This commit is contained in:
simojenki
2021-04-05 13:25:48 +10:00
parent 4730511a84
commit fa1ad8c18b
4 changed files with 240 additions and 60 deletions

View File

@@ -94,7 +94,7 @@ export const asResult = <T>([results, total]: [T[], number]) => ({
export type ArtistQuery = Paging;
export type AlbumQueryType = 'alphabeticalByArtist' | 'byGenre' | 'random' | 'recent' | 'frequent';
export type AlbumQueryType = 'alphabeticalByArtist' | 'byGenre' | 'random' | 'recent' | 'frequent' | 'newest';
export type AlbumQuery = Paging & {
type: AlbumQueryType;