Skip to content

Commit 6ab4d05

Browse files
authored
[9.0] [DOCS] Add overlays to work around deployment failure (#4285) (#4286)
(cherry picked from commit 157b1c6)
1 parent 52c473e commit 6ab4d05

File tree

6 files changed

+38
-4
lines changed

6 files changed

+38
-4
lines changed

output/openapi/elasticsearch-openapi.json

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/openapi/elasticsearch-serverless-openapi.json

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

+14-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/_doc_ids/table.csv

+2
Original file line numberDiff line numberDiff line change
@@ -709,10 +709,12 @@ search-render-query,https://www.elastic.co/docs/api/doc/elasticsearch/v9/operati
709709
search-count,https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-count
710710
search-explain,https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-explain
711711
search-field-caps,https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-field-caps
712+
search-highlight,https://www.elastic.co/docs/reference/elasticsearch/rest-apis/highlighting
712713
search-knn,https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-knn-search
713714
search-multi-search,https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-msearch
714715
search-multi-search-template,https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-msearch-template
715716
search-rank-eval,https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-rank-eval
717+
search-retrievers,https://www.elastic.co/docs/reference/elasticsearch/rest-apis/retrievers
716718
search-search,https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-search
717719
search-shards,https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-search-shards
718720
search-template,https://www.elastic.co/docs/solutions/search/search-templates

specification/_global/search/SearchRequest.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,9 @@ export interface Request extends RequestBase {
387387
body: {
388388
/**
389389
* Defines the aggregations that are run as part of the search request.
390-
* @aliases aggs */ // ES uses "aggregations" in serialization
390+
* @aliases aggs
391+
* @ext_doc_id search-aggregations
392+
*/ // ES uses "aggregations" in serialization
391393
aggregations?: Dictionary<string, AggregationContainer>
392394
/**
393395
* Collapses search results the values of the specified field.
@@ -411,6 +413,7 @@ export interface Request extends RequestBase {
411413
from?: integer
412414
/**
413415
* Specifies the highlighter to use for retrieving highlighted snippets from one or more fields in your search results.
416+
* @ext_doc_id search-highlight
414417
*/
415418
highlight?: Highlight
416419
/**
@@ -477,6 +480,7 @@ export interface Request extends RequestBase {
477480
* A retriever replaces other elements of the search API that also return top documents such as `query` and `knn`.
478481
* @availability stack since=8.14.0 stability=stable
479482
* @availability serverless stability=stable
483+
* @ext_doc_id search-retrievers
480484
*/
481485
retriever?: RetrieverContainer
482486
/**

specification/_global/search/_types/SearchRequestBody.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ import { Sort, SortResults } from '@_types/sort'
4242
export class SearchRequestBody {
4343
/**
4444
* Defines the aggregations that are run as part of the search request.
45-
* @aliases aggs */ // ES uses "aggregations" in serialization
45+
* @aliases aggs
46+
* @ext_doc_id search-aggregations
47+
*/ // ES uses "aggregations" in serialization
4648
aggregations?: Dictionary<string, AggregationContainer>
4749
/**
4850
* Collapses search results the values of the specified field.
@@ -66,6 +68,7 @@ export class SearchRequestBody {
6668
from?: integer
6769
/**
6870
* Specifies the highlighter to use for retrieving highlighted snippets from one or more fields in your search results.
71+
* @ext_doc_id search-highlight
6972
*/
7073
highlight?: Highlight
7174
/**
@@ -132,6 +135,7 @@ export class SearchRequestBody {
132135
* A retriever replaces other elements of the search API that also return top documents such as `query` and `knn`.
133136
* @availability stack since=8.14.0 stability=stable
134137
* @availability serverless stability=stable
138+
* @ext_doc_id search-retrievers
135139
*/
136140
retriever?: RetrieverContainer
137141
/**

0 commit comments

Comments
 (0)