Skip to content

Commit c5451a8

Browse files
committed
chore(release): 1.13.1-preview.0 [skip ci]
1 parent d4b44cf commit c5451a8

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

README.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ EXAMPLES
124124
$ sf agent create --agent-name ResortManager --spec specs/resortManagerAgent.yaml --preview
125125
```
126126

127-
_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.13.0/src/commands/agent/create.ts)_
127+
_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.13.1-preview.0/src/commands/agent/create.ts)_
128128

129129
## `sf agent generate agent-spec`
130130

@@ -217,7 +217,7 @@ EXAMPLES
217217
smoothly" --target-org my-org
218218
```
219219

220-
_See code: [src/commands/agent/generate/agent-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.13.0/src/commands/agent/generate/agent-spec.ts)_
220+
_See code: [src/commands/agent/generate/agent-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.13.1-preview.0/src/commands/agent/generate/agent-spec.ts)_
221221

222222
## `sf agent generate test-spec`
223223

@@ -240,18 +240,19 @@ EXAMPLES
240240
$ sf agent generate test-spec
241241
```
242242

243-
_See code: [src/commands/agent/generate/test-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.13.0/src/commands/agent/generate/test-spec.ts)_
243+
_See code: [src/commands/agent/generate/test-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.13.1-preview.0/src/commands/agent/generate/test-spec.ts)_
244244

245245
## `sf agent preview`
246246

247247
Interact with an active agent, as a user would, to preview responses
248248

249249
```
250250
USAGE
251-
$ sf agent preview -o <value> -n <value> [--flags-dir <value>] [--api-version <value>]
251+
$ sf agent preview -o <value> [--flags-dir <value>] [--api-version <value>] [-n <value> | -i <value>]
252252
253253
FLAGS
254-
-n, --name=<value> (required) The name of the agent you want to preview
254+
-i, --id=<value> The Salesforce Id of the Agent to preview.
255+
-n, --name=<value> The name of the agent you want to preview
255256
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
256257
configuration variable is already set.
257258
--api-version=<value> Override the api version used for api requests made by this command
@@ -275,7 +276,7 @@ FLAG DESCRIPTIONS
275276
the API name of the agent? (TBD based on agents library)
276277
```
277278

278-
_See code: [src/commands/agent/preview.ts](https://github.com/salesforcecli/plugin-agent/blob/1.13.0/src/commands/agent/preview.ts)_
279+
_See code: [src/commands/agent/preview.ts](https://github.com/salesforcecli/plugin-agent/blob/1.13.1-preview.0/src/commands/agent/preview.ts)_
279280

280281
## `sf agent test cancel`
281282

@@ -312,7 +313,7 @@ EXAMPLES
312313
$ sf agent test cancel --job-id 4KBfake0000003F4AQ --target-org my-org
313314
```
314315

315-
_See code: [src/commands/agent/test/cancel.ts](https://github.com/salesforcecli/plugin-agent/blob/1.13.0/src/commands/agent/test/cancel.ts)_
316+
_See code: [src/commands/agent/test/cancel.ts](https://github.com/salesforcecli/plugin-agent/blob/1.13.1-preview.0/src/commands/agent/test/cancel.ts)_
316317

317318
## `sf agent test create`
318319

@@ -348,7 +349,7 @@ FLAG DESCRIPTIONS
348349
More information about a flag. Don't repeat the summary.
349350
```
350351

351-
_See code: [src/commands/agent/test/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.13.0/src/commands/agent/test/create.ts)_
352+
_See code: [src/commands/agent/test/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.13.1-preview.0/src/commands/agent/test/create.ts)_
352353

353354
## `sf agent test list`
354355

@@ -377,7 +378,7 @@ EXAMPLES
377378
$ sf agent test list
378379
```
379380

380-
_See code: [src/commands/agent/test/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.13.0/src/commands/agent/test/list.ts)_
381+
_See code: [src/commands/agent/test/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.13.1-preview.0/src/commands/agent/test/list.ts)_
381382

382383
## `sf agent test results`
383384

@@ -433,7 +434,7 @@ FLAG DESCRIPTIONS
433434
test results aren't written.
434435
```
435436

436-
_See code: [src/commands/agent/test/results.ts](https://github.com/salesforcecli/plugin-agent/blob/1.13.0/src/commands/agent/test/results.ts)_
437+
_See code: [src/commands/agent/test/results.ts](https://github.com/salesforcecli/plugin-agent/blob/1.13.1-preview.0/src/commands/agent/test/results.ts)_
437438

438439
## `sf agent test resume`
439440

@@ -496,7 +497,7 @@ FLAG DESCRIPTIONS
496497
test results aren't written.
497498
```
498499

499-
_See code: [src/commands/agent/test/resume.ts](https://github.com/salesforcecli/plugin-agent/blob/1.13.0/src/commands/agent/test/resume.ts)_
500+
_See code: [src/commands/agent/test/resume.ts](https://github.com/salesforcecli/plugin-agent/blob/1.13.1-preview.0/src/commands/agent/test/resume.ts)_
500501

501502
## `sf agent test run`
502503

@@ -559,6 +560,6 @@ FLAG DESCRIPTIONS
559560
test results aren't written.
560561
```
561562

562-
_See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.13.0/src/commands/agent/test/run.ts)_
563+
_See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.13.1-preview.0/src/commands/agent/test/run.ts)_
563564

564565
<!-- 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.13.0",
4+
"version": "1.13.1-preview.0",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)