-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Description
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:
export interface SearchContent {
/** 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>;Metadata
Metadata
Assignees
Labels
No labels