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,7 +45,7 @@ Authenticate a user. Authenticates a user and returns information about the auth
[source,ts]
----
interface SecurityAuthenticateRequest extends <<shared-type-request-base, RequestBase>> {
interface SecurityAuthenticateRequest extends <<RequestBase>> {
}
----
@ -58,11 +58,11 @@ interface SecurityAuthenticateResponse {
api_key?: SecurityApiKey
authentication_realm: SecurityRealmInfo
email?: string | null
full_name?: <<shared-type-name, Name>> | null
full_name?: <<Name>> | null
lookup_realm: SecurityRealmInfo
metadata: <<shared-type-metadata, Metadata>>
metadata: <<Metadata>>
roles: string[]
username: <<shared-type-username, Username>>
username: <<Username>>
enabled: boolean
authentication_type: string
token?: SecurityAuthenticateToken