feat: add first listened to dates for media items

This commit is contained in:
Gabe Farrell 2025-11-18 19:49:13 -05:00
parent 300bac0e19
commit cb32cd4509
12 changed files with 134 additions and 2 deletions

View file

@ -256,6 +256,7 @@ type Track = {
album_id: number
musicbrainz_id: string
time_listened: number
first_listen: number
}
type Artist = {
id: number
@ -265,6 +266,7 @@ type Artist = {
listen_count: number
musicbrainz_id: string
time_listened: number
first_listen: number
is_primary: boolean
}
type Album = {
@ -276,6 +278,7 @@ type Album = {
artists: SimpleArtists[]
musicbrainz_id: string
time_listened: number
first_listen: number
}
type Alias = {
id: number