Async LegacyConfigOptions for well-known endpoint usage

interface OidcConfig {
    callbackFactory?: JourneyCallbackFactory;
    clientId: string;
    middleware?: LegacyRequestMiddleware[];
    oauthThreshold?: number;
    platformHeader?: boolean;
    prefix?: string;
    realmPath?: string;
    redirectUri: string;
    responseType?: ResponseType;
    scope: string;
    serverConfig: { timeout?: number; wellknown: string };
    tokenStore?: CustomStorageObject | "sessionStorage" | "localStorage";
    tree?: string;
    type?: string;
}

Hierarchy (View Summary)

Properties

callbackFactory?: JourneyCallbackFactory
clientId: string
oauthThreshold?: number
platformHeader?: boolean
prefix?: string
realmPath?: string
redirectUri: string
responseType?: ResponseType
scope: string
serverConfig: { timeout?: number; wellknown: string }
tokenStore?: CustomStorageObject | "sessionStorage" | "localStorage"
tree?: string
type?: string