prorm API Reference
    Preparing search index...

    Interface PinotStoreOptions

    Connection options for PinotStore.

    interface PinotStoreOptions {
        endpoint?: string;
        client?: PinotHttpClient;
        headers?: Record<string, string>;
    }
    Index
    endpoint?: string

    Base HTTP endpoint of the Pinot broker. Defaults to http://localhost:8000.

    client?: PinotHttpClient

    Optional pre-built HTTP client. When provided it is used verbatim and endpoint is ignored; otherwise an internal fetch-based client is built against endpoint on connect(). Tests inject a mock here.

    headers?: Record<string, string>

    Extra HTTP headers sent with every internal-client request.