@qtsurfer/api-client
    Preparing search index...

    Type Alias Notice

    A diagnostic the engine raised while the strategy ran. Advisory: it describes something worth knowing about how the strategy is wired, not necessarily an error.

    type Notice = {
        code: string;
        level: string;
        message: string;
        provenance?: "execute" | "compile-dry-run";
    }
    Index
    code: string

    Stable identifier for the kind of finding; safe to match on.

    level: string

    Severity as the engine classified it.

    message: string

    Human-readable explanation.

    provenance?: "execute" | "compile-dry-run"

    Where it came from, which matters because the two silences differ: an empty list from a real run (execute) is a clean bill of health, while an empty list from compile-dry-run is only a lower bound over a bounded synthetic series.