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

    Class DatapackDeploymentSpecGroup

    Groups multiple spec implementation together and executes them in sequence, specs can be added to the group and only for the exposed methods on the specs the group will expose implementations.

    The order of execution of the specs is determine by the order in which they are added to the group.

    Implements

    Index

    Constructors

    Properties

    specFns: Map<string, ((...args: any[]) => any)[]> = ...

    Methods

    • Executed just before the records are being deployed; the event contains a readonly array of records. At this stage values for the records can still be manipulated. This hook point should only be used to run logic that depends on all dependencies on individual record level are resolved.

      Note: this runs on record level and use beforeDeploy to run datapack activation processes.

      Note: when this hook (re)calculates field values for the target org, clear the field in afterRecordConversion so the delta check does not compare the stale datapack value against the target org; cleared fields are excluded from any comparison and only set by this hook when the record is actually deployed.

      Parameters

      Returns unknown