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 @@ Get a token. Create a bearer token for access without requiring basic authentica
[source,ts]
----
interface SecurityGetTokenRequest extends <<shared-type-request-base, RequestBase>> {
interface SecurityGetTokenRequest extends <<RequestBase>> {
grant_type?: SecurityGetTokenAccessTokenGrantType
scope?: string
password?: <<shared-type-password, Password>>
password?: <<Password>>
kerberos_ticket?: string
refresh_token?: string
username?: <<shared-type-username, Username>>
username?: <<Username>>
}
----
@ -62,7 +62,7 @@ interface SecurityGetTokenRequest extends <<shared-type-request-base, RequestBas
----
interface SecurityGetTokenResponse {
access_token: string
expires_in: <<shared-type-long, long>>
expires_in: <<long>>
scope?: string
type: string
refresh_token?: string