Skip to content

Commit 6538237

Browse files
committed
chore(release): 1.24.14-demo.3 [skip ci]
1 parent e1ca7d9 commit 6538237

File tree

2 files changed

+31
-30
lines changed

2 files changed

+31
-30
lines changed

README.md

Lines changed: 30 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ EXAMPLES
112112
$ sf agent activate --api-name Resort_Manager --target-org my-org
113113
```
114114

115-
_See code: [src/commands/agent/activate.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.2/src/commands/agent/activate.ts)_
115+
_See code: [src/commands/agent/activate.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.3/src/commands/agent/activate.ts)_
116116

117117
## `sf agent create`
118118

@@ -174,7 +174,7 @@ EXAMPLES
174174
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
175175
```
176176

177-
_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.2/src/commands/agent/create.ts)_
177+
_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.3/src/commands/agent/create.ts)_
178178

179179
## `sf agent deactivate`
180180

@@ -214,7 +214,7 @@ EXAMPLES
214214
$ sf agent deactivate --api-name Resort_Manager --target-org my-org
215215
```
216216

217-
_See code: [src/commands/agent/deactivate.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.2/src/commands/agent/deactivate.ts)_
217+
_See code: [src/commands/agent/deactivate.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.3/src/commands/agent/deactivate.ts)_
218218

219219
## `sf agent generate agent-spec`
220220

@@ -319,23 +319,25 @@ EXAMPLES
319319
$ sf agent generate agent-spec --tone formal --agent-user [email protected]
320320
```
321321

322-
_See code: [src/commands/agent/generate/agent-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.2/src/commands/agent/generate/agent-spec.ts)_
322+
_See code: [src/commands/agent/generate/agent-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.3/src/commands/agent/generate/agent-spec.ts)_
323323

324324
## `sf agent generate authoring-bundle`
325325

326326
Generate an authoring bundle from an agent specification.
327327

328328
```
329329
USAGE
330-
$ sf agent generate authoring-bundle -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-f <value>] [-d <value>]
331-
[-n <value>]
330+
$ sf agent generate authoring-bundle -o <value> [--json] [--flags-dir <value>] [--api-name <value>] [--api-version <value>] [-f
331+
<value>] [-d <value>] [-n <value>]
332332
333333
FLAGS
334334
-d, --output-dir=<value> Directory where the authoring bundle files will be generated.
335335
-f, --spec=<value> Path to the agent specification file.
336-
-n, --name=<value> Name (label) of the authoring bundle. If not provided, you will be prompted for it.
336+
-n, --name=<value> Name (label) of the authoring bundle.
337337
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
338338
configuration variable is already set.
339+
--api-name=<value> API name of the new authoring bundle; if not specified, the API name is derived from the
340+
authoring bundle name (label); the API name must not exist in the org.
339341
--api-version=<value> Override the api version used for api requests made by this command
340342
341343
GLOBAL FLAGS
@@ -345,7 +347,7 @@ GLOBAL FLAGS
345347
DESCRIPTION
346348
Generate an authoring bundle from an agent specification.
347349
348-
Generates an authoring bundle containing AFScript and its meta.xml file from an agent specification file.
350+
Generates an authoring bundle containing Agent and its meta.xml file from an agent specification file.
349351
350352
EXAMPLES
351353
Generate an authoring bundle from a specification file:
@@ -358,7 +360,7 @@ EXAMPLES
358360
path/to/output
359361
```
360362

361-
_See code: [src/commands/agent/generate/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.2/src/commands/agent/generate/authoring-bundle.ts)_
363+
_See code: [src/commands/agent/generate/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.3/src/commands/agent/generate/authoring-bundle.ts)_
362364

363365
## `sf agent generate template`
364366

@@ -406,7 +408,7 @@ EXAMPLES
406408
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
407409
```
408410

409-
_See code: [src/commands/agent/generate/template.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.2/src/commands/agent/generate/template.ts)_
411+
_See code: [src/commands/agent/generate/template.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.3/src/commands/agent/generate/template.ts)_
410412

411413
## `sf agent generate test-spec`
412414

@@ -467,29 +469,28 @@ EXAMPLES
467469
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
468470
```
469471

470-
_See code: [src/commands/agent/generate/test-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.2/src/commands/agent/generate/test-spec.ts)_
472+
_See code: [src/commands/agent/generate/test-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.3/src/commands/agent/generate/test-spec.ts)_
471473

472474
## `sf agent preview`
473475

474476
Interact with an active agent to preview how the agent responds to your statements, questions, and commands (utterances).
475477

