Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions output/openapi/elasticsearch-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 16 additions & 2 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 0 additions & 6 deletions output/schema/validation-errors.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,6 @@
],
"response": []
},
"security.grant_api_key": {
"request": [
"Request: missing json spec query parameter 'refresh'"
],
"response": []
},
"snapshot.delete": {
"request": [
"Request: missing json spec query parameter 'wait_for_completion'"
Expand Down
1 change: 1 addition & 0 deletions output/typescript/types.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/

import { RequestBase } from '@_types/Base'
import { Password, Username } from '@_types/common'
import { Password, Refresh, Username } from '@_types/common'
import { ApiKeyGrantType, GrantApiKey } from './types'

/**
Expand Down Expand Up @@ -57,6 +57,16 @@ export interface Request extends RequestBase {
methods: ['POST']
}
]
query_parameters: {
/**
* If 'true', Elasticsearch refreshes the affected shards to make this operation
* visible to search.
* If 'wait_for', it waits for a refresh to make this operation visible to search.
* If 'false', nothing is done with refreshes.
* @server_default false
*/
refresh?: Refresh
}
body: {
/**
* The API key.
Expand Down