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
7 changes: 6 additions & 1 deletion output/openapi/elasticsearch-openapi.json

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

7 changes: 6 additions & 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.

17 changes: 15 additions & 2 deletions output/schema/schema.json

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

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.

9 changes: 9 additions & 0 deletions specification/esql/query/QueryRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,17 @@ export interface Request extends RequestBase {
* When set to `true` and performing a cross-cluster 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.
* This is a synonym for `include_execution_metadata`, the two parameters can be used interchangeably but not together.
* @server_default false
*/
include_ccs_metadata?: boolean
/**
* When set to `true` and performing a cross-cluster or 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.
* This is a synonym for `include_ccs_metadata`, the two parameters can be used interchangeably but not together.
* @server_default false
*/
include_execution_metadata?: boolean
}
}
Loading