@salesforce/cli 2.27.1 → 2.27.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.
- package/README.md +42 -39
- package/npm-shrinkwrap.json +14794 -12928
- package/oclif.manifest.json +308 -308
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ $ npm install -g @salesforce/cli
|
|
|
24
24
|
$ sf COMMAND
|
|
25
25
|
running command...
|
|
26
26
|
$ sf (--version|-v)
|
|
27
|
-
@salesforce/cli/2.27.
|
|
27
|
+
@salesforce/cli/2.27.3 linux-x64 node-v20.11.0
|
|
28
28
|
$ sf --help [COMMAND]
|
|
29
29
|
USAGE
|
|
30
30
|
$ sf COMMAND
|
|
@@ -198,7 +198,7 @@ EXAMPLES
|
|
|
198
198
|
$ sf alias list
|
|
199
199
|
```
|
|
200
200
|
|
|
201
|
-
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.0.
|
|
201
|
+
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.0.20/src/commands/alias/list.ts)_
|
|
202
202
|
|
|
203
203
|
## `sf alias set`
|
|
204
204
|
|
|
@@ -246,7 +246,7 @@ EXAMPLES
|
|
|
246
246
|
$ sf alias set my-scratch-org test-ss0xut7txzxf@example.com
|
|
247
247
|
```
|
|
248
248
|
|
|
249
|
-
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.0.
|
|
249
|
+
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.0.20/src/commands/alias/set.ts)_
|
|
250
250
|
|
|
251
251
|
## `sf alias unset`
|
|
252
252
|
|
|
@@ -285,7 +285,7 @@ EXAMPLES
|
|
|
285
285
|
$ sf alias unset --all [--no-prompt]
|
|
286
286
|
```
|
|
287
287
|
|
|
288
|
-
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.0.
|
|
288
|
+
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.0.20/src/commands/alias/unset.ts)_
|
|
289
289
|
|
|
290
290
|
## `sf analytics generate template`
|
|
291
291
|
|
|
@@ -897,9 +897,10 @@ CONFIGURATION VARIABLES
|
|
|
897
897
|
org-isv-debugger-url ISV debugger URL.
|
|
898
898
|
org-custom-metadata-templates A valid repository URL or directory for the custom org metadata templates.
|
|
899
899
|
org-max-query-limit Maximum number of Salesforce records returned by a CLI command. Default: 10,000.
|
|
900
|
+
org-capitalize-record-types Whether record types are capitalized on scratch org creation.
|
|
900
901
|
```
|
|
901
902
|
|
|
902
|
-
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.0.
|
|
903
|
+
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.0.20/src/commands/config/get.ts)_
|
|
903
904
|
|
|
904
905
|
## `sf config list`
|
|
905
906
|
|
|
@@ -938,7 +939,7 @@ EXAMPLES
|
|
|
938
939
|
$ sf config list
|
|
939
940
|
```
|
|
940
941
|
|
|
941
|
-
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.0.
|
|
942
|
+
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.0.20/src/commands/config/list.ts)_
|
|
942
943
|
|
|
943
944
|
## `sf config set`
|
|
944
945
|
|
|
@@ -1003,9 +1004,10 @@ CONFIGURATION VARIABLES
|
|
|
1003
1004
|
org-isv-debugger-url ISV debugger URL.
|
|
1004
1005
|
org-custom-metadata-templates A valid repository URL or directory for the custom org metadata templates.
|
|
1005
1006
|
org-max-query-limit Maximum number of Salesforce records returned by a CLI command. Default: 10,000.
|
|
1007
|
+
org-capitalize-record-types Whether record types are capitalized on scratch org creation.
|
|
1006
1008
|
```
|
|
1007
1009
|
|
|
1008
|
-
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.0.
|
|
1010
|
+
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.0.20/src/commands/config/set.ts)_
|
|
1009
1011
|
|
|
1010
1012
|
## `sf config unset`
|
|
1011
1013
|
|
|
@@ -1051,9 +1053,10 @@ CONFIGURATION VARIABLES
|
|
|
1051
1053
|
org-isv-debugger-url ISV debugger URL.
|
|
1052
1054
|
org-custom-metadata-templates A valid repository URL or directory for the custom org metadata templates.
|
|
1053
1055
|
org-max-query-limit Maximum number of Salesforce records returned by a CLI command. Default: 10,000.
|
|
1056
|
+
org-capitalize-record-types Whether record types are capitalized on scratch org creation.
|
|
1054
1057
|
```
|
|
1055
1058
|
|
|
1056
|
-
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.0.
|
|
1059
|
+
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.0.20/src/commands/config/unset.ts)_
|
|
1057
1060
|
|
|
1058
1061
|
## `sf data create record`
|
|
1059
1062
|
|
|
@@ -3054,7 +3057,7 @@ EXAMPLES
|
|
|
3054
3057
|
$ sf org list auth
|
|
3055
3058
|
```
|
|
3056
3059
|
|
|
3057
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.
|
|
3060
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.4/src/commands/org/list/auth.ts)_
|
|
3058
3061
|
|
|
3059
3062
|
## `sf org list limits`
|
|
3060
3063
|
|
|
@@ -3347,7 +3350,7 @@ FLAG DESCRIPTIONS
|
|
|
3347
3350
|
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
|
|
3348
3351
|
```
|
|
3349
3352
|
|
|
3350
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.
|
|
3353
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.4/src/commands/org/login/access-token.ts)_
|
|
3351
3354
|
|
|
3352
3355
|
## `sf org login device`
|
|
3353
3356
|
|
|
@@ -3406,7 +3409,7 @@ FLAG DESCRIPTIONS
|
|
|
3406
3409
|
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
|
|
3407
3410
|
```
|
|
3408
3411
|
|
|
3409
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.
|
|
3412
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.4/src/commands/org/login/device.ts)_
|
|
3410
3413
|
|
|
3411
3414
|
## `sf org login jwt`
|
|
3412
3415
|
|
|
@@ -3495,7 +3498,7 @@ FLAG DESCRIPTIONS
|
|
|
3495
3498
|
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
|
|
3496
3499
|
```
|
|
3497
3500
|
|
|
3498
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.
|
|
3501
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.4/src/commands/org/login/jwt.ts)_
|
|
3499
3502
|
|
|
3500
3503
|
## `sf org login sfdx-url`
|
|
3501
3504
|
|
|
@@ -3562,7 +3565,7 @@ EXAMPLES
|
|
|
3562
3565
|
$ echo url | sf org login sfdx-url --sfdx-url-stdin -
|
|
3563
3566
|
```
|
|
3564
3567
|
|
|
3565
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.
|
|
3568
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.4/src/commands/org/login/sfdx-url.ts)_
|
|
3566
3569
|
|
|
3567
3570
|
## `sf org login web`
|
|
3568
3571
|
|
|
@@ -3647,7 +3650,7 @@ FLAG DESCRIPTIONS
|
|
|
3647
3650
|
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
|
|
3648
3651
|
```
|
|
3649
3652
|
|
|
3650
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.
|
|
3653
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.4/src/commands/org/login/web.ts)_
|
|
3651
3654
|
|
|
3652
3655
|
## `sf org logout`
|
|
3653
3656
|
|
|
@@ -3707,7 +3710,7 @@ FLAG DESCRIPTIONS
|
|
|
3707
3710
|
All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
|
|
3708
3711
|
```
|
|
3709
3712
|
|
|
3710
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.
|
|
3713
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.4/src/commands/org/logout.ts)_
|
|
3711
3714
|
|
|
3712
3715
|
## `sf org open`
|
|
3713
3716
|
|
|
@@ -5082,7 +5085,7 @@ EXAMPLES
|
|
|
5082
5085
|
$ sf plugins
|
|
5083
5086
|
```
|
|
5084
5087
|
|
|
5085
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.
|
|
5088
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.22/src/commands/plugins/index.ts)_
|
|
5086
5089
|
|
|
5087
5090
|
## `sf plugins discover`
|
|
5088
5091
|
|
|
@@ -5126,7 +5129,7 @@ EXAMPLES
|
|
|
5126
5129
|
$ sf plugins inspect myplugin
|
|
5127
5130
|
```
|
|
5128
5131
|
|
|
5129
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.
|
|
5132
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.22/src/commands/plugins/inspect.ts)_
|
|
5130
5133
|
|
|
5131
5134
|
## `sf plugins:install PLUGIN...`
|
|
5132
5135
|
|
|
@@ -5170,7 +5173,7 @@ EXAMPLES
|
|
|
5170
5173
|
$ sf plugins install someuser/someplugin
|
|
5171
5174
|
```
|
|
5172
5175
|
|
|
5173
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.
|
|
5176
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.22/src/commands/plugins/install.ts)_
|
|
5174
5177
|
|
|
5175
5178
|
## `sf plugins:link PLUGIN`
|
|
5176
5179
|
|
|
@@ -5200,7 +5203,7 @@ EXAMPLES
|
|
|
5200
5203
|
$ sf plugins link myplugin
|
|
5201
5204
|
```
|
|
5202
5205
|
|
|
5203
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.
|
|
5206
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.22/src/commands/plugins/link.ts)_
|
|
5204
5207
|
|
|
5205
5208
|
## `sf plugins reset`
|
|
5206
5209
|
|
|
@@ -5211,7 +5214,7 @@ USAGE
|
|
|
5211
5214
|
$ sf plugins reset
|
|
5212
5215
|
```
|
|
5213
5216
|
|
|
5214
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.
|
|
5217
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.22/src/commands/plugins/reset.ts)_
|
|
5215
5218
|
|
|
5216
5219
|
## `sf plugins trust verify`
|
|
5217
5220
|
|
|
@@ -5267,7 +5270,7 @@ EXAMPLES
|
|
|
5267
5270
|
$ sf plugins uninstall myplugin
|
|
5268
5271
|
```
|
|
5269
5272
|
|
|
5270
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.
|
|
5273
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.22/src/commands/plugins/uninstall.ts)_
|
|
5271
5274
|
|
|
5272
5275
|
## `sf plugins update`
|
|
5273
5276
|
|
|
@@ -5285,7 +5288,7 @@ DESCRIPTION
|
|
|
5285
5288
|
Update installed plugins.
|
|
5286
5289
|
```
|
|
5287
5290
|
|
|
5288
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.
|
|
5291
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.22/src/commands/plugins/update.ts)_
|
|
5289
5292
|
|
|
5290
5293
|
## `sf project convert mdapi`
|
|
5291
5294
|
|
|
@@ -5347,7 +5350,7 @@ FLAG DESCRIPTIONS
|
|
|
5347
5350
|
If you specify this parameter, don’t specify --metadata or --source-dir.
|
|
5348
5351
|
```
|
|
5349
5352
|
|
|
5350
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
5353
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.8/src/commands/project/convert/mdapi.ts)_
|
|
5351
5354
|
|
|
5352
5355
|
## `sf project convert source`
|
|
5353
5356
|
|
|
@@ -5359,7 +5362,7 @@ USAGE
|
|
|
5359
5362
|
<value> | -m <value>]
|
|
5360
5363
|
|
|
5361
5364
|
FLAGS
|
|
5362
|
-
-d, --output-dir=<value> [default:
|
|
5365
|
+
-d, --output-dir=<value> [default: metadataPackage_1706356121737] Output directory to store the Metadata
|
|
5363
5366
|
API–formatted files in.
|
|
5364
5367
|
-m, --metadata=<value>... Metadata component names to convert.
|
|
5365
5368
|
-n, --package-name=<value> Name of the package to associate with the metadata-formatted files.
|
|
@@ -5419,7 +5422,7 @@ FLAG DESCRIPTIONS
|
|
|
5419
5422
|
Override the api version used for api requests made by this command
|
|
5420
5423
|
```
|
|
5421
5424
|
|
|
5422
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
5425
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.8/src/commands/project/convert/source.ts)_
|
|
5423
5426
|
|
|
5424
5427
|
## `sf project delete source`
|
|
5425
5428
|
|
|
@@ -5558,7 +5561,7 @@ FLAG DESCRIPTIONS
|
|
|
5558
5561
|
- Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
|
|
5559
5562
|
```
|
|
5560
5563
|
|
|
5561
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
5564
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.8/src/commands/project/delete/source.ts)_
|
|
5562
5565
|
|
|
5563
5566
|
## `sf project delete tracking`
|
|
5564
5567
|
|
|
@@ -5594,7 +5597,7 @@ EXAMPLES
|
|
|
5594
5597
|
$ sf project delete tracking --target-org my-scratch
|
|
5595
5598
|
```
|
|
5596
5599
|
|
|
5597
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
5600
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.8/src/commands/project/delete/tracking.ts)_
|
|
5598
5601
|
|
|
5599
5602
|
## `sf project deploy cancel`
|
|
5600
5603
|
|
|
@@ -5664,7 +5667,7 @@ FLAG DESCRIPTIONS
|
|
|
5664
5667
|
project deploy report".
|
|
5665
5668
|
```
|
|
5666
5669
|
|
|
5667
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
5670
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.8/src/commands/project/deploy/cancel.ts)_
|
|
5668
5671
|
|
|
5669
5672
|
## `sf project deploy preview`
|
|
5670
5673
|
|
|
@@ -5748,7 +5751,7 @@ FLAG DESCRIPTIONS
|
|
|
5748
5751
|
All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
|
|
5749
5752
|
```
|
|
5750
5753
|
|
|
5751
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
5754
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.8/src/commands/project/deploy/preview.ts)_
|
|
5752
5755
|
|
|
5753
5756
|
## `sf project deploy quick`
|
|
5754
5757
|
|
|
@@ -5841,7 +5844,7 @@ ERROR CODES
|
|
|
5841
5844
|
Canceling (69) The deploy is being canceled.
|
|
5842
5845
|
```
|
|
5843
5846
|
|
|
5844
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
5847
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.8/src/commands/project/deploy/quick.ts)_
|
|
5845
5848
|
|
|
5846
5849
|
## `sf project deploy report`
|
|
5847
5850
|
|
|
@@ -5936,7 +5939,7 @@ FLAG DESCRIPTIONS
|
|
|
5936
5939
|
--coverage-formatters lcov --coverage-formatters clover
|
|
5937
5940
|
```
|
|
5938
5941
|
|
|
5939
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
5942
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.8/src/commands/project/deploy/report.ts)_
|
|
5940
5943
|
|
|
5941
5944
|
## `sf project deploy resume`
|
|
5942
5945
|
|
|
@@ -6032,7 +6035,7 @@ ERROR CODES
|
|
|
6032
6035
|
Canceling (69) The deploy is being canceled.
|
|
6033
6036
|
```
|
|
6034
6037
|
|
|
6035
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
6038
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.8/src/commands/project/deploy/resume.ts)_
|
|
6036
6039
|
|
|
6037
6040
|
## `sf project deploy start`
|
|
6038
6041
|
|
|
@@ -6261,7 +6264,7 @@ ERROR CODES
|
|
|
6261
6264
|
Canceling (69) The deploy is being canceled.
|
|
6262
6265
|
```
|
|
6263
6266
|
|
|
6264
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
6267
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.8/src/commands/project/deploy/start.ts)_
|
|
6265
6268
|
|
|
6266
6269
|
## `sf project deploy validate`
|
|
6267
6270
|
|
|
@@ -6440,7 +6443,7 @@ ERROR CODES
|
|
|
6440
6443
|
Canceling (69) The deploy is being canceled.
|
|
6441
6444
|
```
|
|
6442
6445
|
|
|
6443
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
6446
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.8/src/commands/project/deploy/validate.ts)_
|
|
6444
6447
|
|
|
6445
6448
|
## `sf project generate`
|
|
6446
6449
|
|
|
@@ -6619,7 +6622,7 @@ EXAMPLES
|
|
|
6619
6622
|
$ sf project generate manifest --from-org test@myorg.com --include-packages unlocked
|
|
6620
6623
|
```
|
|
6621
6624
|
|
|
6622
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
6625
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.8/src/commands/project/generate/manifest.ts)_
|
|
6623
6626
|
|
|
6624
6627
|
## `sf project list ignored`
|
|
6625
6628
|
|
|
@@ -6660,7 +6663,7 @@ EXAMPLES
|
|
|
6660
6663
|
$ sf project list ignored --source-dir package.xml
|
|
6661
6664
|
```
|
|
6662
6665
|
|
|
6663
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
6666
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.8/src/commands/project/list/ignored.ts)_
|
|
6664
6667
|
|
|
6665
6668
|
## `sf project reset tracking`
|
|
6666
6669
|
|
|
@@ -6708,7 +6711,7 @@ EXAMPLES
|
|
|
6708
6711
|
$ sf project reset tracking --revision 30
|
|
6709
6712
|
```
|
|
6710
6713
|
|
|
6711
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
6714
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.8/src/commands/project/reset/tracking.ts)_
|
|
6712
6715
|
|
|
6713
6716
|
## `sf project retrieve preview`
|
|
6714
6717
|
|
|
@@ -6764,7 +6767,7 @@ FLAG DESCRIPTIONS
|
|
|
6764
6767
|
Overrides your default org.
|
|
6765
6768
|
```
|
|
6766
6769
|
|
|
6767
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
6770
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.8/src/commands/project/retrieve/preview.ts)_
|
|
6768
6771
|
|
|
6769
6772
|
## `sf project retrieve start`
|
|
6770
6773
|
|
|
@@ -6918,7 +6921,7 @@ ENVIRONMENT VARIABLES
|
|
|
6918
6921
|
SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
|
|
6919
6922
|
```
|
|
6920
6923
|
|
|
6921
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
6924
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.8/src/commands/project/retrieve/start.ts)_
|
|
6922
6925
|
|
|
6923
6926
|
## `sf schema generate field`
|
|
6924
6927
|
|