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 @@ Create or update users. A password is required for adding a new user but is opti
[source,ts]
----
interface SecurityPutUserRequest extends <<shared-type-request-base, RequestBase>> {
username: <<shared-type-username, Username>>
refresh?: <<shared-type-refresh, Refresh>>
interface SecurityPutUserRequest extends <<RequestBase>> {
username: <<Username>>
refresh?: <<Refresh>>
email?: string | null
full_name?: string | null
metadata?: <<shared-type-metadata, Metadata>>
password?: <<shared-type-password, Password>>
metadata?: <<Metadata>>
password?: <<Password>>
password_hash?: string
roles?: string[]
enabled?: boolean