Skip to content

Commit

Permalink
Merge pull request #3 from ReinoutvanKempen/master
Browse files Browse the repository at this point in the history
Added Get Followed Artists endpoint, Updated NPM depends version to 2.1.0
  • Loading branch information
xinranxiao committed Nov 8, 2015
2 parents cf534a5 + c5424af commit d2551cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ Package.onUse(function(api) {
api.addFiles('spotify-api.js', 'server');
});

Npm.depends({ 'spotify-web-api-node': '2.0.2'});
Npm.depends({ 'spotify-web-api-node': '2.1.0'});
2 changes: 1 addition & 1 deletion spotify-api.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ SpotifyWebApi = function(config) {
'removeTracksFromPlaylistByPosition','replaceTracksInPlaylist','reorderTracksInPlaylist','clientCredentialsGrant',
'authorizationCodeGrant','refreshAccessToken','getMySavedTracks','containsMySavedTracks',
'removeFromMySavedTracks','addToMySavedTracks','followUsers','followArtists','unfollowUsers','unfollowArtists',
'isFollowingUsers','areFollowingPlaylist','isFollowingArtists','getNewReleases','getFeaturedPlaylists',
'isFollowingUsers','areFollowingPlaylist','isFollowingArtists', 'getFollowedArtists', 'getNewReleases','getFeaturedPlaylists',
'getCategories','getCategory','getPlaylistsForCategory'];

// Wrap all the functions to be able to be called synchronously on the server.
Expand Down

0 comments on commit d2551cf

Please sign in to comment.