Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[DOCS] Add missing from documentation (#4076)
* docs: add from description * chore: make contrib (cherry picked from commit c1938de)
  • Loading branch information
gioboa authored and github-actions[bot] committed Mar 24, 2025
commit 8f7d8e4bfdfe71a2b6fbafb0d25e9cc97cb9ebeb
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.

4 changes: 2 additions & 2 deletions output/openapi/elasticsearch-serverless-openapi.json

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

10 changes: 6 additions & 4 deletions output/schema/schema-serverless.json

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

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

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

4 changes: 4 additions & 0 deletions specification/_global/delete_by_query/DeleteByQueryRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,10 @@ export interface Request extends RequestBase {
* @server_default open
*/
expand_wildcards?: ExpandWildcards
/**
* Skips the specified number of documents.
* @server_default 0
*/
from?: long
/**
* If `false`, the request returns an error if it targets a missing or closed index.
Expand Down
4 changes: 4 additions & 0 deletions specification/_global/update_by_query/UpdateByQueryRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,10 @@ export interface Request extends RequestBase {
* Valid values are: `all`, `open`, `closed`, `hidden`, `none`.
*/
expand_wildcards?: ExpandWildcards
/**
* Skips the specified number of documents.
* @server_default 0
*/
from?: long
/**
* If `false`, the request returns an error if it targets a missing or closed index.
Expand Down