@archastro/sdk
    Preparing search index...

    Interface SolutionUpgradeResponse

    Response returned by the solution upgrade endpoint, containing the solution record, the full upgrade diff, and the resulting installed configs.

    interface SolutionUpgradeResponse {
        created_at?: string;
        id: string;
        installed_configs?: InstalledConfigEntry[];
        kind: string;
        lookup_key?: string;
        solution: SolutionSummary;
        updated_at?: string;
        upgrade_result: SolutionUpgradeResult;
        virtual_path?: string;
    }
    Index

    Properties

    created_at?: string

    When the solution config record was first created (ISO 8601). null if unavailable.

    id: string

    Config ID of the solution record (cfg_...).

    installed_configs?: InstalledConfigEntry[]

    List of config entries that were installed or updated as part of this upgrade. Empty when dry_run is true or when no configs changed.

    kind: string

    Object type discriminator. Always "Solution".

    lookup_key?: string

    Human-readable stable identifier for this solution config. null if not assigned.

    solution: SolutionSummary

    Summary of the solution being upgraded, including its name, manifest metadata, and tag keys.

    updated_at?: string

    When the solution config record was last modified (ISO 8601). null if unavailable.

    upgrade_result: SolutionUpgradeResult

    Detailed result of the upgrade operation, including the computed diff and any conflict information.

    virtual_path?: string

    Hierarchical path of the solution in the config tree. null if not assigned.