Add additional information to album: record label, release type, version (#1242)

* Add additional information to album

* add mbz release types and normalization

* update Pill styling

---------

Co-authored-by: jeffvli <jeffvictorli@gmail.com>
This commit is contained in:
Kendall Garner
2025-11-03 08:34:42 +00:00
committed by GitHub
parent 3fe6ccf300
commit e26ffaac53
12 changed files with 223 additions and 40 deletions
+3
View File
@@ -182,7 +182,9 @@ export type Album = {
originalDate: null | string;
participants: null | Record<string, RelatedArtist[]>;
playCount: null | number;
recordLabels: string[];
releaseDate: null | string;
releaseTypes: string[];
releaseYear: null | number;
serverId: string;
serverType: ServerType;
@@ -194,6 +196,7 @@ export type Album = {
updatedAt: string;
userFavorite: boolean;
userRating: null | number;
version: null | string;
} & { songs?: Song[] };
export type AlbumArtist = {