Skip to content

Commit 2accbc6

Browse files
committed
chore(release): bump to 2.121.0
1 parent 0675804 commit 2accbc6

3 files changed

Lines changed: 99 additions & 62 deletions

File tree

README.md

Lines changed: 80 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ $ npm install -g @salesforce/cli
2525
$ sf COMMAND
2626
running command...
2727
$ sf (--version|-v)
28-
@salesforce/cli/2.120.3 linux-x64 node-v22.21.1
28+
@salesforce/cli/2.121.0 linux-x64 node-v22.21.1
2929
$ sf --help [COMMAND]
3030
USAGE
3131
$ sf COMMAND
@@ -137,6 +137,7 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
137137
- [`sf org logout`](#sf-org-logout)
138138
- [`sf org open`](#sf-org-open)
139139
- [`sf org open agent`](#sf-org-open-agent)
140+
- [`sf org open authoring-bundle`](#sf-org-open-authoring-bundle)
140141
- [`sf org refresh sandbox`](#sf-org-refresh-sandbox)
141142
- [`sf org resume sandbox`](#sf-org-resume-sandbox)
142143
- [`sf org resume scratch`](#sf-org-resume-scratch)
@@ -247,7 +248,7 @@ EXAMPLES
247248
$ sf agent activate --api-name Resort_Manager --target-org my-org
248249
```
249250

250-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.5/src/commands/agent/activate.ts)_
251+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/activate.ts)_
251252

252253
## `sf agent create`
253254

@@ -314,7 +315,7 @@ EXAMPLES
314315
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
315316
```
316317

317-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.5/src/commands/agent/create.ts)_
318+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/create.ts)_
318319

319320
## `sf agent deactivate`
320321

@@ -354,7 +355,7 @@ EXAMPLES
354355
$ sf agent deactivate --api-name Resort_Manager --target-org my-org
355356
```
356357

357-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.5/src/commands/agent/deactivate.ts)_
358+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/deactivate.ts)_
358359

359360
## `sf agent generate agent-spec`
360361

@@ -461,7 +462,7 @@ EXAMPLES
461462
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
462463
```
463464

464-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.5/src/commands/agent/generate/agent-spec.ts)_
465+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/generate/agent-spec.ts)_
465466

466467
## `sf agent generate authoring-bundle`
467468

@@ -527,7 +528,7 @@ EXAMPLES
527528
other-package-dir/main/default --target-org my-dev-org
528529
```
529530

530-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.5/src/commands/agent/generate/authoring-bundle.ts)_
531+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/generate/authoring-bundle.ts)_
531532

532533
## `sf agent generate template`
533534

@@ -575,7 +576,7 @@ EXAMPLES
575576
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
576577
```
577578

578-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.5/src/commands/agent/generate/template.ts)_
579+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/generate/template.ts)_
579580

580581
## `sf agent generate test-spec`
581582

@@ -636,20 +637,18 @@ EXAMPLES
636637
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
637638
```
638639

639-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.5/src/commands/agent/generate/test-spec.ts)_
640+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/generate/test-spec.ts)_
640641

641642
## `sf agent preview`
642643

643644
Interact with an agent to preview how it responds to your statements, questions, and commands (utterances).
644645

645646
```
646647
USAGE
647-
$ sf agent preview [--flags-dir <value>] [--api-version <value>] (-c <value> -o <value>) [-n <value>]
648-
[--authoring-bundle <value>] [-d <value>] [-x] [--use-live-actions]
648+
$ sf agent preview -o <value> [--flags-dir <value>] [--api-version <value>] [-n <value>] [--authoring-bundle
649+
<value>] [-d <value>] [-x] [--use-live-actions]
649650
650651
FLAGS
651-
-c, --client-app=<value> Name of the linked client app to use for the connection to the published and active
652-
agent.
653652
-d, --output-dir=<value> Directory where conversation transcripts are saved.
654653
-n, --api-name=<value> API name of the published and active agent you want to interact with.
655654
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
@@ -695,14 +694,6 @@ DESCRIPTION
695694
the files are saved to the "./temp/agent-preview" directory. Specify a new default directory with the --output-dir
696695
flag.
697696
698-
NOTE: You can also use this command to connect to a published and active agent, which are labeled "(Published)" if you
699-
let this command provide the list of agents to preview. That use case, however, requires additional security and
700-
configuration in both your org and your DX project. The examples in this help are for previewing an agent from its
701-
Agent Script file in your DX project and require only simple authorization of your org, such as with the "org login
702-
web" command. The --client-app and --api-name flags are used only for previewing published and active agents, they
703-
don't apply to Agent Script agents. See "Connect to a Published Agent" in the "Agentforce Developer Guide" for
704-
complete documentation: https://developer.salesforce.com/docs/einstein/genai/guide/agent-dx-preview.html.
705-
706697
EXAMPLES
707698
Preview an agent in simulated mode by choosing from a list of authoring bundles provided by the command; use the org
708699
with alias "my-dev-org":
@@ -715,7 +706,7 @@ EXAMPLES
715706
$ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview
716707
```
717708

718-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.5/src/commands/agent/preview.ts)_
709+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/preview.ts)_
719710

720711
## `sf agent publish authoring-bundle`
721712

@@ -762,7 +753,7 @@ EXAMPLES
762753
$ sf agent publish authoring-bundle --api-name MyAuthoringbundle --target-org my-dev-org
763754
```
764755

765-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.5/src/commands/agent/publish/authoring-bundle.ts)_
756+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/publish/authoring-bundle.ts)_
766757

