@salesforce/plugin-deploy-retrieve 3.2.17-qa.1 → 3.2.20
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/README.md +17 -17
- package/lib/utils/progressBar.js +1 -11
- package/lib/utils/progressBar.js.map +1 -1
- package/npm-shrinkwrap.json +1126 -380
- package/oclif.lock +760 -409
- package/oclif.manifest.json +346 -346
- package/package.json +249 -245
package/oclif.manifest.json
CHANGED
|
@@ -202,7 +202,7 @@
|
|
|
202
202
|
"deprecateAliases": true,
|
|
203
203
|
"name": "output-dir",
|
|
204
204
|
"summary": "Output directory to store the Metadata API–formatted files in.",
|
|
205
|
-
"default": "
|
|
205
|
+
"default": "metadataPackage_1708975234876",
|
|
206
206
|
"hasDynamicHelp": false,
|
|
207
207
|
"multiple": false,
|
|
208
208
|
"type": "option"
|
|
@@ -630,204 +630,6 @@
|
|
|
630
630
|
"tracking:delete:project"
|
|
631
631
|
]
|
|
632
632
|
},
|
|
633
|
-
"project:generate:manifest": {
|
|
634
|
-
"aliases": [
|
|
635
|
-
"force:source:manifest:create"
|
|
636
|
-
],
|
|
637
|
-
"args": {},
|
|
638
|
-
"deprecateAliases": true,
|
|
639
|
-
"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.\n\nTo include multiple metadata components, either set multiple --metadata <name> flags or a single --metadata flag with multiple names separated by spaces. Enclose names that contain spaces in one set of double quotes. The same syntax applies to --include-packages and --source-dir.",
|
|
640
|
-
"examples": [
|
|
641
|
-
"Create a manifest for deploying or retrieving all Apex classes and custom objects:\n$ <%= config.bin %> <%= command.id %> --metadata ApexClass --metadata CustomObject",
|
|
642
|
-
"Create a manifest for deleting the specified Apex class:\n$ <%= config.bin %> <%= command.id %> --metadata ApexClass:MyApexClass --type destroy",
|
|
643
|
-
"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",
|
|
644
|
-
"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"
|
|
645
|
-
],
|
|
646
|
-
"flags": {
|
|
647
|
-
"json": {
|
|
648
|
-
"description": "Format output as json.",
|
|
649
|
-
"helpGroup": "GLOBAL",
|
|
650
|
-
"name": "json",
|
|
651
|
-
"allowNo": false,
|
|
652
|
-
"type": "boolean"
|
|
653
|
-
},
|
|
654
|
-
"api-version": {
|
|
655
|
-
"aliases": [
|
|
656
|
-
"apiversion"
|
|
657
|
-
],
|
|
658
|
-
"deprecateAliases": true,
|
|
659
|
-
"description": "Override the api version used for api requests made by this command",
|
|
660
|
-
"name": "api-version",
|
|
661
|
-
"hasDynamicHelp": false,
|
|
662
|
-
"multiple": false,
|
|
663
|
-
"type": "option"
|
|
664
|
-
},
|
|
665
|
-
"loglevel": {
|
|
666
|
-
"deprecated": {
|
|
667
|
-
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
668
|
-
},
|
|
669
|
-
"hidden": true,
|
|
670
|
-
"name": "loglevel",
|
|
671
|
-
"hasDynamicHelp": false,
|
|
672
|
-
"multiple": false,
|
|
673
|
-
"type": "option"
|
|
674
|
-
},
|
|
675
|
-
"metadata": {
|
|
676
|
-
"char": "m",
|
|
677
|
-
"name": "metadata",
|
|
678
|
-
"summary": "Names of metadata components to include in the manifest.",
|
|
679
|
-
"delimiter": ",",
|
|
680
|
-
"hasDynamicHelp": false,
|
|
681
|
-
"multiple": true,
|
|
682
|
-
"type": "option"
|
|
683
|
-
},
|
|
684
|
-
"source-dir": {
|
|
685
|
-
"aliases": [
|
|
686
|
-
"sourcepath"
|
|
687
|
-
],
|
|
688
|
-
"char": "p",
|
|
689
|
-
"deprecateAliases": true,
|
|
690
|
-
"name": "source-dir",
|
|
691
|
-
"summary": "Paths to the local source files to include in the manifest.",
|
|
692
|
-
"delimiter": ",",
|
|
693
|
-
"hasDynamicHelp": false,
|
|
694
|
-
"multiple": true,
|
|
695
|
-
"type": "option"
|
|
696
|
-
},
|
|
697
|
-
"name": {
|
|
698
|
-
"aliases": [
|
|
699
|
-
"manifestname"
|
|
700
|
-
],
|
|
701
|
-
"char": "n",
|
|
702
|
-
"deprecateAliases": true,
|
|
703
|
-
"exclusive": [
|
|
704
|
-
"type"
|
|
705
|
-
],
|
|
706
|
-
"name": "name",
|
|
707
|
-
"summary": "Name of a custom manifest file to create.",
|
|
708
|
-
"hasDynamicHelp": false,
|
|
709
|
-
"multiple": false,
|
|
710
|
-
"type": "option"
|
|
711
|
-
},
|
|
712
|
-
"type": {
|
|
713
|
-
"aliases": [
|
|
714
|
-
"manifesttype"
|
|
715
|
-
],
|
|
716
|
-
"char": "t",
|
|
717
|
-
"deprecateAliases": true,
|
|
718
|
-
"exclusive": [
|
|
719
|
-
"name"
|
|
720
|
-
],
|
|
721
|
-
"name": "type",
|
|
722
|
-
"summary": "Type of manifest to create; the type determines the name of the created file.",
|
|
723
|
-
"hasDynamicHelp": false,
|
|
724
|
-
"multiple": false,
|
|
725
|
-
"options": [
|
|
726
|
-
"pre",
|
|
727
|
-
"post",
|
|
728
|
-
"destroy",
|
|
729
|
-
"package"
|
|
730
|
-
],
|
|
731
|
-
"type": "option"
|
|
732
|
-
},
|
|
733
|
-
"include-packages": {
|
|
734
|
-
"aliases": [
|
|
735
|
-
"includepackages"
|
|
736
|
-
],
|
|
737
|
-
"char": "c",
|
|
738
|
-
"dependsOn": [
|
|
739
|
-
"from-org"
|
|
740
|
-
],
|
|
741
|
-
"deprecateAliases": true,
|
|
742
|
-
"name": "include-packages",
|
|
743
|
-
"summary": "Package types (managed, unlocked) whose metadata is included in the manifest; by default, metadata in packages is ignored.",
|
|
744
|
-
"delimiter": ",",
|
|
745
|
-
"hasDynamicHelp": false,
|
|
746
|
-
"multiple": true,
|
|
747
|
-
"options": [
|
|
748
|
-
"managed",
|
|
749
|
-
"unlocked"
|
|
750
|
-
],
|
|
751
|
-
"type": "option"
|
|
752
|
-
},
|
|
753
|
-
"from-org": {
|
|
754
|
-
"aliases": [
|
|
755
|
-
"fromorg"
|
|
756
|
-
],
|
|
757
|
-
"deprecateAliases": true,
|
|
758
|
-
"name": "from-org",
|
|
759
|
-
"summary": "Username or alias of the org that contains the metadata components from which to build a manifest.",
|
|
760
|
-
"hasDynamicHelp": false,
|
|
761
|
-
"multiple": false,
|
|
762
|
-
"type": "option"
|
|
763
|
-
},
|
|
764
|
-
"output-dir": {
|
|
765
|
-
"aliases": [
|
|
766
|
-
"outputdir",
|
|
767
|
-
"o"
|
|
768
|
-
],
|
|
769
|
-
"char": "d",
|
|
770
|
-
"deprecateAliases": true,
|
|
771
|
-
"name": "output-dir",
|
|
772
|
-
"summary": "Directory to save the created manifest.",
|
|
773
|
-
"hasDynamicHelp": false,
|
|
774
|
-
"multiple": false,
|
|
775
|
-
"type": "option"
|
|
776
|
-
}
|
|
777
|
-
},
|
|
778
|
-
"hasDynamicHelp": false,
|
|
779
|
-
"hiddenAliases": [],
|
|
780
|
-
"id": "project:generate:manifest",
|
|
781
|
-
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
782
|
-
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
783
|
-
"pluginType": "core",
|
|
784
|
-
"strict": true,
|
|
785
|
-
"summary": "Create a project manifest that lists the metadata components you want to deploy or retrieve.",
|
|
786
|
-
"enableJsonFlag": true,
|
|
787
|
-
"requiresProject": true,
|
|
788
|
-
"isESM": true,
|
|
789
|
-
"relativePath": [
|
|
790
|
-
"lib",
|
|
791
|
-
"commands",
|
|
792
|
-
"project",
|
|
793
|
-
"generate",
|
|
794
|
-
"manifest.js"
|
|
795
|
-
],
|
|
796
|
-
"aliasPermutations": [
|
|
797
|
-
"force:source:manifest:create",
|
|
798
|
-
"source:force:manifest:create",
|
|
799
|
-
"source:manifest:force:create",
|
|
800
|
-
"source:manifest:create:force",
|
|
801
|
-
"force:manifest:source:create",
|
|
802
|
-
"manifest:force:source:create",
|
|
803
|
-
"manifest:source:force:create",
|
|
804
|
-
"manifest:source:create:force",
|
|
805
|
-
"force:manifest:create:source",
|
|
806
|
-
"manifest:force:create:source",
|
|
807
|
-
"manifest:create:force:source",
|
|
808
|
-
"manifest:create:source:force",
|
|
809
|
-
"force:source:create:manifest",
|
|
810
|
-
"source:force:create:manifest",
|
|
811
|
-
"source:create:force:manifest",
|
|
812
|
-
"source:create:manifest:force",
|
|
813
|
-
"force:create:source:manifest",
|
|
814
|
-
"create:force:source:manifest",
|
|
815
|
-
"create:source:force:manifest",
|
|
816
|
-
"create:source:manifest:force",
|
|
817
|
-
"force:create:manifest:source",
|
|
818
|
-
"create:force:manifest:source",
|
|
819
|
-
"create:manifest:force:source",
|
|
820
|
-
"create:manifest:source:force"
|
|
821
|
-
],
|
|
822
|
-
"permutations": [
|
|
823
|
-
"project:generate:manifest",
|
|
824
|
-
"generate:project:manifest",
|
|
825
|
-
"generate:manifest:project",
|
|
826
|
-
"project:manifest:generate",
|
|
827
|
-
"manifest:project:generate",
|
|
828
|
-
"manifest:generate:project"
|
|
829
|
-
]
|
|
830
|
-
},
|
|
831
633
|
"project:deploy:cancel": {
|
|
832
634
|
"aliases": [
|
|
833
635
|
"deploy:metadata:cancel"
|
|
@@ -2270,17 +2072,18 @@
|
|
|
2270
2072
|
"validate:deploy:project"
|
|
2271
2073
|
]
|
|
2272
2074
|
},
|
|
2273
|
-
"project:
|
|
2075
|
+
"project:generate:manifest": {
|
|
2274
2076
|
"aliases": [
|
|
2275
|
-
"force:source:
|
|
2077
|
+
"force:source:manifest:create"
|
|
2276
2078
|
],
|
|
2277
2079
|
"args": {},
|
|
2278
2080
|
"deprecateAliases": true,
|
|
2279
|
-
"description": "
|
|
2081
|
+
"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.\n\nTo include multiple metadata components, either set multiple --metadata <name> flags or a single --metadata flag with multiple names separated by spaces. Enclose names that contain spaces in one set of double quotes. The same syntax applies to --include-packages and --source-dir.",
|
|
2280
2082
|
"examples": [
|
|
2281
|
-
"
|
|
2282
|
-
"
|
|
2283
|
-
"
|
|
2083
|
+
"Create a manifest for deploying or retrieving all Apex classes and custom objects:\n$ <%= config.bin %> <%= command.id %> --metadata ApexClass --metadata CustomObject",
|
|
2084
|
+
"Create a manifest for deleting the specified Apex class:\n$ <%= config.bin %> <%= command.id %> --metadata ApexClass:MyApexClass --type destroy",
|
|
2085
|
+
"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",
|
|
2086
|
+
"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"
|
|
2284
2087
|
],
|
|
2285
2088
|
"flags": {
|
|
2286
2089
|
"json": {
|
|
@@ -2290,6 +2093,36 @@
|
|
|
2290
2093
|
"allowNo": false,
|
|
2291
2094
|
"type": "boolean"
|
|
2292
2095
|
},
|
|
2096
|
+
"api-version": {
|
|
2097
|
+
"aliases": [
|
|
2098
|
+
"apiversion"
|
|
2099
|
+
],
|
|
2100
|
+
"deprecateAliases": true,
|
|
2101
|
+
"description": "Override the api version used for api requests made by this command",
|
|
2102
|
+
"name": "api-version",
|
|
2103
|
+
"hasDynamicHelp": false,
|
|
2104
|
+
"multiple": false,
|
|
2105
|
+
"type": "option"
|
|
2106
|
+
},
|
|
2107
|
+
"loglevel": {
|
|
2108
|
+
"deprecated": {
|
|
2109
|
+
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
2110
|
+
},
|
|
2111
|
+
"hidden": true,
|
|
2112
|
+
"name": "loglevel",
|
|
2113
|
+
"hasDynamicHelp": false,
|
|
2114
|
+
"multiple": false,
|
|
2115
|
+
"type": "option"
|
|
2116
|
+
},
|
|
2117
|
+
"metadata": {
|
|
2118
|
+
"char": "m",
|
|
2119
|
+
"name": "metadata",
|
|
2120
|
+
"summary": "Names of metadata components to include in the manifest.",
|
|
2121
|
+
"delimiter": ",",
|
|
2122
|
+
"hasDynamicHelp": false,
|
|
2123
|
+
"multiple": true,
|
|
2124
|
+
"type": "option"
|
|
2125
|
+
},
|
|
2293
2126
|
"source-dir": {
|
|
2294
2127
|
"aliases": [
|
|
2295
2128
|
"sourcepath"
|
|
@@ -2297,20 +2130,187 @@
|
|
|
2297
2130
|
"char": "p",
|
|
2298
2131
|
"deprecateAliases": true,
|
|
2299
2132
|
"name": "source-dir",
|
|
2300
|
-
"summary": "
|
|
2133
|
+
"summary": "Paths to the local source files to include in the manifest.",
|
|
2134
|
+
"delimiter": ",",
|
|
2301
2135
|
"hasDynamicHelp": false,
|
|
2302
|
-
"multiple":
|
|
2136
|
+
"multiple": true,
|
|
2303
2137
|
"type": "option"
|
|
2304
|
-
}
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2138
|
+
},
|
|
2139
|
+
"name": {
|
|
2140
|
+
"aliases": [
|
|
2141
|
+
"manifestname"
|
|
2142
|
+
],
|
|
2143
|
+
"char": "n",
|
|
2144
|
+
"deprecateAliases": true,
|
|
2145
|
+
"exclusive": [
|
|
2146
|
+
"type"
|
|
2147
|
+
],
|
|
2148
|
+
"name": "name",
|
|
2149
|
+
"summary": "Name of a custom manifest file to create.",
|
|
2150
|
+
"hasDynamicHelp": false,
|
|
2151
|
+
"multiple": false,
|
|
2152
|
+
"type": "option"
|
|
2153
|
+
},
|
|
2154
|
+
"type": {
|
|
2155
|
+
"aliases": [
|
|
2156
|
+
"manifesttype"
|
|
2157
|
+
],
|
|
2158
|
+
"char": "t",
|
|
2159
|
+
"deprecateAliases": true,
|
|
2160
|
+
"exclusive": [
|
|
2161
|
+
"name"
|
|
2162
|
+
],
|
|
2163
|
+
"name": "type",
|
|
2164
|
+
"summary": "Type of manifest to create; the type determines the name of the created file.",
|
|
2165
|
+
"hasDynamicHelp": false,
|
|
2166
|
+
"multiple": false,
|
|
2167
|
+
"options": [
|
|
2168
|
+
"pre",
|
|
2169
|
+
"post",
|
|
2170
|
+
"destroy",
|
|
2171
|
+
"package"
|
|
2172
|
+
],
|
|
2173
|
+
"type": "option"
|
|
2174
|
+
},
|
|
2175
|
+
"include-packages": {
|
|
2176
|
+
"aliases": [
|
|
2177
|
+
"includepackages"
|
|
2178
|
+
],
|
|
2179
|
+
"char": "c",
|
|
2180
|
+
"dependsOn": [
|
|
2181
|
+
"from-org"
|
|
2182
|
+
],
|
|
2183
|
+
"deprecateAliases": true,
|
|
2184
|
+
"name": "include-packages",
|
|
2185
|
+
"summary": "Package types (managed, unlocked) whose metadata is included in the manifest; by default, metadata in packages is ignored.",
|
|
2186
|
+
"delimiter": ",",
|
|
2187
|
+
"hasDynamicHelp": false,
|
|
2188
|
+
"multiple": true,
|
|
2189
|
+
"options": [
|
|
2190
|
+
"managed",
|
|
2191
|
+
"unlocked"
|
|
2192
|
+
],
|
|
2193
|
+
"type": "option"
|
|
2194
|
+
},
|
|
2195
|
+
"from-org": {
|
|
2196
|
+
"aliases": [
|
|
2197
|
+
"fromorg"
|
|
2198
|
+
],
|
|
2199
|
+
"deprecateAliases": true,
|
|
2200
|
+
"name": "from-org",
|
|
2201
|
+
"summary": "Username or alias of the org that contains the metadata components from which to build a manifest.",
|
|
2202
|
+
"hasDynamicHelp": false,
|
|
2203
|
+
"multiple": false,
|
|
2204
|
+
"type": "option"
|
|
2205
|
+
},
|
|
2206
|
+
"output-dir": {
|
|
2207
|
+
"aliases": [
|
|
2208
|
+
"outputdir",
|
|
2209
|
+
"o"
|
|
2210
|
+
],
|
|
2211
|
+
"char": "d",
|
|
2212
|
+
"deprecateAliases": true,
|
|
2213
|
+
"name": "output-dir",
|
|
2214
|
+
"summary": "Directory to save the created manifest.",
|
|
2215
|
+
"hasDynamicHelp": false,
|
|
2216
|
+
"multiple": false,
|
|
2217
|
+
"type": "option"
|
|
2218
|
+
}
|
|
2219
|
+
},
|
|
2220
|
+
"hasDynamicHelp": false,
|
|
2221
|
+
"hiddenAliases": [],
|
|
2222
|
+
"id": "project:generate:manifest",
|
|
2223
|
+
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
2224
|
+
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
2225
|
+
"pluginType": "core",
|
|
2226
|
+
"strict": true,
|
|
2227
|
+
"summary": "Create a project manifest that lists the metadata components you want to deploy or retrieve.",
|
|
2228
|
+
"enableJsonFlag": true,
|
|
2229
|
+
"requiresProject": true,
|
|
2230
|
+
"isESM": true,
|
|
2231
|
+
"relativePath": [
|
|
2232
|
+
"lib",
|
|
2233
|
+
"commands",
|
|
2234
|
+
"project",
|
|
2235
|
+
"generate",
|
|
2236
|
+
"manifest.js"
|
|
2237
|
+
],
|
|
2238
|
+
"aliasPermutations": [
|
|
2239
|
+
"force:source:manifest:create",
|
|
2240
|
+
"source:force:manifest:create",
|
|
2241
|
+
"source:manifest:force:create",
|
|
2242
|
+
"source:manifest:create:force",
|
|
2243
|
+
"force:manifest:source:create",
|
|
2244
|
+
"manifest:force:source:create",
|
|
2245
|
+
"manifest:source:force:create",
|
|
2246
|
+
"manifest:source:create:force",
|
|
2247
|
+
"force:manifest:create:source",
|
|
2248
|
+
"manifest:force:create:source",
|
|
2249
|
+
"manifest:create:force:source",
|
|
2250
|
+
"manifest:create:source:force",
|
|
2251
|
+
"force:source:create:manifest",
|
|
2252
|
+
"source:force:create:manifest",
|
|
2253
|
+
"source:create:force:manifest",
|
|
2254
|
+
"source:create:manifest:force",
|
|
2255
|
+
"force:create:source:manifest",
|
|
2256
|
+
"create:force:source:manifest",
|
|
2257
|
+
"create:source:force:manifest",
|
|
2258
|
+
"create:source:manifest:force",
|
|
2259
|
+
"force:create:manifest:source",
|
|
2260
|
+
"create:force:manifest:source",
|
|
2261
|
+
"create:manifest:force:source",
|
|
2262
|
+
"create:manifest:source:force"
|
|
2263
|
+
],
|
|
2264
|
+
"permutations": [
|
|
2265
|
+
"project:generate:manifest",
|
|
2266
|
+
"generate:project:manifest",
|
|
2267
|
+
"generate:manifest:project",
|
|
2268
|
+
"project:manifest:generate",
|
|
2269
|
+
"manifest:project:generate",
|
|
2270
|
+
"manifest:generate:project"
|
|
2271
|
+
]
|
|
2272
|
+
},
|
|
2273
|
+
"project:list:ignored": {
|
|
2274
|
+
"aliases": [
|
|
2275
|
+
"force:source:ignored:list"
|
|
2276
|
+
],
|
|
2277
|
+
"args": {},
|
|
2278
|
+
"deprecateAliases": true,
|
|
2279
|
+
"description": "When deploying or retrieving metadata between your local project and an org, you can specify the source files you want to exclude with a .forceignore file. The .forceignore file structure mimics the .gitignore structure. Each line in .forceignore specifies a pattern that corresponds to one or more files. The files typically represent metadata components, but can be any files you want to exclude, such as LWC configuration JSON files or tests.",
|
|
2280
|
+
"examples": [
|
|
2281
|
+
"List all the files in all package directories that are ignored:\n<%= config.bin %> <%= command.id %>",
|
|
2282
|
+
"List all the files in a specific directory that are ignored:\n<%= config.bin %> <%= command.id %> --source-dir force-app",
|
|
2283
|
+
"Check if a particular file is ignored:\n<%= config.bin %> <%= command.id %> --source-dir package.xml"
|
|
2284
|
+
],
|
|
2285
|
+
"flags": {
|
|
2286
|
+
"json": {
|
|
2287
|
+
"description": "Format output as json.",
|
|
2288
|
+
"helpGroup": "GLOBAL",
|
|
2289
|
+
"name": "json",
|
|
2290
|
+
"allowNo": false,
|
|
2291
|
+
"type": "boolean"
|
|
2292
|
+
},
|
|
2293
|
+
"source-dir": {
|
|
2294
|
+
"aliases": [
|
|
2295
|
+
"sourcepath"
|
|
2296
|
+
],
|
|
2297
|
+
"char": "p",
|
|
2298
|
+
"deprecateAliases": true,
|
|
2299
|
+
"name": "source-dir",
|
|
2300
|
+
"summary": "File or directory of files that the command checks for foreceignored files.",
|
|
2301
|
+
"hasDynamicHelp": false,
|
|
2302
|
+
"multiple": false,
|
|
2303
|
+
"type": "option"
|
|
2304
|
+
}
|
|
2305
|
+
},
|
|
2306
|
+
"hasDynamicHelp": false,
|
|
2307
|
+
"hiddenAliases": [],
|
|
2308
|
+
"id": "project:list:ignored",
|
|
2309
|
+
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
2310
|
+
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
2311
|
+
"pluginType": "core",
|
|
2312
|
+
"strict": true,
|
|
2313
|
+
"summary": "Check your local project package directories for forceignored files.",
|
|
2314
2314
|
"enableJsonFlag": true,
|
|
2315
2315
|
"requiresProject": true,
|
|
2316
2316
|
"isESM": true,
|
|
@@ -2356,6 +2356,134 @@
|
|
|
2356
2356
|
"ignored:list:project"
|
|
2357
2357
|
]
|
|
2358
2358
|
},
|
|
2359
|
+
"project:reset:tracking": {
|
|
2360
|
+
"aliases": [
|
|
2361
|
+
"force:source:tracking:reset"
|
|
2362
|
+
],
|
|
2363
|
+
"args": {},
|
|
2364
|
+
"deprecateAliases": true,
|
|
2365
|
+
"description": "WARNING: This command deletes or overwrites all existing source tracking files. Use with extreme caution.\n\nResets local and remote source tracking so that Salesforce CLI no longer registers differences between your local files and those in the org. When you next run 'project deploy preview', Salesforce CLI returns no results, even though conflicts might actually exist. Salesforce CLI then resumes tracking new source changes as usual.\n\nUse the --revision parameter to reset source tracking to a specific revision number of an org source member. To get the revision number, query the SourceMember Tooling API object with the 'data soql' command. For example:\n\n <%= config.bin %> data query --query \"SELECT MemberName, MemberType, RevisionCounter FROM SourceMember\" --use-tooling-api --target-org my-scratch",
|
|
2366
|
+
"examples": [
|
|
2367
|
+
"Reset source tracking for the org with alias \"my-scratch\":\n$ <%= config.bin %> <%= command.id %> --target-org my-scratch",
|
|
2368
|
+
"Reset source tracking to revision number 30 for your default org:\n$ <%= config.bin %> <%= command.id %> --revision 30"
|
|
2369
|
+
],
|
|
2370
|
+
"flags": {
|
|
2371
|
+
"json": {
|
|
2372
|
+
"description": "Format output as json.",
|
|
2373
|
+
"helpGroup": "GLOBAL",
|
|
2374
|
+
"name": "json",
|
|
2375
|
+
"allowNo": false,
|
|
2376
|
+
"type": "boolean"
|
|
2377
|
+
},
|
|
2378
|
+
"target-org": {
|
|
2379
|
+
"aliases": [
|
|
2380
|
+
"targetusername",
|
|
2381
|
+
"u"
|
|
2382
|
+
],
|
|
2383
|
+
"char": "o",
|
|
2384
|
+
"deprecateAliases": true,
|
|
2385
|
+
"name": "target-org",
|
|
2386
|
+
"noCacheDefault": true,
|
|
2387
|
+
"required": true,
|
|
2388
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
2389
|
+
"hasDynamicHelp": true,
|
|
2390
|
+
"multiple": false,
|
|
2391
|
+
"type": "option"
|
|
2392
|
+
},
|
|
2393
|
+
"api-version": {
|
|
2394
|
+
"aliases": [
|
|
2395
|
+
"apiversion"
|
|
2396
|
+
],
|
|
2397
|
+
"deprecateAliases": true,
|
|
2398
|
+
"description": "Override the api version used for api requests made by this command",
|
|
2399
|
+
"name": "api-version",
|
|
2400
|
+
"hasDynamicHelp": false,
|
|
2401
|
+
"multiple": false,
|
|
2402
|
+
"type": "option"
|
|
2403
|
+
},
|
|
2404
|
+
"loglevel": {
|
|
2405
|
+
"deprecated": {
|
|
2406
|
+
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
2407
|
+
},
|
|
2408
|
+
"hidden": true,
|
|
2409
|
+
"name": "loglevel",
|
|
2410
|
+
"hasDynamicHelp": false,
|
|
2411
|
+
"multiple": false,
|
|
2412
|
+
"type": "option"
|
|
2413
|
+
},
|
|
2414
|
+
"revision": {
|
|
2415
|
+
"char": "r",
|
|
2416
|
+
"name": "revision",
|
|
2417
|
+
"summary": "SourceMember revision counter number to reset to.",
|
|
2418
|
+
"hasDynamicHelp": false,
|
|
2419
|
+
"multiple": false,
|
|
2420
|
+
"type": "option"
|
|
2421
|
+
},
|
|
2422
|
+
"no-prompt": {
|
|
2423
|
+
"aliases": [
|
|
2424
|
+
"noprompt"
|
|
2425
|
+
],
|
|
2426
|
+
"char": "p",
|
|
2427
|
+
"deprecateAliases": true,
|
|
2428
|
+
"name": "no-prompt",
|
|
2429
|
+
"summary": "Don't prompt for source tracking override confirmation.",
|
|
2430
|
+
"allowNo": false,
|
|
2431
|
+
"type": "boolean"
|
|
2432
|
+
}
|
|
2433
|
+
},
|
|
2434
|
+
"hasDynamicHelp": true,
|
|
2435
|
+
"hiddenAliases": [],
|
|
2436
|
+
"id": "project:reset:tracking",
|
|
2437
|
+
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
2438
|
+
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
2439
|
+
"pluginType": "core",
|
|
2440
|
+
"strict": true,
|
|
2441
|
+
"summary": "Reset local and remote source tracking.",
|
|
2442
|
+
"enableJsonFlag": true,
|
|
2443
|
+
"requiresProject": true,
|
|
2444
|
+
"isESM": true,
|
|
2445
|
+
"relativePath": [
|
|
2446
|
+
"lib",
|
|
2447
|
+
"commands",
|
|
2448
|
+
"project",
|
|
2449
|
+
"reset",
|
|
2450
|
+
"tracking.js"
|
|
2451
|
+
],
|
|
2452
|
+
"aliasPermutations": [
|
|
2453
|
+
"force:source:tracking:reset",
|
|
2454
|
+
"source:force:tracking:reset",
|
|
2455
|
+
"source:tracking:force:reset",
|
|
2456
|
+
"source:tracking:reset:force",
|
|
2457
|
+
"force:tracking:source:reset",
|
|
2458
|
+
"tracking:force:source:reset",
|
|
2459
|
+
"tracking:source:force:reset",
|
|
2460
|
+
"tracking:source:reset:force",
|
|
2461
|
+
"force:tracking:reset:source",
|
|
2462
|
+
"tracking:force:reset:source",
|
|
2463
|
+
"tracking:reset:force:source",
|
|
2464
|
+
"tracking:reset:source:force",
|
|
2465
|
+
"force:source:reset:tracking",
|
|
2466
|
+
"source:force:reset:tracking",
|
|
2467
|
+
"source:reset:force:tracking",
|
|
2468
|
+
"source:reset:tracking:force",
|
|
2469
|
+
"force:reset:source:tracking",
|
|
2470
|
+
"reset:force:source:tracking",
|
|
2471
|
+
"reset:source:force:tracking",
|
|
2472
|
+
"reset:source:tracking:force",
|
|
2473
|
+
"force:reset:tracking:source",
|
|
2474
|
+
"reset:force:tracking:source",
|
|
2475
|
+
"reset:tracking:force:source",
|
|
2476
|
+
"reset:tracking:source:force"
|
|
2477
|
+
],
|
|
2478
|
+
"permutations": [
|
|
2479
|
+
"project:reset:tracking",
|
|
2480
|
+
"reset:project:tracking",
|
|
2481
|
+
"reset:tracking:project",
|
|
2482
|
+
"project:tracking:reset",
|
|
2483
|
+
"tracking:project:reset",
|
|
2484
|
+
"tracking:reset:project"
|
|
2485
|
+
]
|
|
2486
|
+
},
|
|
2359
2487
|
"project:retrieve:preview": {
|
|
2360
2488
|
"aliases": [
|
|
2361
2489
|
"retrieve:metadata:preview"
|
|
@@ -2685,135 +2813,7 @@
|
|
|
2685
2813
|
"start:project:retrieve",
|
|
2686
2814
|
"start:retrieve:project"
|
|
2687
2815
|
]
|
|
2688
|
-
},
|
|
2689
|
-
"project:reset:tracking": {
|
|
2690
|
-
"aliases": [
|
|
2691
|
-
"force:source:tracking:reset"
|
|
2692
|
-
],
|
|
2693
|
-
"args": {},
|
|
2694
|
-
"deprecateAliases": true,
|
|
2695
|
-
"description": "WARNING: This command deletes or overwrites all existing source tracking files. Use with extreme caution.\n\nResets local and remote source tracking so that Salesforce CLI no longer registers differences between your local files and those in the org. When you next run 'project deploy preview', Salesforce CLI returns no results, even though conflicts might actually exist. Salesforce CLI then resumes tracking new source changes as usual.\n\nUse the --revision parameter to reset source tracking to a specific revision number of an org source member. To get the revision number, query the SourceMember Tooling API object with the 'data soql' command. For example:\n\n <%= config.bin %> data query --query \"SELECT MemberName, MemberType, RevisionCounter FROM SourceMember\" --use-tooling-api --target-org my-scratch",
|
|
2696
|
-
"examples": [
|
|
2697
|
-
"Reset source tracking for the org with alias \"my-scratch\":\n$ <%= config.bin %> <%= command.id %> --target-org my-scratch",
|
|
2698
|
-
"Reset source tracking to revision number 30 for your default org:\n$ <%= config.bin %> <%= command.id %> --revision 30"
|
|
2699
|
-
],
|
|
2700
|
-
"flags": {
|
|
2701
|
-
"json": {
|
|
2702
|
-
"description": "Format output as json.",
|
|
2703
|
-
"helpGroup": "GLOBAL",
|
|
2704
|
-
"name": "json",
|
|
2705
|
-
"allowNo": false,
|
|
2706
|
-
"type": "boolean"
|
|
2707
|
-
},
|
|
2708
|
-
"target-org": {
|
|
2709
|
-
"aliases": [
|
|
2710
|
-
"targetusername",
|
|
2711
|
-
"u"
|
|
2712
|
-
],
|
|
2713
|
-
"char": "o",
|
|
2714
|
-
"deprecateAliases": true,
|
|
2715
|
-
"name": "target-org",
|
|
2716
|
-
"noCacheDefault": true,
|
|
2717
|
-
"required": true,
|
|
2718
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
2719
|
-
"hasDynamicHelp": true,
|
|
2720
|
-
"multiple": false,
|
|
2721
|
-
"type": "option"
|
|
2722
|
-
},
|
|
2723
|
-
"api-version": {
|
|
2724
|
-
"aliases": [
|
|
2725
|
-
"apiversion"
|
|
2726
|
-
],
|
|
2727
|
-
"deprecateAliases": true,
|
|
2728
|
-
"description": "Override the api version used for api requests made by this command",
|
|
2729
|
-
"name": "api-version",
|
|
2730
|
-
"hasDynamicHelp": false,
|
|
2731
|
-
"multiple": false,
|
|
2732
|
-
"type": "option"
|
|
2733
|
-
},
|
|
2734
|
-
"loglevel": {
|
|
2735
|
-
"deprecated": {
|
|
2736
|
-
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
2737
|
-
},
|
|
2738
|
-
"hidden": true,
|
|
2739
|
-
"name": "loglevel",
|
|
2740
|
-
"hasDynamicHelp": false,
|
|
2741
|
-
"multiple": false,
|
|
2742
|
-
"type": "option"
|
|
2743
|
-
},
|
|
2744
|
-
"revision": {
|
|
2745
|
-
"char": "r",
|
|
2746
|
-
"name": "revision",
|
|
2747
|
-
"summary": "SourceMember revision counter number to reset to.",
|
|
2748
|
-
"hasDynamicHelp": false,
|
|
2749
|
-
"multiple": false,
|
|
2750
|
-
"type": "option"
|
|
2751
|
-
},
|
|
2752
|
-
"no-prompt": {
|
|
2753
|
-
"aliases": [
|
|
2754
|
-
"noprompt"
|
|
2755
|
-
],
|
|
2756
|
-
"char": "p",
|
|
2757
|
-
"deprecateAliases": true,
|
|
2758
|
-
"name": "no-prompt",
|
|
2759
|
-
"summary": "Don't prompt for source tracking override confirmation.",
|
|
2760
|
-
"allowNo": false,
|
|
2761
|
-
"type": "boolean"
|
|
2762
|
-
}
|
|
2763
|
-
},
|
|
2764
|
-
"hasDynamicHelp": true,
|
|
2765
|
-
"hiddenAliases": [],
|
|
2766
|
-
"id": "project:reset:tracking",
|
|
2767
|
-
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
2768
|
-
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
2769
|
-
"pluginType": "core",
|
|
2770
|
-
"strict": true,
|
|
2771
|
-
"summary": "Reset local and remote source tracking.",
|
|
2772
|
-
"enableJsonFlag": true,
|
|
2773
|
-
"requiresProject": true,
|
|
2774
|
-
"isESM": true,
|
|
2775
|
-
"relativePath": [
|
|
2776
|
-
"lib",
|
|
2777
|
-
"commands",
|
|
2778
|
-
"project",
|
|
2779
|
-
"reset",
|
|
2780
|
-
"tracking.js"
|
|
2781
|
-
],
|
|
2782
|
-
"aliasPermutations": [
|
|
2783
|
-
"force:source:tracking:reset",
|
|
2784
|
-
"source:force:tracking:reset",
|
|
2785
|
-
"source:tracking:force:reset",
|
|
2786
|
-
"source:tracking:reset:force",
|
|
2787
|
-
"force:tracking:source:reset",
|
|
2788
|
-
"tracking:force:source:reset",
|
|
2789
|
-
"tracking:source:force:reset",
|
|
2790
|
-
"tracking:source:reset:force",
|
|
2791
|
-
"force:tracking:reset:source",
|
|
2792
|
-
"tracking:force:reset:source",
|
|
2793
|
-
"tracking:reset:force:source",
|
|
2794
|
-
"tracking:reset:source:force",
|
|
2795
|
-
"force:source:reset:tracking",
|
|
2796
|
-
"source:force:reset:tracking",
|
|
2797
|
-
"source:reset:force:tracking",
|
|
2798
|
-
"source:reset:tracking:force",
|
|
2799
|
-
"force:reset:source:tracking",
|
|
2800
|
-
"reset:force:source:tracking",
|
|
2801
|
-
"reset:source:force:tracking",
|
|
2802
|
-
"reset:source:tracking:force",
|
|
2803
|
-
"force:reset:tracking:source",
|
|
2804
|
-
"reset:force:tracking:source",
|
|
2805
|
-
"reset:tracking:force:source",
|
|
2806
|
-
"reset:tracking:source:force"
|
|
2807
|
-
],
|
|
2808
|
-
"permutations": [
|
|
2809
|
-
"project:reset:tracking",
|
|
2810
|
-
"reset:project:tracking",
|
|
2811
|
-
"reset:tracking:project",
|
|
2812
|
-
"project:tracking:reset",
|
|
2813
|
-
"tracking:project:reset",
|
|
2814
|
-
"tracking:reset:project"
|
|
2815
|
-
]
|
|
2816
2816
|
}
|
|
2817
2817
|
},
|
|
2818
|
-
"version": "3.2.
|
|
2818
|
+
"version": "3.2.20"
|
|
2819
2819
|
}
|