AskSQL API Reference (core v0.10.0)
    Preparing search index...

    Interface DynamicConnectionOptions

    interface DynamicConnectionOptions {
        allowedFileRoots?: readonly string[];
        allowedHosts?: readonly string[];
        allowFileEngines?: boolean;
        enabled: boolean;
    }
    Index
    allowedFileRoots?: readonly string[]

    Directories a client-supplied SQLite/DuckDB path may live under. Unset means anywhere.

    allowedHosts?: readonly string[]

    When set, only these hostnames may be dialled.

    allowFileEngines?: boolean

    Whether a client may name a server-side database file at all. Off unless set: the CLI turns it on for a loopback bind, where the caller is the machine's own user.

    enabled: boolean

    Must be explicitly true; anything else leaves the endpoints returning 404.