@infosel-sdk/core
Version:
Core SDK for Infosel financial services platform. Provides essential infrastructure for authentication, HTTP/GraphQL communication, storage management, and error handling.
12 lines (11 loc) • 346 B
TypeScript
export interface KeyClockAuthProviderConfig {
readonly type: 'key-cloak';
readonly credentials: {
readonly grant_type: string;
readonly client_id: string;
readonly client_secret: string;
};
readonly realm?: string;
}
type AuthProviderConfig = KeyClockAuthProviderConfig;
export default AuthProviderConfig;