@salesforce/cli 2.114.2 → 2.114.4
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 +45 -45
- package/npm-shrinkwrap.json +119 -119
- package/oclif.lock +133 -138
- package/oclif.manifest.json +1 -1
- package/package.json +10 -10
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.114.
|
|
28
|
+
@salesforce/cli/2.114.4 linux-x64 node-v22.21.1
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -244,7 +244,7 @@ EXAMPLES
|
|
|
244
244
|
$ sf agent activate --api-name Resort_Manager --target-org my-org
|
|
245
245
|
```
|
|
246
246
|
|
|
247
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
247
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.29/src/commands/agent/activate.ts)_
|
|
248
248
|
|
|
249
249
|
## `sf agent create`
|
|
250
250
|
|
|
@@ -306,7 +306,7 @@ EXAMPLES
|
|
|
306
306
|
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
|
|
307
307
|
```
|
|
308
308
|
|
|
309
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
309
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.29/src/commands/agent/create.ts)_
|
|
310
310
|
|
|
311
311
|
## `sf agent deactivate`
|
|
312
312
|
|
|
@@ -346,7 +346,7 @@ EXAMPLES
|
|
|
346
346
|
$ sf agent deactivate --api-name Resort_Manager --target-org my-org
|
|
347
347
|
```
|
|
348
348
|
|
|
349
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
349
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.29/src/commands/agent/deactivate.ts)_
|
|
350
350
|
|
|
351
351
|
## `sf agent generate agent-spec`
|
|
352
352
|
|
|
@@ -451,7 +451,7 @@ EXAMPLES
|
|
|
451
451
|
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
|
|
452
452
|
```
|
|
453
453
|
|
|
454
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
454
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.29/src/commands/agent/generate/agent-spec.ts)_
|
|
455
455
|
|
|
456
456
|
## `sf agent generate template`
|
|
457
457
|
|
|
@@ -499,7 +499,7 @@ EXAMPLES
|
|
|
499
499
|
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
|
|
500
500
|
```
|
|
501
501
|
|
|
502
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
502
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.29/src/commands/agent/generate/template.ts)_
|
|
503
503
|
|
|
504
504
|
## `sf agent generate test-spec`
|
|
505
505
|
|
|
@@ -560,7 +560,7 @@ EXAMPLES
|
|
|
560
560
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
561
561
|
```
|
|
562
562
|
|
|
563
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
563
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.29/src/commands/agent/generate/test-spec.ts)_
|
|
564
564
|
|
|
565
565
|
## `sf agent preview`
|
|
566
566
|
|
|
@@ -624,7 +624,7 @@ EXAMPLES
|
|
|
624
624
|
transcripts/my-preview
|
|
625
625
|
```
|
|
626
626
|
|
|
627
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
627
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.29/src/commands/agent/preview.ts)_
|
|
628
628
|
|
|
629
629
|
## `sf agent test create`
|
|
630
630
|
|
|
@@ -679,7 +679,7 @@ EXAMPLES
|
|
|
679
679
|
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
|
|
680
680
|
```
|
|
681
681
|
|
|
682
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
682
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.29/src/commands/agent/test/create.ts)_
|
|
683
683
|
|
|
684
684
|
## `sf agent test list`
|
|
685
685
|
|
|
@@ -714,7 +714,7 @@ EXAMPLES
|
|
|
714
714
|
$ sf agent test list --target-org my-org
|
|
715
715
|
```
|
|
716
716
|
|
|
717
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
717
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.29/src/commands/agent/test/list.ts)_
|
|
718
718
|
|
|
719
719
|
## `sf agent test results`
|
|
720
720
|
|
|
@@ -780,7 +780,7 @@ FLAG DESCRIPTIONS
|
|
|
780
780
|
expression when using custom evaluations.
|
|
781
781
|
```
|
|
782
782
|
|
|
783
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
783
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.29/src/commands/agent/test/results.ts)_
|
|
784
784
|
|
|
785
785
|
## `sf agent test resume`
|
|
786
786
|
|
|
@@ -853,7 +853,7 @@ FLAG DESCRIPTIONS
|
|
|
853
853
|
expression when using custom evaluations.
|
|
854
854
|
```
|
|
855
855
|
|
|
856
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
856
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.29/src/commands/agent/test/resume.ts)_
|
|
857
857
|
|
|
858
858
|
## `sf agent test run`
|
|
859
859
|
|
|
@@ -927,7 +927,7 @@ FLAG DESCRIPTIONS
|
|
|
927
927
|
expression when using custom evaluations.
|
|
928
928
|
```
|
|
929
929
|
|
|
930
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
930
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.29/src/commands/agent/test/run.ts)_
|
|
931
931
|
|
|
932
932
|
## `sf alias list`
|
|
933
933
|
|
|
@@ -1270,7 +1270,7 @@ FLAG DESCRIPTIONS
|
|
|
1270
1270
|
directory.
|
|
1271
1271
|
```
|
|
1272
1272
|
|
|
1273
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1273
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.8/src/commands/apex/get/log.ts)_
|
|
1274
1274
|
|
|
1275
1275
|
## `sf apex get test`
|
|
1276
1276
|
|
|
@@ -1330,7 +1330,7 @@ EXAMPLES
|
|
|
1330
1330
|
me@myorg'
|
|
1331
1331
|
```
|
|
1332
1332
|
|
|
1333
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1333
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.8/src/commands/apex/get/test.ts)_
|
|
1334
1334
|
|
|
1335
1335
|
## `sf apex list log`
|
|
1336
1336
|
|
|
@@ -1370,7 +1370,7 @@ EXAMPLES
|
|
|
1370
1370
|
$ sf apex list log --target-org me@my.org
|
|
1371
1371
|
```
|
|
1372
1372
|
|
|
1373
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1373
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.8/src/commands/apex/list/log.ts)_
|
|
1374
1374
|
|
|
1375
1375
|
## `sf apex run`
|
|
1376
1376
|
|
|
@@ -1417,7 +1417,7 @@ EXAMPLES
|
|
|
1417
1417
|
$ sf apex run
|
|
1418
1418
|
```
|
|
1419
1419
|
|
|
1420
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1420
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.8/src/commands/apex/run.ts)_
|
|
1421
1421
|
|
|
1422
1422
|
## `sf apex run test`
|
|
1423
1423
|
|
|
@@ -1563,7 +1563,7 @@ FLAG DESCRIPTIONS
|
|
|
1563
1563
|
--tests Test1 --tests Test2
|
|
1564
1564
|
```
|
|
1565
1565
|
|
|
1566
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1566
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.8/src/commands/apex/run/test.ts)_
|
|
1567
1567
|
|
|
1568
1568
|
## `sf apex tail log`
|
|
1569
1569
|
|
|
@@ -1606,7 +1606,7 @@ EXAMPLES
|
|
|
1606
1606
|
$ sf apex tail log --color --skip-trace-flag
|
|
1607
1607
|
```
|
|
1608
1608
|
|
|
1609
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1609
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.8/src/commands/apex/tail/log.ts)_
|
|
1610
1610
|
|
|
1611
1611
|
## `sf api request graphql`
|
|
1612
1612
|
|
|
@@ -3328,7 +3328,7 @@ DESCRIPTION
|
|
|
3328
3328
|
Display help for sf.
|
|
3329
3329
|
```
|
|
3330
3330
|
|
|
3331
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/6.2.
|
|
3331
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/6.2.36/src/commands/help.ts)_
|
|
3332
3332
|
|
|
3333
3333
|
## `sf info releasenotes display`
|
|
3334
3334
|
|
|
@@ -3705,7 +3705,7 @@ EXAMPLES
|
|
|
3705
3705
|
$ sf logic get test --test-run-id <test run id> --result-format junit --target-org my-scratch
|
|
3706
3706
|
```
|
|
3707
3707
|
|
|
3708
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
3708
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.8/src/commands/logic/get/test.ts)_
|
|
3709
3709
|
|
|
3710
3710
|
## `sf logic run test`
|
|
3711
3711
|
|
|
@@ -3827,7 +3827,7 @@ FLAG DESCRIPTIONS
|
|
|
3827
3827
|
--tests Test1 --tests Test2
|
|
3828
3828
|
```
|
|
3829
3829
|
|
|
3830
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
3830
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.8/src/commands/logic/run/test.ts)_
|
|
3831
3831
|
|
|
3832
3832
|
## `sf org assign permset`
|
|
3833
3833
|
|
|
@@ -4054,7 +4054,7 @@ FLAG DESCRIPTIONS
|
|
|
4054
4054
|
You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
|
|
4055
4055
|
```
|
|
4056
4056
|
|
|
4057
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4057
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.46/src/commands/org/create/sandbox.ts)_
|
|
4058
4058
|
|
|
4059
4059
|
## `sf org create scratch`
|
|
4060
4060
|
|
|
@@ -4236,7 +4236,7 @@ FLAG DESCRIPTIONS
|
|
|
4236
4236
|
Omit this flag to have Salesforce generate a unique username for your org.
|
|
4237
4237
|
```
|
|
4238
4238
|
|
|
4239
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4239
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.46/src/commands/org/create/scratch.ts)_
|
|
4240
4240
|
|
|
4241
4241
|
## `sf org create user`
|
|
4242
4242
|
|
|
@@ -4390,7 +4390,7 @@ EXAMPLES
|
|
|
4390
4390
|
$ sf org delete sandbox --target-org my-sandbox --no-prompt
|
|
4391
4391
|
```
|
|
4392
4392
|
|
|
4393
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4393
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.46/src/commands/org/delete/sandbox.ts)_
|
|
4394
4394
|
|
|
4395
4395
|
## `sf org delete scratch`
|
|
4396
4396
|
|
|
@@ -4434,7 +4434,7 @@ EXAMPLES
|
|
|
4434
4434
|
$ sf org delete scratch --target-org my-scratch-org --no-prompt
|
|
4435
4435
|
```
|
|
4436
4436
|
|
|
4437
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4437
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.46/src/commands/org/delete/scratch.ts)_
|
|
4438
4438
|
|
|
4439
4439
|
## `sf org disable tracking`
|
|
4440
4440
|
|
|
@@ -4473,7 +4473,7 @@ EXAMPLES
|
|
|
4473
4473
|
$ sf org disable tracking
|
|
4474
4474
|
```
|
|
4475
4475
|
|
|
4476
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4476
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.46/src/commands/org/disable/tracking.ts)_
|
|
4477
4477
|
|
|
4478
4478
|
## `sf org display`
|
|
4479
4479
|
|
|
@@ -4518,7 +4518,7 @@ EXAMPLES
|
|
|
4518
4518
|
$ sf org display --target-org TestOrg1 --verbose
|
|
4519
4519
|
```
|
|
4520
4520
|
|
|
4521
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4521
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.46/src/commands/org/display.ts)_
|
|
4522
4522
|
|
|
4523
4523
|
## `sf org display user`
|
|
4524
4524
|
|
|
@@ -4599,7 +4599,7 @@ EXAMPLES
|
|
|
4599
4599
|
$ sf org enable tracking
|
|
4600
4600
|
```
|
|
4601
4601
|
|
|
4602
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4602
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.46/src/commands/org/enable/tracking.ts)_
|
|
4603
4603
|
|
|
4604
4604
|
## `sf org generate password`
|
|
4605
4605
|
|
|
@@ -4705,7 +4705,7 @@ EXAMPLES
|
|
|
4705
4705
|
$ sf org list --clean
|
|
4706
4706
|
```
|
|
4707
4707
|
|
|
4708
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4708
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.46/src/commands/org/list.ts)_
|
|
4709
4709
|
|
|
4710
4710
|
## `sf org list auth`
|
|
4711
4711
|
|
|
@@ -4844,7 +4844,7 @@ FLAG DESCRIPTIONS
|
|
|
4844
4844
|
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
|
|
4845
4845
|
```
|
|
4846
4846
|
|
|
4847
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4847
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.46/src/commands/org/list/metadata.ts)_
|
|
4848
4848
|
|
|
4849
4849
|
## `sf org list metadata-types`
|
|
4850
4850
|
|
|
@@ -4899,7 +4899,7 @@ FLAG DESCRIPTIONS
|
|
|
4899
4899
|
Override the api version used for api requests made by this command
|
|
4900
4900
|
```
|
|
4901
4901
|
|
|
4902
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4902
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.46/src/commands/org/list/metadata-types.ts)_
|
|
4903
4903
|
|
|
4904
4904
|
## `sf org list sobject record-counts`
|
|
4905
4905
|
|
|
@@ -5445,7 +5445,7 @@ EXAMPLES
|
|
|
5445
5445
|
$ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
|
|
5446
5446
|
```
|
|
5447
5447
|
|
|
5448
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5448
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.46/src/commands/org/open.ts)_
|
|
5449
5449
|
|
|
5450
5450
|
## `sf org open agent`
|
|
5451
5451
|
|
|
@@ -5496,7 +5496,7 @@ EXAMPLES
|
|
|
5496
5496
|
$ sf org open agent --target-org MyTestOrg1 --browser firefox --api-name Coral_Cloud_Agent
|
|
5497
5497
|
```
|
|
5498
5498
|
|
|
5499
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5499
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.46/src/commands/org/open/agent.ts)_
|
|
5500
5500
|
|
|
5501
5501
|
## `sf org refresh sandbox`
|
|
5502
5502
|
|
|
@@ -5599,7 +5599,7 @@ FLAG DESCRIPTIONS
|
|
|
5599
5599
|
You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
|
|
5600
5600
|
```
|
|
5601
5601
|
|
|
5602
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5602
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.46/src/commands/org/refresh/sandbox.ts)_
|
|
5603
5603
|
|
|
5604
5604
|
## `sf org resume sandbox`
|
|
5605
5605
|
|
|
@@ -5662,7 +5662,7 @@ FLAG DESCRIPTIONS
|
|
|
5662
5662
|
returns the job ID. To resume checking the sandbox creation, rerun this command.
|
|
5663
5663
|
```
|
|
5664
5664
|
|
|
5665
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5665
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.46/src/commands/org/resume/sandbox.ts)_
|
|
5666
5666
|
|
|
5667
5667
|
## `sf org resume scratch`
|
|
5668
5668
|
|
|
@@ -5715,7 +5715,7 @@ FLAG DESCRIPTIONS
|
|
|
5715
5715
|
returns the job ID. To resume checking the scratch creation, rerun this command.
|
|
5716
5716
|
```
|
|
5717
5717
|
|
|
5718
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5718
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.46/src/commands/org/resume/scratch.ts)_
|
|
5719
5719
|
|
|
5720
5720
|
## `sf package convert`
|
|
5721
5721
|
|
|
@@ -7401,7 +7401,7 @@ EXAMPLES
|
|
|
7401
7401
|
$ sf plugins
|
|
7402
7402
|
```
|
|
7403
7403
|
|
|
7404
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7404
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.54/src/commands/plugins/index.ts)_
|
|
7405
7405
|
|
|
7406
7406
|
## `sf plugins discover`
|
|
7407
7407
|
|
|
@@ -7446,7 +7446,7 @@ EXAMPLES
|
|
|
7446
7446
|
$ sf plugins inspect @salesforce/plugin-packaging
|
|
7447
7447
|
```
|
|
7448
7448
|
|
|
7449
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7449
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.54/src/commands/plugins/inspect.ts)_
|
|
7450
7450
|
|
|
7451
7451
|
## `sf plugins install PLUGIN`
|
|
7452
7452
|
|
|
@@ -7495,7 +7495,7 @@ EXAMPLES
|
|
|
7495
7495
|
$ sf plugins install someuser/someplugin
|
|
7496
7496
|
```
|
|
7497
7497
|
|
|
7498
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7498
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.54/src/commands/plugins/install.ts)_
|
|
7499
7499
|
|
|
7500
7500
|
## `sf plugins link PATH`
|
|
7501
7501
|
|
|
@@ -7526,7 +7526,7 @@ EXAMPLES
|
|
|
7526
7526
|
$ sf plugins link @salesforce/plugin-packaging
|
|
7527
7527
|
```
|
|
7528
7528
|
|
|
7529
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7529
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.54/src/commands/plugins/link.ts)_
|
|
7530
7530
|
|
|
7531
7531
|
## `sf plugins reset`
|
|
7532
7532
|
|
|
@@ -7541,7 +7541,7 @@ FLAGS
|
|
|
7541
7541
|
--reinstall Reinstall all plugins after uninstalling.
|
|
7542
7542
|
```
|
|
7543
7543
|
|
|
7544
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7544
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.54/src/commands/plugins/reset.ts)_
|
|
7545
7545
|
|
|
7546
7546
|
## `sf plugins trust verify`
|
|
7547
7547
|
|
|
@@ -7598,7 +7598,7 @@ EXAMPLES
|
|
|
7598
7598
|
$ sf plugins uninstall @salesforce/plugin-packaging
|
|
7599
7599
|
```
|
|
7600
7600
|
|
|
7601
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7601
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.54/src/commands/plugins/uninstall.ts)_
|
|
7602
7602
|
|
|
7603
7603
|
## `sf plugins update`
|
|
7604
7604
|
|
|
@@ -7616,7 +7616,7 @@ DESCRIPTION
|
|
|
7616
7616
|
Update installed plugins.
|
|
7617
7617
|
```
|
|
7618
7618
|
|
|
7619
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7619
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.54/src/commands/plugins/update.ts)_
|
|
7620
7620
|
|
|
7621
7621
|
## `sf project convert mdapi`
|
|
7622
7622
|
|
|
@@ -9798,7 +9798,7 @@ EXAMPLES
|
|
|
9798
9798
|
$ sf update --available
|
|
9799
9799
|
```
|
|
9800
9800
|
|
|
9801
|
-
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.
|
|
9801
|
+
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.16/src/commands/update.ts)_
|
|
9802
9802
|
|
|
9803
9803
|
## `sf version`
|
|
9804
9804
|
|