@salesforce/plugin-deploy-retrieve 1.17.1 → 1.17.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -16,7 +16,59 @@ export default class DeployMetadataValidate extends SfCommand<DeployResultJson>
|
|
|
16
16
|
'metadata-dir': import("@oclif/core/lib/interfaces").OptionFlag<import("../../../utils/types").PathInfo | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
17
17
|
'single-package': import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
18
18
|
'target-org': import("@oclif/core/lib/interfaces").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
19
|
-
tests:
|
|
19
|
+
tests: {
|
|
20
|
+
helpGroup: string;
|
|
21
|
+
name: string;
|
|
22
|
+
char?: import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase | undefined;
|
|
23
|
+
summary?: string | undefined;
|
|
24
|
+
description?: string | undefined;
|
|
25
|
+
helpLabel?: string | undefined;
|
|
26
|
+
env?: string | undefined;
|
|
27
|
+
hidden?: boolean | undefined;
|
|
28
|
+
required?: boolean | undefined;
|
|
29
|
+
dependsOn?: string[] | undefined;
|
|
30
|
+
exclusive?: string[] | undefined;
|
|
31
|
+
exactlyOne?: string[] | undefined;
|
|
32
|
+
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
33
|
+
deprecated?: true | import("@oclif/core/lib/interfaces").Deprecation | undefined;
|
|
34
|
+
aliases?: string[] | undefined;
|
|
35
|
+
deprecateAliases?: boolean | undefined;
|
|
36
|
+
delimiter?: "," | undefined;
|
|
37
|
+
type: "option";
|
|
38
|
+
helpValue?: string | undefined;
|
|
39
|
+
options?: string[] | undefined;
|
|
40
|
+
multiple: false;
|
|
41
|
+
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string[] | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
42
|
+
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string[] | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
43
|
+
input: string[];
|
|
44
|
+
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string[] | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
45
|
+
} | {
|
|
46
|
+
helpGroup: string;
|
|
47
|
+
name: string;
|
|
48
|
+
char?: import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase | undefined;
|
|
49
|
+
summary?: string | undefined;
|
|
50
|
+
description?: string | undefined;
|
|
51
|
+
helpLabel?: string | undefined;
|
|
52
|
+
env?: string | undefined;
|
|
53
|
+
hidden?: boolean | undefined;
|
|
54
|
+
required?: boolean | undefined;
|
|
55
|
+
dependsOn?: string[] | undefined;
|
|
56
|
+
exclusive?: string[] | undefined;
|
|
57
|
+
exactlyOne?: string[] | undefined;
|
|
58
|
+
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
59
|
+
deprecated?: true | import("@oclif/core/lib/interfaces").Deprecation | undefined;
|
|
60
|
+
aliases?: string[] | undefined;
|
|
61
|
+
deprecateAliases?: boolean | undefined;
|
|
62
|
+
delimiter?: "," | undefined;
|
|
63
|
+
type: "option";
|
|
64
|
+
helpValue?: string | undefined;
|
|
65
|
+
options?: string[] | undefined;
|
|
66
|
+
multiple: true;
|
|
67
|
+
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string[] | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
68
|
+
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string[] | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
69
|
+
input: string[];
|
|
70
|
+
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<(string[] | undefined)[] | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
71
|
+
};
|
|
20
72
|
'test-level': import("@oclif/core/lib/interfaces").OptionFlag<TestLevel, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
21
73
|
verbose: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
22
74
|
wait: import("@oclif/core/lib/interfaces").OptionFlag<import("@salesforce/kit").Duration | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
@@ -26,6 +26,8 @@ const deployMessages = core_1.Messages.loadMessages('@salesforce/plugin-deploy-r
|
|
|
26
26
|
const EXACTLY_ONE_FLAGS = ['manifest', 'source-dir', 'metadata', 'metadata-dir'];
|
|
27
27
|
const destructiveFlags = 'Delete';
|
|
28
28
|
const testFlags = 'Test';
|
|
29
|
+
const sourceFormatFlags = 'Source Format';
|
|
30
|
+
const mdapiFormatFlags = 'Metadata API Format';
|
|
29
31
|
class DeployMetadataValidate extends sf_plugins_core_1.SfCommand {
|
|
30
32
|
async run() {
|
|
31
33
|
const [{ flags }, api] = await Promise.all([this.parse(DeployMetadataValidate), (0, deploy_1.resolveApi)(this.configAggregator)]);
|
|
@@ -115,12 +117,14 @@ DeployMetadataValidate.flags = {
|
|
|
115
117
|
description: messages.getMessage('flags.manifest.description'),
|
|
116
118
|
summary: messages.getMessage('flags.manifest.summary'),
|
|
117
119
|
exactlyOne: EXACTLY_ONE_FLAGS,
|
|
120
|
+
helpGroup: sourceFormatFlags,
|
|
118
121
|
}),
|
|
119
122
|
metadata: sf_plugins_core_1.Flags.string({
|
|
120
123
|
char: 'm',
|
|
121
124
|
summary: messages.getMessage('flags.metadata.summary'),
|
|
122
125
|
multiple: true,
|
|
123
126
|
exactlyOne: EXACTLY_ONE_FLAGS,
|
|
127
|
+
helpGroup: sourceFormatFlags,
|
|
124
128
|
}),
|
|
125
129
|
'source-dir': sf_plugins_core_1.Flags.string({
|
|
126
130
|
char: 'd',
|
|
@@ -128,15 +132,18 @@ DeployMetadataValidate.flags = {
|
|
|
128
132
|
summary: messages.getMessage('flags.source-dir.summary'),
|
|
129
133
|
multiple: true,
|
|
130
134
|
exactlyOne: EXACTLY_ONE_FLAGS,
|
|
135
|
+
helpGroup: sourceFormatFlags,
|
|
131
136
|
}),
|
|
132
137
|
'metadata-dir': (0, flags_1.fileOrDirFlag)({
|
|
133
138
|
summary: messages.getMessage('flags.metadata-dir.summary'),
|
|
134
139
|
exactlyOne: EXACTLY_ONE_FLAGS,
|
|
135
140
|
exists: true,
|
|
141
|
+
helpGroup: mdapiFormatFlags,
|
|
136
142
|
}),
|
|
137
143
|
'single-package': sf_plugins_core_1.Flags.boolean({
|
|
138
144
|
summary: messages.getMessage('flags.single-package.summary'),
|
|
139
145
|
dependsOn: ['metadata-dir'],
|
|
146
|
+
helpGroup: mdapiFormatFlags,
|
|
140
147
|
}),
|
|
141
148
|
'target-org': sf_plugins_core_1.Flags.requiredOrg({
|
|
142
149
|
char: 'o',
|
|
@@ -144,12 +151,13 @@ DeployMetadataValidate.flags = {
|
|
|
144
151
|
summary: messages.getMessage('flags.target-org.summary'),
|
|
145
152
|
required: true,
|
|
146
153
|
}),
|
|
147
|
-
tests: flags_1.testsFlag,
|
|
154
|
+
tests: { ...flags_1.testsFlag, helpGroup: testFlags },
|
|
148
155
|
'test-level': (0, flags_1.testLevelFlag)({
|
|
149
156
|
options: [types_1.TestLevel.RunAllTestsInOrg, types_1.TestLevel.RunLocalTests, types_1.TestLevel.RunSpecifiedTests],
|
|
150
157
|
default: types_1.TestLevel.RunLocalTests,
|
|
151
158
|
description: messages.getMessage('flags.test-level.description'),
|
|
152
159
|
summary: messages.getMessage('flags.test-level.summary'),
|
|
160
|
+
helpGroup: testFlags,
|
|
153
161
|
}),
|
|
154
162
|
verbose: sf_plugins_core_1.Flags.boolean({
|
|
155
163
|
summary: messages.getMessage('flags.verbose.summary'),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validate.js","sourceRoot":"","sources":["../../../../src/commands/project/deploy/validate.ts"],"names":[],"mappings":";;AAAA;;;;;GAKG;AACH,yBAAyB;AACzB,iCAA6B;AAC7B,2CAA0G;AAC1G,+EAA4G;AAC5G,iEAA8E;AAC9E,yCAA8C;AAC9C,+FAA4F;AAC5F,qFAAkF;AAClF,4DAA4D;AAC5D,gDAAmE;AACnE,kDAAoG;AACpG,0DAA6E;AAC7E,oDAAiD;AACjD,gDAAuG;AAEvG,eAAQ,CAAC,uBAAuB,CAAC,SAAS,CAAC,CAAC;AAC5C,MAAM,QAAQ,GAAG,eAAQ,CAAC,YAAY,CAAC,oCAAoC,EAAE,0BAA0B,CAAC,CAAC;AACzG,MAAM,cAAc,GAAG,eAAQ,CAAC,YAAY,CAAC,oCAAoC,EAAE,iBAAiB,CAAC,CAAC;AAEtG,MAAM,iBAAiB,GAAG,CAAC,UAAU,EAAE,YAAY,EAAE,UAAU,EAAE,cAAc,CAAC,CAAC;AACjF,MAAM,gBAAgB,GAAG,QAAQ,CAAC;AAClC,MAAM,SAAS,GAAG,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"validate.js","sourceRoot":"","sources":["../../../../src/commands/project/deploy/validate.ts"],"names":[],"mappings":"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"}
|
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.17.
|
|
2
|
+
"version": "1.17.3",
|
|
3
3
|
"commands": {
|
|
4
4
|
"deploy": {
|
|
5
5
|
"id": "deploy",
|
|
@@ -204,7 +204,7 @@
|
|
|
204
204
|
"char": "d",
|
|
205
205
|
"summary": "Output directory to store the Metadata API–formatted files in.",
|
|
206
206
|
"multiple": false,
|
|
207
|
-
"default": "
|
|
207
|
+
"default": "metadataPackage_1691611532650",
|
|
208
208
|
"deprecateAliases": true,
|
|
209
209
|
"aliases": [
|
|
210
210
|
"outputdir"
|
|
@@ -1532,6 +1532,7 @@
|
|
|
1532
1532
|
"char": "x",
|
|
1533
1533
|
"summary": "Full file path for manifest (package.xml) of components to validate for deployment.",
|
|
1534
1534
|
"description": "All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.",
|
|
1535
|
+
"helpGroup": "Source Format",
|
|
1535
1536
|
"multiple": false,
|
|
1536
1537
|
"deprecateAliases": true
|
|
1537
1538
|
},
|
|
@@ -1540,6 +1541,7 @@
|
|
|
1540
1541
|
"type": "option",
|
|
1541
1542
|
"char": "m",
|
|
1542
1543
|
"summary": "Metadata component names to validate for deployment.",
|
|
1544
|
+
"helpGroup": "Source Format",
|
|
1543
1545
|
"multiple": true,
|
|
1544
1546
|
"deprecateAliases": true
|
|
1545
1547
|
},
|
|
@@ -1549,6 +1551,7 @@
|
|
|
1549
1551
|
"char": "d",
|
|
1550
1552
|
"summary": "Path to the local source files to validate for deployment.",
|
|
1551
1553
|
"description": "The supplied path can be to a single file (in which case the operation is applied to only one file) or to a folder (in which case the operation is applied to all metadata types in the directory and its subdirectories).\n\nIf you specify this flag, don’t specify --metadata or --manifest.",
|
|
1554
|
+
"helpGroup": "Source Format",
|
|
1552
1555
|
"multiple": true,
|
|
1553
1556
|
"deprecateAliases": true
|
|
1554
1557
|
},
|
|
@@ -1556,6 +1559,7 @@
|
|
|
1556
1559
|
"name": "metadata-dir",
|
|
1557
1560
|
"type": "option",
|
|
1558
1561
|
"summary": "Root of directory or zip file of metadata formatted files to deploy.",
|
|
1562
|
+
"helpGroup": "Metadata API Format",
|
|
1559
1563
|
"multiple": false,
|
|
1560
1564
|
"deprecateAliases": true
|
|
1561
1565
|
},
|
|
@@ -1563,6 +1567,7 @@
|
|
|
1563
1567
|
"name": "single-package",
|
|
1564
1568
|
"type": "boolean",
|
|
1565
1569
|
"summary": "Indicates that the metadata zip file points to a directory structure for a single package.",
|
|
1570
|
+
"helpGroup": "Metadata API Format",
|
|
1566
1571
|
"allowNo": false,
|
|
1567
1572
|
"dependsOn": [
|
|
1568
1573
|
"metadata-dir"
|
|
@@ -1585,6 +1590,7 @@
|
|
|
1585
1590
|
"char": "t",
|
|
1586
1591
|
"summary": "Apex tests to run when --test-level is RunSpecifiedTests.",
|
|
1587
1592
|
"description": "If a test name contains a space, enclose it in double quotes.\nFor multiple test names, use one of the following formats:\n\n- Repeat the flag for multiple test names: --tests Test1 --tests Test2 --tests \"Test With Space\"\n- Separate the test names with spaces: --tests Test1 Test2 \"Test With Space\"",
|
|
1593
|
+
"helpGroup": "Test",
|
|
1588
1594
|
"multiple": true,
|
|
1589
1595
|
"dependsOn": [
|
|
1590
1596
|
"test-level"
|
|
@@ -1597,6 +1603,7 @@
|
|
|
1597
1603
|
"char": "l",
|
|
1598
1604
|
"summary": "Deployment Apex testing level.",
|
|
1599
1605
|
"description": "Valid values are:\n\n- RunSpecifiedTests — Runs only the tests that you specify with the --tests flag. Code coverage requirements differ from the default coverage requirements when using this test level. Executed tests must comprise a minimum of 75% code coverage for each class and trigger in the deployment package. This coverage is computed for each class and trigger individually and is different than the overall coverage percentage.\n\n- RunLocalTests — All tests in your org are run, except the ones that originate from installed managed and unlocked packages. This test level is the default.\n\n- RunAllTestsInOrg — All tests in your org are run, including tests of managed packages.",
|
|
1606
|
+
"helpGroup": "Test",
|
|
1600
1607
|
"multiple": false,
|
|
1601
1608
|
"options": [
|
|
1602
1609
|
"RunAllTestsInOrg",
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-deploy-retrieve",
|
|
3
3
|
"description": "deploy and retrieve commands for sf",
|
|
4
|
-
"version": "1.17.
|
|
4
|
+
"version": "1.17.3",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@oclif/core": "^2.11.7",
|
|
9
|
-
"@salesforce/apex-node": "^1.
|
|
9
|
+
"@salesforce/apex-node": "^2.1.0",
|
|
10
10
|
"@salesforce/core": "^5.2.0",
|
|
11
11
|
"@salesforce/kit": "^3.0.9",
|
|
12
12
|
"@salesforce/sf-plugins-core": "^3.1.14",
|
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@oclif/plugin-command-snapshot": "^4.0.7",
|
|
21
|
-
"@salesforce/cli-plugins-testkit": "^4.
|
|
21
|
+
"@salesforce/cli-plugins-testkit": "^4.3.0",
|
|
22
22
|
"@salesforce/dev-config": "^4.0.1",
|
|
23
23
|
"@salesforce/dev-scripts": "^5.7.0",
|
|
24
24
|
"@salesforce/plugin-command-reference": "^3.0.25",
|
|
25
|
-
"@salesforce/plugin-settings": "^1.4.
|
|
26
|
-
"@salesforce/plugin-source": "^2.10.
|
|
27
|
-
"@salesforce/plugin-templates": "^55.
|
|
28
|
-
"@salesforce/plugin-user": "^2.3.
|
|
25
|
+
"@salesforce/plugin-settings": "^1.4.24",
|
|
26
|
+
"@salesforce/plugin-source": "^2.10.29",
|
|
27
|
+
"@salesforce/plugin-templates": "^55.5.8",
|
|
28
|
+
"@salesforce/plugin-user": "^2.3.28",
|
|
29
29
|
"@salesforce/prettier-config": "^0.0.3",
|
|
30
30
|
"@salesforce/source-testkit": "^2.1.20",
|
|
31
31
|
"@salesforce/ts-sinon": "1.4.12",
|
|
@@ -267,7 +267,7 @@
|
|
|
267
267
|
}
|
|
268
268
|
},
|
|
269
269
|
"sfdx": {
|
|
270
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/1.17.
|
|
271
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/1.17.
|
|
270
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/1.17.3.crt",
|
|
271
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/1.17.3.sig"
|
|
272
272
|
}
|
|
273
273
|
}
|