Interface StateInterface

interface StateInterface {
    adminClientId?: string;
    adminClientRedirectUri?: string;
    allowInsecureConnection?: boolean;
    amVersion?: string;
    authenticationHeaderOverrides?: Record<string, string>;
    authenticationService?: string;
    autoRefreshTimer?: Timeout;
    axiosRetryConfig?: IAxiosRetryConfig;
    bearerToken?: AccessTokenMetaType;
    connectionProfilesPath?: string;
    cookieName?: string;
    createProgressHandler?: (
        type: ProgressIndicatorType,
        total?: number,
        message?: string,
    ) => string;
    curlirize?: boolean;
    curlirizeHandler?: (message: string) => void;
    debug?: boolean;
    debugHandler?: (message: string | object) => void;
    deploymentType?: string;
    directory?: string;
    errorHandler?: (error: Error, message: string) => void;
    features?: FeatureInterface[];
    frodoVersion?: string;
    host?: string;
    idmHost?: string;
    logApiKey?: string;
    logApiSecret?: string;
    masterKeyPath?: string;
    outputFile?: string;
    password?: string;
    printHandler?: (
        message: string | object,
        type?: string,
        newline?: boolean,
    ) => void;
    realm?: string;
    serviceAccountId?: string;
    serviceAccountJwk?: JwkRsa;
    serviceAccountScope?: string;
    stopProgressHandler?: (
        id: string,
        message: string,
        status?: string,
    ) => void;
    tokenCachePath?: string;
    updateProgressHandler?: (id: string, message: string) => void;
    useBearerTokenForAmApis?: boolean;
    username?: string;
    userSessionToken?: UserSessionMetaType;
    useTokenCache?: boolean;
    verbose?: boolean;
    verboseHandler?: (message: string | object) => void;
}

Properties

adminClientId?: string
adminClientRedirectUri?: string
allowInsecureConnection?: boolean
amVersion?: string
authenticationHeaderOverrides?: Record<string, string>
authenticationService?: string
autoRefreshTimer?: Timeout
axiosRetryConfig?: IAxiosRetryConfig
bearerToken?: AccessTokenMetaType
connectionProfilesPath?: string
cookieName?: string
createProgressHandler?: (
    type: ProgressIndicatorType,
    total?: number,
    message?: string,
) => string
curlirize?: boolean
curlirizeHandler?: (message: string) => void
debug?: boolean
debugHandler?: (message: string | object) => void
deploymentType?: string
directory?: string
errorHandler?: (error: Error, message: string) => void
features?: FeatureInterface[]
frodoVersion?: string
host?: string
idmHost?: string
logApiKey?: string
logApiSecret?: string
masterKeyPath?: string
outputFile?: string
password?: string
printHandler?: (
    message: string | object,
    type?: string,
    newline?: boolean,
) => void
realm?: string
serviceAccountId?: string
serviceAccountJwk?: JwkRsa
serviceAccountScope?: string
stopProgressHandler?: (id: string, message: string, status?: string) => void
tokenCachePath?: string
updateProgressHandler?: (id: string, message: string) => void
useBearerTokenForAmApis?: boolean
username?: string
userSessionToken?: UserSessionMetaType
useTokenCache?: boolean
verbose?: boolean
verboseHandler?: (message: string | object) => void