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

    Type Alias RecordMatchOutcome

    RecordMatchOutcome:
        | { message?: string; recordId: string; status: "inSync" }
        | {
            message?: string;
            missingData: Record<string, unknown>;
            status: "missing";
        }
        | { message: string; status: "unknown" }

    Outcome of matching a datapack record without matching key against org data.

    Type Declaration

    • { message?: string; recordId: string; status: "inSync" }

      An org record with identical data was found in the target org

    • { message?: string; missingData: Record<string, unknown>; status: "missing" }

      No org record matches the record data; the record data is missing in the target org

    • { message: string; status: "unknown" }

      The record could not be matched against the target org