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,13 +45,13 @@ Force buffered data to be processed. The flush jobs API is only applicable when
[source,ts]
----
interface MlFlushJobRequest extends <<shared-type-request-base, RequestBase>> {
job_id: <<shared-type-id, Id>>
advance_time?: <<shared-type-date-time, DateTime>>
interface MlFlushJobRequest extends <<RequestBase>> {
job_id: <<Id>>
advance_time?: <<DateTime>>
calc_interim?: boolean
end?: <<shared-type-date-time, DateTime>>
skip_time?: <<shared-type-date-time, DateTime>>
start?: <<shared-type-date-time, DateTime>>
end?: <<DateTime>>
skip_time?: <<DateTime>>
start?: <<DateTime>>
}
----
@ -62,7 +62,7 @@ interface MlFlushJobRequest extends <<shared-type-request-base, RequestBase>> {
----
interface MlFlushJobResponse {
flushed: boolean
last_finalized_bucket_end?: <<shared-type-integer, integer>>
last_finalized_bucket_end?: <<integer>>
}
----