You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, the Spotify API’s SearchContent object includes tracks, artists, albums, playlists, shows, and episodes.
However, the spotify-types library only supports the following types:
exportinterfaceSearchContent{/** The episode search results. */episodes?: Paging<SimplifiedEpisode>;/** The show search results. */shows?: Paging<SimplifiedShow>;/** The track search results. */tracks?: Paging<Track>;/** The artist search results. */artists?: Paging<Artist>;/** The album search results. */albums?: Paging<SimplifiedAlbum>;}
I believe the solution would be to add the following:
playlists?: Paging<SimplifiedPlaylist>;
The text was updated successfully, but these errors were encountered:
At the moment, the Spotify API’s SearchContent object includes tracks, artists, albums, playlists, shows, and episodes.
However, the spotify-types library only supports the following types:
I believe the solution would be to add the following:
The text was updated successfully, but these errors were encountered: