├── .gitattributes ├── .github ├── renovate.json └── workflows │ ├── docs.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── babel.config.js ├── docs ├── .nojekyll ├── assets │ ├── highlight.css │ ├── main.js │ ├── search.js │ └── style.css ├── classes │ └── Spotify.html ├── index.html └── modules.html ├── jest.config.ts ├── package.json ├── src ├── Manager │ ├── Album.ts │ ├── Artist.ts │ ├── BaseManager.ts │ ├── Episode.ts │ ├── Playlist.ts │ ├── Show.ts │ ├── Track.ts │ ├── __tests__ │ │ ├── getAlbum.test.ts │ │ ├── getArtist.test.ts │ │ ├── getEpisode.test.ts │ │ ├── getPlaylist.test.ts │ │ ├── getShow.test.ts │ │ └── getTrack.test.ts │ └── index.ts ├── index.ts ├── plugin.ts ├── resolver.ts └── typings │ └── index.ts ├── tsconfig.json └── typedoc.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | coverage -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/docs/.nojekyll -------------------------------------------------------------------------------- /docs/assets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/docs/assets/highlight.css -------------------------------------------------------------------------------- /docs/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/docs/assets/main.js -------------------------------------------------------------------------------- /docs/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/docs/assets/search.js -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/classes/Spotify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/docs/classes/Spotify.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/docs/modules.html -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/package.json -------------------------------------------------------------------------------- /src/Manager/Album.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/src/Manager/Album.ts -------------------------------------------------------------------------------- /src/Manager/Artist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/src/Manager/Artist.ts -------------------------------------------------------------------------------- /src/Manager/BaseManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/src/Manager/BaseManager.ts -------------------------------------------------------------------------------- /src/Manager/Episode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/src/Manager/Episode.ts -------------------------------------------------------------------------------- /src/Manager/Playlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/src/Manager/Playlist.ts -------------------------------------------------------------------------------- /src/Manager/Show.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/src/Manager/Show.ts -------------------------------------------------------------------------------- /src/Manager/Track.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/src/Manager/Track.ts -------------------------------------------------------------------------------- /src/Manager/__tests__/getAlbum.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/src/Manager/__tests__/getAlbum.test.ts -------------------------------------------------------------------------------- /src/Manager/__tests__/getArtist.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/src/Manager/__tests__/getArtist.test.ts -------------------------------------------------------------------------------- /src/Manager/__tests__/getEpisode.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/src/Manager/__tests__/getEpisode.test.ts -------------------------------------------------------------------------------- /src/Manager/__tests__/getPlaylist.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/src/Manager/__tests__/getPlaylist.test.ts -------------------------------------------------------------------------------- /src/Manager/__tests__/getShow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/src/Manager/__tests__/getShow.test.ts -------------------------------------------------------------------------------- /src/Manager/__tests__/getTrack.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/src/Manager/__tests__/getTrack.test.ts -------------------------------------------------------------------------------- /src/Manager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/src/Manager/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/src/plugin.ts -------------------------------------------------------------------------------- /src/resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/src/resolver.ts -------------------------------------------------------------------------------- /src/typings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/src/typings/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NezuChan/better-erela.js-spotify/HEAD/typedoc.json --------------------------------------------------------------------------------