Skip to content

Commit 408ba2a

Browse files
authored
Solving issue #204 (#205)
I have tried to solve issue #204 . Please check and let me know if I did something wrong and need correct it. Otherwise please merge it.
1 parent bc23153 commit 408ba2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/typings/spotify-api.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ declare namespace SpotifyApi {
742742
* https://developer.spotify.com/documentation/web-api/reference/library/get-users-saved-shows/
743743
*/
744744
interface ListOfUsersShowsResponse
745-
extends PagingObject<ShowObjectSimplified> {}
745+
extends PagingObject<SavedShowObject> {}
746746

747747
/**
748748
* Save shows for user
@@ -1055,7 +1055,7 @@ declare namespace SpotifyApi {
10551055
*/
10561056
interface SavedShowObject {
10571057
added_at: string;
1058-
album: ShowObjectFull;
1058+
show: ShowObjectSimplified;
10591059
}
10601060

10611061
/**

0 commit comments

Comments
 (0)