476478
```
477479
USAGE
478-
$ sf agent preview (-c <value> -o <value>) [--flags-dir <value>] [--api-version <value>] [-n <value>]
480+
$ sf agent preview [--flags-dir <value>] [--api-version <value>] (-c <value> -o <value>) [-n <value>]
479481
[--authoring-bundle <value>] [-d <value>] [-x]
480482
481483
FLAGS
482-
-c, --client-app=<value> (required) Name of the linked client app to use for the agent connection. You must
483-
have previously created this link with "org login web --client-app". Run "org display"
484-
to see the available linked client apps.
484+
-c, --client-app=<value> Name of the linked client app to use for the agent connection. You must have
485+
previously created this link with "org login web --client-app". Run "org display" to
486+
see the available linked client apps.
485487
-d, --output-dir=<value> Directory where conversation transcripts are saved.
486488
-n, --api-name=<value> API name of the agent you want to interact with.
487489
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
488490
configuration variable is already set.
489491
-x, --apex-debug Enable Apex debug logging during the agent preview conversation.
490492
--api-version=<value> Override the api version used for api requests made by this command
491-
--authoring-bundle=<value> Preview an ephemeral afscript agent by specifying the API name of the Authoring Bundle
492-
metadata
493+
--authoring-bundle=<value> Preview an ephemeral agent by specifying the API name of the Authoring Bundle metadata
493494
494495
GLOBAL FLAGS
495496
--flags-dir=<value> Import flag values from a directory.
@@ -533,18 +534,18 @@ EXAMPLES
533534
transcripts/my-preview
534535
```
535536

536-
_See code: [src/commands/agent/preview.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.2/src/commands/agent/preview.ts)_
537+
_See code: [src/commands/agent/preview.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.3/src/commands/agent/preview.ts)_
537538

538539
## `sf agent publish authoring-bundle`
539540

540541
Publish an Agent Authoring Bundle as a new agent
541542

542543
```
543544
USAGE
544-
$ sf agent publish authoring-bundle -o <value> -n <value> [--json] [--flags-dir <value>] [--api-version <value>]
545+
$ sf agent publish authoring-bundle -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-n <value>]
545546
546547
FLAGS
547-
-n, --api-name=<value> (required) API name of the Agent Authoring Bundle to publish
548+
-n, --api-name=<value> API name of the Agent Authoring Bundle to publish
548549
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
549550
configuration variable is already set.
550551
--api-version=<value> Override the api version used for api requests made by this command
@@ -565,7 +566,7 @@ EXAMPLES
565566
566567
```
567568

568-
_See code: [src/commands/agent/publish/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.2/src/commands/agent/publish/authoring-bundle.ts)_
569+
_See code: [src/commands/agent/publish/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.3/src/commands/agent/publish/authoring-bundle.ts)_
569570

570571
## `sf agent test create`
571572

@@ -620,7 +621,7 @@ EXAMPLES
620621
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
621622
```
622623

623-
_See code: [src/commands/agent/test/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.2/src/commands/agent/test/create.ts)_
624+
_See code: [src/commands/agent/test/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.3/src/commands/agent/test/create.ts)_
624625

625626
## `sf agent test list`
626627

@@ -655,7 +656,7 @@ EXAMPLES
655656
$ sf agent test list --target-org my-org
656657
```
657658

658-
_See code: [src/commands/agent/test/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.2/src/commands/agent/test/list.ts)_
659+
_See code: [src/commands/agent/test/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.3/src/commands/agent/test/list.ts)_
659660

660661
## `sf agent test results`
661662

@@ -721,7 +722,7 @@ FLAG DESCRIPTIONS
721722
expression when using custom evaluations.
722723
```
723724

724-
_See code: [src/commands/agent/test/results.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.2/src/commands/agent/test/results.ts)_
725+
_See code: [src/commands/agent/test/results.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.3/src/commands/agent/test/results.ts)_
725726

726727
## `sf agent test resume`
727728

@@ -794,7 +795,7 @@ FLAG DESCRIPTIONS
794795
expression when using custom evaluations.
795796
```
796797

797-
_See code: [src/commands/agent/test/resume.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.2/src/commands/agent/test/resume.ts)_
798+
_See code: [src/commands/agent/test/resume.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.3/src/commands/agent/test/resume.ts)_
798799

799800
## `sf agent test run`
800801

@@ -868,18 +869,18 @@ FLAG DESCRIPTIONS
868869
expression when using custom evaluations.
869870
```
870871

871-
_See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.2/src/commands/agent/test/run.ts)_
872+
_See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.3/src/commands/agent/test/run.ts)_
872873

873874
## `sf agent validate authoring-bundle`
874875

875876
Validate an Agent Authoring Bundle
876877

877878
```
878879
USAGE
879-
$ sf agent validate authoring-bundle -o <value> -n <value> [--json] [--flags-dir <value>] [--api-version <value>]
880+
$ sf agent validate authoring-bundle -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-n <value>]
880881
881882
FLAGS
882-
-n, --api-name=<value> (required) Path to the Agent Authoring Bundle to validate
883+
-n, --api-name=<value> Path to the Agent Authoring Bundle to validate
883884
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
884885
configuration variable is already set.
885886
--api-version=<value> Override the api version used for api requests made by this command
@@ -899,6 +900,6 @@ EXAMPLES
899900
$ sf agent validate authoring-bundle --api-name path/to/bundle
900901
```
901902

902-
_See code: [src/commands/agent/validate/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.2/src/commands/agent/validate/authoring-bundle.ts)_
903+
_See code: [src/commands/agent/validate/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.3/src/commands/agent/validate/authoring-bundle.ts)_
903904

904905
<!-- commandsstop -->

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@salesforce/plugin-agent",
33
"description": "Commands to interact with Salesforce agents",
4-
"version": "1.24.14-demo.2",
4+
"version": "1.24.14-demo.3",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)