Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions output/openapi/elasticsearch-openapi.json

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

2 changes: 1 addition & 1 deletion output/openapi/elasticsearch-serverless-openapi.json

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

14 changes: 10 additions & 4 deletions output/schema/schema.json

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

2 changes: 2 additions & 0 deletions output/typescript/types.ts

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

3 changes: 2 additions & 1 deletion specification/esql/async_query/AsyncQueryRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,11 @@ export interface Request extends RequestBase {
*/
tables?: Dictionary<string, Dictionary<string, TableValuesContainer>>
/**
* When set to `true` and performing a cross-cluster query, the response will include an extra `_clusters`
* When set to `true` and performing a cross-cluster/cross-project query, the response will include an extra `_clusters`
* object with information about the clusters that participated in the search along with info such as shards
* count.
* @server_default false
* @aliases include_execution_metadata
*/
include_ccs_metadata?: boolean
/**
Expand Down
3 changes: 2 additions & 1 deletion specification/esql/query/QueryRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,11 @@ export interface Request extends RequestBase {
*/
tables?: Dictionary<string, Dictionary<string, TableValuesContainer>>
/**
* When set to `true` and performing a cross-cluster query, the response will include an extra `_clusters`
* When set to `true` and performing a cross-cluster/cross-project query, the response will include an extra `_clusters`
* object with information about the clusters that participated in the search along with info such as shards
* count.
* @server_default false
* @aliases include_execution_metadata
*/
include_ccs_metadata?: boolean
}
Expand Down