data-cap
    Preparing search index...

    Interface ManifestChangeReport

    The diff between two ManifestSnapshots, in a fixed Added/Removed/Updated shape.

    interface ManifestChangeReport {
        addedCapabilities: readonly string[];
        removedCapabilities: readonly string[];
        updatedCapabilities: readonly ManifestCapabilityUpdate[];
    }
    Index
    addedCapabilities: readonly string[]

    Capability keys present in the new snapshot but not the previous one.

    removedCapabilities: readonly string[]

    Capability keys present in the previous snapshot but not the new one.

    updatedCapabilities: readonly ManifestCapabilityUpdate[]

    Capability keys present in both snapshots whose shape changed.