RetrieveOptions: {
    format?: SfdxFileFormat;
    merge?: boolean;
    output: SourcePath;
    packageOptions?: PackageOptions;
    singlePackage?: boolean;
    suppressEvents?: boolean;
    unzip?: boolean;
    zipFileName?: string;
}

Type declaration

  • Optionalformat?: SfdxFileFormat

    The file format desired for the retrieved files.

  • Optionalmerge?: boolean

    Whether or not to merge and replace input components with the retrieved versions.

  • output: SourcePath

    The directory to retrieve components to. If merge: true, components are only retrieved to output if there wasn't a component to merge with.

  • OptionalpackageOptions?: PackageOptions

    A list of package names to retrieve, or package names and their retrieval locations.

  • OptionalsinglePackage?: boolean

    Specifies whether only a single package is being retrieved (true) or not (false). If false, then more than one package is being retrieved.

  • OptionalsuppressEvents?: boolean

    Specifies whether to suppress the <Pre|Post> events

  • Optionalunzip?: boolean

    Specifies whether to unzip the retrieved zip file. Only applies when format: metadata.

  • OptionalzipFileName?: string

    The name of the retrieved zip file containing the source from the org. Only applies when format: metadata.