Skip to content

[9.0] [DOCS] Add overlays to work around deployment failure (#4285) #4286

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 22, 2025
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
6 changes: 6 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.

6 changes: 6 additions & 0 deletions output/openapi/elasticsearch-serverless-openapi.json

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

16 changes: 14 additions & 2 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 specification/_doc_ids/table.csv
Original file line number Diff line number Diff line change
Expand Up @@ -709,10 +709,12 @@ search-render-query,https://www.elastic.co/docs/api/doc/elasticsearch/v9/operati
search-count,https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-count
search-explain,https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-explain
search-field-caps,https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-field-caps
search-highlight,https://www.elastic.co/docs/reference/elasticsearch/rest-apis/highlighting
search-knn,https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-knn-search
search-multi-search,https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-msearch
search-multi-search-template,https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-msearch-template
search-rank-eval,https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-rank-eval
search-retrievers,https://www.elastic.co/docs/reference/elasticsearch/rest-apis/retrievers
search-search,https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-search
search-shards,https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-search-shards
search-template,https://www.elastic.co/docs/solutions/search/search-templates
Expand Down
6 changes: 5 additions & 1 deletion specification/_global/search/SearchRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,9 @@ export interface Request extends RequestBase {
body: {
/**
* Defines the aggregations that are run as part of the search request.
* @aliases aggs */ // ES uses "aggregations" in serialization
* @aliases aggs
* @ext_doc_id search-aggregations
*/ // ES uses "aggregations" in serialization
aggregations?: Dictionary<string, AggregationContainer>
/**
* Collapses search results the values of the specified field.
Expand All @@ -411,6 +413,7 @@ export interface Request extends RequestBase {
from?: integer
/**
* Specifies the highlighter to use for retrieving highlighted snippets from one or more fields in your search results.
* @ext_doc_id search-highlight
*/
highlight?: Highlight
/**
Expand Down Expand Up @@ -477,6 +480,7 @@ export interface Request extends RequestBase {
* A retriever replaces other elements of the search API that also return top documents such as `query` and `knn`.
* @availability stack since=8.14.0 stability=stable
* @availability serverless stability=stable
* @ext_doc_id search-retrievers
*/
retriever?: RetrieverContainer
/**
Expand Down
6 changes: 5 additions & 1 deletion specification/_global/search/_types/SearchRequestBody.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ import { Sort, SortResults } from '@_types/sort'
export class SearchRequestBody {
/**
* Defines the aggregations that are run as part of the search request.
* @aliases aggs */ // ES uses "aggregations" in serialization
* @aliases aggs
* @ext_doc_id search-aggregations
*/ // ES uses "aggregations" in serialization
aggregations?: Dictionary<string, AggregationContainer>
/**
* Collapses search results the values of the specified field.
Expand All @@ -66,6 +68,7 @@ export class SearchRequestBody {
from?: integer
/**
* Specifies the highlighter to use for retrieving highlighted snippets from one or more fields in your search results.
* @ext_doc_id search-highlight
*/
highlight?: Highlight
/**
Expand Down Expand Up @@ -132,6 +135,7 @@ export class SearchRequestBody {
* A retriever replaces other elements of the search API that also return top documents such as `query` and `knn`.
* @availability stack since=8.14.0 stability=stable
* @availability serverless stability=stable
* @ext_doc_id search-retrievers
*/
retriever?: RetrieverContainer
/**
Expand Down