Add support for CryptoInfoRepresentation to ServerInfoRepresentation closes #3780 (#3781)

This commit is contained in:
Douglas Palmer 2022-11-16 02:35:53 -08:00 committed by GitHub
parent f7e5e4a9f9
commit 3207dc121e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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[];
}