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,9 +45,9 @@ Authenticate SAML. Submits a SAML response message to Elasticsearch for consumpt
[source,ts]
----
interface SecuritySamlAuthenticateRequest extends <<shared-type-request-base, RequestBase>> {
interface SecuritySamlAuthenticateRequest extends <<RequestBase>> {
content: string
ids: <<shared-type-ids, Ids>>
ids: <<Ids>>
realm?: string
}
----
@ -60,7 +60,7 @@ interface SecuritySamlAuthenticateRequest extends <<shared-type-request-base, Re
interface SecuritySamlAuthenticateResponse {
access_token: string
username: string
expires_in: <<shared-type-integer, integer>>
expires_in: <<integer>>
refresh_token: string
realm: string
}