@versatiles/style
    Preparing search index...

    Type Alias GuessReport

    type GuessReport = {
        diagnostics: Diagnostic[];
        evidence: { layers: string[]; probe: string; zoom: number }[];
        provenance: ProvenanceMap;
        sources: { guess: SchemaGuess; id: string; type: string }[];
    }
    Index
    diagnostics: Diagnostic[]

    What could not be carried over, could only be guessed at, or had to be chosen between.

    Replaces the warnings: string[] and unmatched: string[] this used to carry: a string can only be printed, where a consumer wants to group, count, suppress, translate, and put a marker beside the setting a diagnostic concerns. Sorted (see sortDiagnostics), so a test diff is stable.

    evidence: { layers: string[]; probe: string; zoom: number }[]

    Per probe the style draws: the zoom it was read at and the layers it was read from, topmost first.

    provenance: ProvenanceMap

    Where each derived option came from, keyed by option path.

    Records the thing the options cannot: minimizeOptions deletes a derived value that equals the target's default, so a setting read from the style and one never derived both come out absent. See PROVENANCE_COVERS for which options are annotated.

    sources: { guess: SchemaGuess; id: string; type: string }[]

    Every vector and raster source, with the schema recognised for it.