spotted-ts-mcp 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +440 -0
- package/code-tool-paths.cjs +6 -0
- package/code-tool-paths.cjs.map +1 -0
- package/code-tool-paths.d.cts +2 -0
- package/code-tool-paths.d.cts.map +1 -0
- package/code-tool-types.d.mts +14 -0
- package/code-tool-types.d.mts.map +1 -0
- package/code-tool-types.d.ts +14 -0
- package/code-tool-types.d.ts.map +1 -0
- package/code-tool-types.js +4 -0
- package/code-tool-types.js.map +1 -0
- package/code-tool-types.mjs +3 -0
- package/code-tool-types.mjs.map +1 -0
- package/code-tool-worker.d.mts +5 -0
- package/code-tool-worker.d.mts.map +1 -0
- package/code-tool-worker.d.ts +5 -0
- package/code-tool-worker.d.ts.map +1 -0
- package/code-tool-worker.js +237 -0
- package/code-tool-worker.js.map +1 -0
- package/code-tool-worker.mjs +232 -0
- package/code-tool-worker.mjs.map +1 -0
- package/code-tool.d.mts +12 -0
- package/code-tool.d.mts.map +1 -0
- package/code-tool.d.ts +12 -0
- package/code-tool.d.ts.map +1 -0
- package/code-tool.js +156 -0
- package/code-tool.js.map +1 -0
- package/code-tool.mjs +120 -0
- package/code-tool.mjs.map +1 -0
- package/compat.d.mts +58 -0
- package/compat.d.mts.map +1 -0
- package/compat.d.ts +58 -0
- package/compat.d.ts.map +1 -0
- package/compat.js +387 -0
- package/compat.js.map +1 -0
- package/compat.mjs +378 -0
- package/compat.mjs.map +1 -0
- package/docs-search-tool.d.mts +44 -0
- package/docs-search-tool.d.mts.map +1 -0
- package/docs-search-tool.d.ts +44 -0
- package/docs-search-tool.d.ts.map +1 -0
- package/docs-search-tool.js +43 -0
- package/docs-search-tool.js.map +1 -0
- package/docs-search-tool.mjs +39 -0
- package/docs-search-tool.mjs.map +1 -0
- package/dynamic-tools.d.mts +12 -0
- package/dynamic-tools.d.mts.map +1 -0
- package/dynamic-tools.d.ts +12 -0
- package/dynamic-tools.d.ts.map +1 -0
- package/dynamic-tools.js +135 -0
- package/dynamic-tools.js.map +1 -0
- package/dynamic-tools.mjs +132 -0
- package/dynamic-tools.mjs.map +1 -0
- package/filtering.d.mts +2 -0
- package/filtering.d.mts.map +1 -0
- package/filtering.d.ts +2 -0
- package/filtering.d.ts.map +1 -0
- package/filtering.js +20 -0
- package/filtering.js.map +1 -0
- package/filtering.mjs +13 -0
- package/filtering.mjs.map +1 -0
- package/headers.d.mts +4 -0
- package/headers.d.mts.map +1 -0
- package/headers.d.ts +4 -0
- package/headers.d.ts.map +1 -0
- package/headers.js +9 -0
- package/headers.js.map +1 -0
- package/headers.mjs +5 -0
- package/headers.mjs.map +1 -0
- package/http.d.mts +9 -0
- package/http.d.mts.map +1 -0
- package/http.d.ts +9 -0
- package/http.d.ts.map +1 -0
- package/http.js +108 -0
- package/http.js.map +1 -0
- package/http.mjs +100 -0
- package/http.mjs.map +1 -0
- package/index.d.mts +3 -0
- package/index.d.mts.map +1 -0
- package/index.d.ts +3 -0
- package/index.d.ts.map +1 -0
- package/index.js +91 -0
- package/index.js.map +1 -0
- package/index.mjs +89 -0
- package/index.mjs.map +1 -0
- package/options.d.mts +20 -0
- package/options.d.mts.map +1 -0
- package/options.d.ts +20 -0
- package/options.d.ts.map +1 -0
- package/options.js +427 -0
- package/options.js.map +1 -0
- package/options.mjs +420 -0
- package/options.mjs.map +1 -0
- package/package.json +218 -0
- package/server.d.mts +35 -0
- package/server.d.mts.map +1 -0
- package/server.d.ts +35 -0
- package/server.d.ts.map +1 -0
- package/server.js +174 -0
- package/server.js.map +1 -0
- package/server.mjs +160 -0
- package/server.mjs.map +1 -0
- package/src/code-tool-paths.cts +3 -0
- package/src/code-tool-types.ts +14 -0
- package/src/code-tool-worker.ts +283 -0
- package/src/code-tool.ts +148 -0
- package/src/compat.ts +483 -0
- package/src/docs-search-tool.ts +48 -0
- package/src/dynamic-tools.ts +153 -0
- package/src/filtering.ts +14 -0
- package/src/headers.ts +8 -0
- package/src/http.ts +127 -0
- package/src/index.ts +108 -0
- package/src/options.ts +473 -0
- package/src/server.ts +207 -0
- package/src/stdio.ts +13 -0
- package/src/tools/albums/bulk-retrieve-albums.ts +48 -0
- package/src/tools/albums/list-tracks-albums.ts +67 -0
- package/src/tools/albums/retrieve-albums.ts +47 -0
- package/src/tools/artists/list-albums-artists.ts +73 -0
- package/src/tools/artists/list-artists.ts +50 -0
- package/src/tools/artists/list-related-artists-artists.ts +49 -0
- package/src/tools/artists/list-top-tracks-artists.ts +47 -0
- package/src/tools/artists/retrieve-artists.ts +49 -0
- package/src/tools/audio-analysis/retrieve-audio-analysis.ts +42 -0
- package/src/tools/audio-features/list-audio-features.ts +50 -0
- package/src/tools/audio-features/retrieve-audio-features.ts +49 -0
- package/src/tools/audiobooks/list-audiobooks.ts +56 -0
- package/src/tools/audiobooks/list-chapters-audiobooks.ts +68 -0
- package/src/tools/audiobooks/retrieve-audiobooks.ts +56 -0
- package/src/tools/browse/categories/get-playlists-browse-categories.ts +63 -0
- package/src/tools/browse/categories/list-browse-categories.ts +61 -0
- package/src/tools/browse/categories/retrieve-browse-categories.ts +58 -0
- package/src/tools/browse/get-featured-playlists-browse.ts +61 -0
- package/src/tools/browse/get-new-releases-browse.ts +55 -0
- package/src/tools/chapters/list-chapters.ts +49 -0
- package/src/tools/chapters/retrieve-chapters.ts +48 -0
- package/src/tools/episodes/list-episodes.ts +48 -0
- package/src/tools/episodes/retrieve-episodes.ts +47 -0
- package/src/tools/index.ts +247 -0
- package/src/tools/markets/list-markets.ts +44 -0
- package/src/tools/me/albums/check-me-albums.ts +50 -0
- package/src/tools/me/albums/list-me-albums.ts +54 -0
- package/src/tools/me/albums/remove-me-albums.ts +45 -0
- package/src/tools/me/albums/save-me-albums.ts +45 -0
- package/src/tools/me/audiobooks/check-me-audiobooks.ts +50 -0
- package/src/tools/me/audiobooks/list-me-audiobooks.ts +56 -0
- package/src/tools/me/audiobooks/remove-me-audiobooks.ts +43 -0
- package/src/tools/me/audiobooks/save-me-audiobooks.ts +43 -0
- package/src/tools/me/episodes/check-me-episodes.ts +50 -0
- package/src/tools/me/episodes/list-me-episodes.ts +55 -0
- package/src/tools/me/episodes/remove-me-episodes.ts +46 -0
- package/src/tools/me/episodes/save-me-episodes.ts +46 -0
- package/src/tools/me/following/check-me-following.ts +56 -0
- package/src/tools/me/following/follow-me-following.ts +45 -0
- package/src/tools/me/following/list-me-following.ts +60 -0
- package/src/tools/me/following/unfollow-me-following.ts +45 -0
- package/src/tools/me/player/get-currently-playing-me-player.ts +48 -0
- package/src/tools/me/player/get-devices-me-player.ts +44 -0
- package/src/tools/me/player/get-state-me-player.ts +49 -0
- package/src/tools/me/player/list-recently-played-me-player.ts +55 -0
- package/src/tools/me/player/pause-playback-me-player.ts +44 -0
- package/src/tools/me/player/queue/add-player-me-queue.ts +47 -0
- package/src/tools/me/player/queue/get-player-me-queue.ts +34 -0
- package/src/tools/me/player/seek-to-position-me-player.ts +50 -0
- package/src/tools/me/player/set-repeat-mode-me-player.ts +50 -0
- package/src/tools/me/player/set-volume-me-player.ts +49 -0
- package/src/tools/me/player/skip-next-me-player.ts +42 -0
- package/src/tools/me/player/skip-previous-me-player.ts +42 -0
- package/src/tools/me/player/start-playback-me-player.ts +68 -0
- package/src/tools/me/player/toggle-shuffle-me-player.ts +50 -0
- package/src/tools/me/player/transfer-me-player.ts +51 -0
- package/src/tools/me/playlists/list-me-playlists.ts +56 -0
- package/src/tools/me/retrieve-me.ts +44 -0
- package/src/tools/me/shows/check-me-shows.ts +50 -0
- package/src/tools/me/shows/list-me-shows.ts +56 -0
- package/src/tools/me/shows/remove-me-shows.ts +45 -0
- package/src/tools/me/shows/save-me-shows.ts +45 -0
- package/src/tools/me/top/list-top-artists-me-top.ts +62 -0
- package/src/tools/me/top/list-top-tracks-me-top.ts +54 -0
- package/src/tools/me/tracks/check-me-tracks.ts +50 -0
- package/src/tools/me/tracks/list-me-tracks.ts +54 -0
- package/src/tools/me/tracks/remove-me-tracks.ts +45 -0
- package/src/tools/me/tracks/save-me-tracks.ts +67 -0
- package/src/tools/playlists/followers/check-playlists-followers.ts +57 -0
- package/src/tools/playlists/followers/follow-playlists-followers.ts +47 -0
- package/src/tools/playlists/followers/unfollow-playlists-followers.ts +42 -0
- package/src/tools/playlists/images/list-playlists-images.ts +49 -0
- package/src/tools/playlists/images/update-playlists-images.ts +46 -0
- package/src/tools/playlists/retrieve-playlists.ts +59 -0
- package/src/tools/playlists/tracks/add-playlists-tracks.ts +62 -0
- package/src/tools/playlists/tracks/list-playlists-tracks.ts +71 -0
- package/src/tools/playlists/tracks/remove-playlists-tracks.ts +70 -0
- package/src/tools/playlists/tracks/update-playlists-tracks.ts +75 -0
- package/src/tools/playlists/update-playlists.ts +61 -0
- package/src/tools/recommendations/get-recommendations.ts +317 -0
- package/src/tools/recommendations/list-available-genre-seeds-recommendations.ts +46 -0
- package/src/tools/search/retrieve-search.ts +77 -0
- package/src/tools/shows/list-episodes-shows.ts +67 -0
- package/src/tools/shows/list-shows.ts +56 -0
- package/src/tools/shows/retrieve-shows.ts +55 -0
- package/src/tools/tracks/list-tracks.ts +48 -0
- package/src/tools/tracks/retrieve-tracks.ts +47 -0
- package/src/tools/types.ts +103 -0
- package/src/tools/users/playlists/create-users-playlists.ts +59 -0
- package/src/tools/users/playlists/list-users-playlists.ts +61 -0
- package/src/tools/users/retrieve-profile-users.ts +49 -0
- package/src/tools.ts +1 -0
- package/src/tsconfig.json +11 -0
- package/stdio.d.mts +3 -0
- package/stdio.d.mts.map +1 -0
- package/stdio.d.ts +3 -0
- package/stdio.d.ts.map +1 -0
- package/stdio.js +14 -0
- package/stdio.js.map +1 -0
- package/stdio.mjs +10 -0
- package/stdio.mjs.map +1 -0
- package/tools/albums/bulk-retrieve-albums.d.mts +45 -0
- package/tools/albums/bulk-retrieve-albums.d.mts.map +1 -0
- package/tools/albums/bulk-retrieve-albums.d.ts +45 -0
- package/tools/albums/bulk-retrieve-albums.d.ts.map +1 -0
- package/tools/albums/bulk-retrieve-albums.js +43 -0
- package/tools/albums/bulk-retrieve-albums.js.map +1 -0
- package/tools/albums/bulk-retrieve-albums.mjs +39 -0
- package/tools/albums/bulk-retrieve-albums.mjs.map +1 -0
- package/tools/albums/list-tracks-albums.d.mts +45 -0
- package/tools/albums/list-tracks-albums.d.mts.map +1 -0
- package/tools/albums/list-tracks-albums.d.ts +45 -0
- package/tools/albums/list-tracks-albums.d.ts.map +1 -0
- package/tools/albums/list-tracks-albums.js +60 -0
- package/tools/albums/list-tracks-albums.js.map +1 -0
- package/tools/albums/list-tracks-albums.mjs +56 -0
- package/tools/albums/list-tracks-albums.mjs.map +1 -0
- package/tools/albums/retrieve-albums.d.mts +45 -0
- package/tools/albums/retrieve-albums.d.mts.map +1 -0
- package/tools/albums/retrieve-albums.d.ts +45 -0
- package/tools/albums/retrieve-albums.d.ts.map +1 -0
- package/tools/albums/retrieve-albums.js +43 -0
- package/tools/albums/retrieve-albums.js.map +1 -0
- package/tools/albums/retrieve-albums.mjs +39 -0
- package/tools/albums/retrieve-albums.mjs.map +1 -0
- package/tools/artists/list-albums-artists.d.mts +45 -0
- package/tools/artists/list-albums-artists.d.mts.map +1 -0
- package/tools/artists/list-albums-artists.d.ts +45 -0
- package/tools/artists/list-albums-artists.d.ts.map +1 -0
- package/tools/artists/list-albums-artists.js +65 -0
- package/tools/artists/list-albums-artists.js.map +1 -0
- package/tools/artists/list-albums-artists.mjs +61 -0
- package/tools/artists/list-albums-artists.mjs.map +1 -0
- package/tools/artists/list-artists.d.mts +45 -0
- package/tools/artists/list-artists.d.mts.map +1 -0
- package/tools/artists/list-artists.d.ts +45 -0
- package/tools/artists/list-artists.d.ts.map +1 -0
- package/tools/artists/list-artists.js +44 -0
- package/tools/artists/list-artists.js.map +1 -0
- package/tools/artists/list-artists.mjs +40 -0
- package/tools/artists/list-artists.mjs.map +1 -0
- package/tools/artists/list-related-artists-artists.d.mts +45 -0
- package/tools/artists/list-related-artists-artists.d.mts.map +1 -0
- package/tools/artists/list-related-artists-artists.d.ts +45 -0
- package/tools/artists/list-related-artists-artists.d.ts.map +1 -0
- package/tools/artists/list-related-artists-artists.js +44 -0
- package/tools/artists/list-related-artists-artists.js.map +1 -0
- package/tools/artists/list-related-artists-artists.mjs +40 -0
- package/tools/artists/list-related-artists-artists.mjs.map +1 -0
- package/tools/artists/list-top-tracks-artists.d.mts +45 -0
- package/tools/artists/list-top-tracks-artists.d.mts.map +1 -0
- package/tools/artists/list-top-tracks-artists.d.ts +45 -0
- package/tools/artists/list-top-tracks-artists.d.ts.map +1 -0
- package/tools/artists/list-top-tracks-artists.js +43 -0
- package/tools/artists/list-top-tracks-artists.js.map +1 -0
- package/tools/artists/list-top-tracks-artists.mjs +39 -0
- package/tools/artists/list-top-tracks-artists.mjs.map +1 -0
- package/tools/artists/retrieve-artists.d.mts +45 -0
- package/tools/artists/retrieve-artists.d.mts.map +1 -0
- package/tools/artists/retrieve-artists.d.ts +45 -0
- package/tools/artists/retrieve-artists.d.ts.map +1 -0
- package/tools/artists/retrieve-artists.js +44 -0
- package/tools/artists/retrieve-artists.js.map +1 -0
- package/tools/artists/retrieve-artists.mjs +40 -0
- package/tools/artists/retrieve-artists.mjs.map +1 -0
- package/tools/audio-analysis/retrieve-audio-analysis.d.mts +45 -0
- package/tools/audio-analysis/retrieve-audio-analysis.d.mts.map +1 -0
- package/tools/audio-analysis/retrieve-audio-analysis.d.ts +45 -0
- package/tools/audio-analysis/retrieve-audio-analysis.d.ts.map +1 -0
- package/tools/audio-analysis/retrieve-audio-analysis.js +38 -0
- package/tools/audio-analysis/retrieve-audio-analysis.js.map +1 -0
- package/tools/audio-analysis/retrieve-audio-analysis.mjs +34 -0
- package/tools/audio-analysis/retrieve-audio-analysis.mjs.map +1 -0
- package/tools/audio-features/list-audio-features.d.mts +45 -0
- package/tools/audio-features/list-audio-features.d.mts.map +1 -0
- package/tools/audio-features/list-audio-features.d.ts +45 -0
- package/tools/audio-features/list-audio-features.d.ts.map +1 -0
- package/tools/audio-features/list-audio-features.js +44 -0
- package/tools/audio-features/list-audio-features.js.map +1 -0
- package/tools/audio-features/list-audio-features.mjs +40 -0
- package/tools/audio-features/list-audio-features.mjs.map +1 -0
- package/tools/audio-features/retrieve-audio-features.d.mts +45 -0
- package/tools/audio-features/retrieve-audio-features.d.mts.map +1 -0
- package/tools/audio-features/retrieve-audio-features.d.ts +45 -0
- package/tools/audio-features/retrieve-audio-features.d.ts.map +1 -0
- package/tools/audio-features/retrieve-audio-features.js +44 -0
- package/tools/audio-features/retrieve-audio-features.js.map +1 -0
- package/tools/audio-features/retrieve-audio-features.mjs +40 -0
- package/tools/audio-features/retrieve-audio-features.mjs.map +1 -0
- package/tools/audiobooks/list-audiobooks.d.mts +45 -0
- package/tools/audiobooks/list-audiobooks.d.mts.map +1 -0
- package/tools/audiobooks/list-audiobooks.d.ts +45 -0
- package/tools/audiobooks/list-audiobooks.d.ts.map +1 -0
- package/tools/audiobooks/list-audiobooks.js +49 -0
- package/tools/audiobooks/list-audiobooks.js.map +1 -0
- package/tools/audiobooks/list-audiobooks.mjs +45 -0
- package/tools/audiobooks/list-audiobooks.mjs.map +1 -0
- package/tools/audiobooks/list-chapters-audiobooks.d.mts +45 -0
- package/tools/audiobooks/list-chapters-audiobooks.d.mts.map +1 -0
- package/tools/audiobooks/list-chapters-audiobooks.d.ts +45 -0
- package/tools/audiobooks/list-chapters-audiobooks.d.ts.map +1 -0
- package/tools/audiobooks/list-chapters-audiobooks.js +60 -0
- package/tools/audiobooks/list-chapters-audiobooks.js.map +1 -0
- package/tools/audiobooks/list-chapters-audiobooks.mjs +56 -0
- package/tools/audiobooks/list-chapters-audiobooks.mjs.map +1 -0
- package/tools/audiobooks/retrieve-audiobooks.d.mts +45 -0
- package/tools/audiobooks/retrieve-audiobooks.d.mts.map +1 -0
- package/tools/audiobooks/retrieve-audiobooks.d.ts +45 -0
- package/tools/audiobooks/retrieve-audiobooks.d.ts.map +1 -0
- package/tools/audiobooks/retrieve-audiobooks.js +49 -0
- package/tools/audiobooks/retrieve-audiobooks.js.map +1 -0
- package/tools/audiobooks/retrieve-audiobooks.mjs +45 -0
- package/tools/audiobooks/retrieve-audiobooks.mjs.map +1 -0
- package/tools/browse/categories/get-playlists-browse-categories.d.mts +45 -0
- package/tools/browse/categories/get-playlists-browse-categories.d.mts.map +1 -0
- package/tools/browse/categories/get-playlists-browse-categories.d.ts +45 -0
- package/tools/browse/categories/get-playlists-browse-categories.d.ts.map +1 -0
- package/tools/browse/categories/get-playlists-browse-categories.js +54 -0
- package/tools/browse/categories/get-playlists-browse-categories.js.map +1 -0
- package/tools/browse/categories/get-playlists-browse-categories.mjs +50 -0
- package/tools/browse/categories/get-playlists-browse-categories.mjs.map +1 -0
- package/tools/browse/categories/list-browse-categories.d.mts +45 -0
- package/tools/browse/categories/list-browse-categories.d.mts.map +1 -0
- package/tools/browse/categories/list-browse-categories.d.ts +45 -0
- package/tools/browse/categories/list-browse-categories.d.ts.map +1 -0
- package/tools/browse/categories/list-browse-categories.js +54 -0
- package/tools/browse/categories/list-browse-categories.js.map +1 -0
- package/tools/browse/categories/list-browse-categories.mjs +50 -0
- package/tools/browse/categories/list-browse-categories.mjs.map +1 -0
- package/tools/browse/categories/retrieve-browse-categories.d.mts +45 -0
- package/tools/browse/categories/retrieve-browse-categories.d.mts.map +1 -0
- package/tools/browse/categories/retrieve-browse-categories.d.ts +45 -0
- package/tools/browse/categories/retrieve-browse-categories.d.ts.map +1 -0
- package/tools/browse/categories/retrieve-browse-categories.js +49 -0
- package/tools/browse/categories/retrieve-browse-categories.js.map +1 -0
- package/tools/browse/categories/retrieve-browse-categories.mjs +45 -0
- package/tools/browse/categories/retrieve-browse-categories.mjs.map +1 -0
- package/tools/browse/get-featured-playlists-browse.d.mts +45 -0
- package/tools/browse/get-featured-playlists-browse.d.mts.map +1 -0
- package/tools/browse/get-featured-playlists-browse.d.ts +45 -0
- package/tools/browse/get-featured-playlists-browse.d.ts.map +1 -0
- package/tools/browse/get-featured-playlists-browse.js +54 -0
- package/tools/browse/get-featured-playlists-browse.js.map +1 -0
- package/tools/browse/get-featured-playlists-browse.mjs +50 -0
- package/tools/browse/get-featured-playlists-browse.mjs.map +1 -0
- package/tools/browse/get-new-releases-browse.d.mts +45 -0
- package/tools/browse/get-new-releases-browse.d.mts.map +1 -0
- package/tools/browse/get-new-releases-browse.d.ts +45 -0
- package/tools/browse/get-new-releases-browse.d.ts.map +1 -0
- package/tools/browse/get-new-releases-browse.js +49 -0
- package/tools/browse/get-new-releases-browse.js.map +1 -0
- package/tools/browse/get-new-releases-browse.mjs +45 -0
- package/tools/browse/get-new-releases-browse.mjs.map +1 -0
- package/tools/chapters/list-chapters.d.mts +45 -0
- package/tools/chapters/list-chapters.d.mts.map +1 -0
- package/tools/chapters/list-chapters.d.ts +45 -0
- package/tools/chapters/list-chapters.d.ts.map +1 -0
- package/tools/chapters/list-chapters.js +43 -0
- package/tools/chapters/list-chapters.js.map +1 -0
- package/tools/chapters/list-chapters.mjs +39 -0
- package/tools/chapters/list-chapters.mjs.map +1 -0
- package/tools/chapters/retrieve-chapters.d.mts +45 -0
- package/tools/chapters/retrieve-chapters.d.mts.map +1 -0
- package/tools/chapters/retrieve-chapters.d.ts +45 -0
- package/tools/chapters/retrieve-chapters.d.ts.map +1 -0
- package/tools/chapters/retrieve-chapters.js +43 -0
- package/tools/chapters/retrieve-chapters.js.map +1 -0
- package/tools/chapters/retrieve-chapters.mjs +39 -0
- package/tools/chapters/retrieve-chapters.mjs.map +1 -0
- package/tools/episodes/list-episodes.d.mts +45 -0
- package/tools/episodes/list-episodes.d.mts.map +1 -0
- package/tools/episodes/list-episodes.d.ts +45 -0
- package/tools/episodes/list-episodes.d.ts.map +1 -0
- package/tools/episodes/list-episodes.js +43 -0
- package/tools/episodes/list-episodes.js.map +1 -0
- package/tools/episodes/list-episodes.mjs +39 -0
- package/tools/episodes/list-episodes.mjs.map +1 -0
- package/tools/episodes/retrieve-episodes.d.mts +45 -0
- package/tools/episodes/retrieve-episodes.d.mts.map +1 -0
- package/tools/episodes/retrieve-episodes.d.ts +45 -0
- package/tools/episodes/retrieve-episodes.d.ts.map +1 -0
- package/tools/episodes/retrieve-episodes.js +43 -0
- package/tools/episodes/retrieve-episodes.js.map +1 -0
- package/tools/episodes/retrieve-episodes.mjs +39 -0
- package/tools/episodes/retrieve-episodes.mjs.map +1 -0
- package/tools/index.d.mts +10 -0
- package/tools/index.d.mts.map +1 -0
- package/tools/index.d.ts +10 -0
- package/tools/index.d.ts.map +1 -0
- package/tools/index.js +231 -0
- package/tools/index.js.map +1 -0
- package/tools/index.mjs +224 -0
- package/tools/index.mjs.map +1 -0
- package/tools/markets/list-markets.d.mts +45 -0
- package/tools/markets/list-markets.d.mts.map +1 -0
- package/tools/markets/list-markets.d.ts +45 -0
- package/tools/markets/list-markets.d.ts.map +1 -0
- package/tools/markets/list-markets.js +39 -0
- package/tools/markets/list-markets.js.map +1 -0
- package/tools/markets/list-markets.mjs +35 -0
- package/tools/markets/list-markets.mjs.map +1 -0
- package/tools/me/albums/check-me-albums.d.mts +45 -0
- package/tools/me/albums/check-me-albums.d.mts.map +1 -0
- package/tools/me/albums/check-me-albums.d.ts +45 -0
- package/tools/me/albums/check-me-albums.d.ts.map +1 -0
- package/tools/me/albums/check-me-albums.js +44 -0
- package/tools/me/albums/check-me-albums.js.map +1 -0
- package/tools/me/albums/check-me-albums.mjs +40 -0
- package/tools/me/albums/check-me-albums.mjs.map +1 -0
- package/tools/me/albums/list-me-albums.d.mts +45 -0
- package/tools/me/albums/list-me-albums.d.mts.map +1 -0
- package/tools/me/albums/list-me-albums.d.ts +45 -0
- package/tools/me/albums/list-me-albums.d.ts.map +1 -0
- package/tools/me/albums/list-me-albums.js +49 -0
- package/tools/me/albums/list-me-albums.js.map +1 -0
- package/tools/me/albums/list-me-albums.mjs +45 -0
- package/tools/me/albums/list-me-albums.mjs.map +1 -0
- package/tools/me/albums/remove-me-albums.d.mts +45 -0
- package/tools/me/albums/remove-me-albums.d.mts.map +1 -0
- package/tools/me/albums/remove-me-albums.d.ts +45 -0
- package/tools/me/albums/remove-me-albums.d.ts.map +1 -0
- package/tools/me/albums/remove-me-albums.js +41 -0
- package/tools/me/albums/remove-me-albums.js.map +1 -0
- package/tools/me/albums/remove-me-albums.mjs +37 -0
- package/tools/me/albums/remove-me-albums.mjs.map +1 -0
- package/tools/me/albums/save-me-albums.d.mts +45 -0
- package/tools/me/albums/save-me-albums.d.mts.map +1 -0
- package/tools/me/albums/save-me-albums.d.ts +45 -0
- package/tools/me/albums/save-me-albums.d.ts.map +1 -0
- package/tools/me/albums/save-me-albums.js +41 -0
- package/tools/me/albums/save-me-albums.js.map +1 -0
- package/tools/me/albums/save-me-albums.mjs +37 -0
- package/tools/me/albums/save-me-albums.mjs.map +1 -0
- package/tools/me/audiobooks/check-me-audiobooks.d.mts +45 -0
- package/tools/me/audiobooks/check-me-audiobooks.d.mts.map +1 -0
- package/tools/me/audiobooks/check-me-audiobooks.d.ts +45 -0
- package/tools/me/audiobooks/check-me-audiobooks.d.ts.map +1 -0
- package/tools/me/audiobooks/check-me-audiobooks.js +44 -0
- package/tools/me/audiobooks/check-me-audiobooks.js.map +1 -0
- package/tools/me/audiobooks/check-me-audiobooks.mjs +40 -0
- package/tools/me/audiobooks/check-me-audiobooks.mjs.map +1 -0
- package/tools/me/audiobooks/list-me-audiobooks.d.mts +45 -0
- package/tools/me/audiobooks/list-me-audiobooks.d.mts.map +1 -0
- package/tools/me/audiobooks/list-me-audiobooks.d.ts +45 -0
- package/tools/me/audiobooks/list-me-audiobooks.d.ts.map +1 -0
- package/tools/me/audiobooks/list-me-audiobooks.js +50 -0
- package/tools/me/audiobooks/list-me-audiobooks.js.map +1 -0
- package/tools/me/audiobooks/list-me-audiobooks.mjs +46 -0
- package/tools/me/audiobooks/list-me-audiobooks.mjs.map +1 -0
- package/tools/me/audiobooks/remove-me-audiobooks.d.mts +45 -0
- package/tools/me/audiobooks/remove-me-audiobooks.d.mts.map +1 -0
- package/tools/me/audiobooks/remove-me-audiobooks.d.ts +45 -0
- package/tools/me/audiobooks/remove-me-audiobooks.d.ts.map +1 -0
- package/tools/me/audiobooks/remove-me-audiobooks.js +39 -0
- package/tools/me/audiobooks/remove-me-audiobooks.js.map +1 -0
- package/tools/me/audiobooks/remove-me-audiobooks.mjs +35 -0
- package/tools/me/audiobooks/remove-me-audiobooks.mjs.map +1 -0
- package/tools/me/audiobooks/save-me-audiobooks.d.mts +45 -0
- package/tools/me/audiobooks/save-me-audiobooks.d.mts.map +1 -0
- package/tools/me/audiobooks/save-me-audiobooks.d.ts +45 -0
- package/tools/me/audiobooks/save-me-audiobooks.d.ts.map +1 -0
- package/tools/me/audiobooks/save-me-audiobooks.js +39 -0
- package/tools/me/audiobooks/save-me-audiobooks.js.map +1 -0
- package/tools/me/audiobooks/save-me-audiobooks.mjs +35 -0
- package/tools/me/audiobooks/save-me-audiobooks.mjs.map +1 -0
- package/tools/me/episodes/check-me-episodes.d.mts +45 -0
- package/tools/me/episodes/check-me-episodes.d.mts.map +1 -0
- package/tools/me/episodes/check-me-episodes.d.ts +45 -0
- package/tools/me/episodes/check-me-episodes.d.ts.map +1 -0
- package/tools/me/episodes/check-me-episodes.js +44 -0
- package/tools/me/episodes/check-me-episodes.js.map +1 -0
- package/tools/me/episodes/check-me-episodes.mjs +40 -0
- package/tools/me/episodes/check-me-episodes.mjs.map +1 -0
- package/tools/me/episodes/list-me-episodes.d.mts +45 -0
- package/tools/me/episodes/list-me-episodes.d.mts.map +1 -0
- package/tools/me/episodes/list-me-episodes.d.ts +45 -0
- package/tools/me/episodes/list-me-episodes.d.ts.map +1 -0
- package/tools/me/episodes/list-me-episodes.js +49 -0
- package/tools/me/episodes/list-me-episodes.js.map +1 -0
- package/tools/me/episodes/list-me-episodes.mjs +45 -0
- package/tools/me/episodes/list-me-episodes.mjs.map +1 -0
- package/tools/me/episodes/remove-me-episodes.d.mts +45 -0
- package/tools/me/episodes/remove-me-episodes.d.mts.map +1 -0
- package/tools/me/episodes/remove-me-episodes.d.ts +45 -0
- package/tools/me/episodes/remove-me-episodes.d.ts.map +1 -0
- package/tools/me/episodes/remove-me-episodes.js +41 -0
- package/tools/me/episodes/remove-me-episodes.js.map +1 -0
- package/tools/me/episodes/remove-me-episodes.mjs +37 -0
- package/tools/me/episodes/remove-me-episodes.mjs.map +1 -0
- package/tools/me/episodes/save-me-episodes.d.mts +45 -0
- package/tools/me/episodes/save-me-episodes.d.mts.map +1 -0
- package/tools/me/episodes/save-me-episodes.d.ts +45 -0
- package/tools/me/episodes/save-me-episodes.d.ts.map +1 -0
- package/tools/me/episodes/save-me-episodes.js +41 -0
- package/tools/me/episodes/save-me-episodes.js.map +1 -0
- package/tools/me/episodes/save-me-episodes.mjs +37 -0
- package/tools/me/episodes/save-me-episodes.mjs.map +1 -0
- package/tools/me/following/check-me-following.d.mts +45 -0
- package/tools/me/following/check-me-following.d.mts.map +1 -0
- package/tools/me/following/check-me-following.d.ts +45 -0
- package/tools/me/following/check-me-following.d.ts.map +1 -0
- package/tools/me/following/check-me-following.js +50 -0
- package/tools/me/following/check-me-following.js.map +1 -0
- package/tools/me/following/check-me-following.mjs +46 -0
- package/tools/me/following/check-me-following.mjs.map +1 -0
- package/tools/me/following/follow-me-following.d.mts +45 -0
- package/tools/me/following/follow-me-following.d.mts.map +1 -0
- package/tools/me/following/follow-me-following.d.ts +45 -0
- package/tools/me/following/follow-me-following.d.ts.map +1 -0
- package/tools/me/following/follow-me-following.js +41 -0
- package/tools/me/following/follow-me-following.js.map +1 -0
- package/tools/me/following/follow-me-following.mjs +37 -0
- package/tools/me/following/follow-me-following.mjs.map +1 -0
- package/tools/me/following/list-me-following.d.mts +45 -0
- package/tools/me/following/list-me-following.d.mts.map +1 -0
- package/tools/me/following/list-me-following.d.ts +45 -0
- package/tools/me/following/list-me-following.d.ts.map +1 -0
- package/tools/me/following/list-me-following.js +55 -0
- package/tools/me/following/list-me-following.js.map +1 -0
- package/tools/me/following/list-me-following.mjs +51 -0
- package/tools/me/following/list-me-following.mjs.map +1 -0
- package/tools/me/following/unfollow-me-following.d.mts +45 -0
- package/tools/me/following/unfollow-me-following.d.mts.map +1 -0
- package/tools/me/following/unfollow-me-following.d.ts +45 -0
- package/tools/me/following/unfollow-me-following.d.ts.map +1 -0
- package/tools/me/following/unfollow-me-following.js +41 -0
- package/tools/me/following/unfollow-me-following.js.map +1 -0
- package/tools/me/following/unfollow-me-following.mjs +37 -0
- package/tools/me/following/unfollow-me-following.mjs.map +1 -0
- package/tools/me/player/get-currently-playing-me-player.d.mts +45 -0
- package/tools/me/player/get-currently-playing-me-player.d.mts.map +1 -0
- package/tools/me/player/get-currently-playing-me-player.d.ts +45 -0
- package/tools/me/player/get-currently-playing-me-player.d.ts.map +1 -0
- package/tools/me/player/get-currently-playing-me-player.js +43 -0
- package/tools/me/player/get-currently-playing-me-player.js.map +1 -0
- package/tools/me/player/get-currently-playing-me-player.mjs +39 -0
- package/tools/me/player/get-currently-playing-me-player.mjs.map +1 -0
- package/tools/me/player/get-devices-me-player.d.mts +45 -0
- package/tools/me/player/get-devices-me-player.d.mts.map +1 -0
- package/tools/me/player/get-devices-me-player.d.ts +45 -0
- package/tools/me/player/get-devices-me-player.d.ts.map +1 -0
- package/tools/me/player/get-devices-me-player.js +39 -0
- package/tools/me/player/get-devices-me-player.js.map +1 -0
- package/tools/me/player/get-devices-me-player.mjs +35 -0
- package/tools/me/player/get-devices-me-player.mjs.map +1 -0
- package/tools/me/player/get-state-me-player.d.mts +45 -0
- package/tools/me/player/get-state-me-player.d.mts.map +1 -0
- package/tools/me/player/get-state-me-player.d.ts +45 -0
- package/tools/me/player/get-state-me-player.d.ts.map +1 -0
- package/tools/me/player/get-state-me-player.js +43 -0
- package/tools/me/player/get-state-me-player.js.map +1 -0
- package/tools/me/player/get-state-me-player.mjs +39 -0
- package/tools/me/player/get-state-me-player.mjs.map +1 -0
- package/tools/me/player/list-recently-played-me-player.d.mts +45 -0
- package/tools/me/player/list-recently-played-me-player.d.mts.map +1 -0
- package/tools/me/player/list-recently-played-me-player.d.ts +45 -0
- package/tools/me/player/list-recently-played-me-player.d.ts.map +1 -0
- package/tools/me/player/list-recently-played-me-player.js +49 -0
- package/tools/me/player/list-recently-played-me-player.js.map +1 -0
- package/tools/me/player/list-recently-played-me-player.mjs +45 -0
- package/tools/me/player/list-recently-played-me-player.mjs.map +1 -0
- package/tools/me/player/pause-playback-me-player.d.mts +45 -0
- package/tools/me/player/pause-playback-me-player.d.mts.map +1 -0
- package/tools/me/player/pause-playback-me-player.d.ts +45 -0
- package/tools/me/player/pause-playback-me-player.d.ts.map +1 -0
- package/tools/me/player/pause-playback-me-player.js +39 -0
- package/tools/me/player/pause-playback-me-player.js.map +1 -0
- package/tools/me/player/pause-playback-me-player.mjs +35 -0
- package/tools/me/player/pause-playback-me-player.mjs.map +1 -0
- package/tools/me/player/queue/add-player-me-queue.d.mts +45 -0
- package/tools/me/player/queue/add-player-me-queue.d.mts.map +1 -0
- package/tools/me/player/queue/add-player-me-queue.d.ts +45 -0
- package/tools/me/player/queue/add-player-me-queue.d.ts.map +1 -0
- package/tools/me/player/queue/add-player-me-queue.js +42 -0
- package/tools/me/player/queue/add-player-me-queue.js.map +1 -0
- package/tools/me/player/queue/add-player-me-queue.mjs +38 -0
- package/tools/me/player/queue/add-player-me-queue.mjs.map +1 -0
- package/tools/me/player/queue/get-player-me-queue.d.mts +45 -0
- package/tools/me/player/queue/get-player-me-queue.d.mts.map +1 -0
- package/tools/me/player/queue/get-player-me-queue.d.ts +45 -0
- package/tools/me/player/queue/get-player-me-queue.d.ts.map +1 -0
- package/tools/me/player/queue/get-player-me-queue.js +31 -0
- package/tools/me/player/queue/get-player-me-queue.js.map +1 -0
- package/tools/me/player/queue/get-player-me-queue.mjs +27 -0
- package/tools/me/player/queue/get-player-me-queue.mjs.map +1 -0
- package/tools/me/player/seek-to-position-me-player.d.mts +45 -0
- package/tools/me/player/seek-to-position-me-player.d.mts.map +1 -0
- package/tools/me/player/seek-to-position-me-player.d.ts +45 -0
- package/tools/me/player/seek-to-position-me-player.d.ts.map +1 -0
- package/tools/me/player/seek-to-position-me-player.js +44 -0
- package/tools/me/player/seek-to-position-me-player.js.map +1 -0
- package/tools/me/player/seek-to-position-me-player.mjs +40 -0
- package/tools/me/player/seek-to-position-me-player.mjs.map +1 -0
- package/tools/me/player/set-repeat-mode-me-player.d.mts +45 -0
- package/tools/me/player/set-repeat-mode-me-player.d.mts.map +1 -0
- package/tools/me/player/set-repeat-mode-me-player.d.ts +45 -0
- package/tools/me/player/set-repeat-mode-me-player.d.ts.map +1 -0
- package/tools/me/player/set-repeat-mode-me-player.js +44 -0
- package/tools/me/player/set-repeat-mode-me-player.js.map +1 -0
- package/tools/me/player/set-repeat-mode-me-player.mjs +40 -0
- package/tools/me/player/set-repeat-mode-me-player.mjs.map +1 -0
- package/tools/me/player/set-volume-me-player.d.mts +45 -0
- package/tools/me/player/set-volume-me-player.d.mts.map +1 -0
- package/tools/me/player/set-volume-me-player.d.ts +45 -0
- package/tools/me/player/set-volume-me-player.d.ts.map +1 -0
- package/tools/me/player/set-volume-me-player.js +44 -0
- package/tools/me/player/set-volume-me-player.js.map +1 -0
- package/tools/me/player/set-volume-me-player.mjs +40 -0
- package/tools/me/player/set-volume-me-player.mjs.map +1 -0
- package/tools/me/player/skip-next-me-player.d.mts +45 -0
- package/tools/me/player/skip-next-me-player.d.mts.map +1 -0
- package/tools/me/player/skip-next-me-player.d.ts +45 -0
- package/tools/me/player/skip-next-me-player.d.ts.map +1 -0
- package/tools/me/player/skip-next-me-player.js +37 -0
- package/tools/me/player/skip-next-me-player.js.map +1 -0
- package/tools/me/player/skip-next-me-player.mjs +33 -0
- package/tools/me/player/skip-next-me-player.mjs.map +1 -0
- package/tools/me/player/skip-previous-me-player.d.mts +45 -0
- package/tools/me/player/skip-previous-me-player.d.mts.map +1 -0
- package/tools/me/player/skip-previous-me-player.d.ts +45 -0
- package/tools/me/player/skip-previous-me-player.d.ts.map +1 -0
- package/tools/me/player/skip-previous-me-player.js +37 -0
- package/tools/me/player/skip-previous-me-player.js.map +1 -0
- package/tools/me/player/skip-previous-me-player.mjs +33 -0
- package/tools/me/player/skip-previous-me-player.mjs.map +1 -0
- package/tools/me/player/start-playback-me-player.d.mts +45 -0
- package/tools/me/player/start-playback-me-player.d.mts.map +1 -0
- package/tools/me/player/start-playback-me-player.d.ts +45 -0
- package/tools/me/player/start-playback-me-player.d.ts.map +1 -0
- package/tools/me/player/start-playback-me-player.js +59 -0
- package/tools/me/player/start-playback-me-player.js.map +1 -0
- package/tools/me/player/start-playback-me-player.mjs +55 -0
- package/tools/me/player/start-playback-me-player.mjs.map +1 -0
- package/tools/me/player/toggle-shuffle-me-player.d.mts +45 -0
- package/tools/me/player/toggle-shuffle-me-player.d.mts.map +1 -0
- package/tools/me/player/toggle-shuffle-me-player.d.ts +45 -0
- package/tools/me/player/toggle-shuffle-me-player.d.ts.map +1 -0
- package/tools/me/player/toggle-shuffle-me-player.js +44 -0
- package/tools/me/player/toggle-shuffle-me-player.js.map +1 -0
- package/tools/me/player/toggle-shuffle-me-player.mjs +40 -0
- package/tools/me/player/toggle-shuffle-me-player.mjs.map +1 -0
- package/tools/me/player/transfer-me-player.d.mts +45 -0
- package/tools/me/player/transfer-me-player.d.mts.map +1 -0
- package/tools/me/player/transfer-me-player.d.ts +45 -0
- package/tools/me/player/transfer-me-player.d.ts.map +1 -0
- package/tools/me/player/transfer-me-player.js +45 -0
- package/tools/me/player/transfer-me-player.js.map +1 -0
- package/tools/me/player/transfer-me-player.mjs +41 -0
- package/tools/me/player/transfer-me-player.mjs.map +1 -0
- package/tools/me/playlists/list-me-playlists.d.mts +45 -0
- package/tools/me/playlists/list-me-playlists.d.mts.map +1 -0
- package/tools/me/playlists/list-me-playlists.d.ts +45 -0
- package/tools/me/playlists/list-me-playlists.d.ts.map +1 -0
- package/tools/me/playlists/list-me-playlists.js +50 -0
- package/tools/me/playlists/list-me-playlists.js.map +1 -0
- package/tools/me/playlists/list-me-playlists.mjs +46 -0
- package/tools/me/playlists/list-me-playlists.mjs.map +1 -0
- package/tools/me/retrieve-me.d.mts +45 -0
- package/tools/me/retrieve-me.d.mts.map +1 -0
- package/tools/me/retrieve-me.d.ts +45 -0
- package/tools/me/retrieve-me.d.ts.map +1 -0
- package/tools/me/retrieve-me.js +39 -0
- package/tools/me/retrieve-me.js.map +1 -0
- package/tools/me/retrieve-me.mjs +35 -0
- package/tools/me/retrieve-me.mjs.map +1 -0
- package/tools/me/shows/check-me-shows.d.mts +45 -0
- package/tools/me/shows/check-me-shows.d.mts.map +1 -0
- package/tools/me/shows/check-me-shows.d.ts +45 -0
- package/tools/me/shows/check-me-shows.d.ts.map +1 -0
- package/tools/me/shows/check-me-shows.js +44 -0
- package/tools/me/shows/check-me-shows.js.map +1 -0
- package/tools/me/shows/check-me-shows.mjs +40 -0
- package/tools/me/shows/check-me-shows.mjs.map +1 -0
- package/tools/me/shows/list-me-shows.d.mts +45 -0
- package/tools/me/shows/list-me-shows.d.mts.map +1 -0
- package/tools/me/shows/list-me-shows.d.ts +45 -0
- package/tools/me/shows/list-me-shows.d.ts.map +1 -0
- package/tools/me/shows/list-me-shows.js +50 -0
- package/tools/me/shows/list-me-shows.js.map +1 -0
- package/tools/me/shows/list-me-shows.mjs +46 -0
- package/tools/me/shows/list-me-shows.mjs.map +1 -0
- package/tools/me/shows/remove-me-shows.d.mts +45 -0
- package/tools/me/shows/remove-me-shows.d.mts.map +1 -0
- package/tools/me/shows/remove-me-shows.d.ts +45 -0
- package/tools/me/shows/remove-me-shows.d.ts.map +1 -0
- package/tools/me/shows/remove-me-shows.js +41 -0
- package/tools/me/shows/remove-me-shows.js.map +1 -0
- package/tools/me/shows/remove-me-shows.mjs +37 -0
- package/tools/me/shows/remove-me-shows.mjs.map +1 -0
- package/tools/me/shows/save-me-shows.d.mts +45 -0
- package/tools/me/shows/save-me-shows.d.mts.map +1 -0
- package/tools/me/shows/save-me-shows.d.ts +45 -0
- package/tools/me/shows/save-me-shows.d.ts.map +1 -0
- package/tools/me/shows/save-me-shows.js +41 -0
- package/tools/me/shows/save-me-shows.js.map +1 -0
- package/tools/me/shows/save-me-shows.mjs +37 -0
- package/tools/me/shows/save-me-shows.mjs.map +1 -0
- package/tools/me/top/list-top-artists-me-top.d.mts +45 -0
- package/tools/me/top/list-top-artists-me-top.d.mts.map +1 -0
- package/tools/me/top/list-top-artists-me-top.d.ts +45 -0
- package/tools/me/top/list-top-artists-me-top.d.ts.map +1 -0
- package/tools/me/top/list-top-artists-me-top.js +55 -0
- package/tools/me/top/list-top-artists-me-top.js.map +1 -0
- package/tools/me/top/list-top-artists-me-top.mjs +51 -0
- package/tools/me/top/list-top-artists-me-top.mjs.map +1 -0
- package/tools/me/top/list-top-tracks-me-top.d.mts +45 -0
- package/tools/me/top/list-top-tracks-me-top.d.mts.map +1 -0
- package/tools/me/top/list-top-tracks-me-top.d.ts +45 -0
- package/tools/me/top/list-top-tracks-me-top.d.ts.map +1 -0
- package/tools/me/top/list-top-tracks-me-top.js +49 -0
- package/tools/me/top/list-top-tracks-me-top.js.map +1 -0
- package/tools/me/top/list-top-tracks-me-top.mjs +45 -0
- package/tools/me/top/list-top-tracks-me-top.mjs.map +1 -0
- package/tools/me/tracks/check-me-tracks.d.mts +45 -0
- package/tools/me/tracks/check-me-tracks.d.mts.map +1 -0
- package/tools/me/tracks/check-me-tracks.d.ts +45 -0
- package/tools/me/tracks/check-me-tracks.d.ts.map +1 -0
- package/tools/me/tracks/check-me-tracks.js +44 -0
- package/tools/me/tracks/check-me-tracks.js.map +1 -0
- package/tools/me/tracks/check-me-tracks.mjs +40 -0
- package/tools/me/tracks/check-me-tracks.mjs.map +1 -0
- package/tools/me/tracks/list-me-tracks.d.mts +45 -0
- package/tools/me/tracks/list-me-tracks.d.mts.map +1 -0
- package/tools/me/tracks/list-me-tracks.d.ts +45 -0
- package/tools/me/tracks/list-me-tracks.d.ts.map +1 -0
- package/tools/me/tracks/list-me-tracks.js +49 -0
- package/tools/me/tracks/list-me-tracks.js.map +1 -0
- package/tools/me/tracks/list-me-tracks.mjs +45 -0
- package/tools/me/tracks/list-me-tracks.mjs.map +1 -0
- package/tools/me/tracks/remove-me-tracks.d.mts +45 -0
- package/tools/me/tracks/remove-me-tracks.d.mts.map +1 -0
- package/tools/me/tracks/remove-me-tracks.d.ts +45 -0
- package/tools/me/tracks/remove-me-tracks.d.ts.map +1 -0
- package/tools/me/tracks/remove-me-tracks.js +41 -0
- package/tools/me/tracks/remove-me-tracks.js.map +1 -0
- package/tools/me/tracks/remove-me-tracks.mjs +37 -0
- package/tools/me/tracks/remove-me-tracks.mjs.map +1 -0
- package/tools/me/tracks/save-me-tracks.d.mts +45 -0
- package/tools/me/tracks/save-me-tracks.d.mts.map +1 -0
- package/tools/me/tracks/save-me-tracks.d.ts +45 -0
- package/tools/me/tracks/save-me-tracks.d.ts.map +1 -0
- package/tools/me/tracks/save-me-tracks.js +60 -0
- package/tools/me/tracks/save-me-tracks.js.map +1 -0
- package/tools/me/tracks/save-me-tracks.mjs +56 -0
- package/tools/me/tracks/save-me-tracks.mjs.map +1 -0
- package/tools/playlists/followers/check-playlists-followers.d.mts +45 -0
- package/tools/playlists/followers/check-playlists-followers.d.mts.map +1 -0
- package/tools/playlists/followers/check-playlists-followers.d.ts +45 -0
- package/tools/playlists/followers/check-playlists-followers.d.ts.map +1 -0
- package/tools/playlists/followers/check-playlists-followers.js +49 -0
- package/tools/playlists/followers/check-playlists-followers.js.map +1 -0
- package/tools/playlists/followers/check-playlists-followers.mjs +45 -0
- package/tools/playlists/followers/check-playlists-followers.mjs.map +1 -0
- package/tools/playlists/followers/follow-playlists-followers.d.mts +45 -0
- package/tools/playlists/followers/follow-playlists-followers.d.mts.map +1 -0
- package/tools/playlists/followers/follow-playlists-followers.d.ts +45 -0
- package/tools/playlists/followers/follow-playlists-followers.d.ts.map +1 -0
- package/tools/playlists/followers/follow-playlists-followers.js +43 -0
- package/tools/playlists/followers/follow-playlists-followers.js.map +1 -0
- package/tools/playlists/followers/follow-playlists-followers.mjs +39 -0
- package/tools/playlists/followers/follow-playlists-followers.mjs.map +1 -0
- package/tools/playlists/followers/unfollow-playlists-followers.d.mts +45 -0
- package/tools/playlists/followers/unfollow-playlists-followers.d.mts.map +1 -0
- package/tools/playlists/followers/unfollow-playlists-followers.d.ts +45 -0
- package/tools/playlists/followers/unfollow-playlists-followers.d.ts.map +1 -0
- package/tools/playlists/followers/unfollow-playlists-followers.js +39 -0
- package/tools/playlists/followers/unfollow-playlists-followers.js.map +1 -0
- package/tools/playlists/followers/unfollow-playlists-followers.mjs +35 -0
- package/tools/playlists/followers/unfollow-playlists-followers.mjs.map +1 -0
- package/tools/playlists/images/list-playlists-images.d.mts +45 -0
- package/tools/playlists/images/list-playlists-images.d.mts.map +1 -0
- package/tools/playlists/images/list-playlists-images.d.ts +45 -0
- package/tools/playlists/images/list-playlists-images.d.ts.map +1 -0
- package/tools/playlists/images/list-playlists-images.js +44 -0
- package/tools/playlists/images/list-playlists-images.js.map +1 -0
- package/tools/playlists/images/list-playlists-images.mjs +40 -0
- package/tools/playlists/images/list-playlists-images.mjs.map +1 -0
- package/tools/playlists/images/update-playlists-images.d.mts +45 -0
- package/tools/playlists/images/update-playlists-images.d.mts.map +1 -0
- package/tools/playlists/images/update-playlists-images.d.ts +45 -0
- package/tools/playlists/images/update-playlists-images.d.ts.map +1 -0
- package/tools/playlists/images/update-playlists-images.js +43 -0
- package/tools/playlists/images/update-playlists-images.js.map +1 -0
- package/tools/playlists/images/update-playlists-images.mjs +39 -0
- package/tools/playlists/images/update-playlists-images.mjs.map +1 -0
- package/tools/playlists/retrieve-playlists.d.mts +45 -0
- package/tools/playlists/retrieve-playlists.d.mts.map +1 -0
- package/tools/playlists/retrieve-playlists.d.ts +45 -0
- package/tools/playlists/retrieve-playlists.d.ts.map +1 -0
- package/tools/playlists/retrieve-playlists.js +53 -0
- package/tools/playlists/retrieve-playlists.js.map +1 -0
- package/tools/playlists/retrieve-playlists.mjs +49 -0
- package/tools/playlists/retrieve-playlists.mjs.map +1 -0
- package/tools/playlists/tracks/add-playlists-tracks.d.mts +45 -0
- package/tools/playlists/tracks/add-playlists-tracks.d.mts.map +1 -0
- package/tools/playlists/tracks/add-playlists-tracks.d.ts +45 -0
- package/tools/playlists/tracks/add-playlists-tracks.d.ts.map +1 -0
- package/tools/playlists/tracks/add-playlists-tracks.js +53 -0
- package/tools/playlists/tracks/add-playlists-tracks.js.map +1 -0
- package/tools/playlists/tracks/add-playlists-tracks.mjs +49 -0
- package/tools/playlists/tracks/add-playlists-tracks.mjs.map +1 -0
- package/tools/playlists/tracks/list-playlists-tracks.d.mts +45 -0
- package/tools/playlists/tracks/list-playlists-tracks.d.mts.map +1 -0
- package/tools/playlists/tracks/list-playlists-tracks.d.ts +45 -0
- package/tools/playlists/tracks/list-playlists-tracks.d.ts.map +1 -0
- package/tools/playlists/tracks/list-playlists-tracks.js +64 -0
- package/tools/playlists/tracks/list-playlists-tracks.js.map +1 -0
- package/tools/playlists/tracks/list-playlists-tracks.mjs +60 -0
- package/tools/playlists/tracks/list-playlists-tracks.mjs.map +1 -0
- package/tools/playlists/tracks/remove-playlists-tracks.d.mts +45 -0
- package/tools/playlists/tracks/remove-playlists-tracks.d.mts.map +1 -0
- package/tools/playlists/tracks/remove-playlists-tracks.d.ts +45 -0
- package/tools/playlists/tracks/remove-playlists-tracks.d.ts.map +1 -0
- package/tools/playlists/tracks/remove-playlists-tracks.js +61 -0
- package/tools/playlists/tracks/remove-playlists-tracks.js.map +1 -0
- package/tools/playlists/tracks/remove-playlists-tracks.mjs +57 -0
- package/tools/playlists/tracks/remove-playlists-tracks.mjs.map +1 -0
- package/tools/playlists/tracks/update-playlists-tracks.d.mts +45 -0
- package/tools/playlists/tracks/update-playlists-tracks.d.mts.map +1 -0
- package/tools/playlists/tracks/update-playlists-tracks.d.ts +45 -0
- package/tools/playlists/tracks/update-playlists-tracks.d.ts.map +1 -0
- package/tools/playlists/tracks/update-playlists-tracks.js +66 -0
- package/tools/playlists/tracks/update-playlists-tracks.js.map +1 -0
- package/tools/playlists/tracks/update-playlists-tracks.mjs +62 -0
- package/tools/playlists/tracks/update-playlists-tracks.mjs.map +1 -0
- package/tools/playlists/update-playlists.d.mts +45 -0
- package/tools/playlists/update-playlists.d.mts.map +1 -0
- package/tools/playlists/update-playlists.d.ts +45 -0
- package/tools/playlists/update-playlists.d.ts.map +1 -0
- package/tools/playlists/update-playlists.js +55 -0
- package/tools/playlists/update-playlists.js.map +1 -0
- package/tools/playlists/update-playlists.mjs +51 -0
- package/tools/playlists/update-playlists.mjs.map +1 -0
- package/tools/recommendations/get-recommendations.d.mts +45 -0
- package/tools/recommendations/get-recommendations.d.mts.map +1 -0
- package/tools/recommendations/get-recommendations.d.ts +45 -0
- package/tools/recommendations/get-recommendations.d.ts.map +1 -0
- package/tools/recommendations/get-recommendations.js +268 -0
- package/tools/recommendations/get-recommendations.js.map +1 -0
- package/tools/recommendations/get-recommendations.mjs +264 -0
- package/tools/recommendations/get-recommendations.mjs.map +1 -0
- package/tools/recommendations/list-available-genre-seeds-recommendations.d.mts +45 -0
- package/tools/recommendations/list-available-genre-seeds-recommendations.d.mts.map +1 -0
- package/tools/recommendations/list-available-genre-seeds-recommendations.d.ts +45 -0
- package/tools/recommendations/list-available-genre-seeds-recommendations.d.ts.map +1 -0
- package/tools/recommendations/list-available-genre-seeds-recommendations.js +39 -0
- package/tools/recommendations/list-available-genre-seeds-recommendations.js.map +1 -0
- package/tools/recommendations/list-available-genre-seeds-recommendations.mjs +35 -0
- package/tools/recommendations/list-available-genre-seeds-recommendations.mjs.map +1 -0
- package/tools/search/retrieve-search.d.mts +45 -0
- package/tools/search/retrieve-search.d.mts.map +1 -0
- package/tools/search/retrieve-search.d.ts +45 -0
- package/tools/search/retrieve-search.d.ts.map +1 -0
- package/tools/search/retrieve-search.js +68 -0
- package/tools/search/retrieve-search.js.map +1 -0
- package/tools/search/retrieve-search.mjs +64 -0
- package/tools/search/retrieve-search.mjs.map +1 -0
- package/tools/shows/list-episodes-shows.d.mts +45 -0
- package/tools/shows/list-episodes-shows.d.mts.map +1 -0
- package/tools/shows/list-episodes-shows.d.ts +45 -0
- package/tools/shows/list-episodes-shows.d.ts.map +1 -0
- package/tools/shows/list-episodes-shows.js +60 -0
- package/tools/shows/list-episodes-shows.js.map +1 -0
- package/tools/shows/list-episodes-shows.mjs +56 -0
- package/tools/shows/list-episodes-shows.mjs.map +1 -0
- package/tools/shows/list-shows.d.mts +45 -0
- package/tools/shows/list-shows.d.mts.map +1 -0
- package/tools/shows/list-shows.d.ts +45 -0
- package/tools/shows/list-shows.d.ts.map +1 -0
- package/tools/shows/list-shows.js +49 -0
- package/tools/shows/list-shows.js.map +1 -0
- package/tools/shows/list-shows.mjs +45 -0
- package/tools/shows/list-shows.mjs.map +1 -0
- package/tools/shows/retrieve-shows.d.mts +45 -0
- package/tools/shows/retrieve-shows.d.mts.map +1 -0
- package/tools/shows/retrieve-shows.d.ts +45 -0
- package/tools/shows/retrieve-shows.d.ts.map +1 -0
- package/tools/shows/retrieve-shows.js +49 -0
- package/tools/shows/retrieve-shows.js.map +1 -0
- package/tools/shows/retrieve-shows.mjs +45 -0
- package/tools/shows/retrieve-shows.mjs.map +1 -0
- package/tools/tracks/list-tracks.d.mts +45 -0
- package/tools/tracks/list-tracks.d.mts.map +1 -0
- package/tools/tracks/list-tracks.d.ts +45 -0
- package/tools/tracks/list-tracks.d.ts.map +1 -0
- package/tools/tracks/list-tracks.js +43 -0
- package/tools/tracks/list-tracks.js.map +1 -0
- package/tools/tracks/list-tracks.mjs +39 -0
- package/tools/tracks/list-tracks.mjs.map +1 -0
- package/tools/tracks/retrieve-tracks.d.mts +45 -0
- package/tools/tracks/retrieve-tracks.d.mts.map +1 -0
- package/tools/tracks/retrieve-tracks.d.ts +45 -0
- package/tools/tracks/retrieve-tracks.d.ts.map +1 -0
- package/tools/tracks/retrieve-tracks.js +43 -0
- package/tools/tracks/retrieve-tracks.js.map +1 -0
- package/tools/tracks/retrieve-tracks.mjs +39 -0
- package/tools/tracks/retrieve-tracks.mjs.map +1 -0
- package/tools/types.d.mts +51 -0
- package/tools/types.d.mts.map +1 -0
- package/tools/types.d.ts +51 -0
- package/tools/types.d.ts.map +1 -0
- package/tools/types.js +46 -0
- package/tools/types.js.map +1 -0
- package/tools/types.mjs +42 -0
- package/tools/types.mjs.map +1 -0
- package/tools/users/playlists/create-users-playlists.d.mts +45 -0
- package/tools/users/playlists/create-users-playlists.d.mts.map +1 -0
- package/tools/users/playlists/create-users-playlists.d.ts +45 -0
- package/tools/users/playlists/create-users-playlists.d.ts.map +1 -0
- package/tools/users/playlists/create-users-playlists.js +52 -0
- package/tools/users/playlists/create-users-playlists.js.map +1 -0
- package/tools/users/playlists/create-users-playlists.mjs +48 -0
- package/tools/users/playlists/create-users-playlists.mjs.map +1 -0
- package/tools/users/playlists/list-users-playlists.d.mts +45 -0
- package/tools/users/playlists/list-users-playlists.d.mts.map +1 -0
- package/tools/users/playlists/list-users-playlists.d.ts +45 -0
- package/tools/users/playlists/list-users-playlists.d.ts.map +1 -0
- package/tools/users/playlists/list-users-playlists.js +55 -0
- package/tools/users/playlists/list-users-playlists.js.map +1 -0
- package/tools/users/playlists/list-users-playlists.mjs +51 -0
- package/tools/users/playlists/list-users-playlists.mjs.map +1 -0
- package/tools/users/retrieve-profile-users.d.mts +45 -0
- package/tools/users/retrieve-profile-users.d.mts.map +1 -0
- package/tools/users/retrieve-profile-users.d.ts +45 -0
- package/tools/users/retrieve-profile-users.d.ts.map +1 -0
- package/tools/users/retrieve-profile-users.js +44 -0
- package/tools/users/retrieve-profile-users.js.map +1 -0
- package/tools/users/retrieve-profile-users.mjs +40 -0
- package/tools/users/retrieve-profile-users.mjs.map +1 -0
- package/tools.d.mts +2 -0
- package/tools.d.mts.map +1 -0
- package/tools.d.ts +2 -0
- package/tools.d.ts.map +1 -0
- package/tools.js +18 -0
- package/tools.js.map +1 -0
- package/tools.mjs +2 -0
- package/tools.mjs.map +1 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2025 Spotted
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,440 @@
|
|
|
1
|
+
# Spotted TypeScript MCP Server
|
|
2
|
+
|
|
3
|
+
It is generated with [Stainless](https://www.stainless.com/).
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
### Direct invocation
|
|
8
|
+
|
|
9
|
+
You can run the MCP Server directly via `npx`:
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
export SPOTIFY_CLIENT_ID="My Client ID"
|
|
13
|
+
export SPOTIFY_CLIENT_SECRET="My Client Secret"
|
|
14
|
+
npx -y spotted-ts-mcp@latest
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
### Via MCP Client
|
|
18
|
+
|
|
19
|
+
There is a partial list of existing clients at [modelcontextprotocol.io](https://modelcontextprotocol.io/clients). If you already
|
|
20
|
+
have a client, consult their documentation to install the MCP server.
|
|
21
|
+
|
|
22
|
+
For clients with a configuration JSON, it might look something like this:
|
|
23
|
+
|
|
24
|
+
```json
|
|
25
|
+
{
|
|
26
|
+
"mcpServers": {
|
|
27
|
+
"spotted_ts_api": {
|
|
28
|
+
"command": "npx",
|
|
29
|
+
"args": ["-y", "spotted-ts-mcp", "--client=claude", "--tools=dynamic"],
|
|
30
|
+
"env": {
|
|
31
|
+
"SPOTIFY_CLIENT_ID": "My Client ID",
|
|
32
|
+
"SPOTIFY_CLIENT_SECRET": "My Client Secret"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### Cursor
|
|
40
|
+
|
|
41
|
+
If you use Cursor, you can install the MCP server by using the button below. You will need to set your environment variables
|
|
42
|
+
in Cursor's `mcp.json`, which can be found in Cursor Settings > Tools & MCP > New MCP Server.
|
|
43
|
+
|
|
44
|
+
[](https://cursor.com/en-US/install-mcp?name=spotted-ts-mcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsInNwb3R0ZWQtdHMtbWNwIl0sImVudiI6eyJTUE9USUZZX0NMSUVOVF9JRCI6IlNldCB5b3VyIFNQT1RJRllfQ0xJRU5UX0lEIGhlcmUuIiwiU1BPVElGWV9DTElFTlRfU0VDUkVUIjoiU2V0IHlvdXIgU1BPVElGWV9DTElFTlRfU0VDUkVUIGhlcmUuIn19)
|
|
45
|
+
|
|
46
|
+
### VS Code
|
|
47
|
+
|
|
48
|
+
If you use MCP, you can install the MCP server by clicking the link below. You will need to set your environment variables
|
|
49
|
+
in VS Code's `mcp.json`, which can be found via Command Palette > MCP: Open User Configuration.
|
|
50
|
+
|
|
51
|
+
[Open VS Code](https://vscode.stainless.com/mcp/%7B%22name%22%3A%22spotted-ts-mcp%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22spotted-ts-mcp%22%5D%2C%22env%22%3A%7B%22SPOTIFY_CLIENT_ID%22%3A%22Set%20your%20SPOTIFY_CLIENT_ID%20here.%22%2C%22SPOTIFY_CLIENT_SECRET%22%3A%22Set%20your%20SPOTIFY_CLIENT_SECRET%20here.%22%7D%7D)
|
|
52
|
+
|
|
53
|
+
### Claude Code
|
|
54
|
+
|
|
55
|
+
If you use Claude Code, you can install the MCP server by running the command below in your terminal. You will need to set your
|
|
56
|
+
environment variables in Claude Code's `.claude.json`, which can be found in your home directory.
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
claude mcp add --transport stdio spotted_ts_api --env SPOTIFY_CLIENT_ID="Your SPOTIFY_CLIENT_ID here." SPOTIFY_CLIENT_SECRET="Your SPOTIFY_CLIENT_SECRET here." -- npx -y spotted-ts-mcp
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## Exposing endpoints to your MCP Client
|
|
63
|
+
|
|
64
|
+
There are three ways to expose endpoints as tools in the MCP server:
|
|
65
|
+
|
|
66
|
+
1. Exposing one tool per endpoint, and filtering as necessary
|
|
67
|
+
2. Exposing a set of tools to dynamically discover and invoke endpoints from the API
|
|
68
|
+
3. Exposing a docs search tool and a code execution tool, allowing the client to write code to be executed against the TypeScript client
|
|
69
|
+
|
|
70
|
+
### Filtering endpoints and tools
|
|
71
|
+
|
|
72
|
+
You can run the package on the command line to discover and filter the set of tools that are exposed by the
|
|
73
|
+
MCP Server. This can be helpful for large APIs where including all endpoints at once is too much for your AI's
|
|
74
|
+
context window.
|
|
75
|
+
|
|
76
|
+
You can filter by multiple aspects:
|
|
77
|
+
|
|
78
|
+
- `--tool` includes a specific tool by name
|
|
79
|
+
- `--resource` includes all tools under a specific resource, and can have wildcards, e.g. `my.resource*`
|
|
80
|
+
- `--operation` includes just read (get/list) or just write operations
|
|
81
|
+
|
|
82
|
+
### Dynamic tools
|
|
83
|
+
|
|
84
|
+
If you specify `--tools=dynamic` to the MCP server, instead of exposing one tool per endpoint in the API, it will
|
|
85
|
+
expose the following tools:
|
|
86
|
+
|
|
87
|
+
1. `list_api_endpoints` - Discovers available endpoints, with optional filtering by search query
|
|
88
|
+
2. `get_api_endpoint_schema` - Gets detailed schema information for a specific endpoint
|
|
89
|
+
3. `invoke_api_endpoint` - Executes any endpoint with the appropriate parameters
|
|
90
|
+
|
|
91
|
+
This allows you to have the full set of API endpoints available to your MCP Client, while not requiring that all
|
|
92
|
+
of their schemas be loaded into context at once. Instead, the LLM will automatically use these tools together to
|
|
93
|
+
search for, look up, and invoke endpoints dynamically. However, due to the indirect nature of the schemas, it
|
|
94
|
+
can struggle to provide the correct properties a bit more than when tools are imported explicitly. Therefore,
|
|
95
|
+
you can opt-in to explicit tools, the dynamic tools, or both.
|
|
96
|
+
|
|
97
|
+
See more information with `--help`.
|
|
98
|
+
|
|
99
|
+
All of these command-line options can be repeated, combined together, and have corresponding exclusion versions (e.g. `--no-tool`).
|
|
100
|
+
|
|
101
|
+
Use `--list` to see the list of available tools, or see below.
|
|
102
|
+
|
|
103
|
+
### Code execution
|
|
104
|
+
|
|
105
|
+
If you specify `--tools=code` to the MCP server, it will expose just two tools:
|
|
106
|
+
|
|
107
|
+
- `search_docs` - Searches the API documentation and returns a list of markdown results
|
|
108
|
+
- `execute` - Runs code against the TypeScript client
|
|
109
|
+
|
|
110
|
+
This allows the LLM to implement more complex logic by chaining together many API calls without loading
|
|
111
|
+
intermediary results into its context window.
|
|
112
|
+
|
|
113
|
+
The code execution itself happens in a Deno sandbox that has network access only to the base URL for the API.
|
|
114
|
+
|
|
115
|
+
### Specifying the MCP Client
|
|
116
|
+
|
|
117
|
+
Different clients have varying abilities to handle arbitrary tools and schemas.
|
|
118
|
+
|
|
119
|
+
You can specify the client you are using with the `--client` argument, and the MCP server will automatically
|
|
120
|
+
serve tools and schemas that are more compatible with that client.
|
|
121
|
+
|
|
122
|
+
- `--client=<type>`: Set all capabilities based on a known MCP client
|
|
123
|
+
|
|
124
|
+
- Valid values: `openai-agents`, `claude`, `claude-code`, `cursor`
|
|
125
|
+
- Example: `--client=cursor`
|
|
126
|
+
|
|
127
|
+
Additionally, if you have a client not on the above list, or the client has gotten better
|
|
128
|
+
over time, you can manually enable or disable certain capabilities:
|
|
129
|
+
|
|
130
|
+
- `--capability=<name>`: Specify individual client capabilities
|
|
131
|
+
- Available capabilities:
|
|
132
|
+
- `top-level-unions`: Enable support for top-level unions in tool schemas
|
|
133
|
+
- `valid-json`: Enable JSON string parsing for arguments
|
|
134
|
+
- `refs`: Enable support for $ref pointers in schemas
|
|
135
|
+
- `unions`: Enable support for union types (anyOf) in schemas
|
|
136
|
+
- `formats`: Enable support for format validations in schemas (e.g. date-time, email)
|
|
137
|
+
- `tool-name-length=N`: Set maximum tool name length to N characters
|
|
138
|
+
- Example: `--capability=top-level-unions --capability=tool-name-length=40`
|
|
139
|
+
- Example: `--capability=top-level-unions,tool-name-length=40`
|
|
140
|
+
|
|
141
|
+
### Examples
|
|
142
|
+
|
|
143
|
+
1. Filter for read operations on cards:
|
|
144
|
+
|
|
145
|
+
```bash
|
|
146
|
+
--resource=cards --operation=read
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
2. Exclude specific tools while including others:
|
|
150
|
+
|
|
151
|
+
```bash
|
|
152
|
+
--resource=cards --no-tool=create_cards
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
3. Configure for Cursor client with custom max tool name length:
|
|
156
|
+
|
|
157
|
+
```bash
|
|
158
|
+
--client=cursor --capability=tool-name-length=40
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
4. Complex filtering with multiple criteria:
|
|
162
|
+
|
|
163
|
+
```bash
|
|
164
|
+
--resource=cards,accounts --operation=read --tag=kyc --no-tool=create_cards
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
## Running remotely
|
|
168
|
+
|
|
169
|
+
Launching the client with `--transport=http` launches the server as a remote server using Streamable HTTP transport. The `--port` setting can choose the port it will run on, and the `--socket` setting allows it to run on a Unix socket.
|
|
170
|
+
|
|
171
|
+
A configuration JSON for this server might look like this, assuming the server is hosted at `http://localhost:3000`:
|
|
172
|
+
|
|
173
|
+
```json
|
|
174
|
+
{
|
|
175
|
+
"mcpServers": {
|
|
176
|
+
"spotted_ts_api": {
|
|
177
|
+
"url": "http://localhost:3000"
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
```
|
|
182
|
+
|
|
183
|
+
The command-line arguments for filtering tools and specifying clients can also be used as query parameters in the URL.
|
|
184
|
+
For example, to exclude specific tools while including others, use the URL:
|
|
185
|
+
|
|
186
|
+
```
|
|
187
|
+
http://localhost:3000?resource=cards&resource=accounts&no_tool=create_cards
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
Or, to configure for the Cursor client, with a custom max tool name length, use the URL:
|
|
191
|
+
|
|
192
|
+
```
|
|
193
|
+
http://localhost:3000?client=cursor&capability=tool-name-length%3D40
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
## Importing the tools and server individually
|
|
197
|
+
|
|
198
|
+
```js
|
|
199
|
+
// Import the server, generated endpoints, or the init function
|
|
200
|
+
import { server, endpoints, init } from "spotted-ts-mcp/server";
|
|
201
|
+
|
|
202
|
+
// import a specific tool
|
|
203
|
+
import retrieveAlbums from "spotted-ts-mcp/tools/albums/retrieve-albums";
|
|
204
|
+
|
|
205
|
+
// initialize the server and all endpoints
|
|
206
|
+
init({ server, endpoints });
|
|
207
|
+
|
|
208
|
+
// manually start server
|
|
209
|
+
const transport = new StdioServerTransport();
|
|
210
|
+
await server.connect(transport);
|
|
211
|
+
|
|
212
|
+
// or initialize your own server with specific tools
|
|
213
|
+
const myServer = new McpServer(...);
|
|
214
|
+
|
|
215
|
+
// define your own endpoint
|
|
216
|
+
const myCustomEndpoint = {
|
|
217
|
+
tool: {
|
|
218
|
+
name: 'my_custom_tool',
|
|
219
|
+
description: 'My custom tool',
|
|
220
|
+
inputSchema: zodToJsonSchema(z.object({ a_property: z.string() })),
|
|
221
|
+
},
|
|
222
|
+
handler: async (client: client, args: any) => {
|
|
223
|
+
return { myResponse: 'Hello world!' };
|
|
224
|
+
})
|
|
225
|
+
};
|
|
226
|
+
|
|
227
|
+
// initialize the server with your custom endpoints
|
|
228
|
+
init({ server: myServer, endpoints: [retrieveAlbums, myCustomEndpoint] });
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
## Available Tools
|
|
232
|
+
|
|
233
|
+
The following tools are available in this MCP server.
|
|
234
|
+
|
|
235
|
+
### Resource `albums`:
|
|
236
|
+
|
|
237
|
+
- `retrieve_albums` (`read`): Get Spotify catalog information for a single album.
|
|
238
|
+
- `bulk_retrieve_albums` (`read`): Get Spotify catalog information for multiple albums identified by their Spotify IDs.
|
|
239
|
+
- `list_tracks_albums` (`read`): Get Spotify catalog information about an album’s tracks.
|
|
240
|
+
Optional parameters can be used to limit the number of tracks returned.
|
|
241
|
+
|
|
242
|
+
### Resource `artists`:
|
|
243
|
+
|
|
244
|
+
- `retrieve_artists` (`read`): Get Spotify catalog information for a single artist identified by their unique Spotify ID.
|
|
245
|
+
- `list_artists` (`read`): Get Spotify catalog information for several artists based on their Spotify IDs.
|
|
246
|
+
- `list_albums_artists` (`read`): Get Spotify catalog information about an artist's albums.
|
|
247
|
+
- `list_related_artists_artists` (`read`): Get Spotify catalog information about artists similar to a given artist. Similarity is based on analysis of the Spotify community's listening history.
|
|
248
|
+
- `list_top_tracks_artists` (`read`): Get Spotify catalog information about an artist's top tracks by country.
|
|
249
|
+
|
|
250
|
+
### Resource `shows`:
|
|
251
|
+
|
|
252
|
+
- `retrieve_shows` (`read`): Get Spotify catalog information for a single show identified by its
|
|
253
|
+
unique Spotify ID.
|
|
254
|
+
- `list_shows` (`read`): Get Spotify catalog information for several shows based on their Spotify IDs.
|
|
255
|
+
- `list_episodes_shows` (`read`): Get Spotify catalog information about an show’s episodes. Optional parameters can be used to limit the number of episodes returned.
|
|
256
|
+
|
|
257
|
+
### Resource `episodes`:
|
|
258
|
+
|
|
259
|
+
- `retrieve_episodes` (`read`): Get Spotify catalog information for a single episode identified by its
|
|
260
|
+
unique Spotify ID.
|
|
261
|
+
- `list_episodes` (`read`): Get Spotify catalog information for several episodes based on their Spotify IDs.
|
|
262
|
+
|
|
263
|
+
### Resource `audiobooks`:
|
|
264
|
+
|
|
265
|
+
- `retrieve_audiobooks` (`read`): Get Spotify catalog information for a single audiobook. Audiobooks are only available within the US, UK, Canada, Ireland, New Zealand and Australia markets.
|
|
266
|
+
- `list_audiobooks` (`read`): Get Spotify catalog information for several audiobooks identified by their Spotify IDs. Audiobooks are only available within the US, UK, Canada, Ireland, New Zealand and Australia markets.
|
|
267
|
+
- `list_chapters_audiobooks` (`read`): Get Spotify catalog information about an audiobook's chapters. Audiobooks are only available within the US, UK, Canada, Ireland, New Zealand and Australia markets.
|
|
268
|
+
|
|
269
|
+
### Resource `me`:
|
|
270
|
+
|
|
271
|
+
- `retrieve_me` (`read`): Get detailed profile information about the current user (including the
|
|
272
|
+
current user's username).
|
|
273
|
+
|
|
274
|
+
### Resource `me.audiobooks`:
|
|
275
|
+
|
|
276
|
+
- `list_me_audiobooks` (`read`): Get a list of the audiobooks saved in the current Spotify user's 'Your Music' library.
|
|
277
|
+
- `check_me_audiobooks` (`read`): Check if one or more audiobooks are already saved in the current Spotify user's library.
|
|
278
|
+
- `remove_me_audiobooks` (`write`): Remove one or more audiobooks from the Spotify user's library.
|
|
279
|
+
- `save_me_audiobooks` (`write`): Save one or more audiobooks to the current Spotify user's library.
|
|
280
|
+
|
|
281
|
+
### Resource `me.playlists`:
|
|
282
|
+
|
|
283
|
+
- `list_me_playlists` (`read`): Get a list of the playlists owned or followed by the current Spotify
|
|
284
|
+
user.
|
|
285
|
+
|
|
286
|
+
### Resource `me.top`:
|
|
287
|
+
|
|
288
|
+
- `list_top_artists_me_top` (`read`): Get the current user's top artists based on calculated affinity.
|
|
289
|
+
- `list_top_tracks_me_top` (`read`): Get the current user's top tracks based on calculated affinity.
|
|
290
|
+
|
|
291
|
+
### Resource `me.albums`:
|
|
292
|
+
|
|
293
|
+
- `list_me_albums` (`read`): Get a list of the albums saved in the current Spotify user's 'Your Music' library.
|
|
294
|
+
- `check_me_albums` (`read`): Check if one or more albums is already saved in the current Spotify user's 'Your Music' library.
|
|
295
|
+
- `remove_me_albums` (`write`): Remove one or more albums from the current user's 'Your Music' library.
|
|
296
|
+
- `save_me_albums` (`write`): Save one or more albums to the current user's 'Your Music' library.
|
|
297
|
+
|
|
298
|
+
### Resource `me.tracks`:
|
|
299
|
+
|
|
300
|
+
- `list_me_tracks` (`read`): Get a list of the songs saved in the current Spotify user's 'Your Music' library.
|
|
301
|
+
- `check_me_tracks` (`read`): Check if one or more tracks is already saved in the current Spotify user's 'Your Music' library.
|
|
302
|
+
- `remove_me_tracks` (`write`): Remove one or more tracks from the current user's 'Your Music' library.
|
|
303
|
+
- `save_me_tracks` (`write`): Save one or more tracks to the current user's 'Your Music' library.
|
|
304
|
+
|
|
305
|
+
### Resource `me.episodes`:
|
|
306
|
+
|
|
307
|
+
- `list_me_episodes` (`read`): Get a list of the episodes saved in the current Spotify user's library.<br/>
|
|
308
|
+
This API endpoint is in **beta** and could change without warning. Please share any feedback that you have, or issues that you discover, in our [developer community forum](https://community.spotify.com/t5/Spotify-for-Developers/bd-p/Spotify_Developer).
|
|
309
|
+
- `check_me_episodes` (`read`): Check if one or more episodes is already saved in the current Spotify user's 'Your Episodes' library.<br/>
|
|
310
|
+
This API endpoint is in **beta** and could change without warning. Please share any feedback that you have, or issues that you discover, in our [developer community forum](https://community.spotify.com/t5/Spotify-for-Developers/bd-p/Spotify_Developer)..
|
|
311
|
+
- `remove_me_episodes` (`write`): Remove one or more episodes from the current user's library.<br/>
|
|
312
|
+
This API endpoint is in **beta** and could change without warning. Please share any feedback that you have, or issues that you discover, in our [developer community forum](https://community.spotify.com/t5/Spotify-for-Developers/bd-p/Spotify_Developer).
|
|
313
|
+
- `save_me_episodes` (`write`): Save one or more episodes to the current user's library.<br/>
|
|
314
|
+
This API endpoint is in **beta** and could change without warning. Please share any feedback that you have, or issues that you discover, in our [developer community forum](https://community.spotify.com/t5/Spotify-for-Developers/bd-p/Spotify_Developer).
|
|
315
|
+
|
|
316
|
+
### Resource `me.shows`:
|
|
317
|
+
|
|
318
|
+
- `list_me_shows` (`read`): Get a list of shows saved in the current Spotify user's library. Optional parameters can be used to limit the number of shows returned.
|
|
319
|
+
- `check_me_shows` (`read`): Check if one or more shows is already saved in the current Spotify user's library.
|
|
320
|
+
- `remove_me_shows` (`write`): Delete one or more shows from current Spotify user's library.
|
|
321
|
+
- `save_me_shows` (`write`): Save one or more shows to current Spotify user's library.
|
|
322
|
+
|
|
323
|
+
### Resource `me.following`:
|
|
324
|
+
|
|
325
|
+
- `list_me_following` (`read`): Get the current user's followed artists.
|
|
326
|
+
- `check_me_following` (`read`): Check to see if the current user is following one or more artists or other Spotify users.
|
|
327
|
+
- `follow_me_following` (`write`): Add the current user as a follower of one or more artists or other Spotify users.
|
|
328
|
+
- `unfollow_me_following` (`write`): Remove the current user as a follower of one or more artists or other Spotify users.
|
|
329
|
+
|
|
330
|
+
### Resource `me.player`:
|
|
331
|
+
|
|
332
|
+
- `get_currently_playing_me_player` (`read`): Get the object currently being played on the user's Spotify account.
|
|
333
|
+
- `get_devices_me_player` (`read`): Get information about a user’s available Spotify Connect devices. Some device models are not supported and will not be listed in the API response.
|
|
334
|
+
- `get_state_me_player` (`read`): Get information about the user’s current playback state, including track or episode, progress, and active device.
|
|
335
|
+
- `list_recently_played_me_player` (`read`): Get tracks from the current user's recently played tracks.
|
|
336
|
+
_**Note**: Currently doesn't support podcast episodes._
|
|
337
|
+
- `pause_playback_me_player` (`write`): Pause playback on the user's account. This API only works for users who have Spotify Premium. The order of execution is not guaranteed when you use this API with other Player API endpoints.
|
|
338
|
+
- `seek_to_position_me_player` (`write`): Seeks to the given position in the user’s currently playing track. This API only works for users who have Spotify Premium. The order of execution is not guaranteed when you use this API with other Player API endpoints.
|
|
339
|
+
- `set_repeat_mode_me_player` (`write`): Set the repeat mode for the user's playback. This API only works for users who have Spotify Premium. The order of execution is not guaranteed when you use this API with other Player API endpoints.
|
|
340
|
+
- `set_volume_me_player` (`write`): Set the volume for the user’s current playback device. This API only works for users who have Spotify Premium. The order of execution is not guaranteed when you use this API with other Player API endpoints.
|
|
341
|
+
- `skip_next_me_player` (`write`): Skips to next track in the user’s queue. This API only works for users who have Spotify Premium. The order of execution is not guaranteed when you use this API with other Player API endpoints.
|
|
342
|
+
- `skip_previous_me_player` (`write`): Skips to previous track in the user’s queue. This API only works for users who have Spotify Premium. The order of execution is not guaranteed when you use this API with other Player API endpoints.
|
|
343
|
+
- `start_playback_me_player` (`write`): Start a new context or resume current playback on the user's active device. This API only works for users who have Spotify Premium. The order of execution is not guaranteed when you use this API with other Player API endpoints.
|
|
344
|
+
- `toggle_shuffle_me_player` (`write`): Toggle shuffle on or off for user’s playback. This API only works for users who have Spotify Premium. The order of execution is not guaranteed when you use this API with other Player API endpoints.
|
|
345
|
+
- `transfer_me_player` (`write`): Transfer playback to a new device and optionally begin playback. This API only works for users who have Spotify Premium. The order of execution is not guaranteed when you use this API with other Player API endpoints.
|
|
346
|
+
|
|
347
|
+
### Resource `me.player.queue`:
|
|
348
|
+
|
|
349
|
+
- `add_player_me_queue` (`write`): Add an item to be played next in the user's current playback queue. This API only works for users who have Spotify Premium. The order of execution is not guaranteed when you use this API with other Player API endpoints.
|
|
350
|
+
- `get_player_me_queue` (`read`): Get the list of objects that make up the user's queue.
|
|
351
|
+
|
|
352
|
+
### Resource `chapters`:
|
|
353
|
+
|
|
354
|
+
- `retrieve_chapters` (`read`): Get Spotify catalog information for a single audiobook chapter. Chapters are only available within the US, UK, Canada, Ireland, New Zealand and Australia markets.
|
|
355
|
+
- `list_chapters` (`read`): Get Spotify catalog information for several audiobook chapters identified by their Spotify IDs. Chapters are only available within the US, UK, Canada, Ireland, New Zealand and Australia markets.
|
|
356
|
+
|
|
357
|
+
### Resource `tracks`:
|
|
358
|
+
|
|
359
|
+
- `retrieve_tracks` (`read`): Get Spotify catalog information for a single track identified by its
|
|
360
|
+
unique Spotify ID.
|
|
361
|
+
- `list_tracks` (`read`): Get Spotify catalog information for multiple tracks based on their Spotify IDs.
|
|
362
|
+
|
|
363
|
+
### Resource `search`:
|
|
364
|
+
|
|
365
|
+
- `retrieve_search` (`read`): Get Spotify catalog information about albums, artists, playlists, tracks, shows, episodes or audiobooks
|
|
366
|
+
that match a keyword string. Audiobooks are only available within the US, UK, Canada, Ireland, New Zealand and Australia markets.
|
|
367
|
+
|
|
368
|
+
### Resource `playlists`:
|
|
369
|
+
|
|
370
|
+
- `retrieve_playlists` (`read`): Get a playlist owned by a Spotify user.
|
|
371
|
+
- `update_playlists` (`write`): Change a playlist's name and public/private state. (The user must, of
|
|
372
|
+
course, own the playlist.)
|
|
373
|
+
|
|
374
|
+
### Resource `playlists.tracks`:
|
|
375
|
+
|
|
376
|
+
- `update_playlists_tracks` (`write`): Either reorder or replace items in a playlist depending on the request's parameters.
|
|
377
|
+
To reorder items, include `range_start`, `insert_before`, `range_length` and `snapshot_id` in the request's body.
|
|
378
|
+
To replace items, include `uris` as either a query parameter or in the request's body.
|
|
379
|
+
Replacing items in a playlist will overwrite its existing items. This operation can be used for replacing or clearing items in a playlist.
|
|
380
|
+
<br/>
|
|
381
|
+
**Note**: Replace and reorder are mutually exclusive operations which share the same endpoint, but have different parameters.
|
|
382
|
+
These operations can't be applied together in a single request.
|
|
383
|
+
- `list_playlists_tracks` (`read`): Get full details of the items of a playlist owned by a Spotify user.
|
|
384
|
+
- `add_playlists_tracks` (`write`): Add one or more items to a user's playlist.
|
|
385
|
+
- `remove_playlists_tracks` (`write`): Remove one or more items from a user's playlist.
|
|
386
|
+
|
|
387
|
+
### Resource `playlists.followers`:
|
|
388
|
+
|
|
389
|
+
- `check_playlists_followers` (`read`): Check to see if the current user is following a specified playlist.
|
|
390
|
+
- `follow_playlists_followers` (`write`): Add the current user as a follower of a playlist.
|
|
391
|
+
- `unfollow_playlists_followers` (`write`): Remove the current user as a follower of a playlist.
|
|
392
|
+
|
|
393
|
+
### Resource `playlists.images`:
|
|
394
|
+
|
|
395
|
+
- `update_playlists_images` (`write`): Replace the image used to represent a specific playlist.
|
|
396
|
+
- `list_playlists_images` (`read`): Get the current image associated with a specific playlist.
|
|
397
|
+
|
|
398
|
+
### Resource `users`:
|
|
399
|
+
|
|
400
|
+
- `retrieve_profile_users` (`read`): Get public profile information about a Spotify user.
|
|
401
|
+
|
|
402
|
+
### Resource `users.playlists`:
|
|
403
|
+
|
|
404
|
+
- `create_users_playlists` (`write`): Create a playlist for a Spotify user. (The playlist will be empty until
|
|
405
|
+
you [add tracks](/documentation/web-api/reference/add-tracks-to-playlist).)
|
|
406
|
+
Each user is generally limited to a maximum of 11000 playlists.
|
|
407
|
+
- `list_users_playlists` (`read`): Get a list of the playlists owned or followed by a Spotify user.
|
|
408
|
+
|
|
409
|
+
### Resource `browse`:
|
|
410
|
+
|
|
411
|
+
- `get_featured_playlists_browse` (`read`): Get a list of Spotify featured playlists (shown, for example, on a Spotify player's 'Browse' tab).
|
|
412
|
+
- `get_new_releases_browse` (`read`): Get a list of new album releases featured in Spotify (shown, for example, on a Spotify player’s “Browse” tab).
|
|
413
|
+
|
|
414
|
+
### Resource `browse.categories`:
|
|
415
|
+
|
|
416
|
+
- `retrieve_browse_categories` (`read`): Get a single category used to tag items in Spotify (on, for example, the Spotify player’s “Browse” tab).
|
|
417
|
+
- `list_browse_categories` (`read`): Get a list of categories used to tag items in Spotify (on, for example, the Spotify player’s “Browse” tab).
|
|
418
|
+
- `get_playlists_browse_categories` (`read`): Get a list of Spotify playlists tagged with a particular category.
|
|
419
|
+
|
|
420
|
+
### Resource `audio_features`:
|
|
421
|
+
|
|
422
|
+
- `retrieve_audio_features` (`read`): Get audio feature information for a single track identified by its unique
|
|
423
|
+
Spotify ID.
|
|
424
|
+
- `list_audio_features` (`read`): Get audio features for multiple tracks based on their Spotify IDs.
|
|
425
|
+
|
|
426
|
+
### Resource `audio_analysis`:
|
|
427
|
+
|
|
428
|
+
- `retrieve_audio_analysis` (`read`): Get a low-level audio analysis for a track in the Spotify catalog. The audio analysis describes the track’s structure and musical content, including rhythm, pitch, and timbre.
|
|
429
|
+
|
|
430
|
+
### Resource `recommendations`:
|
|
431
|
+
|
|
432
|
+
- `get_recommendations` (`read`): Recommendations are generated based on the available information for a given seed entity and matched against similar artists and tracks. If there is sufficient information about the provided seeds, a list of tracks will be returned together with pool size details.
|
|
433
|
+
|
|
434
|
+
For artists and tracks that are very new or obscure there might not be enough data to generate a list of tracks.
|
|
435
|
+
|
|
436
|
+
- `list_available_genre_seeds_recommendations` (`read`): Retrieve a list of available genres seed parameter values for [recommendations](/documentation/web-api/reference/get-recommendations).
|
|
437
|
+
|
|
438
|
+
### Resource `markets`:
|
|
439
|
+
|
|
440
|
+
- `list_markets` (`read`): Get the list of markets where Spotify is available.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.workerPath = void 0;
|
|
5
|
+
exports.workerPath = require.resolve('./code-tool-worker.mjs');
|
|
6
|
+
//# sourceMappingURL=code-tool-paths.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"code-tool-paths.cjs","sourceRoot":"","sources":["src/code-tool-paths.cts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEzE,QAAA,UAAU,GAAG,OAAO,CAAC,OAAO,CAAC,wBAAwB,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"code-tool-paths.d.cts","sourceRoot":"","sources":["src/code-tool-paths.cts"],"names":[],"mappings":"AAEA,eAAO,MAAM,UAAU,QAA4C,CAAC"}
|