UNPKG

3.29 kBJavaScriptView Raw
1module.exports = {
2 retrieveCommandDescription: 'retrieve metadata from an org using Metadata API',
3 retrieveCommandLongDescription:
4 'Uses Metadata API to retrieve a .zip of XML files that represent metadata from ' +
5 'the targeted org. The default target username is the admin user for the default scratch org. You can ' +
6 'retrieve and deploy up to 10,000 files or 400 MB (39 MB compressed) at one time.',
7 retrieveCommandHelp:
8 'The default target username is the admin user for the default scratch org. You can ' +
9 'retrieve and deploy up to 10,000 files or 400 MB (39 MB compressed) at one time.',
10 reportCommandDescription: 'check the status of a metadata retrieval',
11 reportCommandLongDescription: 'Check the status of an asynchronous metadata retrieval.',
12 reportCommandHelp:
13 'Specify the job ID and a target directory for the retrieve you want to check. You can also ' +
14 'specify a wait time (minutes) to check for updates to the deploy status. If the retrieve was successful, ' +
15 'the resulting zip file will be saved to the location passed in with the retrieve target parameter.',
16 retrievetargetdirFlagDescription: 'directory root for the retrieved files',
17 retrievetargetdirFlagLongDescription:
18 'The root of the directory structure where the retrieved .zip or metadata files are put.',
19 unpackagedFlagDescription: 'file path of manifest of components to retrieve',
20 unpackagedFlagLongDescription: 'The complete path for the manifest file that specifies the components to retrieve.',
21 verboseFlagDescription: 'verbose output of retrieve result',
22 verboseFlagLongDescription: 'Indicates that you want verbose output from the retrieve operation.',
23 sourcedirFlagDescription: 'source dir to use instead of the default package dir in %s',
24 sourcedirFlagLongDescription: 'The source directory to use instead of the default package directory specified in %s',
25 singlepackageFlagDescription: 'Indicates that the zip file points to a directory structure for a single package',
26 singlepackageFlagLongDescription:
27 'Indicates that the specified .zip file points to a directory structure for a single package. By default, the CLI assumes the directory is structured for a set of packages.',
28 packagenamesFlagDescription: 'a comma-separated list of packages to retrieve',
29 packagenamesFlagLongDescription: 'A comma-separated list of package names to retrieve.',
30 apiversionFlagDescription: 'target API version for the retrieve (default %s)',
31 apiversionFlagLongDescription:
32 'Use to override the default, which is the latest version supported by ' +
33 'your CLI plug-in, with the version in your package.xml file.',
34 waitFlagDescription: 'wait time for command to finish in minutes (default: %s (no limit))',
35 waitFlagLongDescription: 'The number of minutes to wait for the command to complete.',
36 jobidDescription:
37 'job ID of the retrieve you want to check; defaults to your most recent CLI retrieval if not specified',
38 jobidLongDescription:
39 'The job ID (asyncId) of the retrieve you want to check. If not specified, the default value is the ID' +
40 ' of the most recent metadata retrieval you ran using Salesforce CLI. You must specify a ' +
41 '--retrievetargetdir. Use with --wait to resume waiting.'
42};