@archastro/sdk
    Preparing search index...

    Interface SolutionDiffSummary

    Aggregate counts of each action type across all entries in a solution upgrade diff.

    interface SolutionDiffSummary {
        adds: number;
        deletes: number;
        noops: number;
        orphans: number;
        referenced_orphans: number;
        updates: number;
    }
    Index

    Properties

    adds: number

    Number of config entries that will be newly created by this upgrade.

    deletes: number

    Number of config entries that will be deleted as part of the upgrade.

    noops: number

    Number of config entries that are already up to date and require no changes.

    orphans: number

    Number of config entries present in the existing solution that are absent from the incoming version and have no external references blocking removal.

    referenced_orphans: number

    Number of orphaned config entries that cannot be removed because other configs still reference them.

    updates: number

    Number of config entries that exist and will be updated with new content.