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

    Type Alias InstallPlan

    type InstallPlan = {
        entries: CatalogEntry[];
        layers: LayerSpec[];
        ok: boolean;
        problems: string[];
        requested: string;
        totalBytes: number;
    }
    Index
    entries: CatalogEntry[]

    catalog entries in the same order as layers

    layers: LayerSpec[]

    every layer to mount, dependencies FIRST so a later layer can override an earlier one

    ok: boolean
    problems: string[]

    why it cannot be planned; empty when ok

    requested: string
    totalBytes: number