Skip to content

Commit 237cf4c

Browse files
committed
specific ack response for indices delete alias
1 parent bd30a4f commit 237cf4c

File tree

7 files changed

+109
-55
lines changed

7 files changed

+109
-55
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 16 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/openapi/elasticsearch-serverless-openapi.json

Lines changed: 16 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema-serverless.json

Lines changed: 33 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 34 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

Lines changed: 5 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/_types/Base.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ export class WriteResponseBase {
4747
export class AcknowledgedResponseBase {
4848
/** For a successful response, this value is always true. On failure, an exception is returned instead. */
4949
acknowledged: boolean
50-
errors?: boolean
5150
}
5251

5352
export class DynamicResponseBase {}

specification/indices/delete_alias/IndicesDeleteAliasResponse.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,9 @@
2020
import { AcknowledgedResponseBase } from '@_types/Base'
2121

2222
export class Response {
23-
body: AcknowledgedResponseBase
23+
body: IndicesAliasesResponseBody
24+
}
25+
26+
export class IndicesAliasesResponseBody extends AcknowledgedResponseBase {
27+
errors?: boolean
2428
}

0 commit comments

Comments
 (0)