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

    Interface DatapackComparisonProgress

    Progress of a datapack comparison; reported through DatapackComparerOptions.onProgress.

    interface DatapackComparisonProgress {
        phase: "extract" | "resolve" | "compare";
        progress: number;
        total: number;
    }
    Index

    Properties

    Properties

    phase: "extract" | "resolve" | "compare"

    Phase of the comparison:

    • extract -- org records are bulk extracted per SObject type (progress counts types)
    • resolve -- records are resolved against the org in dependency order (lookups and data matching)
    • compare -- resolved records are compared field-by-field against the org data
    progress: number

    Number of records processed in the current phase

    total: number

    Total number of records in the current phase