This commit is contained in:
parent
f7e5e4a9f9
commit
3207dc121e
1 changed files with 6 additions and 0 deletions
|
@ -12,6 +12,7 @@ export interface ServerInfoRepresentation {
|
|||
systemInfo?: SystemInfoRepresentation;
|
||||
memoryInfo?: MemoryInfoRepresentation;
|
||||
profileInfo?: ProfileInfoRepresentation;
|
||||
cryptoInfo?: CryptoInfoRepresentation;
|
||||
themes?: { [index: string]: ThemeInfoRepresentation[] };
|
||||
socialProviders?: { [index: string]: string }[];
|
||||
identityProviders?: { [index: string]: string }[];
|
||||
|
@ -68,3 +69,8 @@ export interface ProtocolMapperTypeRepresentation {
|
|||
priority: number;
|
||||
properties: ConfigPropertyRepresentation[];
|
||||
}
|
||||
|
||||
export interface CryptoInfoRepresentation {
|
||||
cryptoProvider: string;
|
||||
supportedKeystoreTypes: string[];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue