@salesforce/cli 2.106.5 → 2.106.6
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 +28 -28
- package/npm-shrinkwrap.json +582 -216
- package/oclif.lock +503 -255
- package/oclif.manifest.json +1 -1
- package/package.json +5 -5
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.106.
|
|
28
|
+
@salesforce/cli/2.106.6 linux-x64 node-v22.19.0
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -241,7 +241,7 @@ EXAMPLES
|
|
|
241
241
|
$ sf agent activate --api-name Resort_Manager --target-org my-org
|
|
242
242
|
```
|
|
243
243
|
|
|
244
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
244
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.9/src/commands/agent/activate.ts)_
|
|
245
245
|
|
|
246
246
|
## `sf agent create`
|
|
247
247
|
|
|
@@ -303,7 +303,7 @@ EXAMPLES
|
|
|
303
303
|
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
|
|
304
304
|
```
|
|
305
305
|
|
|
306
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
306
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.9/src/commands/agent/create.ts)_
|
|
307
307
|
|
|
308
308
|
## `sf agent deactivate`
|
|
309
309
|
|
|
@@ -343,7 +343,7 @@ EXAMPLES
|
|
|
343
343
|
$ sf agent deactivate --api-name Resort_Manager --target-org my-org
|
|
344
344
|
```
|
|
345
345
|
|
|
346
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
346
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.9/src/commands/agent/deactivate.ts)_
|
|
347
347
|
|
|
348
348
|
## `sf agent generate agent-spec`
|
|
349
349
|
|
|
@@ -448,7 +448,7 @@ EXAMPLES
|
|
|
448
448
|
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
|
|
449
449
|
```
|
|
450
450
|
|
|
451
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
451
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.9/src/commands/agent/generate/agent-spec.ts)_
|
|
452
452
|
|
|
453
453
|
## `sf agent generate template`
|
|
454
454
|
|
|
@@ -496,7 +496,7 @@ EXAMPLES
|
|
|
496
496
|
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
|
|
497
497
|
```
|
|
498
498
|
|
|
499
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
499
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.9/src/commands/agent/generate/template.ts)_
|
|
500
500
|
|
|
501
501
|
## `sf agent generate test-spec`
|
|
502
502
|
|
|
@@ -557,7 +557,7 @@ EXAMPLES
|
|
|
557
557
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
558
558
|
```
|
|
559
559
|
|
|
560
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
560
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.9/src/commands/agent/generate/test-spec.ts)_
|
|
561
561
|
|
|
562
562
|
## `sf agent preview`
|
|
563
563
|
|
|
@@ -621,7 +621,7 @@ EXAMPLES
|
|
|
621
621
|
transcripts/my-preview
|
|
622
622
|
```
|
|
623
623
|
|
|
624
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
624
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.9/src/commands/agent/preview.ts)_
|
|
625
625
|
|
|
626
626
|
## `sf agent test create`
|
|
627
627
|
|
|
@@ -676,7 +676,7 @@ EXAMPLES
|
|
|
676
676
|
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
|
|
677
677
|
```
|
|
678
678
|
|
|
679
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
679
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.9/src/commands/agent/test/create.ts)_
|
|
680
680
|
|
|
681
681
|
## `sf agent test list`
|
|
682
682
|
|
|
@@ -711,7 +711,7 @@ EXAMPLES
|
|
|
711
711
|
$ sf agent test list --target-org my-org
|
|
712
712
|
```
|
|
713
713
|
|
|
714
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
714
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.9/src/commands/agent/test/list.ts)_
|
|
715
715
|
|
|
716
716
|
## `sf agent test results`
|
|
717
717
|
|
|
@@ -777,7 +777,7 @@ FLAG DESCRIPTIONS
|
|
|
777
777
|
expression when using custom evaluations.
|
|
778
778
|
```
|
|
779
779
|
|
|
780
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
780
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.9/src/commands/agent/test/results.ts)_
|
|
781
781
|
|
|
782
782
|
## `sf agent test resume`
|
|
783
783
|
|
|
@@ -850,7 +850,7 @@ FLAG DESCRIPTIONS
|
|
|
850
850
|
expression when using custom evaluations.
|
|
851
851
|
```
|
|
852
852
|
|
|
853
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
853
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.9/src/commands/agent/test/resume.ts)_
|
|
854
854
|
|
|
855
855
|
## `sf agent test run`
|
|
856
856
|
|
|
@@ -924,7 +924,7 @@ FLAG DESCRIPTIONS
|
|
|
924
924
|
expression when using custom evaluations.
|
|
925
925
|
```
|
|
926
926
|
|
|
927
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
927
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.9/src/commands/agent/test/run.ts)_
|
|
928
928
|
|
|
929
929
|
## `sf alias list`
|
|
930
930
|
|
|
@@ -3878,7 +3878,7 @@ FLAG DESCRIPTIONS
|
|
|
3878
3878
|
You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
|
|
3879
3879
|
```
|
|
3880
3880
|
|
|
3881
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
3881
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.28/src/commands/org/create/sandbox.ts)_
|
|
3882
3882
|
|
|
3883
3883
|
## `sf org create scratch`
|
|
3884
3884
|
|
|
@@ -4060,7 +4060,7 @@ FLAG DESCRIPTIONS
|
|
|
4060
4060
|
Omit this flag to have Salesforce generate a unique username for your org.
|
|
4061
4061
|
```
|
|
4062
4062
|
|
|
4063
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4063
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.28/src/commands/org/create/scratch.ts)_
|
|
4064
4064
|
|
|
4065
4065
|
## `sf org create user`
|
|
4066
4066
|
|
|
@@ -4214,7 +4214,7 @@ EXAMPLES
|
|
|
4214
4214
|
$ sf org delete sandbox --target-org my-sandbox --no-prompt
|
|
4215
4215
|
```
|
|
4216
4216
|
|
|
4217
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4217
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.28/src/commands/org/delete/sandbox.ts)_
|
|
4218
4218
|
|
|
4219
4219
|
## `sf org delete scratch`
|
|
4220
4220
|
|
|
@@ -4258,7 +4258,7 @@ EXAMPLES
|
|
|
4258
4258
|
$ sf org delete scratch --target-org my-scratch-org --no-prompt
|
|
4259
4259
|
```
|
|
4260
4260
|
|
|
4261
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4261
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.28/src/commands/org/delete/scratch.ts)_
|
|
4262
4262
|
|
|
4263
4263
|
## `sf org disable tracking`
|
|
4264
4264
|
|
|
@@ -4297,7 +4297,7 @@ EXAMPLES
|
|
|
4297
4297
|
$ sf org disable tracking
|
|
4298
4298
|
```
|
|
4299
4299
|
|
|
4300
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4300
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.28/src/commands/org/disable/tracking.ts)_
|
|
4301
4301
|
|
|
4302
4302
|
## `sf org display`
|
|
4303
4303
|
|
|
@@ -4342,7 +4342,7 @@ EXAMPLES
|
|
|
4342
4342
|
$ sf org display --target-org TestOrg1 --verbose
|
|
4343
4343
|
```
|
|
4344
4344
|
|
|
4345
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4345
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.28/src/commands/org/display.ts)_
|
|
4346
4346
|
|
|
4347
4347
|
## `sf org display user`
|
|
4348
4348
|
|
|
@@ -4423,7 +4423,7 @@ EXAMPLES
|
|
|
4423
4423
|
$ sf org enable tracking
|
|
4424
4424
|
```
|
|
4425
4425
|
|
|
4426
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4426
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.28/src/commands/org/enable/tracking.ts)_
|
|
4427
4427
|
|
|
4428
4428
|
## `sf org generate password`
|
|
4429
4429
|
|
|
@@ -4529,7 +4529,7 @@ EXAMPLES
|
|
|
4529
4529
|
$ sf org list --clean
|
|
4530
4530
|
```
|
|
4531
4531
|
|
|
4532
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4532
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.28/src/commands/org/list.ts)_
|
|
4533
4533
|
|
|
4534
4534
|
## `sf org list auth`
|
|
4535
4535
|
|
|
@@ -4668,7 +4668,7 @@ FLAG DESCRIPTIONS
|
|
|
4668
4668
|
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
|
|
4669
4669
|
```
|
|
4670
4670
|
|
|
4671
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4671
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.28/src/commands/org/list/metadata.ts)_
|
|
4672
4672
|
|
|
4673
4673
|
## `sf org list metadata-types`
|
|
4674
4674
|
|
|
@@ -4723,7 +4723,7 @@ FLAG DESCRIPTIONS
|
|
|
4723
4723
|
Override the api version used for api requests made by this command
|
|
4724
4724
|
```
|
|
4725
4725
|
|
|
4726
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4726
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.28/src/commands/org/list/metadata-types.ts)_
|
|
4727
4727
|
|
|
4728
4728
|
## `sf org list sobject record-counts`
|
|
4729
4729
|
|
|
@@ -5269,7 +5269,7 @@ EXAMPLES
|
|
|
5269
5269
|
$ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
|
|
5270
5270
|
```
|
|
5271
5271
|
|
|
5272
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5272
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.28/src/commands/org/open.ts)_
|
|
5273
5273
|
|
|
5274
5274
|
## `sf org open agent`
|
|
5275
5275
|
|
|
@@ -5320,7 +5320,7 @@ EXAMPLES
|
|
|
5320
5320
|
$ sf org open agent --target-org MyTestOrg1 --browser firefox --api-name Coral_Cloud_Agent
|
|
5321
5321
|
```
|
|
5322
5322
|
|
|
5323
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5323
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.28/src/commands/org/open/agent.ts)_
|
|
5324
5324
|
|
|
5325
5325
|
## `sf org refresh sandbox`
|
|
5326
5326
|
|
|
@@ -5423,7 +5423,7 @@ FLAG DESCRIPTIONS
|
|
|
5423
5423
|
You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
|
|
5424
5424
|
```
|
|
5425
5425
|
|
|
5426
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5426
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.28/src/commands/org/refresh/sandbox.ts)_
|
|
5427
5427
|
|
|
5428
5428
|
## `sf org resume sandbox`
|
|
5429
5429
|
|
|
@@ -5486,7 +5486,7 @@ FLAG DESCRIPTIONS
|
|
|
5486
5486
|
returns the job ID. To resume checking the sandbox creation, rerun this command.
|
|
5487
5487
|
```
|
|
5488
5488
|
|
|
5489
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5489
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.28/src/commands/org/resume/sandbox.ts)_
|
|
5490
5490
|
|
|
5491
5491
|
## `sf org resume scratch`
|
|
5492
5492
|
|
|
@@ -5539,7 +5539,7 @@ FLAG DESCRIPTIONS
|
|
|
5539
5539
|
returns the job ID. To resume checking the scratch creation, rerun this command.
|
|
5540
5540
|
```
|
|
5541
5541
|
|
|
5542
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5542
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.28/src/commands/org/resume/scratch.ts)_
|
|
5543
5543
|
|
|
5544
5544
|
## `sf package convert`
|
|
5545
5545
|
|