@@ -560,6 +560,7 @@ export interface MsearchMultisearchBody {
560
560
collapse ?: SearchFieldCollapse
561
561
query ?: QueryDslQueryContainer
562
562
explain ?: boolean
563
+ ext ?: Record < string , any >
563
564
stored_fields ?: Fields
564
565
docvalue_fields ?: ( QueryDslFieldAndFormat | Field ) [ ]
565
566
knn ?: KnnQuery
@@ -987,6 +988,7 @@ export interface SearchRequest extends RequestBase {
987
988
aggs ?: Record < string , AggregationsAggregationContainer >
988
989
collapse ?: SearchFieldCollapse
989
990
explain ?: boolean
991
+ ext ?: Record < string , any >
990
992
from ?: integer
991
993
highlight ?: SearchHighlight
992
994
track_total_hits ?: SearchTrackHits
@@ -1876,7 +1878,7 @@ export type EpochTime<Unit = unknown> = Unit
1876
1878
1877
1879
export interface ErrorCauseKeys {
1878
1880
type : string
1879
- reason : string
1881
+ reason ? : string
1880
1882
stack_trace ?: string
1881
1883
caused_by ?: ErrorCause
1882
1884
root_cause ?: ErrorCause [ ]
@@ -2954,7 +2956,7 @@ export interface AggregationsFormattableMetricAggregation extends AggregationsMe
2954
2956
export type AggregationsGapPolicy = 'skip' | 'insert_zeros'
2955
2957
2956
2958
export interface AggregationsGeoBoundsAggregate extends AggregationsAggregateBase {
2957
- bounds : GeoBounds
2959
+ bounds ? : GeoBounds
2958
2960
}
2959
2961
2960
2962
export interface AggregationsGeoBoundsAggregation extends AggregationsMetricAggregationBase {
@@ -3953,17 +3955,18 @@ export type AnalysisIcuCollationStrength = 'primary' | 'secondary' | 'tertiary'
3953
3955
3954
3956
export interface AnalysisIcuCollationTokenFilter extends AnalysisTokenFilterBase {
3955
3957
type : 'icu_collation'
3956
- alternate : AnalysisIcuCollationAlternate
3957
- caseFirst : AnalysisIcuCollationCaseFirst
3958
- caseLevel : boolean
3959
- country : string
3960
- decomposition : AnalysisIcuCollationDecomposition
3961
- hiraganaQuaternaryMode : boolean
3962
- language : string
3963
- numeric : boolean
3964
- strength : AnalysisIcuCollationStrength
3958
+ alternate ?: AnalysisIcuCollationAlternate
3959
+ caseFirst ?: AnalysisIcuCollationCaseFirst
3960
+ caseLevel ?: boolean
3961
+ country ?: string
3962
+ decomposition ?: AnalysisIcuCollationDecomposition
3963
+ hiraganaQuaternaryMode ?: boolean
3964
+ language ?: string
3965
+ numeric ?: boolean
3966
+ rules ?: string
3967
+ strength ?: AnalysisIcuCollationStrength
3965
3968
variableTop ?: string
3966
- variant : string
3969
+ variant ? : string
3967
3970
}
3968
3971
3969
3972
export interface AnalysisIcuFoldingTokenFilter extends AnalysisTokenFilterBase {
@@ -4785,7 +4788,7 @@ export interface MappingRuntimeField {
4785
4788
4786
4789
export type MappingRuntimeFieldType = 'boolean' | 'date' | 'double' | 'geo_point' | 'ip' | 'keyword' | 'long'
4787
4790
4788
- export type MappingRuntimeFields = Record < Field , MappingRuntimeField | MappingRuntimeField [ ] >
4791
+ export type MappingRuntimeFields = Record < Field , MappingRuntimeField >
4789
4792
4790
4793
export interface MappingScaledFloatNumberProperty extends MappingNumberPropertyBase {
4791
4794
type : 'scaled_float'
@@ -5753,6 +5756,7 @@ export interface AsyncSearchSubmitRequest extends RequestBase {
5753
5756
aggs ?: Record < string , AggregationsAggregationContainer >
5754
5757
collapse ?: SearchFieldCollapse
5755
5758
explain ?: boolean
5759
+ ext ?: Record < string , any >
5756
5760
from ?: integer
5757
5761
highlight ?: SearchHighlight
5758
5762
track_total_hits ?: SearchTrackHits
@@ -7879,7 +7883,7 @@ export interface ClusterComponentTemplateNode {
7879
7883
export interface ClusterComponentTemplateSummary {
7880
7884
_meta ?: Metadata
7881
7885
version ?: VersionNumber
7882
- settings : Record < IndexName , IndicesIndexSettings >
7886
+ settings ? : Record < IndexName , IndicesIndexSettings >
7883
7887
mappings ?: MappingTypeMapping
7884
7888
aliases ?: Record < string , IndicesAliasDefinition >
7885
7889
}
@@ -8812,6 +8816,7 @@ export interface FleetSearchRequest extends RequestBase {
8812
8816
aggs ?: Record < string , AggregationsAggregationContainer >
8813
8817
collapse ?: SearchFieldCollapse
8814
8818
explain ?: boolean
8819
+ ext ?: Record < string , any >
8815
8820
from ?: integer
8816
8821
highlight ?: SearchHighlight
8817
8822
track_total_hits ?: SearchTrackHits
@@ -9329,8 +9334,7 @@ export interface IndicesIndexTemplateSummary {
9329
9334
}
9330
9335
9331
9336
export interface IndicesIndexVersioning {
9332
- created : VersionString
9333
- created_string ?: VersionString
9337
+ created ?: VersionString
9334
9338
}
9335
9339
9336
9340
export interface IndicesIndexingPressure {
@@ -15381,7 +15385,7 @@ export interface SecurityGetTokenResponse {
15381
15385
expires_in : long
15382
15386
scope ?: string
15383
15387
type : string
15384
- refresh_token : string
15388
+ refresh_token ? : string
15385
15389
kerberos_authentication_response_token ?: string
15386
15390
authentication : SecurityGetTokenAuthenticatedUser
15387
15391
}
0 commit comments