Skip to content

Commit

Permalink
Merge branch 'master' into renovate/prom-prometheus-3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
notaphplover authored Nov 19, 2024
2 parents 4667f07 + 61ab49b commit b65a082
Show file tree
Hide file tree
Showing 5 changed files with 291 additions and 276 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,11 @@ export class HttpClientEndpoints {
body: apiModels.GameIdUpdateQueryV1,
): Promise<
| Response<Record<string, string>, apiModels.GameV1, 200>
| Response<Record<string, string>, apiModels.ErrorV1, 400>
| Response<Record<string, string>, apiModels.ErrorV1, 401>
| Response<Record<string, string>, apiModels.ErrorV1, 403>
| Response<Record<string, string>, apiModels.ErrorV1, 404>
| Response<Record<string, string>, apiModels.ErrorV1, 422>
> {
return this.#internalHttpClient.callEndpoint({
body: body,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,12 @@ paths:
application/json:
schema:
$ref: 'https://onegame.schemas/api/v1/games/game.json'
'400':
description: Bad request
content:
application/json:
schema:
$ref: 'https://onegame.schemas/api/v1/errors/error.json'
'401':
description: Unauthorized
content:
Expand All @@ -251,6 +257,12 @@ paths:
application/json:
schema:
$ref: 'https://onegame.schemas/api/v1/errors/error.json'
'422':
description: Unprocessable operation
content:
application/json:
schema:
$ref: 'https://onegame.schemas/api/v1/errors/error.json'
security:
- accessToken: []
tags:
Expand Down
Loading

0 comments on commit b65a082

Please sign in to comment.