Represents configuration overrides used when requesting the next step in an authentication tree.

interface StepOptions {
    callbackFactory?: FRCallbackFactory;
    clientId?: string;
    middleware?: LegacyRequestMiddleware[];
    oauthThreshold?: number;
    platformHeader?: boolean;
    prefix?: string;
    query?: Record<string, string>;
    realmPath?: string;
    redirectUri?: string;
    scope?: string;
    serverConfig?: ServerConfig;
    tokenStore?: TokenStoreObject | "sessionStorage" | "localStorage";
    tree?: string;
    type?: string;
}

Hierarchy (View Summary)

Properties

callbackFactory?: FRCallbackFactory
clientId?: string
oauthThreshold?: number
platformHeader?: boolean
prefix?: string
query?: Record<string, string>
realmPath?: string
redirectUri?: string
scope?: string
serverConfig?: ServerConfig
tokenStore?: TokenStoreObject | "sessionStorage" | "localStorage"
tree?: string
type?: string