mirror of
https://github.com/gabehf/Koito.git
synced 2026-03-12 00:40:56 -07:00
feat: add first listened to dates for media items (#92)
This commit is contained in:
parent
300bac0e19
commit
800c77d05e
12 changed files with 134 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue