Skip to content

Commit

Permalink
fix: add appleMusicPreview to v1 track
Browse files Browse the repository at this point in the history
  • Loading branch information
stijnvdkolk committed Mar 15, 2024
1 parent db6355b commit 8beed79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/interfaces/statsfm/track.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export interface Track extends Object {
durationMs: number;
spotifyPopularity: number;
spotifyPreview?: string;
appleMusicPreview?: string;
externalIds: Record<string, unknown> & { spotify?: string[]; appleMusic?: string[] };
albums: AlbumSimple[];
artists: ArtistSimple[];
Expand Down
1 change: 1 addition & 0 deletions src/interfaces/statsfm/v1/track.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export interface Track extends Object {
durationMs: number;
spotifyPopularity: number;
spotifyPreview?: string;
appleMusicPreview?: string;
externalIds: Record<string, unknown> & { spotify?: string[]; appleMusic?: string[] };
albums: AlbumSimple[];
artists: ArtistSimple[];
Expand Down

0 comments on commit 8beed79

Please sign in to comment.