drupflare/worker - v1.0.0
    Preparing search index...

    Type Alias InstallVerdict

    type InstallVerdict = {
        conflicts: Conflict[];
        name: string;
        note?: string;
        satisfied: string[];
        verdict: "installable" | "blocked" | "unverifiable" | "not-found";
        version: string | null;
    }
    Index
    conflicts: Conflict[]
    name: string
    note?: string
    satisfied: string[]

    requirements that were satisfied, for the audit trail an operator reads on a refusal

    verdict: "installable" | "blocked" | "unverifiable" | "not-found"

    installable only when every direct requirement is satisfied and none was unjudgeable

    version: string | null