Fix number type links

This commit is contained in:
Josh Mock
2024-11-20 13:07:25 -06:00
parent d9938f7973
commit 7a997b3405
114 changed files with 834 additions and 834 deletions

View File

@ -51,7 +51,7 @@ interface FleetSearchRequest extends <<RequestBase>> {
allow_no_indices?: boolean
analyzer?: string
analyze_wildcard?: boolean
batched_reduce_size?: <<_long, long>>
batched_reduce_size?: <<long>>
ccs_minimize_roundtrips?: boolean
default_operator?: <<QueryDslOperator>>
df?: string
@ -59,17 +59,17 @@ interface FleetSearchRequest extends <<RequestBase>> {
ignore_throttled?: boolean
ignore_unavailable?: boolean
lenient?: boolean
max_concurrent_shard_requests?: <<_long, long>>
max_concurrent_shard_requests?: <<long>>
min_compatible_shard_node?: <<VersionString>>
preference?: string
pre_filter_shard_size?: <<_long, long>>
pre_filter_shard_size?: <<long>>
request_cache?: boolean
routing?: <<Routing>>
scroll?: <<Duration>>
search_type?: <<SearchType>>
suggest_field?: <<Field>>
suggest_mode?: <<SuggestMode>>
suggest_size?: <<_long, long>>
suggest_size?: <<long>>
suggest_text?: string
typed_keys?: boolean
rest_total_hits_as_int?: boolean
@ -84,25 +84,25 @@ interface FleetSearchRequest extends <<RequestBase>> {
collapse?: SearchFieldCollapse
explain?: boolean
ext?: Record<string, any>
from?: <<_integer, integer>>
from?: <<integer>>
highlight?: SearchHighlight
track_total_hits?: SearchTrackHits
indices_boost?: Record<<<IndexName>>, <<_double, double>>>[]
indices_boost?: Record<<<IndexName>>, <<double>>>[]
docvalue_fields?: (<<QueryDslFieldAndFormat>> | <<Field>>)[]
min_score?: <<_double, double>>
min_score?: <<double>>
post_filter?: <<QueryDslQueryContainer>>
profile?: boolean
query?: <<QueryDslQueryContainer>>
rescore?: SearchRescore | SearchRescore[]
script_fields?: Record<string, <<ScriptField>>>
search_after?: <<SortResults>>
size?: <<_integer, integer>>
size?: <<integer>>
slice?: <<SlicedScroll>>
sort?: <<Sort>>
_source?: SearchSourceConfig
fields?: (<<QueryDslFieldAndFormat>> | <<Field>>)[]
suggest?: SearchSuggester
terminate_after?: <<_long, long>>
terminate_after?: <<long>>
timeout?: string
track_scores?: boolean
version?: boolean
@ -125,15 +125,15 @@ interface FleetSearchRequest extends <<RequestBase>> {
<pre>
++++
interface FleetSearchResponse<TDocument = unknown> {
took: <<_long, long>>
took: <<long>>
timed_out: boolean
_shards: <<ShardStatistics>>
hits: SearchHitsMetadata<TDocument>
aggregations?: Record<<<AggregateName>>, <<AggregationsAggregate>>>
_clusters?: <<ClusterStatistics>>
fields?: Record<string, any>
max_score?: <<_double, double>>
num_reduce_phases?: <<_long, long>>
max_score?: <<double>>
num_reduce_phases?: <<long>>
profile?: SearchProfile
pit_id?: <<Id>>
_scroll_id?: <<ScrollId>>