@edgible-team/sdk
    Preparing search index...

    Interface StackDeployResult

    interface StackDeployResult {
        deployed: StackDeployedApp[];
        failed: StackOperationFailure[];
        plan?: StackDiffResult;
        planned: string[];
        skipped: string[];
        success: boolean;
        totalCount: number;
    }
    Index

    Properties

    deployed: StackDeployedApp[]

    Drift preview, populated only on dryRun runs (the same report StacksClient.diff produces). Absent on real deploys.

    planned: string[]

    Topological deploy order over the selected applications.

    skipped: string[]

    Not attempted because an earlier application in the order failed.

    success: boolean
    totalCount: number