Use section headers for shared types

This commit is contained in:
Josh Mock
2024-11-19 12:23:01 -06:00
parent 6151aab208
commit ab21735b57
469 changed files with 2639 additions and 2850 deletions

View File

@ -45,10 +45,10 @@ Returns low-level information about the Lucene segments in index shards. For dat
[source,ts]
----
interface IndicesSegmentsRequest extends <<shared-type-request-base, RequestBase>> {
index?: <<shared-type-indices, Indices>>
interface IndicesSegmentsRequest extends <<RequestBase>> {
index?: <<Indices>>
allow_no_indices?: boolean
expand_wildcards?: <<shared-type-expand-wildcards, ExpandWildcards>>
expand_wildcards?: <<ExpandWildcards>>
ignore_unavailable?: boolean
verbose?: boolean
}
@ -61,7 +61,7 @@ interface IndicesSegmentsRequest extends <<shared-type-request-base, RequestBase
----
interface IndicesSegmentsResponse {
indices: Record<string, IndicesSegmentsIndexSegment>
_shards: <<shared-type-shard-statistics, ShardStatistics>>
_shards: <<ShardStatistics>>
}
----