data-cap
    Preparing search index...

    Interface ManifestCapabilityUpdate

    One capability whose snapshot shape changed between two runs.

    interface ManifestCapabilityUpdate {
        capability: string;
        changes: readonly string[];
        fields: ManifestFieldDiff;
    }
    Index
    capability: string

    The capability key (file#exportName) that changed.

    changes: readonly string[]

    Human-readable description of each individual change (e.g. "owner changed from ... to ...").

    The same field-level diff changes describes in prose, as data (EVD-05). Added so ChangeModel's rename correlation has something to match against without re-parsing a human-readable sentence -- a report deriving structure back out of its own prose is exactly the kind of fragility this codebase avoids. changes is unaffected and still reads the same.