@archastro/sdk
    Preparing search index...

    Interface SolutionDiffReference

    A reference from another config to an orphaned entry in a solution upgrade diff, explaining why the orphan cannot be safely removed.

    interface SolutionDiffReference {
        id: string;
        kind: string;
        lookup_key?: string;
        reason: string;
    }
    Index

    Properties

    id: string

    ID of the referencing config (cfg_...).

    kind: string

    Object type of the referencing config, e.g. "Automation" or "Template".

    lookup_key?: string

    Human-readable stable identifier of the referencing config. null if not assigned.

    reason: string

    Explanation of how the referencing config depends on the orphaned entry.