We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc23153 commit 408ba2aCopy full SHA for 408ba2a
src/typings/spotify-api.d.ts
@@ -742,7 +742,7 @@ declare namespace SpotifyApi {
742
* https://developer.spotify.com/documentation/web-api/reference/library/get-users-saved-shows/
743
*/
744
interface ListOfUsersShowsResponse
745
- extends PagingObject<ShowObjectSimplified> {}
+ extends PagingObject<SavedShowObject> {}
746
747
/**
748
* Save shows for user
@@ -1055,7 +1055,7 @@ declare namespace SpotifyApi {
1055
1056
interface SavedShowObject {
1057
added_at: string;
1058
- album: ShowObjectFull;
+ show: ShowObjectSimplified;
1059
}
1060
1061
0 commit comments