kea-client
    Preparing search index...

    Interface KeaClientOptions

    interface KeaClientOptions {
        baseUrl: string;
        headers?: Record<string, string>;
        password?: string;
        timeoutMs?: number;
        username?: string;
    }
    Index
    baseUrl: string

    Base URL of the Kea Control Agent, e.g. http://127.0.0.1:8000.

    headers?: Record<string, string>

    Extra headers sent with every request.

    password?: string

    HTTP Basic Auth password.

    timeoutMs?: number

    Request timeout in milliseconds. Defaults to 10000.

    username?: string

    HTTP Basic Auth username, if the Control Agent has authentication configured.