@salesforce/cli 2.43.2 → 2.43.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 +220 -220
- package/npm-shrinkwrap.json +1310 -1690
- package/oclif.lock +1113 -1233
- package/oclif.manifest.json +1 -1
- 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.43.
|
|
27
|
+
@salesforce/cli/2.43.3 linux-x64 node-v20.13.1
|
|
28
28
|
$ sf --help [COMMAND]
|
|
29
29
|
USAGE
|
|
30
30
|
$ sf COMMAND
|
|
@@ -115,10 +115,6 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
|
|
|
115
115
|
- [`sf org refresh sandbox`](#sf-org-refresh-sandbox)
|
|
116
116
|
- [`sf org resume sandbox`](#sf-org-resume-sandbox)
|
|
117
117
|
- [`sf org resume scratch`](#sf-org-resume-scratch)
|
|
118
|
-
- [`sf package1 version create`](#sf-package1-version-create)
|
|
119
|
-
- [`sf package1 version create get`](#sf-package1-version-create-get)
|
|
120
|
-
- [`sf package1 version display`](#sf-package1-version-display)
|
|
121
|
-
- [`sf package1 version list`](#sf-package1-version-list)
|
|
122
118
|
- [`sf package create`](#sf-package-create)
|
|
123
119
|
- [`sf package delete`](#sf-package-delete)
|
|
124
120
|
- [`sf package install`](#sf-package-install)
|
|
@@ -137,6 +133,10 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
|
|
|
137
133
|
- [`sf package version promote`](#sf-package-version-promote)
|
|
138
134
|
- [`sf package version report`](#sf-package-version-report)
|
|
139
135
|
- [`sf package version update`](#sf-package-version-update)
|
|
136
|
+
- [`sf package1 version create`](#sf-package1-version-create)
|
|
137
|
+
- [`sf package1 version create get`](#sf-package1-version-create-get)
|
|
138
|
+
- [`sf package1 version display`](#sf-package1-version-display)
|
|
139
|
+
- [`sf package1 version list`](#sf-package1-version-list)
|
|
140
140
|
- [`sf plugins`](#sf-plugins)
|
|
141
141
|
- [`sf plugins discover`](#sf-plugins-discover)
|
|
142
142
|
- [`sf plugins:inspect PLUGIN...`](#sf-pluginsinspect-plugin)
|
|
@@ -4226,178 +4226,6 @@ FLAG DESCRIPTIONS
|
|
|
4226
4226
|
|
|
4227
4227
|
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.10/src/commands/org/resume/scratch.ts)_
|
|
4228
4228
|
|
|
4229
|
-
## `sf package1 version create`
|
|
4230
|
-
|
|
4231
|
-
Create a first-generation package version in the release org.
|
|
4232
|
-
|
|
4233
|
-
```
|
|
4234
|
-
USAGE
|
|
4235
|
-
$ sf package1 version create -o <value> -i <value> -n <value> [--json] [--flags-dir <value>] [--api-version <value>] [-d
|
|
4236
|
-
<value>] [-v <value>] [-m] [-r <value>] [-p <value>] [-k <value>] [-w <value>]
|
|
4237
|
-
|
|
4238
|
-
FLAGS
|
|
4239
|
-
-d, --description=<value> Package version description.
|
|
4240
|
-
-i, --package-id=<value> (required) ID of the metadata package (starts with 033) of which you’re creating a
|
|
4241
|
-
new version.
|
|
4242
|
-
-k, --installation-key=<value> Installation key for key-protected package (default: null).
|
|
4243
|
-
-m, --managed-released Create a managed package version.
|
|
4244
|
-
-n, --name=<value> (required) Package version name.
|
|
4245
|
-
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
4246
|
-
configuration variable is already set.
|
|
4247
|
-
-p, --post-install-url=<value> Post install URL.
|
|
4248
|
-
-r, --release-notes-url=<value> Release notes URL.
|
|
4249
|
-
-v, --version=<value> Package version in major.minor format, for example, 3.2.
|
|
4250
|
-
-w, --wait=<value> Minutes to wait for the package version to be created (default: 2 minutes).
|
|
4251
|
-
--api-version=<value> Override the api version used for api requests made by this command
|
|
4252
|
-
|
|
4253
|
-
GLOBAL FLAGS
|
|
4254
|
-
--flags-dir=<value> Import flag values from a directory.
|
|
4255
|
-
--json Format output as json.
|
|
4256
|
-
|
|
4257
|
-
DESCRIPTION
|
|
4258
|
-
Create a first-generation package version in the release org.
|
|
4259
|
-
|
|
4260
|
-
The package version is based on the contents of the specified metadata package. Omit --managed-released if you want to
|
|
4261
|
-
create an unmanaged package version.
|
|
4262
|
-
|
|
4263
|
-
ALIASES
|
|
4264
|
-
$ sf force package1 version create
|
|
4265
|
-
|
|
4266
|
-
EXAMPLES
|
|
4267
|
-
Create a first-generation package version from the package with the specified ID and name the package version
|
|
4268
|
-
"example"; use your default org:
|
|
4269
|
-
|
|
4270
|
-
$ sf package1 version create --package-id 033... --name example
|
|
4271
|
-
|
|
4272
|
-
Same as previous example, but provide a description and wait for 30 minutes for the package version to be created;
|
|
4273
|
-
use the specified org:
|
|
4274
|
-
|
|
4275
|
-
$ sf package1 version create --package-id 033... --name example --description "example description" --wait 30 \
|
|
4276
|
-
--target-org myorg@example.com
|
|
4277
|
-
|
|
4278
|
-
FLAG DESCRIPTIONS
|
|
4279
|
-
-m, --managed-released Create a managed package version.
|
|
4280
|
-
|
|
4281
|
-
To create a beta version, don’t include this parameter.
|
|
4282
|
-
|
|
4283
|
-
-p, --post-install-url=<value> Post install URL.
|
|
4284
|
-
|
|
4285
|
-
The contents of the post-installation instructions URL are displayed in the UI after installation of the package
|
|
4286
|
-
version.
|
|
4287
|
-
|
|
4288
|
-
-r, --release-notes-url=<value> Release notes URL.
|
|
4289
|
-
|
|
4290
|
-
This link is displayed in the package installation UI to provide release notes for this package version to
|
|
4291
|
-
subscribers.
|
|
4292
|
-
```
|
|
4293
|
-
|
|
4294
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.4/src/commands/package1/version/create.ts)_
|
|
4295
|
-
|
|
4296
|
-
## `sf package1 version create get`
|
|
4297
|
-
|
|
4298
|
-
Retrieve the status of a package version creation request.
|
|
4299
|
-
|
|
4300
|
-
```
|
|
4301
|
-
USAGE
|
|
4302
|
-
$ sf package1 version create get -o <value> -i <value> [--json] [--flags-dir <value>] [--api-version <value>]
|
|
4303
|
-
|
|
4304
|
-
FLAGS
|
|
4305
|
-
-i, --request-id=<value> (required) ID of the PackageUploadRequest (starts with 0HD).
|
|
4306
|
-
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
4307
|
-
configuration variable is already set.
|
|
4308
|
-
--api-version=<value> Override the api version used for api requests made by this command
|
|
4309
|
-
|
|
4310
|
-
GLOBAL FLAGS
|
|
4311
|
-
--flags-dir=<value> Import flag values from a directory.
|
|
4312
|
-
--json Format output as json.
|
|
4313
|
-
|
|
4314
|
-
ALIASES
|
|
4315
|
-
$ sf force package1 version create get
|
|
4316
|
-
|
|
4317
|
-
EXAMPLES
|
|
4318
|
-
Get the status of the creation request for the package version with the specified ID in your default org:
|
|
4319
|
-
|
|
4320
|
-
$ sf package1 version create get --request-id 0HD...
|
|
4321
|
-
|
|
4322
|
-
Same as previous example, but use the specified org:
|
|
4323
|
-
|
|
4324
|
-
$ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
|
|
4325
|
-
```
|
|
4326
|
-
|
|
4327
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.4/src/commands/package1/version/create/get.ts)_
|
|
4328
|
-
|
|
4329
|
-
## `sf package1 version display`
|
|
4330
|
-
|
|
4331
|
-
Display details about a first-generation package version.
|
|
4332
|
-
|
|
4333
|
-
```
|
|
4334
|
-
USAGE
|
|
4335
|
-
$ sf package1 version display -o <value> -i <value> [--json] [--flags-dir <value>] [--api-version <value>]
|
|
4336
|
-
|
|
4337
|
-
FLAGS
|
|
4338
|
-
-i, --package-version-id=<value> (required) ID (starts with 04t) of the metadata package version whose details you
|
|
4339
|
-
want to display.
|
|
4340
|
-
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
4341
|
-
configuration variable is already set.
|
|
4342
|
-
--api-version=<value> Override the api version used for api requests made by this command
|
|
4343
|
-
|
|
4344
|
-
GLOBAL FLAGS
|
|
4345
|
-
--flags-dir=<value> Import flag values from a directory.
|
|
4346
|
-
--json Format output as json.
|
|
4347
|
-
|
|
4348
|
-
ALIASES
|
|
4349
|
-
$ sf force package1 version display
|
|
4350
|
-
|
|
4351
|
-
EXAMPLES
|
|
4352
|
-
Display details about the first-generation package version with the specified ID in your default org:
|
|
4353
|
-
|
|
4354
|
-
$ sf package1 version display --package-version-id 04t...
|
|
4355
|
-
|
|
4356
|
-
Same as previous example, but use the specified org:
|
|
4357
|
-
|
|
4358
|
-
$ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
|
|
4359
|
-
```
|
|
4360
|
-
|
|
4361
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.4/src/commands/package1/version/display.ts)_
|
|
4362
|
-
|
|
4363
|
-
## `sf package1 version list`
|
|
4364
|
-
|
|
4365
|
-
List package versions for the specified first-generation package or for the org.
|
|
4366
|
-
|
|
4367
|
-
```
|
|
4368
|
-
USAGE
|
|
4369
|
-
$ sf package1 version list -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-i <value>]
|
|
4370
|
-
|
|
4371
|
-
FLAGS
|
|
4372
|
-
-i, --package-id=<value> Metadata package ID (starts with 033) whose package versions you want to list.
|
|
4373
|
-
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
4374
|
-
configuration variable is already set.
|
|
4375
|
-
--api-version=<value> Override the api version used for api requests made by this command
|
|
4376
|
-
|
|
4377
|
-
GLOBAL FLAGS
|
|
4378
|
-
--flags-dir=<value> Import flag values from a directory.
|
|
4379
|
-
--json Format output as json.
|
|
4380
|
-
|
|
4381
|
-
ALIASES
|
|
4382
|
-
$ sf force package1 version list
|
|
4383
|
-
|
|
4384
|
-
EXAMPLES
|
|
4385
|
-
List all first-generation package versions in your default org:
|
|
4386
|
-
|
|
4387
|
-
$ sf package1 version list
|
|
4388
|
-
|
|
4389
|
-
List package versions for the specified first-generation package in the specifief org:
|
|
4390
|
-
|
|
4391
|
-
$ sf package1 version list --package-id 033... --target-org myorg@example.com
|
|
4392
|
-
|
|
4393
|
-
FLAG DESCRIPTIONS
|
|
4394
|
-
-i, --package-id=<value> Metadata package ID (starts with 033) whose package versions you want to list.
|
|
4395
|
-
|
|
4396
|
-
If not specified, shows all versions for all packages (managed and unmanaged) in the org.
|
|
4397
|
-
```
|
|
4398
|
-
|
|
4399
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.4/src/commands/package1/version/list.ts)_
|
|
4400
|
-
|
|
4401
4229
|
## `sf package create`
|
|
4402
4230
|
|
|
4403
4231
|
Create a package.
|
|
@@ -4475,7 +4303,7 @@ FLAG DESCRIPTIONS
|
|
|
4475
4303
|
Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
|
|
4476
4304
|
```
|
|
4477
4305
|
|
|
4478
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.
|
|
4306
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.5/src/commands/package/create.ts)_
|
|
4479
4307
|
|
|
4480
4308
|
## `sf package delete`
|
|
4481
4309
|
|
|
@@ -4517,7 +4345,7 @@ EXAMPLES
|
|
|
4517
4345
|
$ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
|
|
4518
4346
|
```
|
|
4519
4347
|
|
|
4520
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.
|
|
4348
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.5/src/commands/package/delete.ts)_
|
|
4521
4349
|
|
|
4522
4350
|
## `sf package install`
|
|
4523
4351
|
|
|
@@ -4615,7 +4443,7 @@ FLAG DESCRIPTIONS
|
|
|
4615
4443
|
specify DeprecateOnly or Delete only for unlocked package upgrades.
|
|
4616
4444
|
```
|
|
4617
4445
|
|
|
4618
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.
|
|
4446
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.5/src/commands/package/install.ts)_
|
|
4619
4447
|
|
|
4620
4448
|
## `sf package install report`
|
|
4621
4449
|
|
|
@@ -4648,7 +4476,7 @@ EXAMPLES
|
|
|
4648
4476
|
$ sf package install report --request-id 0Hf... --target-org me@example.com
|
|
4649
4477
|
```
|
|
4650
4478
|
|
|
4651
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.
|
|
4479
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.5/src/commands/package/install/report.ts)_
|
|
4652
4480
|
|
|
4653
4481
|
## `sf package installed list`
|
|
4654
4482
|
|
|
@@ -4680,7 +4508,7 @@ EXAMPLES
|
|
|
4680
4508
|
$ sf package installed list --target-org me@example.com
|
|
4681
4509
|
```
|
|
4682
4510
|
|
|
4683
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.
|
|
4511
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.5/src/commands/package/installed/list.ts)_
|
|
4684
4512
|
|
|
4685
4513
|
## `sf package list`
|
|
4686
4514
|
|
|
@@ -4718,7 +4546,7 @@ EXAMPLES
|
|
|
4718
4546
|
$ sf package list --target-dev-hub devhub@example.com --verbose
|
|
4719
4547
|
```
|
|
4720
4548
|
|
|
4721
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.
|
|
4549
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.5/src/commands/package/list.ts)_
|
|
4722
4550
|
|
|
4723
4551
|
## `sf package uninstall`
|
|
4724
4552
|
|
|
@@ -4766,7 +4594,7 @@ EXAMPLES
|
|
|
4766
4594
|
$ sf package uninstall --package "Undesirable Package Alias"
|
|
4767
4595
|
```
|
|
4768
4596
|
|
|
4769
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.
|
|
4597
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.5/src/commands/package/uninstall.ts)_
|
|
4770
4598
|
|
|
4771
4599
|
## `sf package uninstall report`
|
|
4772
4600
|
|
|
@@ -4799,7 +4627,7 @@ EXAMPLES
|
|
|
4799
4627
|
$ sf package uninstall report --request-id 06y... --target-org me@example.com
|
|
4800
4628
|
```
|
|
4801
4629
|
|
|
4802
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.
|
|
4630
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.5/src/commands/package/uninstall/report.ts)_
|
|
4803
4631
|
|
|
4804
4632
|
## `sf package update`
|
|
4805
4633
|
|
|
@@ -4854,7 +4682,7 @@ FLAG DESCRIPTIONS
|
|
|
4854
4682
|
associated with your package.
|
|
4855
4683
|
```
|
|
4856
4684
|
|
|
4857
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.
|
|
4685
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.5/src/commands/package/update.ts)_
|
|
4858
4686
|
|
|
4859
4687
|
## `sf package version create`
|
|
4860
4688
|
|
|
@@ -5009,7 +4837,7 @@ FLAG DESCRIPTIONS
|
|
|
5009
4837
|
periods of no output from commands.
|
|
5010
4838
|
```
|
|
5011
4839
|
|
|
5012
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.
|
|
4840
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.5/src/commands/package/version/create.ts)_
|
|
5013
4841
|
|
|
5014
4842
|
## `sf package version create list`
|
|
5015
4843
|
|
|
@@ -5070,7 +4898,7 @@ EXAMPLES
|
|
|
5070
4898
|
$ sf package version create list --created-last-days 0 --status Success
|
|
5071
4899
|
```
|
|
5072
4900
|
|
|
5073
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.
|
|
4901
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.5/src/commands/package/version/create/list.ts)_
|
|
5074
4902
|
|
|
5075
4903
|
## `sf package version create report`
|
|
5076
4904
|
|
|
@@ -5113,7 +4941,7 @@ EXAMPLES
|
|
|
5113
4941
|
$ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
|
|
5114
4942
|
```
|
|
5115
4943
|
|
|
5116
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.
|
|
4944
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.5/src/commands/package/version/create/report.ts)_
|
|
5117
4945
|
|
|
5118
4946
|
## `sf package version delete`
|
|
5119
4947
|
|
|
@@ -5152,7 +4980,7 @@ EXAMPLES
|
|
|
5152
4980
|
$ sf package version delete --package 04t... --target-org devhub@example.com
|
|
5153
4981
|
```
|
|
5154
4982
|
|
|
5155
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.
|
|
4983
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.5/src/commands/package/version/delete.ts)_
|
|
5156
4984
|
|
|
5157
4985
|
## `sf package version displayancestry`
|
|
5158
4986
|
|
|
@@ -5212,7 +5040,7 @@ FLAG DESCRIPTIONS
|
|
|
5212
5040
|
You can use the DOT code output in graph visualization software to create tree visualizations.
|
|
5213
5041
|
```
|
|
5214
5042
|
|
|
5215
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.
|
|
5043
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.5/src/commands/package/version/displayancestry.ts)_
|
|
5216
5044
|
|
|
5217
5045
|
## `sf package version list`
|
|
5218
5046
|
|
|
@@ -5281,7 +5109,7 @@ EXAMPLES
|
|
|
5281
5109
|
$ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
|
|
5282
5110
|
```
|
|
5283
5111
|
|
|
5284
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.
|
|
5112
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.5/src/commands/package/version/list.ts)_
|
|
5285
5113
|
|
|
5286
5114
|
## `sf package version promote`
|
|
5287
5115
|
|
|
@@ -5325,7 +5153,7 @@ EXAMPLES
|
|
|
5325
5153
|
$ sf package version promote --package "Awesome Package Alias"
|
|
5326
5154
|
```
|
|
5327
5155
|
|
|
5328
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.
|
|
5156
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.5/src/commands/package/version/promote.ts)_
|
|
5329
5157
|
|
|
5330
5158
|
## `sf package version report`
|
|
5331
5159
|
|
|
@@ -5365,7 +5193,7 @@ EXAMPLES
|
|
|
5365
5193
|
$ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
|
|
5366
5194
|
```
|
|
5367
5195
|
|
|
5368
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.
|
|
5196
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.5/src/commands/package/version/report.ts)_
|
|
5369
5197
|
|
|
5370
5198
|
## `sf package version update`
|
|
5371
5199
|
|
|
@@ -5418,7 +5246,179 @@ EXAMPLES
|
|
|
5418
5246
|
$ sf package version update --package 04t... --version-description "New Package Version Description"
|
|
5419
5247
|
```
|
|
5420
5248
|
|
|
5421
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.
|
|
5249
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.5/src/commands/package/version/update.ts)_
|
|
5250
|
+
|
|
5251
|
+
## `sf package1 version create`
|
|
5252
|
+
|
|
5253
|
+
Create a first-generation package version in the release org.
|
|
5254
|
+
|
|
5255
|
+
```
|
|
5256
|
+
USAGE
|
|
5257
|
+
$ sf package1 version create -o <value> -i <value> -n <value> [--json] [--flags-dir <value>] [--api-version <value>] [-d
|
|
5258
|
+
<value>] [-v <value>] [-m] [-r <value>] [-p <value>] [-k <value>] [-w <value>]
|
|
5259
|
+
|
|
5260
|
+
FLAGS
|
|
5261
|
+
-d, --description=<value> Package version description.
|
|
5262
|
+
-i, --package-id=<value> (required) ID of the metadata package (starts with 033) of which you’re creating a
|
|
5263
|
+
new version.
|
|
5264
|
+
-k, --installation-key=<value> Installation key for key-protected package (default: null).
|
|
5265
|
+
-m, --managed-released Create a managed package version.
|
|
5266
|
+
-n, --name=<value> (required) Package version name.
|
|
5267
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
5268
|
+
configuration variable is already set.
|
|
5269
|
+
-p, --post-install-url=<value> Post install URL.
|
|
5270
|
+
-r, --release-notes-url=<value> Release notes URL.
|
|
5271
|
+
-v, --version=<value> Package version in major.minor format, for example, 3.2.
|
|
5272
|
+
-w, --wait=<value> Minutes to wait for the package version to be created (default: 2 minutes).
|
|
5273
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
5274
|
+
|
|
5275
|
+
GLOBAL FLAGS
|
|
5276
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
5277
|
+
--json Format output as json.
|
|
5278
|
+
|
|
5279
|
+
DESCRIPTION
|
|
5280
|
+
Create a first-generation package version in the release org.
|
|
5281
|
+
|
|
5282
|
+
The package version is based on the contents of the specified metadata package. Omit --managed-released if you want to
|
|
5283
|
+
create an unmanaged package version.
|
|
5284
|
+
|
|
5285
|
+
ALIASES
|
|
5286
|
+
$ sf force package1 version create
|
|
5287
|
+
|
|
5288
|
+
EXAMPLES
|
|
5289
|
+
Create a first-generation package version from the package with the specified ID and name the package version
|
|
5290
|
+
"example"; use your default org:
|
|
5291
|
+
|
|
5292
|
+
$ sf package1 version create --package-id 033... --name example
|
|
5293
|
+
|
|
5294
|
+
Same as previous example, but provide a description and wait for 30 minutes for the package version to be created;
|
|
5295
|
+
use the specified org:
|
|
5296
|
+
|
|
5297
|
+
$ sf package1 version create --package-id 033... --name example --description "example description" --wait 30 \
|
|
5298
|
+
--target-org myorg@example.com
|
|
5299
|
+
|
|
5300
|
+
FLAG DESCRIPTIONS
|
|
5301
|
+
-m, --managed-released Create a managed package version.
|
|
5302
|
+
|
|
5303
|
+
To create a beta version, don’t include this parameter.
|
|
5304
|
+
|
|
5305
|
+
-p, --post-install-url=<value> Post install URL.
|
|
5306
|
+
|
|
5307
|
+
The contents of the post-installation instructions URL are displayed in the UI after installation of the package
|
|
5308
|
+
version.
|
|
5309
|
+
|
|
5310
|
+
-r, --release-notes-url=<value> Release notes URL.
|
|
5311
|
+
|
|
5312
|
+
This link is displayed in the package installation UI to provide release notes for this package version to
|
|
5313
|
+
subscribers.
|
|
5314
|
+
```
|
|
5315
|
+
|
|
5316
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.5/src/commands/package1/version/create.ts)_
|
|
5317
|
+
|
|
5318
|
+
## `sf package1 version create get`
|
|
5319
|
+
|
|
5320
|
+
Retrieve the status of a package version creation request.
|
|
5321
|
+
|
|
5322
|
+
```
|
|
5323
|
+
USAGE
|
|
5324
|
+
$ sf package1 version create get -o <value> -i <value> [--json] [--flags-dir <value>] [--api-version <value>]
|
|
5325
|
+
|
|
5326
|
+
FLAGS
|
|
5327
|
+
-i, --request-id=<value> (required) ID of the PackageUploadRequest (starts with 0HD).
|
|
5328
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
5329
|
+
configuration variable is already set.
|
|
5330
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
5331
|
+
|
|
5332
|
+
GLOBAL FLAGS
|
|
5333
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
5334
|
+
--json Format output as json.
|
|
5335
|
+
|
|
5336
|
+
ALIASES
|
|
5337
|
+
$ sf force package1 version create get
|
|
5338
|
+
|
|
5339
|
+
EXAMPLES
|
|
5340
|
+
Get the status of the creation request for the package version with the specified ID in your default org:
|
|
5341
|
+
|
|
5342
|
+
$ sf package1 version create get --request-id 0HD...
|
|
5343
|
+
|
|
5344
|
+
Same as previous example, but use the specified org:
|
|
5345
|
+
|
|
5346
|
+
$ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
|
|
5347
|
+
```
|
|
5348
|
+
|
|
5349
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.5/src/commands/package1/version/create/get.ts)_
|
|
5350
|
+
|
|
5351
|
+
## `sf package1 version display`
|
|
5352
|
+
|
|
5353
|
+
Display details about a first-generation package version.
|
|
5354
|
+
|
|
5355
|
+
```
|
|
5356
|
+
USAGE
|
|
5357
|
+
$ sf package1 version display -o <value> -i <value> [--json] [--flags-dir <value>] [--api-version <value>]
|
|
5358
|
+
|
|
5359
|
+
FLAGS
|
|
5360
|
+
-i, --package-version-id=<value> (required) ID (starts with 04t) of the metadata package version whose details you
|
|
5361
|
+
want to display.
|
|
5362
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
5363
|
+
configuration variable is already set.
|
|
5364
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
5365
|
+
|
|
5366
|
+
GLOBAL FLAGS
|
|
5367
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
5368
|
+
--json Format output as json.
|
|
5369
|
+
|
|
5370
|
+
ALIASES
|
|
5371
|
+
$ sf force package1 version display
|
|
5372
|
+
|
|
5373
|
+
EXAMPLES
|
|
5374
|
+
Display details about the first-generation package version with the specified ID in your default org:
|
|
5375
|
+
|
|
5376
|
+
$ sf package1 version display --package-version-id 04t...
|
|
5377
|
+
|
|
5378
|
+
Same as previous example, but use the specified org:
|
|
5379
|
+
|
|
5380
|
+
$ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
|
|
5381
|
+
```
|
|
5382
|
+
|
|
5383
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.5/src/commands/package1/version/display.ts)_
|
|
5384
|
+
|
|
5385
|
+
## `sf package1 version list`
|
|
5386
|
+
|
|
5387
|
+
List package versions for the specified first-generation package or for the org.
|
|
5388
|
+
|
|
5389
|
+
```
|
|
5390
|
+
USAGE
|
|
5391
|
+
$ sf package1 version list -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-i <value>]
|
|
5392
|
+
|
|
5393
|
+
FLAGS
|
|
5394
|
+
-i, --package-id=<value> Metadata package ID (starts with 033) whose package versions you want to list.
|
|
5395
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
5396
|
+
configuration variable is already set.
|
|
5397
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
5398
|
+
|
|
5399
|
+
GLOBAL FLAGS
|
|
5400
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
5401
|
+
--json Format output as json.
|
|
5402
|
+
|
|
5403
|
+
ALIASES
|
|
5404
|
+
$ sf force package1 version list
|
|
5405
|
+
|
|
5406
|
+
EXAMPLES
|
|
5407
|
+
List all first-generation package versions in your default org:
|
|
5408
|
+
|
|
5409
|
+
$ sf package1 version list
|
|
5410
|
+
|
|
5411
|
+
List package versions for the specified first-generation package in the specifief org:
|
|
5412
|
+
|
|
5413
|
+
$ sf package1 version list --package-id 033... --target-org myorg@example.com
|
|
5414
|
+
|
|
5415
|
+
FLAG DESCRIPTIONS
|
|
5416
|
+
-i, --package-id=<value> Metadata package ID (starts with 033) whose package versions you want to list.
|
|
5417
|
+
|
|
5418
|
+
If not specified, shows all versions for all packages (managed and unmanaged) in the org.
|
|
5419
|
+
```
|
|
5420
|
+
|
|
5421
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.4.5/src/commands/package1/version/list.ts)_
|
|
5422
5422
|
|
|
5423
5423
|
## `sf plugins`
|
|
5424
5424
|
|
|
@@ -5441,7 +5441,7 @@ EXAMPLES
|
|
|
5441
5441
|
$ sf plugins
|
|
5442
5442
|
```
|
|
5443
5443
|
|
|
5444
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.
|
|
5444
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.1.2/src/commands/plugins/index.ts)_
|
|
5445
5445
|
|
|
5446
5446
|
## `sf plugins discover`
|
|
5447
5447
|
|
|
@@ -5486,7 +5486,7 @@ EXAMPLES
|
|
|
5486
5486
|
$ sf plugins inspect @salesforce/plugin-packaging
|
|
5487
5487
|
```
|
|
5488
5488
|
|
|
5489
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.
|
|
5489
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.1.2/src/commands/plugins/inspect.ts)_
|
|
5490
5490
|
|
|
5491
5491
|
## `sf plugins install PLUGIN`
|
|
5492
5492
|
|
|
@@ -5535,7 +5535,7 @@ EXAMPLES
|
|
|
5535
5535
|
$ sf plugins install someuser/someplugin
|
|
5536
5536
|
```
|
|
5537
5537
|
|
|
5538
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.
|
|
5538
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.1.2/src/commands/plugins/install.ts)_
|
|
5539
5539
|
|
|
5540
5540
|
## `sf plugins link PATH`
|
|
5541
5541
|
|
|
@@ -5565,7 +5565,7 @@ EXAMPLES
|
|
|
5565
5565
|
$ sf plugins link @salesforce/plugin-packaging
|
|
5566
5566
|
```
|
|
5567
5567
|
|
|
5568
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.
|
|
5568
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.1.2/src/commands/plugins/link.ts)_
|
|
5569
5569
|
|
|
5570
5570
|
## `sf plugins reset`
|
|
5571
5571
|
|
|
@@ -5580,7 +5580,7 @@ FLAGS
|
|
|
5580
5580
|
--reinstall Reinstall all plugins after uninstalling.
|
|
5581
5581
|
```
|
|
5582
5582
|
|
|
5583
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.
|
|
5583
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.1.2/src/commands/plugins/reset.ts)_
|
|
5584
5584
|
|
|
5585
5585
|
## `sf plugins trust verify`
|
|
5586
5586
|
|
|
@@ -5609,7 +5609,7 @@ EXAMPLES
|
|
|
5609
5609
|
$ sf plugins trust verify --npm @scope/npmName
|
|
5610
5610
|
```
|
|
5611
5611
|
|
|
5612
|
-
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.6.
|
|
5612
|
+
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.6.12/src/commands/plugins/trust/verify.ts)_
|
|
5613
5613
|
|
|
5614
5614
|
## `sf plugins uninstall [PLUGIN]`
|
|
5615
5615
|
|
|
@@ -5637,7 +5637,7 @@ EXAMPLES
|
|
|
5637
5637
|
$ sf plugins uninstall @salesforce/plugin-packaging
|
|
5638
5638
|
```
|
|
5639
5639
|
|
|
5640
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.
|
|
5640
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.1.2/src/commands/plugins/uninstall.ts)_
|
|
5641
5641
|
|
|
5642
5642
|
## `sf plugins update`
|
|
5643
5643
|
|
|
@@ -5655,7 +5655,7 @@ DESCRIPTION
|
|
|
5655
5655
|
Update installed plugins.
|
|
5656
5656
|
```
|
|
5657
5657
|
|
|
5658
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.
|
|
5658
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.1.2/src/commands/plugins/update.ts)_
|
|
5659
5659
|
|
|
5660
5660
|
## `sf project convert mdapi`
|
|
5661
5661
|
|
|
@@ -5718,7 +5718,7 @@ FLAG DESCRIPTIONS
|
|
|
5718
5718
|
If you specify this parameter, don’t specify --metadata or --source-dir.
|
|
5719
5719
|
```
|
|
5720
5720
|
|
|
5721
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.
|
|
5721
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.2/src/commands/project/convert/mdapi.ts)_
|
|
5722
5722
|
|
|
5723
5723
|
## `sf project convert source`
|
|
5724
5724
|
|
|
@@ -5730,7 +5730,7 @@ USAGE
|
|
|
5730
5730
|
[-p <value> | -x <value> | -m <value>]
|
|
5731
5731
|
|
|
5732
5732
|
FLAGS
|
|
5733
|
-
-d, --output-dir=<value> [default:
|
|
5733
|
+
-d, --output-dir=<value> [default: metadataPackage_1716032858127] Output directory to store the Metadata
|
|
5734
5734
|
API–formatted files in.
|
|
5735
5735
|
-m, --metadata=<value>... Metadata component names to convert.
|
|
5736
5736
|
-n, --package-name=<value> Name of the package to associate with the metadata-formatted files.
|
|
@@ -5791,7 +5791,7 @@ FLAG DESCRIPTIONS
|
|
|
5791
5791
|
Override the api version used for api requests made by this command
|
|
5792
5792
|
```
|
|
5793
5793
|
|
|
5794
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.
|
|
5794
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.2/src/commands/project/convert/source.ts)_
|
|
5795
5795
|
|
|
5796
5796
|
## `sf project delete source`
|
|
5797
5797
|
|
|
@@ -5931,7 +5931,7 @@ FLAG DESCRIPTIONS
|
|
|
5931
5931
|
- Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
|
|
5932
5932
|
```
|
|
5933
5933
|
|
|
5934
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.
|
|
5934
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.2/src/commands/project/delete/source.ts)_
|
|
5935
5935
|
|
|
5936
5936
|
## `sf project delete tracking`
|
|
5937
5937
|
|
|
@@ -5968,7 +5968,7 @@ EXAMPLES
|
|
|
5968
5968
|
$ sf project delete tracking --target-org my-scratch
|
|
5969
5969
|
```
|
|
5970
5970
|
|
|
5971
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.
|
|
5971
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.2/src/commands/project/delete/tracking.ts)_
|
|
5972
5972
|
|
|
5973
5973
|
## `sf project deploy cancel`
|
|
5974
5974
|
|
|
@@ -6044,7 +6044,7 @@ FLAG DESCRIPTIONS
|
|
|
6044
6044
|
project deploy report".
|
|
6045
6045
|
```
|
|
6046
6046
|
|
|
6047
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.
|
|
6047
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.2/src/commands/project/deploy/cancel.ts)_
|
|
6048
6048
|
|
|
6049
6049
|
## `sf project deploy preview`
|
|
6050
6050
|
|
|
@@ -6130,7 +6130,7 @@ FLAG DESCRIPTIONS
|
|
|
6130
6130
|
All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
|
|
6131
6131
|
```
|
|
6132
6132
|
|
|
6133
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.
|
|
6133
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.2/src/commands/project/deploy/preview.ts)_
|
|
6134
6134
|
|
|
6135
6135
|
## `sf project deploy quick`
|
|
6136
6136
|
|
|
@@ -6227,7 +6227,7 @@ ERROR CODES
|
|
|
6227
6227
|
Canceling (69) The deploy is being canceled.
|
|
6228
6228
|
```
|
|
6229
6229
|
|
|
6230
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.
|
|
6230
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.2/src/commands/project/deploy/quick.ts)_
|
|
6231
6231
|
|
|
6232
6232
|
## `sf project deploy report`
|
|
6233
6233
|
|
|
@@ -6323,7 +6323,7 @@ FLAG DESCRIPTIONS
|
|
|
6323
6323
|
--coverage-formatters lcov --coverage-formatters clover
|
|
6324
6324
|
```
|
|
6325
6325
|
|
|
6326
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.
|
|
6326
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.2/src/commands/project/deploy/report.ts)_
|
|
6327
6327
|
|
|
6328
6328
|
## `sf project deploy resume`
|
|
6329
6329
|
|
|
@@ -6420,7 +6420,7 @@ ERROR CODES
|
|
|
6420
6420
|
Canceling (69) The deploy is being canceled.
|
|
6421
6421
|
```
|
|
6422
6422
|
|
|
6423
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.
|
|
6423
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.2/src/commands/project/deploy/resume.ts)_
|
|
6424
6424
|
|
|
6425
6425
|
## `sf project deploy start`
|
|
6426
6426
|
|
|
@@ -6658,7 +6658,7 @@ ERROR CODES
|
|
|
6658
6658
|
Canceling (69) The deploy is being canceled.
|
|
6659
6659
|
```
|
|
6660
6660
|
|
|
6661
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.
|
|
6661
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.2/src/commands/project/deploy/start.ts)_
|
|
6662
6662
|
|
|
6663
6663
|
## `sf project deploy validate`
|
|
6664
6664
|
|
|
@@ -6850,7 +6850,7 @@ ERROR CODES
|
|
|
6850
6850
|
Canceling (69) The deploy is being canceled.
|
|
6851
6851
|
```
|
|
6852
6852
|
|
|
6853
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.
|
|
6853
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.2/src/commands/project/deploy/validate.ts)_
|
|
6854
6854
|
|
|
6855
6855
|
## `sf project generate`
|
|
6856
6856
|
|
|
@@ -7032,7 +7032,7 @@ EXAMPLES
|
|
|
7032
7032
|
$ sf project generate manifest --from-org test@myorg.com --include-packages unlocked
|
|
7033
7033
|
```
|
|
7034
7034
|
|
|
7035
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.
|
|
7035
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.2/src/commands/project/generate/manifest.ts)_
|
|
7036
7036
|
|
|
7037
7037
|
## `sf project list ignored`
|
|
7038
7038
|
|
|
@@ -7074,7 +7074,7 @@ EXAMPLES
|
|
|
7074
7074
|
$ sf project list ignored --source-dir package.xml
|
|
7075
7075
|
```
|
|
7076
7076
|
|
|
7077
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.
|
|
7077
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.2/src/commands/project/list/ignored.ts)_
|
|
7078
7078
|
|
|
7079
7079
|
## `sf project reset tracking`
|
|
7080
7080
|
|
|
@@ -7123,7 +7123,7 @@ EXAMPLES
|
|
|
7123
7123
|
$ sf project reset tracking --revision 30
|
|
7124
7124
|
```
|
|
7125
7125
|
|
|
7126
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.
|
|
7126
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.2/src/commands/project/reset/tracking.ts)_
|
|
7127
7127
|
|
|
7128
7128
|
## `sf project retrieve preview`
|
|
7129
7129
|
|
|
@@ -7180,7 +7180,7 @@ FLAG DESCRIPTIONS
|
|
|
7180
7180
|
Overrides your default org.
|
|
7181
7181
|
```
|
|
7182
7182
|
|
|
7183
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.
|
|
7183
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.2/src/commands/project/retrieve/preview.ts)_
|
|
7184
7184
|
|
|
7185
7185
|
## `sf project retrieve start`
|
|
7186
7186
|
|
|
@@ -7339,7 +7339,7 @@ ENVIRONMENT VARIABLES
|
|
|
7339
7339
|
SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
|
|
7340
7340
|
```
|
|
7341
7341
|
|
|
7342
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.
|
|
7342
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.7.2/src/commands/project/retrieve/start.ts)_
|
|
7343
7343
|
|
|
7344
7344
|
## `sf schema generate field`
|
|
7345
7345
|
|