From 0265d73f36d6904874ac98ed93ee809721c5ec38 Mon Sep 17 00:00:00 2001 From: Dave Fedele Date: Thu, 1 Jul 2021 18:40:31 -0700 Subject: [PATCH] missing album - switch recently played typing to TrackObjectFull --- src/typings/spotify-api.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/typings/spotify-api.d.ts b/src/typings/spotify-api.d.ts index 0e9f448..b631891 100644 --- a/src/typings/spotify-api.d.ts +++ b/src/typings/spotify-api.d.ts @@ -1144,7 +1144,7 @@ declare namespace SpotifyApi { * [](https://developer.spotify.com/web-api/web-api-personalization-endpoints/get-recently-played/#play-history-object) */ interface PlayHistoryObject { - track: TrackObjectSimplified; + track: TrackObjectFull; played_at: string; context: ContextObject; }