prorm API Reference
    Preparing search index...

    Interface RocksetStoreOptions

    Connection options for RocksetStore.

    interface RocksetStoreOptions {
        apiKey?: string;
        host?: string;
        client?: RocksetClientLike;
    }
    Index
    apiKey?: string

    Rockset API key used to authenticate the client.

    host?: string

    Rockset API server host, e.g. https://api.usw2a1.rockset.com.

    client?: RocksetClientLike

    A pre-built @rockset/client instance (or compatible mock). When provided, connect() uses it directly and skips require('@rockset/client'). This is how tests inject a mock without the real driver installed.