@salesforce/plugin-deploy-retrieve 1.8.5-beta.4 → 1.8.5-beta.6
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.
- package/lib/commands/project/convert/mdapi.js +1 -1
- package/lib/commands/project/convert/mdapi.js.map +1 -1
- package/lib/commands/project/convert/source.d.ts +53 -1
- package/lib/commands/project/convert/source.js +2 -2
- package/lib/commands/project/convert/source.js.map +1 -1
- package/lib/commands/project/delete/tracking.js +1 -1
- package/lib/commands/project/delete/tracking.js.map +1 -1
- package/lib/commands/project/deploy/cancel.d.ts +0 -1
- package/lib/commands/project/deploy/cancel.js +0 -1
- package/lib/commands/project/deploy/cancel.js.map +1 -1
- package/lib/commands/project/deploy/preview.d.ts +0 -2
- package/lib/commands/project/deploy/preview.js +2 -7
- package/lib/commands/project/deploy/preview.js.map +1 -1
- package/lib/commands/project/deploy/quick.d.ts +0 -1
- package/lib/commands/project/deploy/quick.js +0 -1
- package/lib/commands/project/deploy/quick.js.map +1 -1
- package/lib/commands/project/deploy/report.d.ts +0 -1
- package/lib/commands/project/deploy/report.js +0 -1
- package/lib/commands/project/deploy/report.js.map +1 -1
- package/lib/commands/project/deploy/resume.d.ts +0 -1
- package/lib/commands/project/deploy/resume.js +2 -2
- package/lib/commands/project/deploy/resume.js.map +1 -1
- package/lib/commands/project/deploy/start.d.ts +0 -1
- package/lib/commands/project/deploy/start.js +0 -1
- package/lib/commands/project/deploy/start.js.map +1 -1
- package/lib/commands/project/deploy/validate.d.ts +0 -1
- package/lib/commands/project/deploy/validate.js +1 -2
- package/lib/commands/project/deploy/validate.js.map +1 -1
- package/lib/commands/project/{manifest/create.d.ts → generate/manifest.d.ts} +5 -5
- package/lib/commands/project/{manifest/create.js → generate/manifest.js} +23 -24
- package/lib/commands/project/generate/manifest.js.map +1 -0
- package/lib/commands/project/list/ignored.d.ts +24 -0
- package/lib/commands/project/list/ignored.js +85 -0
- package/lib/commands/project/list/ignored.js.map +1 -0
- package/lib/commands/project/reset/tracking.js +1 -1
- package/lib/commands/project/reset/tracking.js.map +1 -1
- package/lib/commands/project/retrieve/preview.d.ts +0 -1
- package/lib/commands/project/retrieve/preview.js +0 -1
- package/lib/commands/project/retrieve/preview.js.map +1 -1
- package/lib/commands/project/retrieve/start.d.ts +0 -1
- package/lib/commands/project/retrieve/start.js +0 -1
- package/lib/commands/project/retrieve/start.js.map +1 -1
- package/lib/formatters/deployResultFormatter.js +1 -1
- package/lib/formatters/deployResultFormatter.js.map +1 -1
- package/lib/utils/previewOutput.d.ts +1 -1
- package/lib/utils/previewOutput.js +22 -17
- package/lib/utils/previewOutput.js.map +1 -1
- package/lib/utils/progressBar.d.ts +1 -0
- package/lib/utils/progressBar.js +21 -17
- package/lib/utils/progressBar.js.map +1 -1
- package/messages/convert.source.md +4 -0
- package/messages/list.ignored.md +17 -0
- package/messages/{manifest.create.md → manifest.generate.md} +6 -6
- package/oclif.manifest.json +57 -33
- package/package.json +10 -6
- package/schemas/{project-manifest-create.json → project-generate-manifest.json} +2 -2
- package/schemas/project-list-ignored.json +19 -0
- package/lib/commands/project/manifest/create.js.map +0 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# description
|
|
2
|
+
|
|
3
|
+
check your local project package directories for forceignored files
|
|
4
|
+
|
|
5
|
+
# examples
|
|
6
|
+
|
|
7
|
+
- $ <%= config.bin %> <%= command.id %>
|
|
8
|
+
|
|
9
|
+
- $ <%= config.bin %> <%= command.id %> --source-dir force-app
|
|
10
|
+
|
|
11
|
+
# flags.source-dir
|
|
12
|
+
|
|
13
|
+
file or directory of files that the command checks for foreceignored files
|
|
14
|
+
|
|
15
|
+
# invalidSourceDir
|
|
16
|
+
|
|
17
|
+
File or directory '%s' doesn't exist in your project. Specify one that exists and rerun the command.
|
|
@@ -6,7 +6,7 @@ Create a project manifest that lists the metadata components you want to deploy
|
|
|
6
6
|
|
|
7
7
|
Create a manifest from a list of metadata components (--metadata) or from one or more local directories that contain source files (--source-dir). You can specify either of these parameters, not both.
|
|
8
8
|
|
|
9
|
-
Use --
|
|
9
|
+
Use --type to specify the type of manifest you want to create. The resulting manifest files have specific names, such as the standard package.xml or destructiveChanges.xml to delete metadata. Valid values for this parameter, and their respective file names, are:
|
|
10
10
|
|
|
11
11
|
* package : package.xml (default)
|
|
12
12
|
* pre : destructiveChangesPre.xml
|
|
@@ -15,7 +15,7 @@ Use --manifest-type to specify the type of manifest you want to create. The resu
|
|
|
15
15
|
|
|
16
16
|
See https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_deploy_deleting_files.htm for information about these destructive manifest files.
|
|
17
17
|
|
|
18
|
-
Use --
|
|
18
|
+
Use --name to specify a custom name for the generated manifest if the pre-defined ones don’t suit your needs. You can specify either --type or --name, but not both.
|
|
19
19
|
|
|
20
20
|
# examples
|
|
21
21
|
|
|
@@ -25,11 +25,11 @@ Use --manifest-name to specify a custom name for the generated manifest if the p
|
|
|
25
25
|
|
|
26
26
|
- Create a manifest for deleting the specified Apex class:
|
|
27
27
|
|
|
28
|
-
$ <%= config.bin %> <%= command.id %> --metadata ApexClass:MyApexClass --
|
|
28
|
+
$ <%= config.bin %> <%= command.id %> --metadata ApexClass:MyApexClass --type destroy
|
|
29
29
|
|
|
30
30
|
- Create a manifest for deploying or retrieving all the metadata components in the specified local directory; name the file myNewManifest.xml:
|
|
31
31
|
|
|
32
|
-
$ <%= config.bin %> <%= command.id %> --source-dir force-app --
|
|
32
|
+
$ <%= config.bin %> <%= command.id %> --source-dir force-app --name myNewManifest
|
|
33
33
|
|
|
34
34
|
- Create a manifest from the metadata components in the specified org and include metadata in any unlocked packages:
|
|
35
35
|
|
|
@@ -43,11 +43,11 @@ Comma-separated list of package types (managed, unlocked) whose metadata is incl
|
|
|
43
43
|
|
|
44
44
|
Username or alias of the org that contains the metadata components from which to build a manifest.
|
|
45
45
|
|
|
46
|
-
# flags.
|
|
46
|
+
# flags.type.summary
|
|
47
47
|
|
|
48
48
|
Type of manifest to create; the type determines the name of the created file.
|
|
49
49
|
|
|
50
|
-
# flags.
|
|
50
|
+
# flags.name.summary
|
|
51
51
|
|
|
52
52
|
Name of a custom manifest file to create.
|
|
53
53
|
|
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.8.5-beta.
|
|
2
|
+
"version": "1.8.5-beta.6",
|
|
3
3
|
"commands": {
|
|
4
4
|
"deploy": {
|
|
5
5
|
"id": "deploy",
|
|
@@ -38,7 +38,6 @@
|
|
|
38
38
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
39
39
|
"pluginType": "core",
|
|
40
40
|
"aliases": [
|
|
41
|
-
"force:mdapi:beta:convert",
|
|
42
41
|
"force:mdapi:convert"
|
|
43
42
|
],
|
|
44
43
|
"examples": [
|
|
@@ -169,6 +168,7 @@
|
|
|
169
168
|
"api-version": {
|
|
170
169
|
"name": "api-version",
|
|
171
170
|
"type": "option",
|
|
171
|
+
"summary": "API Version to use in the generated project's manifest. By default, will use the version from sfdx-project.json",
|
|
172
172
|
"description": "Override the api version used for api requests made by this command",
|
|
173
173
|
"multiple": false,
|
|
174
174
|
"deprecateAliases": true,
|
|
@@ -203,7 +203,7 @@
|
|
|
203
203
|
"char": "d",
|
|
204
204
|
"summary": "Output directory to store the Metadata API–formatted files in.",
|
|
205
205
|
"multiple": false,
|
|
206
|
-
"default": "
|
|
206
|
+
"default": "metadataPackage_1679932843039",
|
|
207
207
|
"deprecateAliases": true,
|
|
208
208
|
"aliases": [
|
|
209
209
|
"outputdir"
|
|
@@ -450,7 +450,6 @@
|
|
|
450
450
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
451
451
|
"pluginType": "core",
|
|
452
452
|
"aliases": [
|
|
453
|
-
"force:source:beta:tracking:clear",
|
|
454
453
|
"force:source:tracking:clear"
|
|
455
454
|
],
|
|
456
455
|
"examples": [],
|
|
@@ -521,7 +520,6 @@
|
|
|
521
520
|
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
522
521
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
523
522
|
"pluginType": "core",
|
|
524
|
-
"state": "beta",
|
|
525
523
|
"aliases": [
|
|
526
524
|
"deploy:metadata:cancel"
|
|
527
525
|
],
|
|
@@ -593,7 +591,6 @@
|
|
|
593
591
|
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
594
592
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
595
593
|
"pluginType": "core",
|
|
596
|
-
"state": "beta",
|
|
597
594
|
"aliases": [
|
|
598
595
|
"deploy:metadata:preview"
|
|
599
596
|
],
|
|
@@ -623,14 +620,6 @@
|
|
|
623
620
|
"allowNo": false,
|
|
624
621
|
"deprecateAliases": true
|
|
625
622
|
},
|
|
626
|
-
"only-ignored": {
|
|
627
|
-
"name": "only-ignored",
|
|
628
|
-
"type": "boolean",
|
|
629
|
-
"char": "i",
|
|
630
|
-
"summary": "Preview files to be ignored in a deployment.",
|
|
631
|
-
"allowNo": false,
|
|
632
|
-
"deprecateAliases": true
|
|
633
|
-
},
|
|
634
623
|
"manifest": {
|
|
635
624
|
"name": "manifest",
|
|
636
625
|
"type": "option",
|
|
@@ -692,7 +681,6 @@
|
|
|
692
681
|
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
693
682
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
694
683
|
"pluginType": "core",
|
|
695
|
-
"state": "beta",
|
|
696
684
|
"aliases": [
|
|
697
685
|
"deploy:metadata:quick"
|
|
698
686
|
],
|
|
@@ -840,7 +828,6 @@
|
|
|
840
828
|
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
841
829
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
842
830
|
"pluginType": "core",
|
|
843
|
-
"state": "beta",
|
|
844
831
|
"aliases": [
|
|
845
832
|
"deploy:metadata:report"
|
|
846
833
|
],
|
|
@@ -944,7 +931,6 @@
|
|
|
944
931
|
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
945
932
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
946
933
|
"pluginType": "core",
|
|
947
|
-
"state": "beta",
|
|
948
934
|
"aliases": [
|
|
949
935
|
"deploy:metadata:resume"
|
|
950
936
|
],
|
|
@@ -1103,7 +1089,6 @@
|
|
|
1103
1089
|
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
1104
1090
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
1105
1091
|
"pluginType": "core",
|
|
1106
|
-
"state": "beta",
|
|
1107
1092
|
"aliases": [
|
|
1108
1093
|
"deploy:metadata"
|
|
1109
1094
|
],
|
|
@@ -1465,7 +1450,6 @@
|
|
|
1465
1450
|
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
1466
1451
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
1467
1452
|
"pluginType": "core",
|
|
1468
|
-
"state": "beta",
|
|
1469
1453
|
"aliases": [
|
|
1470
1454
|
"deploy:metadata:validate"
|
|
1471
1455
|
],
|
|
@@ -1672,10 +1656,10 @@
|
|
|
1672
1656
|
},
|
|
1673
1657
|
"hasDynamicHelp": true
|
|
1674
1658
|
},
|
|
1675
|
-
"project:manifest
|
|
1676
|
-
"id": "project:manifest
|
|
1659
|
+
"project:generate:manifest": {
|
|
1660
|
+
"id": "project:generate:manifest",
|
|
1677
1661
|
"summary": "Create a project manifest that lists the metadata components you want to deploy or retrieve.",
|
|
1678
|
-
"description": "Create a manifest from a list of metadata components (--metadata) or from one or more local directories that contain source files (--source-dir). You can specify either of these parameters, not both.\n\nUse --
|
|
1662
|
+
"description": "Create a manifest from a list of metadata components (--metadata) or from one or more local directories that contain source files (--source-dir). You can specify either of these parameters, not both.\n\nUse --type to specify the type of manifest you want to create. The resulting manifest files have specific names, such as the standard package.xml or destructiveChanges.xml to delete metadata. Valid values for this parameter, and their respective file names, are:\n\n * package : package.xml (default)\n * pre : destructiveChangesPre.xml\n * post : destructiveChangesPost.xml\n * destroy : destructiveChanges.xml\n\nSee https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_deploy_deleting_files.htm for information about these destructive manifest files.\n\nUse --name to specify a custom name for the generated manifest if the pre-defined ones don’t suit your needs. You can specify either --type or --name, but not both.",
|
|
1679
1663
|
"strict": true,
|
|
1680
1664
|
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
1681
1665
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
@@ -1685,8 +1669,8 @@
|
|
|
1685
1669
|
],
|
|
1686
1670
|
"examples": [
|
|
1687
1671
|
"Create a manifest for deploying or retrieving all Apex classes:\n$ <%= config.bin %> <%= command.id %> --metadata ApexClass",
|
|
1688
|
-
"Create a manifest for deleting the specified Apex class:\n$ <%= config.bin %> <%= command.id %> --metadata ApexClass:MyApexClass --
|
|
1689
|
-
"Create a manifest for deploying or retrieving all the metadata components in the specified local directory; name the file myNewManifest.xml:\n$ <%= config.bin %> <%= command.id %> --source-dir force-app --
|
|
1672
|
+
"Create a manifest for deleting the specified Apex class:\n$ <%= config.bin %> <%= command.id %> --metadata ApexClass:MyApexClass --type destroy",
|
|
1673
|
+
"Create a manifest for deploying or retrieving all the metadata components in the specified local directory; name the file myNewManifest.xml:\n$ <%= config.bin %> <%= command.id %> --source-dir force-app --name myNewManifest",
|
|
1690
1674
|
"Create a manifest from the metadata components in the specified org and include metadata in any unlocked packages:\n$ <%= config.bin %> <%= command.id %> --from-org test@myorg.com --include-packages unlocked"
|
|
1691
1675
|
],
|
|
1692
1676
|
"deprecateAliases": true,
|
|
@@ -1740,22 +1724,22 @@
|
|
|
1740
1724
|
],
|
|
1741
1725
|
"delimiter": ","
|
|
1742
1726
|
},
|
|
1743
|
-
"
|
|
1744
|
-
"name": "
|
|
1727
|
+
"name": {
|
|
1728
|
+
"name": "name",
|
|
1745
1729
|
"type": "option",
|
|
1746
1730
|
"char": "n",
|
|
1747
1731
|
"summary": "Name of a custom manifest file to create.",
|
|
1748
1732
|
"multiple": false,
|
|
1749
1733
|
"exclusive": [
|
|
1750
|
-
"
|
|
1734
|
+
"type"
|
|
1751
1735
|
],
|
|
1752
1736
|
"deprecateAliases": true,
|
|
1753
1737
|
"aliases": [
|
|
1754
1738
|
"manifestname"
|
|
1755
1739
|
]
|
|
1756
1740
|
},
|
|
1757
|
-
"
|
|
1758
|
-
"name": "
|
|
1741
|
+
"type": {
|
|
1742
|
+
"name": "type",
|
|
1759
1743
|
"type": "option",
|
|
1760
1744
|
"char": "t",
|
|
1761
1745
|
"summary": "Type of manifest to create; the type determines the name of the created file.",
|
|
@@ -1766,6 +1750,9 @@
|
|
|
1766
1750
|
"destroy",
|
|
1767
1751
|
"package"
|
|
1768
1752
|
],
|
|
1753
|
+
"exclusive": [
|
|
1754
|
+
"name"
|
|
1755
|
+
],
|
|
1769
1756
|
"deprecateAliases": true,
|
|
1770
1757
|
"aliases": [
|
|
1771
1758
|
"manifesttype"
|
|
@@ -1782,7 +1769,7 @@
|
|
|
1782
1769
|
"unlocked"
|
|
1783
1770
|
],
|
|
1784
1771
|
"dependsOn": [
|
|
1785
|
-
"
|
|
1772
|
+
"from-org"
|
|
1786
1773
|
],
|
|
1787
1774
|
"deprecateAliases": true,
|
|
1788
1775
|
"aliases": [
|
|
@@ -1816,6 +1803,46 @@
|
|
|
1816
1803
|
"args": {},
|
|
1817
1804
|
"requiresProject": true
|
|
1818
1805
|
},
|
|
1806
|
+
"project:list:ignored": {
|
|
1807
|
+
"id": "project:list:ignored",
|
|
1808
|
+
"summary": "check your local project package directories for forceignored files",
|
|
1809
|
+
"description": "check your local project package directories for forceignored files",
|
|
1810
|
+
"strict": true,
|
|
1811
|
+
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
1812
|
+
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
1813
|
+
"pluginType": "core",
|
|
1814
|
+
"aliases": [
|
|
1815
|
+
"force:source:ignored:list"
|
|
1816
|
+
],
|
|
1817
|
+
"examples": [
|
|
1818
|
+
"$ <%= config.bin %> <%= command.id %>",
|
|
1819
|
+
"$ <%= config.bin %> <%= command.id %> --source-dir force-app"
|
|
1820
|
+
],
|
|
1821
|
+
"deprecateAliases": true,
|
|
1822
|
+
"flags": {
|
|
1823
|
+
"json": {
|
|
1824
|
+
"name": "json",
|
|
1825
|
+
"type": "boolean",
|
|
1826
|
+
"description": "Format output as json.",
|
|
1827
|
+
"helpGroup": "GLOBAL",
|
|
1828
|
+
"allowNo": false,
|
|
1829
|
+
"deprecateAliases": true
|
|
1830
|
+
},
|
|
1831
|
+
"source-dir": {
|
|
1832
|
+
"name": "source-dir",
|
|
1833
|
+
"type": "option",
|
|
1834
|
+
"char": "p",
|
|
1835
|
+
"summary": "file or directory of files that the command checks for foreceignored files",
|
|
1836
|
+
"multiple": false,
|
|
1837
|
+
"deprecateAliases": true,
|
|
1838
|
+
"aliases": [
|
|
1839
|
+
"sourcepath"
|
|
1840
|
+
]
|
|
1841
|
+
}
|
|
1842
|
+
},
|
|
1843
|
+
"args": {},
|
|
1844
|
+
"requiresProject": true
|
|
1845
|
+
},
|
|
1819
1846
|
"project:reset:tracking": {
|
|
1820
1847
|
"id": "project:reset:tracking",
|
|
1821
1848
|
"summary": "Reset local and remote source tracking.",
|
|
@@ -1825,7 +1852,6 @@
|
|
|
1825
1852
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
1826
1853
|
"pluginType": "core",
|
|
1827
1854
|
"aliases": [
|
|
1828
|
-
"force:source:beta:tracking:reset",
|
|
1829
1855
|
"force:source:tracking:reset"
|
|
1830
1856
|
],
|
|
1831
1857
|
"examples": [],
|
|
@@ -1904,7 +1930,6 @@
|
|
|
1904
1930
|
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
1905
1931
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
1906
1932
|
"pluginType": "core",
|
|
1907
|
-
"state": "beta",
|
|
1908
1933
|
"aliases": [
|
|
1909
1934
|
"retrieve:metadata:preview"
|
|
1910
1935
|
],
|
|
@@ -1954,7 +1979,6 @@
|
|
|
1954
1979
|
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
1955
1980
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
1956
1981
|
"pluginType": "core",
|
|
1957
|
-
"state": "beta",
|
|
1958
1982
|
"aliases": [
|
|
1959
1983
|
"retrieve:metadata"
|
|
1960
1984
|
],
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-deploy-retrieve",
|
|
3
3
|
"description": "deploy and retrieve commands for sf",
|
|
4
|
-
"version": "1.8.5-beta.
|
|
4
|
+
"version": "1.8.5-beta.6",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"@salesforce/kit": "^1.9.2",
|
|
12
12
|
"@salesforce/sf-plugins-core": "^2.2.5",
|
|
13
13
|
"@salesforce/source-deploy-retrieve": "^7.13.0",
|
|
14
|
-
"@salesforce/source-tracking": "^2.2.
|
|
14
|
+
"@salesforce/source-tracking": "^2.2.26",
|
|
15
15
|
"chalk": "^4.1.2",
|
|
16
16
|
"fs-extra": "^10.0.1",
|
|
17
17
|
"shelljs": "^0.8.5",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@oclif/plugin-command-snapshot": "^3.3.9",
|
|
22
|
-
"@salesforce/cli-plugins-testkit": "^3.2.
|
|
22
|
+
"@salesforce/cli-plugins-testkit": "^3.2.26",
|
|
23
23
|
"@salesforce/dev-config": "^3.1.0",
|
|
24
24
|
"@salesforce/dev-scripts": "^4.1.3",
|
|
25
25
|
"@salesforce/plugin-command-reference": "^2.4.1",
|
|
@@ -106,6 +106,9 @@
|
|
|
106
106
|
"deploy": {
|
|
107
107
|
"description": "Commands to deploy metadata to a Salesforce org."
|
|
108
108
|
},
|
|
109
|
+
"list": {
|
|
110
|
+
"description": "Commands to list metadata in a Salesforce project."
|
|
111
|
+
},
|
|
109
112
|
"retrieve": {
|
|
110
113
|
"description": "Commands to retrieve metadata from a Salesforce org"
|
|
111
114
|
},
|
|
@@ -115,7 +118,7 @@
|
|
|
115
118
|
"delete": {
|
|
116
119
|
"description": "Commands to delete metadata from a Salesforce org."
|
|
117
120
|
},
|
|
118
|
-
"
|
|
121
|
+
"generate": {
|
|
119
122
|
"description": "Commands to create a manifest file."
|
|
120
123
|
},
|
|
121
124
|
"reset": {
|
|
@@ -141,6 +144,7 @@
|
|
|
141
144
|
"test": "wireit",
|
|
142
145
|
"test:nuts": "ts-node ./test/nuts/generateNuts.ts && nyc mocha \"**/*.nut.ts\" --slow 4500 --timeout 1200000 --parallel --retries 0 --jobs 10",
|
|
143
146
|
"test:nuts:convert": "nyc mocha \"test/nuts/convert/*.nut.ts\" --slow 4500 --timeout 1200000 --parallel --retries 0 --jobs 20",
|
|
147
|
+
"test:nuts:deb": "nyc mocha \"test/nuts/digitalExperienceBundle/*.nut.ts\" --slow 4500 --timeout 1200000 --parallel --retries 0 --jobs 20",
|
|
144
148
|
"test:nuts:delete": "nyc mocha \"test/nuts/delete/*.nut.ts\" --slow 4500 --timeout 1200000 --parallel --retries 0 --jobs 20",
|
|
145
149
|
"test:nuts:deploy:metadata:manifest": "cross-env PLUGIN_DEPLOY_RETRIEVE_SEED_FILTER=deploy.metadata.manifest ts-node ./test/nuts/generateNuts.ts && mocha \"test/nuts/generated/*.nut.ts\" --slow 4500 --timeout 1200000 --parallel --retries 0 --jobs 20",
|
|
146
150
|
"test:nuts:deploy:metadata:metadata": "cross-env PLUGIN_DEPLOY_RETRIEVE_SEED_FILTER=deploy.metadata.metadata ts-node ./test/nuts/generateNuts.ts && mocha \"test/nuts/generated/*.nut.ts\" --slow 4500 --timeout 1200000 --parallel --retries 0 --jobs 20",
|
|
@@ -266,7 +270,7 @@
|
|
|
266
270
|
}
|
|
267
271
|
},
|
|
268
272
|
"sfdx": {
|
|
269
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/1.8.5-beta.
|
|
270
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/1.8.5-beta.
|
|
273
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/1.8.5-beta.6.crt",
|
|
274
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/1.8.5-beta.6.sig"
|
|
271
275
|
}
|
|
272
276
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
-
"$ref": "#/definitions/
|
|
3
|
+
"$ref": "#/definitions/ManifestGenerateCommandResult",
|
|
4
4
|
"definitions": {
|
|
5
|
-
"
|
|
5
|
+
"ManifestGenerateCommandResult": {
|
|
6
6
|
"type": "object",
|
|
7
7
|
"properties": {
|
|
8
8
|
"name": {
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$ref": "#/definitions/SourceIgnoredResults",
|
|
4
|
+
"definitions": {
|
|
5
|
+
"SourceIgnoredResults": {
|
|
6
|
+
"type": "object",
|
|
7
|
+
"properties": {
|
|
8
|
+
"ignoredFiles": {
|
|
9
|
+
"type": "array",
|
|
10
|
+
"items": {
|
|
11
|
+
"type": "string"
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"required": ["ignoredFiles"],
|
|
16
|
+
"additionalProperties": false
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"create.js","sourceRoot":"","sources":["../../../../src/commands/project/manifest/create.ts"],"names":[],"mappings":"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"}
|