Skip to content

Commit 5986903

Browse files
committed
chore(release): 1.24.14-demo.7 [skip ci]
1 parent 2541254 commit 5986903

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

README.md

Lines changed: 19 additions & 19 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.5/src/commands/agent/activate.ts)_
115+
_See code: [src/commands/agent/activate.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.7/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.5/src/commands/agent/create.ts)_
177+
_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.7/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.5/src/commands/agent/deactivate.ts)_
217+
_See code: [src/commands/agent/deactivate.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.7/src/commands/agent/deactivate.ts)_
218218

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

@@ -319,7 +319,7 @@ EXAMPLES
319319
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
320320
```
321321

322-
_See code: [src/commands/agent/generate/agent-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.5/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.7/src/commands/agent/generate/agent-spec.ts)_
323323

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

@@ -360,7 +360,7 @@ EXAMPLES
360360
path/to/output
361361
```
362362

363-
_See code: [src/commands/agent/generate/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.5/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.7/src/commands/agent/generate/authoring-bundle.ts)_
364364

365365
## `sf agent generate template`
366366

@@ -408,7 +408,7 @@ EXAMPLES
408408
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
409409
```
410410

411-
_See code: [src/commands/agent/generate/template.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.5/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.7/src/commands/agent/generate/template.ts)_
412412

413413
## `sf agent generate test-spec`
414414

@@ -469,7 +469,7 @@ EXAMPLES
469469
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
470470
```
471471

472-
_See code: [src/commands/agent/generate/test-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.5/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.7/src/commands/agent/generate/test-spec.ts)_
473473

474474
## `sf agent preview`
475475

@@ -534,7 +534,7 @@ EXAMPLES
534534
transcripts/my-preview
535535
```
536536

537-
_See code: [src/commands/agent/preview.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.5/src/commands/agent/preview.ts)_
537+
_See code: [src/commands/agent/preview.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.7/src/commands/agent/preview.ts)_
538538

539539
## `sf agent publish authoring-bundle`
540540

@@ -545,7 +545,7 @@ USAGE
545545
$ sf agent publish authoring-bundle -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-n <value>]
546546
547547
FLAGS
548-
-n, --api-name=<value> API name of the Agent Authoring Bundle to publish
548+
-n, --api-name=<value> API name of the Agent Authoring Bundle to publish.
549549
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
550550
configuration variable is already set.
551551
--api-version=<value> Override the api version used for api requests made by this command
@@ -557,7 +557,7 @@ GLOBAL FLAGS
557557
DESCRIPTION
558558
Publish an Agent Authoring Bundle as a new agent
559559
560-
Publishes an Agent Authoring Bundle by compiling the AF script and creating a new agent in your org.
560+
Publishes an Agent Authoring Bundle by compiling the .agent file and creating a new agent in your org.
561561
562562
EXAMPLES
563563
Publish an Agent Authoring Bundle:
@@ -566,7 +566,7 @@ EXAMPLES
566566
myorg@example.com
567567
```
568568

569-
_See code: [src/commands/agent/publish/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.5/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.7/src/commands/agent/publish/authoring-bundle.ts)_
570570

571571
## `sf agent test create`
572572

@@ -621,7 +621,7 @@ EXAMPLES
621621
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
622622
```
623623

624-
_See code: [src/commands/agent/test/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.5/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.7/src/commands/agent/test/create.ts)_
625625

626626
## `sf agent test list`
627627

@@ -656,7 +656,7 @@ EXAMPLES
656656
$ sf agent test list --target-org my-org
657657
```
658658

659-
_See code: [src/commands/agent/test/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.5/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.7/src/commands/agent/test/list.ts)_
660660

661661
## `sf agent test results`
662662

@@ -722,7 +722,7 @@ FLAG DESCRIPTIONS
722722
expression when using custom evaluations.
723723
```
724724

725-
_See code: [src/commands/agent/test/results.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.5/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.7/src/commands/agent/test/results.ts)_
726726

727727
## `sf agent test resume`
728728

@@ -795,7 +795,7 @@ FLAG DESCRIPTIONS
795795
expression when using custom evaluations.
796796
```
797797

798-
_See code: [src/commands/agent/test/resume.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.5/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.7/src/commands/agent/test/resume.ts)_
799799

800800
## `sf agent test run`
801801

@@ -869,7 +869,7 @@ FLAG DESCRIPTIONS
869869
expression when using custom evaluations.
870870
```
871871

872-
_See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.5/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.7/src/commands/agent/test/run.ts)_
873873

874874
## `sf agent validate authoring-bundle`
875875

@@ -880,7 +880,7 @@ USAGE
880880
$ sf agent validate authoring-bundle -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-n <value>]
881881
882882
FLAGS
883-
-n, --api-name=<value> Path to the Agent Authoring Bundle to validate
883+
-n, --api-name=<value> API name of the Agent Authoring Bundle to validate.
884884
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
885885
configuration variable is already set.
886886
--api-version=<value> Override the api version used for api requests made by this command
@@ -892,14 +892,14 @@ GLOBAL FLAGS
892892
DESCRIPTION
893893
Validate an Agent Authoring Bundle
894894
895-
Validates an Agent Authoring Bundle by compiling the AF script and checking for errors.
895+
Validates an Agent Authoring Bundle by compiling the .agent file and checking for errors.
896896
897897
EXAMPLES
898898
Validate an Agent Authoring Bundle:
899899
900900
$ sf agent validate authoring-bundle --api-name path/to/bundle
901901
```
902902

903-
_See code: [src/commands/agent/validate/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.5/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.7/src/commands/agent/validate/authoring-bundle.ts)_
904904

905905
<!-- 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.6",
4+
"version": "1.24.14-demo.7",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)