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

    Interface DatapackComparisonStatus

    Comparison result for a single datapack root.

    interface DatapackComparisonStatus {
        datapackKey: string;
        datapackType: string;
        extraOrgRecords: DatapackComparisonExtraRecord[];
        inSync: boolean;
        inSyncCount: number;
        messages: string[];
        missingCount: number;
        outOfSyncCount: number;
        recordCount: number;
        records: DatapackRecordComparisonResult[];
        status: DatapackSyncState;
        unknownCount: number;
    }
    Index

    Properties

    datapackKey: string

    Key of the datapack root

    datapackType: string

    Type of the datapack

    Org records in the scope of this datapack that are not represented in the datapack; deleted when the datapack is deployed

    inSync: boolean

    True when all records in the datapack are in sync with the target org

    inSyncCount: number

    Number of records that are in sync with the target org

    messages: string[]

    Datapack level messages such as conversion errors

    missingCount: number

    Number of records missing in the target org

    outOfSyncCount: number

    Number of records with field values that differ from the target org

    recordCount: number

    Total number of records in the datapack

    Comparison details per record in the datapack

    Summarized sync state of the datapack

    unknownCount: number

    Number of records that could not be compared