vlocode-project - v2.4.3
    Preparing search index...

    Interface DatapackDeploymentRecordStatus

    Detailed status of a single record within a datapack deployment describing which org record the datapack record was matched against and the action the deployment took (or will take) for it.

    interface DatapackDeploymentRecordStatus {
        action: "insert" | "update" | "none" | "skip";
        recordId?: string;
        sobjectType: string;
        sourceKey: string;
        status:
            | "deployed"
            | "retry"
            | "pending"
            | "inProgress"
            | "failed"
            | "skipped";
        statusMessage?: string;
    }
    Index

    Properties

    action: "insert" | "update" | "none" | "skip"

    Action the deployment performed (or will perform) for this record. Records that are up-to-date in the target org report a skip action when the delta check is enabled.

    recordId?: string

    ID of the org record this datapack record was matched against or deployed to; undefined for records that are inserted but not yet deployed.

    sobjectType: string

    SObject type of the record.

    sourceKey: string

    Source key of the datapack record.

    status: "deployed" | "retry" | "pending" | "inProgress" | "failed" | "skipped"

    Deployment status of the record.

    statusMessage?: string

    Additional status detail such as the failure reason or the skip reason (e.g. up-to-date for records skipped by the delta check).