767758
## `sf agent test create`
768759

@@ -817,7 +808,7 @@ EXAMPLES
817808
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
818809
```
819810

820-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.5/src/commands/agent/test/create.ts)_
811+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/test/create.ts)_
821812

822813
## `sf agent test list`
823814

@@ -852,7 +843,7 @@ EXAMPLES
852843
$ sf agent test list --target-org my-org
853844
```
854845

855-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.5/src/commands/agent/test/list.ts)_
846+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/test/list.ts)_
856847

857848
## `sf agent test results`
858849

@@ -918,7 +909,7 @@ FLAG DESCRIPTIONS
918909
expression when using custom evaluations.
919910
```
920911

921-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.5/src/commands/agent/test/results.ts)_
912+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/test/results.ts)_
922913

923914
## `sf agent test resume`
924915

@@ -991,7 +982,7 @@ FLAG DESCRIPTIONS
991982
expression when using custom evaluations.
992983
```
993984

994-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.5/src/commands/agent/test/resume.ts)_
985+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/test/resume.ts)_
995986

996987
## `sf agent test run`
997988

@@ -1065,7 +1056,7 @@ FLAG DESCRIPTIONS
10651056
expression when using custom evaluations.
10661057
```
10671058

1068-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.5/src/commands/agent/test/run.ts)_
1059+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/test/run.ts)_
10691060

10701061
## `sf agent validate authoring-bundle`
10711062

@@ -1112,7 +1103,7 @@ EXAMPLES
11121103
$ sf agent validate authoring-bundle --api-name MyAuthoringBundle --target-org my-dev-org
11131104
```
11141105

1115-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.5/src/commands/agent/validate/authoring-bundle.ts)_
1106+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/validate/authoring-bundle.ts)_
11161107

11171108
## `sf alias list`
11181109

@@ -4240,7 +4231,7 @@ FLAG DESCRIPTIONS
42404231
You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
42414232
```
42424233

4243-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.59/src/commands/org/create/sandbox.ts)_
4234+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/create/sandbox.ts)_
42444235

42454236
## `sf org create scratch`
42464237

@@ -4422,7 +4413,7 @@ FLAG DESCRIPTIONS
44224413
Omit this flag to have Salesforce generate a unique username for your org.
44234414
```
44244415

4425-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.59/src/commands/org/create/scratch.ts)_
4416+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/create/scratch.ts)_
44264417

44274418
## `sf org create user`
44284419

@@ -4576,7 +4567,7 @@ EXAMPLES
45764567
$ sf org delete sandbox --target-org my-sandbox --no-prompt
45774568
```
45784569

4579-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.59/src/commands/org/delete/sandbox.ts)_
4570+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/delete/sandbox.ts)_
45804571

45814572
## `sf org delete scratch`
45824573

@@ -4620,7 +4611,7 @@ EXAMPLES
46204611
$ sf org delete scratch --target-org my-scratch-org --no-prompt
46214612
```
46224613

4623-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.59/src/commands/org/delete/scratch.ts)_
4614+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/delete/scratch.ts)_
46244615

46254616
## `sf org disable tracking`
46264617

@@ -4659,7 +4650,7 @@ EXAMPLES
46594650
$ sf org disable tracking
46604651
```
46614652

4662-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.59/src/commands/org/disable/tracking.ts)_
4653+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/disable/tracking.ts)_
46634654

46644655
## `sf org display`
46654656

@@ -4704,7 +4695,7 @@ EXAMPLES
47044695
$ sf org display --target-org TestOrg1 --verbose
47054696
```
47064697

4707-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.59/src/commands/org/display.ts)_
4698+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/display.ts)_
47084699

47094700
## `sf org display user`
47104701

@@ -4785,7 +4776,7 @@ EXAMPLES
47854776
$ sf org enable tracking
47864777
```
47874778

4788-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.59/src/commands/org/enable/tracking.ts)_
4779+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/enable/tracking.ts)_
47894780

47904781
## `sf org generate password`
47914782

@@ -4891,7 +4882,7 @@ EXAMPLES
48914882
$ sf org list --clean
48924883
```
48934884

4894-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.59/src/commands/org/list.ts)_
4885+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/list.ts)_
48954886

48964887
## `sf org list auth`
48974888

@@ -5030,7 +5021,7 @@ FLAG DESCRIPTIONS
50305021
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
50315022
```
50325023

5033-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.59/src/commands/org/list/metadata.ts)_
5024+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/list/metadata.ts)_
50345025

50355026
## `sf org list metadata-types`
50365027

@@ -5085,7 +5076,7 @@ FLAG DESCRIPTIONS
50855076
Override the api version used for api requests made by this command
50865077
```
50875078

