Skip to content

Commit bbc63fa

Browse files
chore: sync infra OpenAPI specs (#271)
This PR syncs OpenAPI specs from [e2b-dev/infra](https://github.com/e2b-dev/infra): - `spec/openapi.infra.yaml` - `spec/openapi.dashboard-api.yaml` It also regenerates dependent TypeScript API types and applies formatting/lint autofixes. --- *This PR was automatically created by the sync-infra-specs workflow.* Co-authored-by: dobrac <4323173+dobrac@users.noreply.github.com>
1 parent e4a1929 commit bbc63fa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

spec/openapi.infra.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1771,8 +1771,8 @@ paths:
17711771
get:
17721772
description: Health check
17731773
responses:
1774-
"200":
1775-
description: Request was successful
1774+
"204":
1775+
description: The service is healthy
17761776
"401":
17771777
$ref: "#/components/responses/401"
17781778

src/types/infra-api.types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ export interface paths {
2121
}
2222
requestBody?: never
2323
responses: {
24-
/** @description Request was successful */
25-
200: {
24+
/** @description The service is healthy */
25+
204: {
2626
headers: {
2727
[name: string]: unknown
2828
}

0 commit comments

Comments
 (0)