├── .appveyor.yml ├── .editorconfig ├── .gitignore ├── .istanbul.yml ├── .travis.yml ├── LICENSE ├── README.DEV.md ├── README.md ├── coverageconfig.json ├── dist ├── RateLimit │ ├── index.d.ts │ └── index.js ├── RateLimiter │ ├── index.d.ts │ └── index.js ├── RiotRateLimiter │ ├── index.d.ts │ └── index.js ├── errors │ ├── RiotRateLimiterParameterError.d.ts │ ├── RiotRateLimiterParameterError.js │ ├── RiotRateLimiterQueryError.d.ts │ ├── RiotRateLimiterQueryError.js │ ├── RiotRateLimiterSchedulingError.d.ts │ ├── RiotRateLimiterSchedulingError.js │ ├── RiotRateLimiterUnchainError.d.ts │ └── RiotRateLimiterUnchainError.js ├── index.d.ts └── index.js ├── package.json ├── scripts ├── postinstall.js ├── remapped-coverage.js └── tasks │ └── repo-url.js ├── src ├── RateLimit │ ├── index.ts │ └── test.ts ├── RateLimiter │ ├── index.ts │ └── test.ts ├── RiotRateLimiter │ ├── index.ts │ └── test.ts ├── errors │ ├── RiotRateLimiterParameterError.ts │ ├── RiotRateLimiterQueryError.ts │ ├── RiotRateLimiterSchedulingError.ts │ └── RiotRateLimiterUnchainError.ts └── index.ts ├── test └── mocha.opts ├── tsconfig.dist.json ├── tsconfig.json └── tslint.json /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/.gitignore -------------------------------------------------------------------------------- /.istanbul.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/.istanbul.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/LICENSE -------------------------------------------------------------------------------- /README.DEV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/README.DEV.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/README.md -------------------------------------------------------------------------------- /coverageconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/coverageconfig.json -------------------------------------------------------------------------------- /dist/RateLimit/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/dist/RateLimit/index.d.ts -------------------------------------------------------------------------------- /dist/RateLimit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/dist/RateLimit/index.js -------------------------------------------------------------------------------- /dist/RateLimiter/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/dist/RateLimiter/index.d.ts -------------------------------------------------------------------------------- /dist/RateLimiter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/dist/RateLimiter/index.js -------------------------------------------------------------------------------- /dist/RiotRateLimiter/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/dist/RiotRateLimiter/index.d.ts -------------------------------------------------------------------------------- /dist/RiotRateLimiter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/dist/RiotRateLimiter/index.js -------------------------------------------------------------------------------- /dist/errors/RiotRateLimiterParameterError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/dist/errors/RiotRateLimiterParameterError.d.ts -------------------------------------------------------------------------------- /dist/errors/RiotRateLimiterParameterError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/dist/errors/RiotRateLimiterParameterError.js -------------------------------------------------------------------------------- /dist/errors/RiotRateLimiterQueryError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/dist/errors/RiotRateLimiterQueryError.d.ts -------------------------------------------------------------------------------- /dist/errors/RiotRateLimiterQueryError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/dist/errors/RiotRateLimiterQueryError.js -------------------------------------------------------------------------------- /dist/errors/RiotRateLimiterSchedulingError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/dist/errors/RiotRateLimiterSchedulingError.d.ts -------------------------------------------------------------------------------- /dist/errors/RiotRateLimiterSchedulingError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/dist/errors/RiotRateLimiterSchedulingError.js -------------------------------------------------------------------------------- /dist/errors/RiotRateLimiterUnchainError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/dist/errors/RiotRateLimiterUnchainError.d.ts -------------------------------------------------------------------------------- /dist/errors/RiotRateLimiterUnchainError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/dist/errors/RiotRateLimiterUnchainError.js -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/dist/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/package.json -------------------------------------------------------------------------------- /scripts/postinstall.js: -------------------------------------------------------------------------------- 1 | 2 | require('./tasks/repo-url').validate(); 3 | 4 | -------------------------------------------------------------------------------- /scripts/remapped-coverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/scripts/remapped-coverage.js -------------------------------------------------------------------------------- /scripts/tasks/repo-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/scripts/tasks/repo-url.js -------------------------------------------------------------------------------- /src/RateLimit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/src/RateLimit/index.ts -------------------------------------------------------------------------------- /src/RateLimit/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/src/RateLimit/test.ts -------------------------------------------------------------------------------- /src/RateLimiter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/src/RateLimiter/index.ts -------------------------------------------------------------------------------- /src/RateLimiter/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/src/RateLimiter/test.ts -------------------------------------------------------------------------------- /src/RiotRateLimiter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/src/RiotRateLimiter/index.ts -------------------------------------------------------------------------------- /src/RiotRateLimiter/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/src/RiotRateLimiter/test.ts -------------------------------------------------------------------------------- /src/errors/RiotRateLimiterParameterError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/src/errors/RiotRateLimiterParameterError.ts -------------------------------------------------------------------------------- /src/errors/RiotRateLimiterQueryError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/src/errors/RiotRateLimiterQueryError.ts -------------------------------------------------------------------------------- /src/errors/RiotRateLimiterSchedulingError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/src/errors/RiotRateLimiterSchedulingError.ts -------------------------------------------------------------------------------- /src/errors/RiotRateLimiterUnchainError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/src/errors/RiotRateLimiterUnchainError.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /tsconfig.dist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/tsconfig.dist.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colorfulstan/RiotRateLimiter-node/HEAD/tslint.json --------------------------------------------------------------------------------