Skip to content

Commit 83bba5c

Browse files
authored
Fix indices.delete_alias response (#2951) (#4971)
* Fix indices.delete_api response * specific ack response for indices delete alias --------- Co-authored-by: Laura Trotta <[email protected]> (cherry picked from commit 4926284) # Conflicts: # specification/indices/delete_alias/IndicesDeleteAliasResponse.ts
1 parent e672171 commit 83bba5c

File tree

6 files changed

+100
-8
lines changed

6 files changed

+100
-8
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 16 additions & 1 deletion
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 & 1 deletion
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: 29 additions & 2 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: 29 additions & 2 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 & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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)