Skip to content

Commit

Permalink
chore(release): 1.1.2 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-cli-bot committed Nov 1, 2024
1 parent 15b951f commit bdb45c2
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 8 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## [1.1.2](https://github.com/salesforcecli/plugin-agent/compare/1.1.1...1.1.2) (2024-11-01)

### Bug Fixes

- add a nut ([1563e12](https://github.com/salesforcecli/plugin-agent/commit/1563e12031d59f2ef44e3e5281489ec588f9b225))
- add agent test cancel ([29983c2](https://github.com/salesforcecli/plugin-agent/commit/29983c2f70347aff24ad1b78effe801b15bee9a3))
- agent test run ([71b85f0](https://github.com/salesforcecli/plugin-agent/commit/71b85f0ed28024a815ad6faba81e4d77842e48fe))
- agent test run ([d7db1ea](https://github.com/salesforcecli/plugin-agent/commit/d7db1ea7d5b6f5c86dbd3956919e6b722bc10a1c))
- nut needs an org ([6dddb61](https://github.com/salesforcecli/plugin-agent/commit/6dddb6118c9b529eb2266b7dcd81b53e7c300076))
- test ([a76728f](https://github.com/salesforcecli/plugin-agent/commit/a76728fe2fea58e5a61383aa9dbb1ab6757e85d6))

## [1.1.1](https://github.com/salesforcecli/plugin-agent/compare/1.1.0...1.1.1) (2024-10-30)

### Bug Fixes
Expand Down
46 changes: 39 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ sf plugins

- [`sf agent create`](#sf-agent-create)
- [`sf agent create spec`](#sf-agent-create-spec)
- [`sf agent run test`](#sf-agent-run-test)
- [`sf agent test cancel`](#sf-agent-test-cancel)
- [`sf agent test run`](#sf-agent-test-run)

## `sf agent create`

Expand Down Expand Up @@ -101,7 +102,7 @@ FLAG DESCRIPTIONS
command.
```

_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.1.1/src/commands/agent/create.ts)_
_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.1.2/src/commands/agent/create.ts)_

## `sf agent create spec`

Expand Down Expand Up @@ -143,15 +144,46 @@ EXAMPLES
--company-description "A meaningful description"
```

_See code: [src/commands/agent/create/spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.1.1/src/commands/agent/create/spec.ts)_
_See code: [src/commands/agent/create/spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.1.2/src/commands/agent/create/spec.ts)_

## `sf agent run test`
## `sf agent test cancel`

Cancel a running test for an Agent.

```
USAGE
$ sf agent test cancel -o <value> -i <value> [--json] [--flags-dir <value>] [-r]
FLAGS
-i, --job-id=<value> (required) The AiEvaluation ID.
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
configuration variable is already set.
-r, --use-most-recent Use the job ID of the most recent test evaluation.
GLOBAL FLAGS
--flags-dir=<value> Import flag values from a directory.
--json Format output as json.
DESCRIPTION
Cancel a running test for an Agent.
Cancel a running test for an Agent, providing the AiEvaluation ID.
EXAMPLES
Cancel a test for an Agent:
$ sf agent test cancel --id AiEvalId
```

_See code: [src/commands/agent/test/cancel.ts](https://github.com/salesforcecli/plugin-agent/blob/1.1.2/src/commands/agent/test/cancel.ts)_

## `sf agent test run`

Start a test for an Agent.

```
USAGE
$ sf agent run test -o <value> -i <value> [--json] [--flags-dir <value>] [-w <value>] [-d <value>]
$ sf agent test run -o <value> -i <value> [--json] [--flags-dir <value>] [-w <value>] [-d <value>]
FLAGS
-d, --output-dir=<value> Directory in which to store test run files.
Expand All @@ -173,7 +205,7 @@ DESCRIPTION
EXAMPLES
Start a test for an Agent:
$ sf agent run test --id AiEvalDefVerId
$ sf agent test run --id AiEvalDefVerId
FLAG DESCRIPTIONS
-i, --id=<value> The AiEvalDefinitionVersion ID.
Expand All @@ -185,6 +217,6 @@ FLAG DESCRIPTIONS
If the command continues to run after the wait period, the CLI returns control of the terminal window to you.
```

_See code: [src/commands/agent/run/test.ts](https://github.com/salesforcecli/plugin-agent/blob/1.1.1/src/commands/agent/run/test.ts)_
_See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.1.2/src/commands/agent/test/run.ts)_

<!-- commandsstop -->
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@salesforce/plugin-agent",
"description": "Commands to interact with Salesforce agents",
"version": "1.1.1",
"version": "1.1.2",
"author": "Salesforce",
"bugs": "https://github.com/forcedotcom/cli/issues",
"dependencies": {
Expand Down

0 comments on commit bdb45c2

Please sign in to comment.