├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── formatter.js │ └── web.yml ├── .gitignore ├── LICENSE ├── README.md ├── fetchEndpointStructs.js ├── index.ts ├── jest.config.js ├── package.json ├── resources ├── enums.ts └── structs.ts ├── src ├── client │ └── Client.ts ├── exceptions │ ├── FortniteAPIError.ts │ ├── InvalidAPIKeyError.ts │ └── MissingAPIKeyError.ts ├── http │ ├── HTTP.ts │ ├── autogeneratedEndpointStructs.ts │ └── httpStructs.ts └── util │ └── util.ts ├── tests └── client.test.js ├── tsconfig.json └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/.github/workflows/formatter.js -------------------------------------------------------------------------------- /.github/workflows/web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/.github/workflows/web.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/README.md -------------------------------------------------------------------------------- /fetchEndpointStructs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/fetchEndpointStructs.js -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/index.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/package.json -------------------------------------------------------------------------------- /resources/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/resources/enums.ts -------------------------------------------------------------------------------- /resources/structs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/resources/structs.ts -------------------------------------------------------------------------------- /src/client/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/src/client/Client.ts -------------------------------------------------------------------------------- /src/exceptions/FortniteAPIError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/src/exceptions/FortniteAPIError.ts -------------------------------------------------------------------------------- /src/exceptions/InvalidAPIKeyError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/src/exceptions/InvalidAPIKeyError.ts -------------------------------------------------------------------------------- /src/exceptions/MissingAPIKeyError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/src/exceptions/MissingAPIKeyError.ts -------------------------------------------------------------------------------- /src/http/HTTP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/src/http/HTTP.ts -------------------------------------------------------------------------------- /src/http/autogeneratedEndpointStructs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/src/http/autogeneratedEndpointStructs.ts -------------------------------------------------------------------------------- /src/http/httpStructs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/src/http/httpStructs.ts -------------------------------------------------------------------------------- /src/util/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/src/util/util.ts -------------------------------------------------------------------------------- /tests/client.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/tests/client.test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fortnite-API/nodejs-wrapper/HEAD/webpack.config.js --------------------------------------------------------------------------------