@salesforce/cli 2.110.17 → 2.110.19
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 +89 -82
- package/npm-shrinkwrap.json +92 -92
- package/oclif.lock +100 -100
- package/oclif.manifest.json +1 -1
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ $ npm install -g @salesforce/cli
|
|
|
25
25
|
$ sf COMMAND
|
|
26
26
|
running command...
|
|
27
27
|
$ sf (--version|-v)
|
|
28
|
-
@salesforce/cli/2.110.
|
|
28
|
+
@salesforce/cli/2.110.19 linux-x64 node-v22.20.0
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -243,7 +243,7 @@ EXAMPLES
|
|
|
243
243
|
$ sf agent activate --api-name Resort_Manager --target-org my-org
|
|
244
244
|
```
|
|
245
245
|
|
|
246
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
246
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.18/src/commands/agent/activate.ts)_
|
|
247
247
|
|
|
248
248
|
## `sf agent create`
|
|
249
249
|
|
|
@@ -305,7 +305,7 @@ EXAMPLES
|
|
|
305
305
|
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
|
|
306
306
|
```
|
|
307
307
|
|
|
308
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
308
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.18/src/commands/agent/create.ts)_
|
|
309
309
|
|
|
310
310
|
## `sf agent deactivate`
|
|
311
311
|
|
|
@@ -345,7 +345,7 @@ EXAMPLES
|
|
|
345
345
|
$ sf agent deactivate --api-name Resort_Manager --target-org my-org
|
|
346
346
|
```
|
|
347
347
|
|
|
348
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
348
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.18/src/commands/agent/deactivate.ts)_
|
|
349
349
|
|
|
350
350
|
## `sf agent generate agent-spec`
|
|
351
351
|
|
|
@@ -450,7 +450,7 @@ EXAMPLES
|
|
|
450
450
|
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
|
|
451
451
|
```
|
|
452
452
|
|
|
453
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
453
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.18/src/commands/agent/generate/agent-spec.ts)_
|
|
454
454
|
|
|
455
455
|
## `sf agent generate template`
|
|
456
456
|
|
|
@@ -498,7 +498,7 @@ EXAMPLES
|
|
|
498
498
|
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
|
|
499
499
|
```
|
|
500
500
|
|
|
501
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
501
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.18/src/commands/agent/generate/template.ts)_
|
|
502
502
|
|
|
503
503
|
## `sf agent generate test-spec`
|
|
504
504
|
|
|
@@ -559,7 +559,7 @@ EXAMPLES
|
|
|
559
559
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
560
560
|
```
|
|
561
561
|
|
|
562
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
562
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.18/src/commands/agent/generate/test-spec.ts)_
|
|
563
563
|
|
|
564
564
|
## `sf agent preview`
|
|
565
565
|
|
|
@@ -623,7 +623,7 @@ EXAMPLES
|
|
|
623
623
|
transcripts/my-preview
|
|
624
624
|
```
|
|
625
625
|
|
|
626
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
626
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.18/src/commands/agent/preview.ts)_
|
|
627
627
|
|
|
628
628
|
## `sf agent test create`
|
|
629
629
|
|
|
@@ -678,7 +678,7 @@ EXAMPLES
|
|
|
678
678
|
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
|
|
679
679
|
```
|
|
680
680
|
|
|
681
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
681
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.18/src/commands/agent/test/create.ts)_
|
|
682
682
|
|
|
683
683
|
## `sf agent test list`
|
|
684
684
|
|
|
@@ -713,7 +713,7 @@ EXAMPLES
|
|
|
713
713
|
$ sf agent test list --target-org my-org
|
|
714
714
|
```
|
|
715
715
|
|
|
716
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
716
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.18/src/commands/agent/test/list.ts)_
|
|
717
717
|
|
|
718
718
|
## `sf agent test results`
|
|
719
719
|
|
|
@@ -779,7 +779,7 @@ FLAG DESCRIPTIONS
|
|
|
779
779
|
expression when using custom evaluations.
|
|
780
780
|
```
|
|
781
781
|
|
|
782
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
782
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.18/src/commands/agent/test/results.ts)_
|
|
783
783
|
|
|
784
784
|
## `sf agent test resume`
|
|
785
785
|
|
|
@@ -852,7 +852,7 @@ FLAG DESCRIPTIONS
|
|
|
852
852
|
expression when using custom evaluations.
|
|
853
853
|
```
|
|
854
854
|
|
|
855
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
855
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.18/src/commands/agent/test/resume.ts)_
|
|
856
856
|
|
|
857
857
|
## `sf agent test run`
|
|
858
858
|
|
|
@@ -926,7 +926,7 @@ FLAG DESCRIPTIONS
|
|
|
926
926
|
expression when using custom evaluations.
|
|
927
927
|
```
|
|
928
928
|
|
|
929
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
929
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.18/src/commands/agent/test/run.ts)_
|
|
930
930
|
|
|
931
931
|
## `sf alias list`
|
|
932
932
|
|
|
@@ -1798,7 +1798,7 @@ EXAMPLES
|
|
|
1798
1798
|
$ sf autocomplete --refresh-cache
|
|
1799
1799
|
```
|
|
1800
1800
|
|
|
1801
|
-
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/3.2.
|
|
1801
|
+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/3.2.37/src/commands/autocomplete/index.ts)_
|
|
1802
1802
|
|
|
1803
1803
|
## `sf commands`
|
|
1804
1804
|
|
|
@@ -3165,7 +3165,7 @@ EXAMPLES
|
|
|
3165
3165
|
$ sf doctor --plugin @salesforce/plugin-source
|
|
3166
3166
|
```
|
|
3167
3167
|
|
|
3168
|
-
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.
|
|
3168
|
+
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.93/src/commands/doctor.ts)_
|
|
3169
3169
|
|
|
3170
3170
|
## `sf force data bulk delete`
|
|
3171
3171
|
|
|
@@ -3367,7 +3367,7 @@ EXAMPLES
|
|
|
3367
3367
|
$ sf info releasenotes display --version latest
|
|
3368
3368
|
```
|
|
3369
3369
|
|
|
3370
|
-
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.
|
|
3370
|
+
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.93/src/commands/info/releasenotes/display.ts)_
|
|
3371
3371
|
|
|
3372
3372
|
## `sf lightning generate app`
|
|
3373
3373
|
|
|
@@ -4053,7 +4053,7 @@ FLAG DESCRIPTIONS
|
|
|
4053
4053
|
You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
|
|
4054
4054
|
```
|
|
4055
4055
|
|
|
4056
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4056
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.38/src/commands/org/create/sandbox.ts)_
|
|
4057
4057
|
|
|
4058
4058
|
## `sf org create scratch`
|
|
4059
4059
|
|
|
@@ -4235,7 +4235,7 @@ FLAG DESCRIPTIONS
|
|
|
4235
4235
|
Omit this flag to have Salesforce generate a unique username for your org.
|
|
4236
4236
|
```
|
|
4237
4237
|
|
|
4238
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4238
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.38/src/commands/org/create/scratch.ts)_
|
|
4239
4239
|
|
|
4240
4240
|
## `sf org create user`
|
|
4241
4241
|
|
|
@@ -4389,7 +4389,7 @@ EXAMPLES
|
|
|
4389
4389
|
$ sf org delete sandbox --target-org my-sandbox --no-prompt
|
|
4390
4390
|
```
|
|
4391
4391
|
|
|
4392
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4392
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.38/src/commands/org/delete/sandbox.ts)_
|
|
4393
4393
|
|
|
4394
4394
|
## `sf org delete scratch`
|
|
4395
4395
|
|
|
@@ -4433,7 +4433,7 @@ EXAMPLES
|
|
|
4433
4433
|
$ sf org delete scratch --target-org my-scratch-org --no-prompt
|
|
4434
4434
|
```
|
|
4435
4435
|
|
|
4436
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4436
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.38/src/commands/org/delete/scratch.ts)_
|
|
4437
4437
|
|
|
4438
4438
|
## `sf org disable tracking`
|
|
4439
4439
|
|
|
@@ -4472,7 +4472,7 @@ EXAMPLES
|
|
|
4472
4472
|
$ sf org disable tracking
|
|
4473
4473
|
```
|
|
4474
4474
|
|
|
4475
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4475
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.38/src/commands/org/disable/tracking.ts)_
|
|
4476
4476
|
|
|
4477
4477
|
## `sf org display`
|
|
4478
4478
|
|
|
@@ -4517,7 +4517,7 @@ EXAMPLES
|
|
|
4517
4517
|
$ sf org display --target-org TestOrg1 --verbose
|
|
4518
4518
|
```
|
|
4519
4519
|
|
|
4520
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4520
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.38/src/commands/org/display.ts)_
|
|
4521
4521
|
|
|
4522
4522
|
## `sf org display user`
|
|
4523
4523
|
|
|
@@ -4598,7 +4598,7 @@ EXAMPLES
|
|
|
4598
4598
|
$ sf org enable tracking
|
|
4599
4599
|
```
|
|
4600
4600
|
|
|
4601
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4601
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.38/src/commands/org/enable/tracking.ts)_
|
|
4602
4602
|
|
|
4603
4603
|
## `sf org generate password`
|
|
4604
4604
|
|
|
@@ -4704,7 +4704,7 @@ EXAMPLES
|
|
|
4704
4704
|
$ sf org list --clean
|
|
4705
4705
|
```
|
|
4706
4706
|
|
|
4707
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4707
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.38/src/commands/org/list.ts)_
|
|
4708
4708
|
|
|
4709
4709
|
## `sf org list auth`
|
|
4710
4710
|
|
|
@@ -4843,7 +4843,7 @@ FLAG DESCRIPTIONS
|
|
|
4843
4843
|
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
|
|
4844
4844
|
```
|
|
4845
4845
|
|
|
4846
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4846
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.38/src/commands/org/list/metadata.ts)_
|
|
4847
4847
|
|
|
4848
4848
|
## `sf org list metadata-types`
|
|
4849
4849
|
|
|
@@ -4898,7 +4898,7 @@ FLAG DESCRIPTIONS
|
|
|
4898
4898
|
Override the api version used for api requests made by this command
|
|
4899
4899
|
```
|
|
4900
4900
|
|
|
4901
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4901
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.38/src/commands/org/list/metadata-types.ts)_
|
|
4902
4902
|
|
|
4903
4903
|
## `sf org list sobject record-counts`
|
|
4904
4904
|
|
|
@@ -5444,7 +5444,7 @@ EXAMPLES
|
|
|
5444
5444
|
$ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
|
|
5445
5445
|
```
|
|
5446
5446
|
|
|
5447
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5447
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.38/src/commands/org/open.ts)_
|
|
5448
5448
|
|
|
5449
5449
|
## `sf org open agent`
|
|
5450
5450
|
|
|
@@ -5495,7 +5495,7 @@ EXAMPLES
|
|
|
5495
5495
|
$ sf org open agent --target-org MyTestOrg1 --browser firefox --api-name Coral_Cloud_Agent
|
|
5496
5496
|
```
|
|
5497
5497
|
|
|
5498
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5498
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.38/src/commands/org/open/agent.ts)_
|
|
5499
5499
|
|
|
5500
5500
|
## `sf org refresh sandbox`
|
|
5501
5501
|
|
|
@@ -5598,7 +5598,7 @@ FLAG DESCRIPTIONS
|
|
|
5598
5598
|
You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
|
|
5599
5599
|
```
|
|
5600
5600
|
|
|
5601
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5601
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.38/src/commands/org/refresh/sandbox.ts)_
|
|
5602
5602
|
|
|
5603
5603
|
## `sf org resume sandbox`
|
|
5604
5604
|
|
|
@@ -5661,7 +5661,7 @@ FLAG DESCRIPTIONS
|
|
|
5661
5661
|
returns the job ID. To resume checking the sandbox creation, rerun this command.
|
|
5662
5662
|
```
|
|
5663
5663
|
|
|
5664
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5664
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.38/src/commands/org/resume/sandbox.ts)_
|
|
5665
5665
|
|
|
5666
5666
|
## `sf org resume scratch`
|
|
5667
5667
|
|
|
@@ -5714,7 +5714,7 @@ FLAG DESCRIPTIONS
|
|
|
5714
5714
|
returns the job ID. To resume checking the scratch creation, rerun this command.
|
|
5715
5715
|
```
|
|
5716
5716
|
|
|
5717
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5717
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.38/src/commands/org/resume/scratch.ts)_
|
|
5718
5718
|
|
|
5719
5719
|
## `sf package convert`
|
|
5720
5720
|
|
|
@@ -5811,7 +5811,7 @@ FLAG DESCRIPTIONS
|
|
|
5811
5811
|
--installation-key-bypass flag is required.
|
|
5812
5812
|
```
|
|
5813
5813
|
|
|
5814
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5814
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/convert.ts)_
|
|
5815
5815
|
|
|
5816
5816
|
## `sf package create`
|
|
5817
5817
|
|
|
@@ -5890,7 +5890,7 @@ FLAG DESCRIPTIONS
|
|
|
5890
5890
|
Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
|
|
5891
5891
|
```
|
|
5892
5892
|
|
|
5893
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5893
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/create.ts)_
|
|
5894
5894
|
|
|
5895
5895
|
## `sf package delete`
|
|
5896
5896
|
|
|
@@ -5932,7 +5932,7 @@ EXAMPLES
|
|
|
5932
5932
|
$ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
|
|
5933
5933
|
```
|
|
5934
5934
|
|
|
5935
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5935
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/delete.ts)_
|
|
5936
5936
|
|
|
5937
5937
|
## `sf package install`
|
|
5938
5938
|
|
|
@@ -6031,7 +6031,7 @@ FLAG DESCRIPTIONS
|
|
|
6031
6031
|
- Delete: Delete removed components, except for custom objects and custom fields, that don't have dependencies.
|
|
6032
6032
|
```
|
|
6033
6033
|
|
|
6034
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6034
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/install.ts)_
|
|
6035
6035
|
|
|
6036
6036
|
## `sf package install report`
|
|
6037
6037
|
|
|
@@ -6064,7 +6064,7 @@ EXAMPLES
|
|
|
6064
6064
|
$ sf package install report --request-id 0Hf... --target-org me@example.com
|
|
6065
6065
|
```
|
|
6066
6066
|
|
|
6067
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6067
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/install/report.ts)_
|
|
6068
6068
|
|
|
6069
6069
|
## `sf package installed list`
|
|
6070
6070
|
|
|
@@ -6096,7 +6096,7 @@ EXAMPLES
|
|
|
6096
6096
|
$ sf package installed list --target-org me@example.com
|
|
6097
6097
|
```
|
|
6098
6098
|
|
|
6099
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6099
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/installed/list.ts)_
|
|
6100
6100
|
|
|
6101
6101
|
## `sf package list`
|
|
6102
6102
|
|
|
@@ -6134,7 +6134,7 @@ EXAMPLES
|
|
|
6134
6134
|
$ sf package list --target-dev-hub devhub@example.com --verbose
|
|
6135
6135
|
```
|
|
6136
6136
|
|
|
6137
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6137
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/list.ts)_
|
|
6138
6138
|
|
|
6139
6139
|
## `sf package push-upgrade abort`
|
|
6140
6140
|
|
|
@@ -6173,7 +6173,7 @@ EXAMPLES
|
|
|
6173
6173
|
$ sf package push-upgrade abort --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
6174
6174
|
```
|
|
6175
6175
|
|
|
6176
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6176
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/push-upgrade/abort.ts)_
|
|
6177
6177
|
|
|
6178
6178
|
## `sf package push-upgrade list`
|
|
6179
6179
|
|
|
@@ -6232,7 +6232,7 @@ EXAMPLES
|
|
|
6232
6232
|
$ sf package push-upgrade list --package 033xyz –-status Failed
|
|
6233
6233
|
```
|
|
6234
6234
|
|
|
6235
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6235
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/push-upgrade/list.ts)_
|
|
6236
6236
|
|
|
6237
6237
|
## `sf package push-upgrade report`
|
|
6238
6238
|
|
|
@@ -6274,7 +6274,7 @@ EXAMPLES
|
|
|
6274
6274
|
$ sf package push-upgrade report --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
6275
6275
|
```
|
|
6276
6276
|
|
|
6277
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6277
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/push-upgrade/report.ts)_
|
|
6278
6278
|
|
|
6279
6279
|
## `sf package push-upgrade schedule`
|
|
6280
6280
|
|
|
@@ -6361,7 +6361,7 @@ FLAG DESCRIPTIONS
|
|
|
6361
6361
|
Overrides the value of the target-dev-hub configuration variable, if set.
|
|
6362
6362
|
```
|
|
6363
6363
|
|
|
6364
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6364
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/push-upgrade/schedule.ts)_
|
|
6365
6365
|
|
|
6366
6366
|
## `sf package uninstall`
|
|
6367
6367
|
|
|
@@ -6409,7 +6409,7 @@ EXAMPLES
|
|
|
6409
6409
|
$ sf package uninstall --package "Undesirable Package Alias"
|
|
6410
6410
|
```
|
|
6411
6411
|
|
|
6412
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6412
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/uninstall.ts)_
|
|
6413
6413
|
|
|
6414
6414
|
## `sf package uninstall report`
|
|
6415
6415
|
|
|
@@ -6442,7 +6442,7 @@ EXAMPLES
|
|
|
6442
6442
|
$ sf package uninstall report --request-id 06y... --target-org me@example.com
|
|
6443
6443
|
```
|
|
6444
6444
|
|
|
6445
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6445
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/uninstall/report.ts)_
|
|
6446
6446
|
|
|
6447
6447
|
## `sf package update`
|
|
6448
6448
|
|
|
@@ -6451,7 +6451,7 @@ Update package details.
|
|
|
6451
6451
|
```
|
|
6452
6452
|
USAGE
|
|
6453
6453
|
$ sf package update -v <value> -p <value> [--json] [--flags-dir <value>] [--api-version <value>] [-n <value>] [-d
|
|
6454
|
-
<value>] [-o <value>] [--enable-app-analytics]
|
|
6454
|
+
<value>] [-o <value>] [--enable-app-analytics] [-r <value>]
|
|
6455
6455
|
|
|
6456
6456
|
FLAGS
|
|
6457
6457
|
-d, --description=<value> New description of the package.
|
|
@@ -6459,6 +6459,7 @@ FLAGS
|
|
|
6459
6459
|
-o, --error-notification-username=<value> Active Dev Hub user designated to receive email notifications for package
|
|
6460
6460
|
errors.
|
|
6461
6461
|
-p, --package=<value> (required) ID (starts with 0Ho) or alias of the package to update.
|
|
6462
|
+
-r, --recommended-version-id=<value> Package version ID that subscribers are notified to install or upgrade to.
|
|
6462
6463
|
-v, --target-dev-hub=<value> (required) Username or alias of the Dev Hub org. Not required if the
|
|
6463
6464
|
`target-dev-hub` configuration variable is already set.
|
|
6464
6465
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
@@ -6495,9 +6496,15 @@ FLAG DESCRIPTIONS
|
|
|
6495
6496
|
|
|
6496
6497
|
Email notifications include information about unhandled Apex exceptions, and install, upgrade, or uninstall failures
|
|
6497
6498
|
associated with your package.
|
|
6499
|
+
|
|
6500
|
+
-r, --recommended-version-id=<value> Package version ID that subscribers are notified to install or upgrade to.
|
|
6501
|
+
|
|
6502
|
+
Specify the recommended package version for subscribers to install. Subscribers are notified to install the package
|
|
6503
|
+
version ID that you specify. If the subscribers have a different version of the same package installed, they're
|
|
6504
|
+
notified to upgrade to the recommended version.
|
|
6498
6505
|
```
|
|
6499
6506
|
|
|
6500
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6507
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/update.ts)_
|
|
6501
6508
|
|
|
6502
6509
|
## `sf package version create`
|
|
6503
6510
|
|
|
@@ -6672,7 +6679,7 @@ FLAG DESCRIPTIONS
|
|
|
6672
6679
|
periods of no output from commands.
|
|
6673
6680
|
```
|
|
6674
6681
|
|
|
6675
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6682
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/version/create.ts)_
|
|
6676
6683
|
|
|
6677
6684
|
## `sf package version create list`
|
|
6678
6685
|
|
|
@@ -6733,7 +6740,7 @@ EXAMPLES
|
|
|
6733
6740
|
$ sf package version create list --created-last-days 0 --status Success
|
|
6734
6741
|
```
|
|
6735
6742
|
|
|
6736
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6743
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/version/create/list.ts)_
|
|
6737
6744
|
|
|
6738
6745
|
## `sf package version create report`
|
|
6739
6746
|
|
|
@@ -6776,7 +6783,7 @@ EXAMPLES
|
|
|
6776
6783
|
$ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
|
|
6777
6784
|
```
|
|
6778
6785
|
|
|
6779
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6786
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/version/create/report.ts)_
|
|
6780
6787
|
|
|
6781
6788
|
## `sf package version delete`
|
|
6782
6789
|
|
|
@@ -6817,7 +6824,7 @@ EXAMPLES
|
|
|
6817
6824
|
$ sf package version delete --package 04t... --target-org devhub@example.com
|
|
6818
6825
|
```
|
|
6819
6826
|
|
|
6820
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6827
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/version/delete.ts)_
|
|
6821
6828
|
|
|
6822
6829
|
## `sf package version displayancestry`
|
|
6823
6830
|
|
|
@@ -6877,7 +6884,7 @@ FLAG DESCRIPTIONS
|
|
|
6877
6884
|
You can use the DOT code output in graph visualization software to create tree visualizations.
|
|
6878
6885
|
```
|
|
6879
6886
|
|
|
6880
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6887
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/version/displayancestry.ts)_
|
|
6881
6888
|
|
|
6882
6889
|
## `sf package version displaydependencies`
|
|
6883
6890
|
|
|
@@ -6939,7 +6946,7 @@ FLAG DESCRIPTIONS
|
|
|
6939
6946
|
package, which must be installed last.
|
|
6940
6947
|
```
|
|
6941
6948
|
|
|
6942
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6949
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/version/displaydependencies.ts)_
|
|
6943
6950
|
|
|
6944
6951
|
## `sf package version list`
|
|
6945
6952
|
|
|
@@ -7015,7 +7022,7 @@ EXAMPLES
|
|
|
7015
7022
|
$ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
|
|
7016
7023
|
```
|
|
7017
7024
|
|
|
7018
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
7025
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/version/list.ts)_
|
|
7019
7026
|
|
|
7020
7027
|
## `sf package version promote`
|
|
7021
7028
|
|
|
@@ -7059,7 +7066,7 @@ EXAMPLES
|
|
|
7059
7066
|
$ sf package version promote --package "Awesome Package Alias"
|
|
7060
7067
|
```
|
|
7061
7068
|
|
|
7062
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
7069
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/version/promote.ts)_
|
|
7063
7070
|
|
|
7064
7071
|
## `sf package version report`
|
|
7065
7072
|
|
|
@@ -7099,7 +7106,7 @@ EXAMPLES
|
|
|
7099
7106
|
$ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
|
|
7100
7107
|
```
|
|
7101
7108
|
|
|
7102
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
7109
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/version/report.ts)_
|
|
7103
7110
|
|
|
7104
7111
|
## `sf package version update`
|
|
7105
7112
|
|
|
@@ -7152,7 +7159,7 @@ EXAMPLES
|
|
|
7152
7159
|
$ sf package version update --package 04t... --version-description "New Package Version Description"
|
|
7153
7160
|
```
|
|
7154
7161
|
|
|
7155
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
7162
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package/version/update.ts)_
|
|
7156
7163
|
|
|
7157
7164
|
## `sf package1 version create`
|
|
7158
7165
|
|
|
@@ -7219,7 +7226,7 @@ FLAG DESCRIPTIONS
|
|
|
7219
7226
|
subscribers.
|
|
7220
7227
|
```
|
|
7221
7228
|
|
|
7222
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
7229
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package1/version/create.ts)_
|
|
7223
7230
|
|
|
7224
7231
|
## `sf package1 version create get`
|
|
7225
7232
|
|
|
@@ -7252,7 +7259,7 @@ EXAMPLES
|
|
|
7252
7259
|
$ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
|
|
7253
7260
|
```
|
|
7254
7261
|
|
|
7255
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
7262
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package1/version/create/get.ts)_
|
|
7256
7263
|
|
|
7257
7264
|
## `sf package1 version display`
|
|
7258
7265
|
|
|
@@ -7286,7 +7293,7 @@ EXAMPLES
|
|
|
7286
7293
|
$ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
|
|
7287
7294
|
```
|
|
7288
7295
|
|
|
7289
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
7296
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package1/version/display.ts)_
|
|
7290
7297
|
|
|
7291
7298
|
## `sf package1 version list`
|
|
7292
7299
|
|
|
@@ -7324,7 +7331,7 @@ FLAG DESCRIPTIONS
|
|
|
7324
7331
|
If not specified, shows all versions for all packages (managed and unmanaged) in the org.
|
|
7325
7332
|
```
|
|
7326
7333
|
|
|
7327
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
7334
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.21.2/src/commands/package1/version/list.ts)_
|
|
7328
7335
|
|
|
7329
7336
|
## `sf plugins`
|
|
7330
7337
|
|
|
@@ -7625,7 +7632,7 @@ FLAG DESCRIPTIONS
|
|
|
7625
7632
|
If you specify this flag, don’t specify --metadata or --source-dir.
|
|
7626
7633
|
```
|
|
7627
7634
|
|
|
7628
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.
|
|
7635
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.6/src/commands/project/convert/mdapi.ts)_
|
|
7629
7636
|
|
|
7630
7637
|
## `sf project convert source`
|
|
7631
7638
|
|
|
@@ -7698,7 +7705,7 @@ FLAG DESCRIPTIONS
|
|
|
7698
7705
|
Override the api version used for api requests made by this command
|
|
7699
7706
|
```
|
|
7700
7707
|
|
|
7701
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.
|
|
7708
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.6/src/commands/project/convert/source.ts)_
|
|
7702
7709
|
|
|
7703
7710
|
## `sf project convert source-behavior`
|
|
7704
7711
|
|
|
@@ -7757,7 +7764,7 @@ EXAMPLES
|
|
|
7757
7764
|
$ sf project convert source-behavior --behavior decomposePermissionSetBeta --dry-run --preserve-temp-dir
|
|
7758
7765
|
```
|
|
7759
7766
|
|
|
7760
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.
|
|
7767
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.6/src/commands/project/convert/source-behavior.ts)_
|
|
7761
7768
|
|
|
7762
7769
|
## `sf project delete source`
|
|
7763
7770
|
|
|
@@ -7897,7 +7904,7 @@ FLAG DESCRIPTIONS
|
|
|
7897
7904
|
- Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
|
|
7898
7905
|
```
|
|
7899
7906
|
|
|
7900
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.
|
|
7907
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.6/src/commands/project/delete/source.ts)_
|
|
7901
7908
|
|
|
7902
7909
|
## `sf project delete tracking`
|
|
7903
7910
|
|
|
@@ -7934,7 +7941,7 @@ EXAMPLES
|
|
|
7934
7941
|
$ sf project delete tracking --target-org my-scratch
|
|
7935
7942
|
```
|
|
7936
7943
|
|
|
7937
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.
|
|
7944
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.6/src/commands/project/delete/tracking.ts)_
|
|
7938
7945
|
|
|
7939
7946
|
## `sf project deploy cancel`
|
|
7940
7947
|
|
|
@@ -8006,7 +8013,7 @@ FLAG DESCRIPTIONS
|
|
|
8006
8013
|
project deploy report".
|
|
8007
8014
|
```
|
|
8008
8015
|
|
|
8009
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.
|
|
8016
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.6/src/commands/project/deploy/cancel.ts)_
|
|
8010
8017
|
|
|
8011
8018
|
## `sf project deploy preview`
|
|
8012
8019
|
|
|
@@ -8089,7 +8096,7 @@ FLAG DESCRIPTIONS
|
|
|
8089
8096
|
All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
|
|
8090
8097
|
```
|
|
8091
8098
|
|
|
8092
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.
|
|
8099
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.6/src/commands/project/deploy/preview.ts)_
|
|
8093
8100
|
|
|
8094
8101
|
## `sf project deploy quick`
|
|
8095
8102
|
|
|
@@ -8182,7 +8189,7 @@ ERROR CODES
|
|
|
8182
8189
|
Canceling (69) The deploy is being canceled.
|
|
8183
8190
|
```
|
|
8184
8191
|
|
|
8185
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.
|
|
8192
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.6/src/commands/project/deploy/quick.ts)_
|
|
8186
8193
|
|
|
8187
8194
|
## `sf project deploy report`
|
|
8188
8195
|
|
|
@@ -8274,7 +8281,7 @@ FLAG DESCRIPTIONS
|
|
|
8274
8281
|
--coverage-formatters lcov --coverage-formatters clover
|
|
8275
8282
|
```
|
|
8276
8283
|
|
|
8277
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.
|
|
8284
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.6/src/commands/project/deploy/report.ts)_
|
|
8278
8285
|
|
|
8279
8286
|
## `sf project deploy resume`
|
|
8280
8287
|
|
|
@@ -8371,7 +8378,7 @@ ERROR CODES
|
|
|
8371
8378
|
Canceling (69) The deploy is being canceled.
|
|
8372
8379
|
```
|
|
8373
8380
|
|
|
8374
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.
|
|
8381
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.6/src/commands/project/deploy/resume.ts)_
|
|
8375
8382
|
|
|
8376
8383
|
## `sf project deploy start`
|
|
8377
8384
|
|
|
@@ -8624,7 +8631,7 @@ ERROR CODES
|
|
|
8624
8631
|
Canceling (69) The deploy is being canceled.
|
|
8625
8632
|
```
|
|
8626
8633
|
|
|
8627
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.
|
|
8634
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.6/src/commands/project/deploy/start.ts)_
|
|
8628
8635
|
|
|
8629
8636
|
## `sf project deploy validate`
|
|
8630
8637
|
|
|
@@ -8814,7 +8821,7 @@ ERROR CODES
|
|
|
8814
8821
|
Canceling (69) The deploy is being canceled.
|
|
8815
8822
|
```
|
|
8816
8823
|
|
|
8817
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.
|
|
8824
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.6/src/commands/project/deploy/validate.ts)_
|
|
8818
8825
|
|
|
8819
8826
|
## `sf project generate`
|
|
8820
8827
|
|
|
@@ -9015,7 +9022,7 @@ EXAMPLES
|
|
|
9015
9022
|
$ sf project generate manifest --from-org test@myorg.com --excluded-metadata StandardValueSet
|
|
9016
9023
|
```
|
|
9017
9024
|
|
|
9018
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.
|
|
9025
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.6/src/commands/project/generate/manifest.ts)_
|
|
9019
9026
|
|
|
9020
9027
|
## `sf project list ignored`
|
|
9021
9028
|
|
|
@@ -9057,7 +9064,7 @@ EXAMPLES
|
|
|
9057
9064
|
$ sf project list ignored --source-dir package.xml
|
|
9058
9065
|
```
|
|
9059
9066
|
|
|
9060
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.
|
|
9067
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.6/src/commands/project/list/ignored.ts)_
|
|
9061
9068
|
|
|
9062
9069
|
## `sf project reset tracking`
|
|
9063
9070
|
|
|
@@ -9106,7 +9113,7 @@ EXAMPLES
|
|
|
9106
9113
|
$ sf project reset tracking --revision 30
|
|
9107
9114
|
```
|
|
9108
9115
|
|
|
9109
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.
|
|
9116
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.6/src/commands/project/reset/tracking.ts)_
|
|
9110
9117
|
|
|
9111
9118
|
## `sf project retrieve preview`
|
|
9112
9119
|
|
|
@@ -9160,7 +9167,7 @@ FLAG DESCRIPTIONS
|
|
|
9160
9167
|
production orgs.
|
|
9161
9168
|
```
|
|
9162
9169
|
|
|
9163
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.
|
|
9170
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.6/src/commands/project/retrieve/preview.ts)_
|
|
9164
9171
|
|
|
9165
9172
|
## `sf project retrieve start`
|
|
9166
9173
|
|
|
@@ -9341,7 +9348,7 @@ ENVIRONMENT VARIABLES
|
|
|
9341
9348
|
SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
|
|
9342
9349
|
```
|
|
9343
9350
|
|
|
9344
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.
|
|
9351
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.23.6/src/commands/project/retrieve/start.ts)_
|
|
9345
9352
|
|
|
9346
9353
|
## `sf schema generate field`
|
|
9347
9354
|
|
|
@@ -9395,7 +9402,7 @@ FLAG DESCRIPTIONS
|
|
|
9395
9402
|
If you don't specify this flag, the command prompts you to choose from your local objects.
|
|
9396
9403
|
```
|
|
9397
9404
|
|
|
9398
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9405
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.76/src/commands/schema/generate/field.ts)_
|
|
9399
9406
|
|
|
9400
9407
|
## `sf schema generate platformevent`
|
|
9401
9408
|
|
|
@@ -9427,7 +9434,7 @@ EXAMPLES
|
|
|
9427
9434
|
$ sf schema generate platformevent --label "My Platform Event"
|
|
9428
9435
|
```
|
|
9429
9436
|
|
|
9430
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9437
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.76/src/commands/schema/generate/platformevent.ts)_
|
|
9431
9438
|
|
|
9432
9439
|
## `sf schema generate sobject`
|
|
9433
9440
|
|
|
@@ -9484,7 +9491,7 @@ FLAG DESCRIPTIONS
|
|
|
9484
9491
|
- Streaming API: With Bulk API and Sharing, classifies the custom object as an Enterprise Application object.
|
|
9485
9492
|
```
|
|
9486
9493
|
|
|
9487
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9494
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.76/src/commands/schema/generate/sobject.ts)_
|
|
9488
9495
|
|
|
9489
9496
|
## `sf schema generate tab`
|
|
9490
9497
|
|
|
@@ -9532,7 +9539,7 @@ FLAG DESCRIPTIONS
|
|
|
9532
9539
|
The API name for a custom object always ends in `__c`, such as `MyObject__c`.
|
|
9533
9540
|
```
|
|
9534
9541
|
|
|
9535
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9542
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.76/src/commands/schema/generate/tab.ts)_
|
|
9536
9543
|
|
|
9537
9544
|
## `sf search`
|
|
9538
9545
|
|
|
@@ -9734,7 +9741,7 @@ EXAMPLES
|
|
|
9734
9741
|
$ sf update --available
|
|
9735
9742
|
```
|
|
9736
9743
|
|
|
9737
|
-
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.
|
|
9744
|
+
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.11/src/commands/update.ts)_
|
|
9738
9745
|
|
|
9739
9746
|
## `sf version`
|
|
9740
9747
|
|