drupflare/drangler - v0.1.0
    Preparing search index...

    Interface SiteStatus

    interface SiteStatus {
        config:
            | {
                compatibilityDate: string
                | null;
                main: string | null;
                name: string | null;
                path: string;
            }
            | null;
        diagnostics: "off"
        | "gated"
        | "open";
        generation: number | null;
        headerVersion: number | null;
        notes: string[];
        phpBooted: boolean | null;
        plan: string | null;
        reachable: boolean;
        target: string;
        tier: string | null;
    }
    Index
    config:
        | {
            compatibilityDate: string
            | null;
            main: string | null;
            name: string | null;
            path: string;
        }
        | null

    read from a local wrangler config when one was given or found; absent otherwise

    diagnostics: "off" | "gated" | "open"

    whether the diagnostic routes are open, which they should not be on a deployed site

    generation: number | null
    headerVersion: number | null
    notes: string[]
    phpBooted: boolean | null
    plan: string | null
    reachable: boolean
    target: string
    tier: string | null

    the tier that answered, which says how much of the stack the request actually touched