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

    Interface CloudflareAuth

    interface CloudflareAuth {
        accountId: string | null;
        accounts: CloudflareAccount[];
        authenticated: boolean;
        email: string | null;
        remedy: string | null;
        source: "api-token" | "wrangler-oauth" | "none";
        tokenPresent: boolean;
        wrangler: string | null;
    }
    Index
    accountId: string | null
    accounts: CloudflareAccount[]
    authenticated: boolean
    email: string | null
    remedy: string | null

    what to run when the answer is "not logged in"

    source: "api-token" | "wrangler-oauth" | "none"

    which credential drangler would use, in the order wrangler itself resolves them

    tokenPresent: boolean

    true when CLOUDFLARE_API_TOKEN is set; the value is never read into the report

    wrangler: string | null