Skip to content
Closed
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
12 changes: 9 additions & 3 deletions protos/generated/models/aggregated_models.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1648,6 +1648,8 @@ message ErrorCause {
repeated ErrorCause suppressed = 6;

repeated string header = 7;

optional ObjectMap metadata = 8;
}
message ErrorResponseBase {
ErrorCause error = 1;
Expand Down Expand Up @@ -2490,6 +2492,8 @@ message GeoDistanceSort {
optional DistanceUnit unit = 6;

optional GeoValidationMethod validation_method = 7;

map<string, GeoLocationArray> location = 8;
}
enum GeoDistanceType {
GEO_DISTANCE_TYPE_UNSPECIFIED = 0;
Expand Down Expand Up @@ -3270,6 +3274,8 @@ message InlineGetDictUserDefined {

// The source of the document.
optional ObjectMap x_source = 6;

optional ObjectMap metadata_fields = 7;
}
message InlineScript {
// Specifies any named parameters that are passed into the script as variables. Use parameters instead of hard-coded values to decrease compilation time.
Expand Down Expand Up @@ -6335,9 +6341,7 @@ message SpanFirstQuery {
SpanQuery match = 4;
}
message SpanGapQuery {
string field = 1;

optional int32 span_width = 2;
map<string, int32> span_width = 1;
}
message SpanMultiTermQuery {
// Floating point number used to decrease or increase the relevance scores of the query. Boost values are relative to the default value of 1.0. A boost value between 0 and 1.0 decreases the relevance score. A value greater than 1.0 increases the relevance score.
Expand Down Expand Up @@ -6718,6 +6722,8 @@ enum SuggestSort {
message Suggester {
// The global suggest text, which avoids repetition when the same text is used in several suggesters.
optional string text = 1;

map<string, FieldSuggester> suggesters = 2;
}
message SuggesterBase {
optional string analyzer = 1;
Expand Down