Interface HttpOptions

interface HttpOptions {
    body?: any;
    headers?: HashMap<string>;
    response_type?: HttpResponseType;
    skip_auth?: boolean;
    skip_auth_flow?: boolean;
}

Hierarchy (View Summary)

Properties

body?: any
headers?: HashMap<string>
response_type?: HttpResponseType
skip_auth?: boolean

Skip auth token lookup and auth-refresh retries for public endpoints

skip_auth_flow?: boolean

Attach auth when available, but do not trigger refresh/login recovery on failure