5088-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.59/src/commands/org/list/metadata-types.ts)_
5079+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/list/metadata-types.ts)_
50895080

50905081
## `sf org list sobject record-counts`
50915082

@@ -5631,7 +5622,7 @@ EXAMPLES
56315622
$ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
56325623
```
56335624

5634-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.59/src/commands/org/open.ts)_
5625+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/open.ts)_
56355626

56365627
## `sf org open agent`
56375628

@@ -5682,7 +5673,53 @@ EXAMPLES
56825673
$ sf org open agent --target-org MyTestOrg1 --browser firefox --api-name Coral_Cloud_Agent
56835674
```
56845675

5685-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.59/src/commands/org/open/agent.ts)_
5676+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/open/agent.ts)_
5677+
5678+
## `sf org open authoring-bundle`
5679+
5680+
Open your org in Agentforce Studio, specically in the list view showing the list of agents.
5681+
5682+
```
5683+
USAGE
5684+
$ sf org open authoring-bundle -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [--private | -r | -b
5685+
chrome|edge|firefox]
5686+
5687+
FLAGS
5688+
-b, --browser=<option> Browser where the org opens.
5689+
<options: chrome|edge|firefox>
5690+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
5691+
configuration variable is already set.
5692+
-r, --url-only Display navigation URL, but don't launch browser.
5693+
--api-version=<value> Override the api version used for api requests made by this command
5694+
--private Open the org in the default browser using private (incognito) mode.
5695+
5696+
GLOBAL FLAGS
5697+
--flags-dir=<value> Import flag values from a directory.
5698+
--json Format output as json.
5699+
5700+
DESCRIPTION
5701+
Open your org in Agentforce Studio, specically in the list view showing the list of agents.
5702+
5703+
The list view shows the agents in your org that are implemented with Agent Script and an authoring bundle. Click on an
5704+
agent name to open it in Agentforce Builder in a new browser window.
5705+
5706+
To generate the URL but not launch it in your browser, specify --url-only.
5707+
5708+
EXAMPLES
5709+
Open the agents list view in your default org using your default browser:
5710+
5711+
$ sf org open authoring-bundle
5712+
5713+
Open the agents list view in an incognito window of your default browser:
5714+
5715+
$ sf org open authoring-bundle --private
5716+
5717+
Open the agents list view in an org with alias MyTestOrg1 using the Firefox browser:
5718+
5719+
$ sf org open authoring-bundle --target-org MyTestOrg1 --browser firefox
5720+
```
5721+
5722+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/open/authoring-bundle.ts)_
56865723

56875724
## `sf org refresh sandbox`
56885725

@@ -5785,7 +5822,7 @@ FLAG DESCRIPTIONS
57855822
You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
57865823
```
57875824

5788-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.59/src/commands/org/refresh/sandbox.ts)_
5825+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/refresh/sandbox.ts)_
57895826

57905827
## `sf org resume sandbox`
57915828

@@ -5848,7 +5885,7 @@ FLAG DESCRIPTIONS
58485885
returns the job ID. To resume checking the sandbox creation, rerun this command.
58495886
```
58505887

5851-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.59/src/commands/org/resume/sandbox.ts)_
5888+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/resume/sandbox.ts)_
58525889

58535890
## `sf org resume scratch`
58545891

@@ -5901,7 +5938,7 @@ FLAG DESCRIPTIONS
59015938
returns the job ID. To resume checking the scratch creation, rerun this command.
59025939
```
59035940

5904-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.59/src/commands/org/resume/scratch.ts)_
5941+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/resume/scratch.ts)_
59055942

59065943
## `sf package convert`
59075944

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@salesforce/cli",
33
"description": "The Salesforce CLI",
4-
"version": "2.120.3",
4+
"version": "2.121.0",
55
"author": "Salesforce",
66
"bin": {
77
"sf": "./bin/run.js",
@@ -157,7 +157,7 @@
157157
"@oclif/plugin-which": "3.2.42",
158158
"@salesforce/core": "8.24.3",
159159
"@salesforce/kit": "^3.1.6",
160-
"@salesforce/plugin-agent": "1.26.5",
160+
"@salesforce/plugin-agent": "1.26.6",
161161
"@salesforce/plugin-apex": "3.9.5",
162162
"@salesforce/plugin-api": "1.3.7",
163163
"@salesforce/plugin-auth": "4.1.2",
@@ -166,7 +166,7 @@
166166
"@salesforce/plugin-info": "3.4.100",
167167
"@salesforce/plugin-limits": "3.3.74",
168168
"@salesforce/plugin-marketplace": "1.3.8",
169-
"@salesforce/plugin-org": "5.9.59",
169+
"@salesforce/plugin-org": "5.9.60",
170170
"@salesforce/plugin-packaging": "2.24.7",
171171
"@salesforce/plugin-schema": "3.3.90",
172172
"@salesforce/plugin-settings": "2.4.54",

0 commit comments

Comments
 (0)