├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── ghcr.yml ├── .gitignore ├── .yarnclean ├── Dockerfile ├── LICENSE ├── README.md ├── __test__ ├── gameservers.test.js ├── maplist.test.js ├── mapstats.test.js ├── matches.test.js ├── playerstats.test.js ├── seasons.test.js ├── teams.test.js ├── users.test.js ├── vetoes.test.js └── vetosides.test.js ├── app.ts ├── bin └── www.ts ├── config ├── .gitkeep ├── development.json.template ├── production.json.template └── test.json.template ├── docker-compose.yml ├── jest.config.js ├── jest_config ├── jest.gameservers.config.cjs ├── jest.maplist.config.cjs ├── jest.mapstats.config.cjs ├── jest.matches.config.cjs ├── jest.playerstats.config.cjs ├── jest.seasons.config.cjs ├── jest.teams.config.cjs ├── jest.users.config.cjs ├── jest.vetoes.config.cjs ├── jest.vetosides.config.cjs └── test-teardown-globals.cjs ├── jsdoc.conf.json ├── migrations ├── development │ ├── 20191109191155-get5db.js │ ├── 20201011041344-get5db.js │ ├── 20201017154717-get5db.js │ ├── 20201017172331-get5db.js │ ├── 20201017183917-get5db.js │ ├── 20201024182100-get5db.js │ ├── 20201026130830-get5db.js │ ├── 20201117134259-get5db.js │ ├── 20201118184033-get5db.js │ ├── 20210107194928-get5db.js │ ├── 20210115022423-get5db.js │ ├── 20210123062442-get5db.js │ ├── 20210124162658-get5db.js │ ├── 20210201015955-get5db.js │ ├── 20211125150429-get5db.js │ ├── 20220211220305-get5db.js │ ├── 20220217155106-get5db.js │ ├── 20220224150005-get5db.js │ ├── 20220325155055-get5db.js │ ├── 20220713153034-get5db.js │ ├── 20220907171148-get5db.js │ ├── 20220908135836-get5db.js │ ├── 20230615140704-get5db.js │ ├── 20230625215254-get5db.js │ ├── 20230626223210-get5db.js │ ├── 20230629010420-get5db.js │ ├── 20230630204451-get5db.js │ └── package.json ├── production │ ├── 20191109191155-get5db.js │ ├── 20201011041344-get5db.js │ ├── 20201017154717-get5db.js │ ├── 20201017172331-get5db.js │ ├── 20201017183917-get5db.js │ ├── 20201024182100-get5db.js │ ├── 20201026130830-get5db.js │ ├── 20201117134259-get5db.js │ ├── 20201118184033-get5db.js │ ├── 20210107194928-get5db.js │ ├── 20210115022423-get5db.js │ ├── 20210123062442-get5db.js │ ├── 20210124162658-get5db.js │ ├── 20210201015955-get5db.js │ ├── 20211125150429-get5db.js │ ├── 20220211220305-get5db.js │ ├── 20220217155106-get5db.js │ ├── 20220224150005-get5db.js │ ├── 20220325155055-get5db.js │ ├── 20220713153034-get5db.js │ ├── 20220907171148-get5db.js │ ├── 20220908135836-get5db.js │ ├── 20230615140704-get5db.js │ ├── 20230625215254-get5db.js │ ├── 20230626223210-get5db.js │ ├── 20230629010420-get5db.js │ ├── 20230630204451-get5db.js │ └── package.json └── test │ ├── 20191109191155-get5db.js │ ├── 20201011041344-get5db.js │ ├── 20201017154717-get5db.js │ ├── 20201017172331-get5db.js │ ├── 20201017183917-get5db.js │ ├── 20201024182100-get5db.js │ ├── 20201026130830-get5db.js │ ├── 20201117134259-get5db.js │ ├── 20201118184033-get5db.js │ ├── 20210107194928-get5db.js │ ├── 20210115022423-get5db.js │ ├── 20210123062442-get5db.js │ ├── 20210124162658-get5db.js │ ├── 20210201015955-get5db.js │ ├── 20211125150429-get5db.js │ ├── 20220211220305-get5db.js │ ├── 20220217155106-get5db.js │ ├── 20220224150005-get5db.js │ ├── 20220325155055-get5db.js │ ├── 20220713153034-get5db.js │ ├── 20220907171148-get5db.js │ ├── 20220908135836-get5db.js │ ├── 20230615140704-get5db.js │ ├── 20230625215254-get5db.js │ ├── 20230626223210-get5db.js │ ├── 20230629010420-get5db.js │ ├── 20230630204451-get5db.js │ └── package.json ├── package.json ├── prodrun.json ├── public ├── backups │ └── .gitkeep ├── demos │ └── .gitkeep └── img │ └── logos │ └── .gitkeep ├── src ├── @types │ └── express │ │ └── index.d.ts ├── routes │ ├── index.ts │ ├── leaderboard.ts │ ├── legacy │ │ └── api.ts │ ├── maps.ts │ ├── mapstats.ts │ ├── matches │ │ ├── matches.ts │ │ └── matchserver.ts │ ├── playerstats │ │ ├── extrastats.ts │ │ └── playerstats.ts │ ├── seasons.ts │ ├── servers.ts │ ├── teams.ts │ ├── users.ts │ ├── v2 │ │ ├── api.ts │ │ ├── backupapi.ts │ │ └── demoapi.ts │ ├── vetoes.ts │ └── vetosides.ts ├── services │ ├── challonge.ts │ ├── db.ts │ ├── mapflowservices.ts │ └── seriesflowservices.ts ├── types │ ├── Get5_Assist.ts │ ├── Get5_Attacker.ts │ ├── Get5_OnEvent.ts │ ├── Get5_Player.ts │ ├── Get5_Stats.ts │ ├── Get5_Team.ts │ ├── Get5_Weapon.ts │ ├── Get5_Winner.ts │ ├── User.ts │ ├── leaderboard │ │ ├── Player.ts │ │ └── TeamStanding.ts │ ├── map_flow │ │ ├── Get5_OnBombEvent.ts │ │ ├── Get5_OnGoingLive.ts │ │ ├── Get5_OnMatchPausedUnpaused.ts │ │ ├── Get5_OnPlayerBecameMvp.ts │ │ ├── Get5_OnPlayerDeath.ts │ │ ├── Get5_OnRoundEnd.ts │ │ └── Get5_OnRoundStart.ts │ ├── maps │ │ └── MapObject.ts │ ├── mapstats │ │ ├── AccessMessage.ts │ │ └── MapStats.ts │ ├── matches │ │ ├── MatchData.ts │ │ ├── MatchJson.ts │ │ └── MatchPauseData.ts │ ├── playerstats │ │ ├── PlayerDatabaseObject.ts │ │ └── PlayerObject.ts │ ├── seasons │ │ ├── SeasonCvarObject.ts │ │ └── SeasonObject.ts │ ├── series_flow │ │ ├── Get5_OnBackupRestore.ts │ │ ├── Get5_OnMapResult.ts │ │ ├── Get5_OnSeriesResult.ts │ │ └── veto │ │ │ ├── Get5_OnMapPicked.ts │ │ │ ├── Get5_OnMapVetoed.ts │ │ │ └── Get5_OnSidePicked.ts │ ├── serverrcon │ │ └── SteamApiResponse.ts │ ├── servers │ │ └── GameServerObject.ts │ ├── swagger │ │ ├── Get5_Assist.yaml │ │ ├── Get5_Attacker.yaml │ │ ├── Get5_Player.yaml │ │ ├── Get5_Stats.yaml │ │ ├── Get5_Team.yaml │ │ ├── Get5_Weapon.yaml │ │ ├── Get5_Winner.yaml │ │ ├── map_flow │ │ │ ├── Get5_OnBombDefused.yaml │ │ │ ├── Get5_OnBombPlanted.yaml │ │ │ ├── Get5_OnMatchPausedUnpaused.yaml │ │ │ ├── Get5_OnPlayerBecameMvp.yaml │ │ │ ├── Get5_OnPlayerDeath.yaml │ │ │ └── Get5_OnRoundEnd.yaml │ │ └── series_flow │ │ │ ├── Get5_OnBackupRestore.yaml │ │ │ ├── Get5_OnMapResult.yaml │ │ │ ├── Get5_OnSeriesInit.yaml │ │ │ └── Get5_OnSeriesResult.yaml │ ├── teams │ │ ├── AuthData.ts │ │ └── TeamData.ts │ ├── users │ │ └── UserObject.ts │ └── vetoes │ │ ├── VetoObject.ts │ │ └── VetoSideObject.ts └── utility │ ├── auth.ts │ ├── emitter.ts │ ├── mockProfile.ts │ ├── mockstrategy.ts │ ├── serverrcon.ts │ └── utils.ts ├── tsconfig.json └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ghcr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/.github/workflows/ghcr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/.gitignore -------------------------------------------------------------------------------- /.yarnclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/.yarnclean -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/README.md -------------------------------------------------------------------------------- /__test__/gameservers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/__test__/gameservers.test.js -------------------------------------------------------------------------------- /__test__/maplist.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/__test__/maplist.test.js -------------------------------------------------------------------------------- /__test__/mapstats.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/__test__/mapstats.test.js -------------------------------------------------------------------------------- /__test__/matches.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/__test__/matches.test.js -------------------------------------------------------------------------------- /__test__/playerstats.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/__test__/playerstats.test.js -------------------------------------------------------------------------------- /__test__/seasons.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/__test__/seasons.test.js -------------------------------------------------------------------------------- /__test__/teams.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/__test__/teams.test.js -------------------------------------------------------------------------------- /__test__/users.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/__test__/users.test.js -------------------------------------------------------------------------------- /__test__/vetoes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/__test__/vetoes.test.js -------------------------------------------------------------------------------- /__test__/vetosides.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/__test__/vetosides.test.js -------------------------------------------------------------------------------- /app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/app.ts -------------------------------------------------------------------------------- /bin/www.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/bin/www.ts -------------------------------------------------------------------------------- /config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/development.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/config/development.json.template -------------------------------------------------------------------------------- /config/production.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/config/production.json.template -------------------------------------------------------------------------------- /config/test.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/config/test.json.template -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest_config/jest.gameservers.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/jest_config/jest.gameservers.config.cjs -------------------------------------------------------------------------------- /jest_config/jest.maplist.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/jest_config/jest.maplist.config.cjs -------------------------------------------------------------------------------- /jest_config/jest.mapstats.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/jest_config/jest.mapstats.config.cjs -------------------------------------------------------------------------------- /jest_config/jest.matches.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/jest_config/jest.matches.config.cjs -------------------------------------------------------------------------------- /jest_config/jest.playerstats.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/jest_config/jest.playerstats.config.cjs -------------------------------------------------------------------------------- /jest_config/jest.seasons.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/jest_config/jest.seasons.config.cjs -------------------------------------------------------------------------------- /jest_config/jest.teams.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/jest_config/jest.teams.config.cjs -------------------------------------------------------------------------------- /jest_config/jest.users.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/jest_config/jest.users.config.cjs -------------------------------------------------------------------------------- /jest_config/jest.vetoes.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/jest_config/jest.vetoes.config.cjs -------------------------------------------------------------------------------- /jest_config/jest.vetosides.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/jest_config/jest.vetosides.config.cjs -------------------------------------------------------------------------------- /jest_config/test-teardown-globals.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/jest_config/test-teardown-globals.cjs -------------------------------------------------------------------------------- /jsdoc.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/jsdoc.conf.json -------------------------------------------------------------------------------- /migrations/development/20191109191155-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20191109191155-get5db.js -------------------------------------------------------------------------------- /migrations/development/20201011041344-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20201011041344-get5db.js -------------------------------------------------------------------------------- /migrations/development/20201017154717-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20201017154717-get5db.js -------------------------------------------------------------------------------- /migrations/development/20201017172331-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20201017172331-get5db.js -------------------------------------------------------------------------------- /migrations/development/20201017183917-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20201017183917-get5db.js -------------------------------------------------------------------------------- /migrations/development/20201024182100-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20201024182100-get5db.js -------------------------------------------------------------------------------- /migrations/development/20201026130830-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20201026130830-get5db.js -------------------------------------------------------------------------------- /migrations/development/20201117134259-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20201117134259-get5db.js -------------------------------------------------------------------------------- /migrations/development/20201118184033-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20201118184033-get5db.js -------------------------------------------------------------------------------- /migrations/development/20210107194928-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20210107194928-get5db.js -------------------------------------------------------------------------------- /migrations/development/20210115022423-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20210115022423-get5db.js -------------------------------------------------------------------------------- /migrations/development/20210123062442-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20210123062442-get5db.js -------------------------------------------------------------------------------- /migrations/development/20210124162658-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20210124162658-get5db.js -------------------------------------------------------------------------------- /migrations/development/20210201015955-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20210201015955-get5db.js -------------------------------------------------------------------------------- /migrations/development/20211125150429-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20211125150429-get5db.js -------------------------------------------------------------------------------- /migrations/development/20220211220305-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20220211220305-get5db.js -------------------------------------------------------------------------------- /migrations/development/20220217155106-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20220217155106-get5db.js -------------------------------------------------------------------------------- /migrations/development/20220224150005-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20220224150005-get5db.js -------------------------------------------------------------------------------- /migrations/development/20220325155055-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20220325155055-get5db.js -------------------------------------------------------------------------------- /migrations/development/20220713153034-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20220713153034-get5db.js -------------------------------------------------------------------------------- /migrations/development/20220907171148-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20220907171148-get5db.js -------------------------------------------------------------------------------- /migrations/development/20220908135836-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20220908135836-get5db.js -------------------------------------------------------------------------------- /migrations/development/20230615140704-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20230615140704-get5db.js -------------------------------------------------------------------------------- /migrations/development/20230625215254-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20230625215254-get5db.js -------------------------------------------------------------------------------- /migrations/development/20230626223210-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20230626223210-get5db.js -------------------------------------------------------------------------------- /migrations/development/20230629010420-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20230629010420-get5db.js -------------------------------------------------------------------------------- /migrations/development/20230630204451-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/development/20230630204451-get5db.js -------------------------------------------------------------------------------- /migrations/development/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"commonjs" 3 | } -------------------------------------------------------------------------------- /migrations/production/20191109191155-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20191109191155-get5db.js -------------------------------------------------------------------------------- /migrations/production/20201011041344-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20201011041344-get5db.js -------------------------------------------------------------------------------- /migrations/production/20201017154717-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20201017154717-get5db.js -------------------------------------------------------------------------------- /migrations/production/20201017172331-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20201017172331-get5db.js -------------------------------------------------------------------------------- /migrations/production/20201017183917-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20201017183917-get5db.js -------------------------------------------------------------------------------- /migrations/production/20201024182100-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20201024182100-get5db.js -------------------------------------------------------------------------------- /migrations/production/20201026130830-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20201026130830-get5db.js -------------------------------------------------------------------------------- /migrations/production/20201117134259-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20201117134259-get5db.js -------------------------------------------------------------------------------- /migrations/production/20201118184033-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20201118184033-get5db.js -------------------------------------------------------------------------------- /migrations/production/20210107194928-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20210107194928-get5db.js -------------------------------------------------------------------------------- /migrations/production/20210115022423-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20210115022423-get5db.js -------------------------------------------------------------------------------- /migrations/production/20210123062442-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20210123062442-get5db.js -------------------------------------------------------------------------------- /migrations/production/20210124162658-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20210124162658-get5db.js -------------------------------------------------------------------------------- /migrations/production/20210201015955-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20210201015955-get5db.js -------------------------------------------------------------------------------- /migrations/production/20211125150429-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20211125150429-get5db.js -------------------------------------------------------------------------------- /migrations/production/20220211220305-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20220211220305-get5db.js -------------------------------------------------------------------------------- /migrations/production/20220217155106-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20220217155106-get5db.js -------------------------------------------------------------------------------- /migrations/production/20220224150005-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20220224150005-get5db.js -------------------------------------------------------------------------------- /migrations/production/20220325155055-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20220325155055-get5db.js -------------------------------------------------------------------------------- /migrations/production/20220713153034-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20220713153034-get5db.js -------------------------------------------------------------------------------- /migrations/production/20220907171148-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20220907171148-get5db.js -------------------------------------------------------------------------------- /migrations/production/20220908135836-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20220908135836-get5db.js -------------------------------------------------------------------------------- /migrations/production/20230615140704-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20230615140704-get5db.js -------------------------------------------------------------------------------- /migrations/production/20230625215254-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20230625215254-get5db.js -------------------------------------------------------------------------------- /migrations/production/20230626223210-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20230626223210-get5db.js -------------------------------------------------------------------------------- /migrations/production/20230629010420-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20230629010420-get5db.js -------------------------------------------------------------------------------- /migrations/production/20230630204451-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/production/20230630204451-get5db.js -------------------------------------------------------------------------------- /migrations/production/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"commonjs" 3 | } -------------------------------------------------------------------------------- /migrations/test/20191109191155-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20191109191155-get5db.js -------------------------------------------------------------------------------- /migrations/test/20201011041344-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20201011041344-get5db.js -------------------------------------------------------------------------------- /migrations/test/20201017154717-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20201017154717-get5db.js -------------------------------------------------------------------------------- /migrations/test/20201017172331-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20201017172331-get5db.js -------------------------------------------------------------------------------- /migrations/test/20201017183917-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20201017183917-get5db.js -------------------------------------------------------------------------------- /migrations/test/20201024182100-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20201024182100-get5db.js -------------------------------------------------------------------------------- /migrations/test/20201026130830-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20201026130830-get5db.js -------------------------------------------------------------------------------- /migrations/test/20201117134259-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20201117134259-get5db.js -------------------------------------------------------------------------------- /migrations/test/20201118184033-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20201118184033-get5db.js -------------------------------------------------------------------------------- /migrations/test/20210107194928-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20210107194928-get5db.js -------------------------------------------------------------------------------- /migrations/test/20210115022423-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20210115022423-get5db.js -------------------------------------------------------------------------------- /migrations/test/20210123062442-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20210123062442-get5db.js -------------------------------------------------------------------------------- /migrations/test/20210124162658-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20210124162658-get5db.js -------------------------------------------------------------------------------- /migrations/test/20210201015955-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20210201015955-get5db.js -------------------------------------------------------------------------------- /migrations/test/20211125150429-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20211125150429-get5db.js -------------------------------------------------------------------------------- /migrations/test/20220211220305-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20220211220305-get5db.js -------------------------------------------------------------------------------- /migrations/test/20220217155106-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20220217155106-get5db.js -------------------------------------------------------------------------------- /migrations/test/20220224150005-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20220224150005-get5db.js -------------------------------------------------------------------------------- /migrations/test/20220325155055-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20220325155055-get5db.js -------------------------------------------------------------------------------- /migrations/test/20220713153034-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20220713153034-get5db.js -------------------------------------------------------------------------------- /migrations/test/20220907171148-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20220907171148-get5db.js -------------------------------------------------------------------------------- /migrations/test/20220908135836-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20220908135836-get5db.js -------------------------------------------------------------------------------- /migrations/test/20230615140704-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20230615140704-get5db.js -------------------------------------------------------------------------------- /migrations/test/20230625215254-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20230625215254-get5db.js -------------------------------------------------------------------------------- /migrations/test/20230626223210-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20230626223210-get5db.js -------------------------------------------------------------------------------- /migrations/test/20230629010420-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20230629010420-get5db.js -------------------------------------------------------------------------------- /migrations/test/20230630204451-get5db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/migrations/test/20230630204451-get5db.js -------------------------------------------------------------------------------- /migrations/test/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type":"commonjs" 3 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/package.json -------------------------------------------------------------------------------- /prodrun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/prodrun.json -------------------------------------------------------------------------------- /public/backups/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/demos/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/img/logos/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/@types/express/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/@types/express/index.d.ts -------------------------------------------------------------------------------- /src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/routes/index.ts -------------------------------------------------------------------------------- /src/routes/leaderboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/routes/leaderboard.ts -------------------------------------------------------------------------------- /src/routes/legacy/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/routes/legacy/api.ts -------------------------------------------------------------------------------- /src/routes/maps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/routes/maps.ts -------------------------------------------------------------------------------- /src/routes/mapstats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/routes/mapstats.ts -------------------------------------------------------------------------------- /src/routes/matches/matches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/routes/matches/matches.ts -------------------------------------------------------------------------------- /src/routes/matches/matchserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/routes/matches/matchserver.ts -------------------------------------------------------------------------------- /src/routes/playerstats/extrastats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/routes/playerstats/extrastats.ts -------------------------------------------------------------------------------- /src/routes/playerstats/playerstats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/routes/playerstats/playerstats.ts -------------------------------------------------------------------------------- /src/routes/seasons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/routes/seasons.ts -------------------------------------------------------------------------------- /src/routes/servers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/routes/servers.ts -------------------------------------------------------------------------------- /src/routes/teams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/routes/teams.ts -------------------------------------------------------------------------------- /src/routes/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/routes/users.ts -------------------------------------------------------------------------------- /src/routes/v2/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/routes/v2/api.ts -------------------------------------------------------------------------------- /src/routes/v2/backupapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/routes/v2/backupapi.ts -------------------------------------------------------------------------------- /src/routes/v2/demoapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/routes/v2/demoapi.ts -------------------------------------------------------------------------------- /src/routes/vetoes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/routes/vetoes.ts -------------------------------------------------------------------------------- /src/routes/vetosides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/routes/vetosides.ts -------------------------------------------------------------------------------- /src/services/challonge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/services/challonge.ts -------------------------------------------------------------------------------- /src/services/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/services/db.ts -------------------------------------------------------------------------------- /src/services/mapflowservices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/services/mapflowservices.ts -------------------------------------------------------------------------------- /src/services/seriesflowservices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/services/seriesflowservices.ts -------------------------------------------------------------------------------- /src/types/Get5_Assist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/Get5_Assist.ts -------------------------------------------------------------------------------- /src/types/Get5_Attacker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/Get5_Attacker.ts -------------------------------------------------------------------------------- /src/types/Get5_OnEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/Get5_OnEvent.ts -------------------------------------------------------------------------------- /src/types/Get5_Player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/Get5_Player.ts -------------------------------------------------------------------------------- /src/types/Get5_Stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/Get5_Stats.ts -------------------------------------------------------------------------------- /src/types/Get5_Team.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/Get5_Team.ts -------------------------------------------------------------------------------- /src/types/Get5_Weapon.ts: -------------------------------------------------------------------------------- 1 | export interface Get5_Weapon { 2 | name: string 3 | id: number 4 | } -------------------------------------------------------------------------------- /src/types/Get5_Winner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/Get5_Winner.ts -------------------------------------------------------------------------------- /src/types/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/User.ts -------------------------------------------------------------------------------- /src/types/leaderboard/Player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/leaderboard/Player.ts -------------------------------------------------------------------------------- /src/types/leaderboard/TeamStanding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/leaderboard/TeamStanding.ts -------------------------------------------------------------------------------- /src/types/map_flow/Get5_OnBombEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/map_flow/Get5_OnBombEvent.ts -------------------------------------------------------------------------------- /src/types/map_flow/Get5_OnGoingLive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/map_flow/Get5_OnGoingLive.ts -------------------------------------------------------------------------------- /src/types/map_flow/Get5_OnMatchPausedUnpaused.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/map_flow/Get5_OnMatchPausedUnpaused.ts -------------------------------------------------------------------------------- /src/types/map_flow/Get5_OnPlayerBecameMvp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/map_flow/Get5_OnPlayerBecameMvp.ts -------------------------------------------------------------------------------- /src/types/map_flow/Get5_OnPlayerDeath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/map_flow/Get5_OnPlayerDeath.ts -------------------------------------------------------------------------------- /src/types/map_flow/Get5_OnRoundEnd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/map_flow/Get5_OnRoundEnd.ts -------------------------------------------------------------------------------- /src/types/map_flow/Get5_OnRoundStart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/map_flow/Get5_OnRoundStart.ts -------------------------------------------------------------------------------- /src/types/maps/MapObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/maps/MapObject.ts -------------------------------------------------------------------------------- /src/types/mapstats/AccessMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/mapstats/AccessMessage.ts -------------------------------------------------------------------------------- /src/types/mapstats/MapStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/mapstats/MapStats.ts -------------------------------------------------------------------------------- /src/types/matches/MatchData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/matches/MatchData.ts -------------------------------------------------------------------------------- /src/types/matches/MatchJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/matches/MatchJson.ts -------------------------------------------------------------------------------- /src/types/matches/MatchPauseData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/matches/MatchPauseData.ts -------------------------------------------------------------------------------- /src/types/playerstats/PlayerDatabaseObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/playerstats/PlayerDatabaseObject.ts -------------------------------------------------------------------------------- /src/types/playerstats/PlayerObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/playerstats/PlayerObject.ts -------------------------------------------------------------------------------- /src/types/seasons/SeasonCvarObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/seasons/SeasonCvarObject.ts -------------------------------------------------------------------------------- /src/types/seasons/SeasonObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/seasons/SeasonObject.ts -------------------------------------------------------------------------------- /src/types/series_flow/Get5_OnBackupRestore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/series_flow/Get5_OnBackupRestore.ts -------------------------------------------------------------------------------- /src/types/series_flow/Get5_OnMapResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/series_flow/Get5_OnMapResult.ts -------------------------------------------------------------------------------- /src/types/series_flow/Get5_OnSeriesResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/series_flow/Get5_OnSeriesResult.ts -------------------------------------------------------------------------------- /src/types/series_flow/veto/Get5_OnMapPicked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/series_flow/veto/Get5_OnMapPicked.ts -------------------------------------------------------------------------------- /src/types/series_flow/veto/Get5_OnMapVetoed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/series_flow/veto/Get5_OnMapVetoed.ts -------------------------------------------------------------------------------- /src/types/series_flow/veto/Get5_OnSidePicked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/series_flow/veto/Get5_OnSidePicked.ts -------------------------------------------------------------------------------- /src/types/serverrcon/SteamApiResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/serverrcon/SteamApiResponse.ts -------------------------------------------------------------------------------- /src/types/servers/GameServerObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/servers/GameServerObject.ts -------------------------------------------------------------------------------- /src/types/swagger/Get5_Assist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/swagger/Get5_Assist.yaml -------------------------------------------------------------------------------- /src/types/swagger/Get5_Attacker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/swagger/Get5_Attacker.yaml -------------------------------------------------------------------------------- /src/types/swagger/Get5_Player.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/swagger/Get5_Player.yaml -------------------------------------------------------------------------------- /src/types/swagger/Get5_Stats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/swagger/Get5_Stats.yaml -------------------------------------------------------------------------------- /src/types/swagger/Get5_Team.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/swagger/Get5_Team.yaml -------------------------------------------------------------------------------- /src/types/swagger/Get5_Weapon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/swagger/Get5_Weapon.yaml -------------------------------------------------------------------------------- /src/types/swagger/Get5_Winner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/swagger/Get5_Winner.yaml -------------------------------------------------------------------------------- /src/types/swagger/map_flow/Get5_OnBombDefused.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/swagger/map_flow/Get5_OnBombDefused.yaml -------------------------------------------------------------------------------- /src/types/swagger/map_flow/Get5_OnBombPlanted.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/swagger/map_flow/Get5_OnBombPlanted.yaml -------------------------------------------------------------------------------- /src/types/swagger/map_flow/Get5_OnMatchPausedUnpaused.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/swagger/map_flow/Get5_OnMatchPausedUnpaused.yaml -------------------------------------------------------------------------------- /src/types/swagger/map_flow/Get5_OnPlayerBecameMvp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/swagger/map_flow/Get5_OnPlayerBecameMvp.yaml -------------------------------------------------------------------------------- /src/types/swagger/map_flow/Get5_OnPlayerDeath.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/swagger/map_flow/Get5_OnPlayerDeath.yaml -------------------------------------------------------------------------------- /src/types/swagger/map_flow/Get5_OnRoundEnd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/swagger/map_flow/Get5_OnRoundEnd.yaml -------------------------------------------------------------------------------- /src/types/swagger/series_flow/Get5_OnBackupRestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/swagger/series_flow/Get5_OnBackupRestore.yaml -------------------------------------------------------------------------------- /src/types/swagger/series_flow/Get5_OnMapResult.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/swagger/series_flow/Get5_OnMapResult.yaml -------------------------------------------------------------------------------- /src/types/swagger/series_flow/Get5_OnSeriesInit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/swagger/series_flow/Get5_OnSeriesInit.yaml -------------------------------------------------------------------------------- /src/types/swagger/series_flow/Get5_OnSeriesResult.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/swagger/series_flow/Get5_OnSeriesResult.yaml -------------------------------------------------------------------------------- /src/types/teams/AuthData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/teams/AuthData.ts -------------------------------------------------------------------------------- /src/types/teams/TeamData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/teams/TeamData.ts -------------------------------------------------------------------------------- /src/types/users/UserObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/users/UserObject.ts -------------------------------------------------------------------------------- /src/types/vetoes/VetoObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/vetoes/VetoObject.ts -------------------------------------------------------------------------------- /src/types/vetoes/VetoSideObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/types/vetoes/VetoSideObject.ts -------------------------------------------------------------------------------- /src/utility/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/utility/auth.ts -------------------------------------------------------------------------------- /src/utility/emitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/utility/emitter.ts -------------------------------------------------------------------------------- /src/utility/mockProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/utility/mockProfile.ts -------------------------------------------------------------------------------- /src/utility/mockstrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/utility/mockstrategy.ts -------------------------------------------------------------------------------- /src/utility/serverrcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/utility/serverrcon.ts -------------------------------------------------------------------------------- /src/utility/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/src/utility/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhlexPlexico/G5API/HEAD/yarn.lock --------------------------------------------------------------------------------