Skip to content

Commit

Permalink
feat(tournament): Tournament Game Details endpoint (#464)
Browse files Browse the repository at this point in the history
  • Loading branch information
OllieJennings authored Nov 17, 2023
1 parent 8ec5abd commit f82689c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/@types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ export interface METHODS {
POST_CREATE_CODES: string;
GET_TOURNAMENT_BY_CODE: string;
PUT_TOURNAMENT_CODE: string;
GET_TOURNAMENT_GAME_DETAILS: string;
GET_LOBBY_EVENTS_BY_TOURNAMENT_CODE: string;
POST_CREATE_PROVIDER: string;
POST_CREATE_TOURNAMENT: string;
Expand Down Expand Up @@ -358,6 +359,8 @@ export const METHODS = {
POST_CREATE_CODES: "/lol/tournament/v5/codes",
GET_TOURNAMENT_BY_CODE: "/lol/tournament/v5/codes/:tournamentCode",
PUT_TOURNAMENT_CODE: "/lol/tournament/v5/codes/:tournamentCode",
GET_TOURNAMENT_GAME_DETAILS:
"/lol/tournament/v5/games/by-code/:tournamentCode",
GET_LOBBY_EVENTS_BY_TOURNAMENT_CODE:
"/lol/tournament/v5/lobby-events/by-code/:tournamentCode",
POST_CREATE_PROVIDER: "/lol/tournament/v5/providers",
Expand Down

0 comments on commit f82689c

Please sign in to comment.