Skip to content

Commit 0391049

Browse files
authored
Merge branch 'main' into dependabot/cargo/compiler-rs/tracing-subscriber-0.3.20
2 parents 03fd9b8 + 235fbc9 commit 0391049

File tree

50 files changed

+4228
-423
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+4228
-423
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 716 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/openapi/elasticsearch-serverless-openapi.json

Lines changed: 373 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 1859 additions & 166 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/validation-errors.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"Dangling type '_types.query_dsl:SpanSubQuery'",
3535
"Dangling type '_types.query_dsl:TokenType'",
3636
"Dangling type '_types.query_dsl:VisitorScope'",
37+
"Dangling type 'cat._types:CatRepositoriesColumn'",
3738
"Dangling type 'cat.transforms:TransformState'",
3839
"Dangling type 'cat.transforms:TransformType'",
3940
"Dangling type 'cluster.allocation_explain:StoreCopy'",

output/typescript/types.ts

Lines changed: 49 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/_doc_ids/table.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,7 @@ get-transform,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operat
271271
get-trial-status,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-license-get-trial-status,https://www.elastic.co/guide/en/elasticsearch/reference/8.18/get-trial-status.html,
272272
googlevertexai-locations,https://cloud.google.com/vertex-ai/generative-ai/docs/learn/locations,,
273273
googlevertexai-models,https://cloud.google.com/vertex-ai/generative-ai/docs/model-reference/text-embeddings-api,,
274+
googlevertexai-thinking,https://ai.google.dev/gemini-api/docs/thinking#set-budget,,
274275
googleaistudio-models,https://ai.google.dev/gemini-api/docs/models,,
275276
graph,https://www.elastic.co/docs/explore-analyze/visualize/graph,,
276277
graph-explore-api,https://www.elastic.co/docs/api/doc/elasticsearch/group/endpoint-graph,https://www.elastic.co/guide/en/elasticsearch/reference/8.18/graph-explore-api.html,

specification/_global/search/_types/hits.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,10 @@ export class Hit<TDocument> {
4444
* on a search request. Otherwise the field is always present on hits.
4545
*/
4646
_id?: Id
47-
_score: double | null
47+
// While _score is always returned by Elasticsearch, making it required
48+
// breaks downstream JavaScript users for little added benefit
49+
// See https://github.com/elastic/elasticsearch-specification/pull/5248
50+
_score?: double | null
4851
_explanation?: Explanation
4952
fields?: Dictionary<string, UserDefinedValue>
5053
highlight?: Dictionary<string, string[]>
@@ -69,7 +72,10 @@ export class HitsMetadata<T> {
6972
total?: TotalHits | long
7073
hits: Hit<T>[]
7174

72-
max_score: double | null
75+
// While max_score is always returned by Elasticsearch, making it required
76+
// breaks downstream JavaScript users for little added benefit
77+
// See https://github.com/elastic/elasticsearch-specification/pull/5248
78+
max_score?: double | null
7379
}
7480

7581
export class HitMetadata<TDocument> {

specification/_json_spec/_internal.delete_desired_nodes.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"_internal.delete_desired_nodes": {
33
"documentation": {
44
"url": null,
5-
"description": "Deletes the desired nodes"
5+
"description": "Designed for indirect use by ECE/ESS and ECK, direct use is not supported."
66
},
77
"stability": "experimental",
88
"visibility": "private",

specification/_json_spec/_internal.update_desired_nodes.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"_internal.update_desired_nodes": {
33
"documentation": {
44
"url": null,
5-
"description": "Updates the desired nodes"
5+
"description": "Designed for indirect use by ECE/ESS and ECK, direct use is not supported."
66
},
77
"stability": "experimental",
88
"visibility": "private",

specification/_json_spec/connector.delete.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"url": "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-connector-delete",
55
"description": "Delete a connector"
66
},
7-
"stability": "experimental",
7+
"stability": "beta",
88
"visibility": "public",
99
"headers": {
1010
"accept": ["application/json"]

0 commit comments

Comments
 (0)