Skip to content

Commit f7c5034

Browse files
lucy66hwgithub-actions[bot]
authored andcommitted
Protobuf schema change detected
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 016aeb9 commit f7c5034

1 file changed

Lines changed: 30 additions & 2 deletions

File tree

protos/generated/models/aggregated_models.proto

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1648,6 +1648,8 @@ message ErrorCause {
16481648
repeated ErrorCause suppressed = 6;
16491649

16501650
repeated string header = 7;
1651+
1652+
optional ObjectMap metadata = 8;
16511653
}
16521654
message ErrorResponseBase {
16531655
ErrorCause error = 1;
@@ -2082,6 +2084,8 @@ message FieldSuggester {
20822084
optional PhraseSuggester phrase = 5;
20832085

20842086
optional TermSuggester term = 6;
2087+
2088+
oneof field_suggester {}
20852089
}
20862090
enum FieldType {
20872091
FIELD_TYPE_UNSPECIFIED = 0;
@@ -2490,6 +2494,8 @@ message GeoDistanceSort {
24902494
optional DistanceUnit unit = 6;
24912495

24922496
optional GeoValidationMethod validation_method = 7;
2497+
2498+
map<string, GeoLocationArray> location = 8;
24932499
}
24942500
enum GeoDistanceType {
24952501
GEO_DISTANCE_TYPE_UNSPECIFIED = 0;
@@ -3270,6 +3276,8 @@ message InlineGetDictUserDefined {
32703276

32713277
// The source of the document.
32723278
optional ObjectMap x_source = 6;
3279+
3280+
optional ObjectMap metadata_fields = 7;
32733281
}
32743282
message InlineScript {
32753283
// Specifies any named parameters that are passed into the script as variables. Use parameters instead of hard-coded values to decrease compilation time.
@@ -3352,6 +3360,8 @@ message IntervalsContainer {
33523360
optional IntervalsPrefix prefix = 5;
33533361

33543362
optional IntervalsWildcard wildcard = 6;
3363+
3364+
oneof intervals_container {}
33553365
}
33563366
message IntervalsFilter {
33573367
optional IntervalsContainer after = 1;
@@ -3371,6 +3381,8 @@ message IntervalsFilter {
33713381
optional IntervalsContainer overlapping = 8;
33723382

33733383
optional Script script = 9;
3384+
3385+
oneof intervals_filter {}
33743386
}
33753387
message IntervalsFuzzy {
33763388
// Analyzer used to normalize the term.
@@ -3437,6 +3449,8 @@ message IntervalsQuery {
34373449
optional IntervalsWildcard wildcard = 8;
34383450

34393451
string field = 9;
3452+
3453+
oneof intervals_query {}
34403454
}
34413455
message IntervalsWildcard {
34423456
// Analyzer used to analyze the `pattern`. Defaults to the top-level field's analyzer.
@@ -3499,6 +3513,8 @@ message Items {
34993513
optional ResponseItem update = 3;
35003514

35013515
optional ResponseItem delete = 4;
3516+
3517+
oneof items {}
35023518
}
35033519
message KeyedPercentilesValue {
35043520
oneof keyed_percentiles_value {
@@ -4649,6 +4665,8 @@ message OperationContainer {
46494665
optional UpdateOperation update = 3;
46504666

46514667
optional DeleteOperation delete = 4;
4668+
4669+
oneof operation_container {}
46524670
}
46534671
enum Operator {
46544672
OPERATOR_UNSPECIFIED = 0;
@@ -5148,6 +5166,8 @@ message QueryContainer {
51485166
optional WrapperQuery wrapper = 57;
51495167

51505168
optional XyShapeQuery xy_shape = 58;
5169+
5170+
oneof query_container {}
51515171
}
51525172
message QueryProfile {
51535173
QueryBreakdown breakdown = 1;
@@ -6248,6 +6268,8 @@ message SmoothingModel {
62486268
optional LinearInterpolationSmoothingModel linear_interpolation = 2;
62496269

62506270
optional StupidBackoffSmoothingModel stupid_backoff = 3;
6271+
6272+
oneof smoothing_model {}
62516273
}
62526274
message SortCombinations {
62536275
oneof sort_combinations {
@@ -6275,6 +6297,8 @@ message SortOptions {
62756297
optional GeoDistanceSort x_geo_distance = 2;
62766298

62776299
optional ScriptSort x_script = 3;
6300+
6301+
oneof sort_options {}
62786302
}
62796303
enum SortOrder {
62806304
SORT_ORDER_UNSPECIFIED = 0;
@@ -6335,9 +6359,9 @@ message SpanFirstQuery {
63356359
SpanQuery match = 4;
63366360
}
63376361
message SpanGapQuery {
6338-
string field = 1;
6362+
map<string, int32> span_width = 1;
63396363

6340-
optional int32 span_width = 2;
6364+
oneof span_gap_query {}
63416365
}
63426366
message SpanMultiTermQuery {
63436367
// 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.
@@ -6411,6 +6435,8 @@ message SpanQuery {
64116435
optional SpanTermQuery span_term = 9;
64126436

64136437
optional SpanWithinQuery span_within = 10;
6438+
6439+
oneof span_query {}
64146440
}
64156441
message SpanTermQuery {
64166442
// 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.
@@ -6718,6 +6744,8 @@ enum SuggestSort {
67186744
message Suggester {
67196745
// The global suggest text, which avoids repetition when the same text is used in several suggesters.
67206746
optional string text = 1;
6747+
6748+
map<string, FieldSuggester> suggesters = 2;
67216749
}
67226750
message SuggesterBase {
67236751
optional string analyzer = 1;

0 commit comments

Comments
 (0)