Skip to content

Commit d36b931

Browse files
committed
chore(release): 1.42.1 [skip ci]
1 parent 567697d commit d36b931

3 files changed

Lines changed: 64 additions & 44 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## [1.42.1](https://github.com/salesforcecli/plugin-agent/compare/1.42.0...1.42.1) (2026-06-04)
2+
3+
### Bug Fixes
4+
5+
- generate schema ([c388d61](https://github.com/salesforcecli/plugin-agent/commit/c388d61a270971ff40ba8665964204e077b3a43f))
6+
- handle sub-agents with one action W-22841550 ([#439](https://github.com/salesforcecli/plugin-agent/issues/439)) ([520d3e1](https://github.com/salesforcecli/plugin-agent/commit/520d3e1e2725cabc58c0f6567a02a86a06ed3c01))
7+
- improve human-readable output for upload, get, file add, file list ([26ce133](https://github.com/salesforcecli/plugin-agent/commit/26ce133199c7ace9abe63b47db53850d2d10cfd1))
8+
- multi-file, list filter, retriever swap, oclif fix @W-22816781@ ([d6c471e](https://github.com/salesforcecli/plugin-agent/commit/d6c471eff112a879fdd24bfb22addd4026f9f6a7))
9+
- multi-file, list filter, retriever swap, oclif fix @W-22816781@ ([1a2ea72](https://github.com/salesforcecli/plugin-agent/commit/1a2ea72037b5e7758a71dda4702672ce162f0614))
10+
- mutual exclusivity validation ([cdd68dc](https://github.com/salesforcecli/plugin-agent/commit/cdd68dc45a70a43c275a7e8c3075caa87b7d2382))
11+
112
# [1.42.0](https://github.com/salesforcecli/plugin-agent/compare/1.41.0...1.42.0) (2026-06-03)
213

314
### Bug Fixes

README.md

Lines changed: 52 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ EXAMPLES
140140
$ sf agent activate --api-name Resort_Manager --version 2 --target-org my-org
141141
```
142142

143-
_See code: [src/commands/agent/activate.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/activate.ts)_
143+
_See code: [src/commands/agent/activate.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/activate.ts)_
144144

145145
## `sf agent adl create`
146146

@@ -198,7 +198,7 @@ EXAMPLES
198198
--source-type retriever --retriever-id 0ppXX0000000001
199199
```
200200

201-
_See code: [src/commands/agent/adl/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/adl/create.ts)_
201+
_See code: [src/commands/agent/adl/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/adl/create.ts)_
202202

203203
## `sf agent adl delete`
204204

@@ -229,18 +229,18 @@ EXAMPLES
229229
$ sf agent adl delete --library-id 1JDSG000007IbWX4A0 --target-org myOrg
230230
```
231231

232-
_See code: [src/commands/agent/adl/delete.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/adl/delete.ts)_
232+
_See code: [src/commands/agent/adl/delete.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/adl/delete.ts)_
233233

234234
## `sf agent adl file add`
235235

236236
Add files to an existing Agentforce Data Library.
237237

238238
```
239239
USAGE
240-
$ sf agent adl file add -o <value> -i <value> -f <value> [--json] [--flags-dir <value>] [--api-version <value>]
240+
$ sf agent adl file add -o <value> -i <value> -f <value>... [--json] [--flags-dir <value>] [--api-version <value>]
241241
242242
FLAGS
243-
-f, --file=<value> (required) Path to the file to add to the library.
243+
-f, --path=<value>... (required) Path to file(s) to add. Specify multiple times for batch upload.
244244
-i, --library-id=<value> (required) Agentforce Data Library ID (18-char Salesforce ID with prefix 1JD).
245245
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
246246
configuration variable is already set.
@@ -261,10 +261,14 @@ DESCRIPTION
261261
EXAMPLES
262262
Add a file to an existing library:
263263
264-
$ sf agent adl file add --library-id 1JDSG000007IbWX4A0 --file ./docs/new-guide.pdf --target-org myOrg
264+
$ sf agent adl file add -i 1JDSG000007IbWX4A0 --path ./docs/new-guide.pdf --target-org myOrg
265+
266+
Add multiple files:
267+
268+
$ sf agent adl file add -i 1JDSG000007IbWX4A0 --path ./docs/guide.pdf --path ./docs/faq.txt --target-org myOrg
265269
```
266270

267-
_See code: [src/commands/agent/adl/file/add.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/adl/file/add.ts)_
271+
_See code: [src/commands/agent/adl/file/add.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/adl/file/add.ts)_
268272

269273
## `sf agent adl file delete`
270274

@@ -297,7 +301,7 @@ EXAMPLES
297301
$ sf agent adl file delete --library-id 1JDSG000007IbWX4A0 --file-id a1B2C3D4E5F6G7H8I9 --target-org myOrg
298302
```
299303

300-
_See code: [src/commands/agent/adl/file/delete.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/adl/file/delete.ts)_
304+
_See code: [src/commands/agent/adl/file/delete.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/adl/file/delete.ts)_
301305

302306
## `sf agent adl file list`
303307

@@ -332,7 +336,7 @@ EXAMPLES
332336
$ sf agent adl file list --library-id 1JDSG000007IbWX4A0 --target-org myOrg --json
333337
```
334338

335-
_See code: [src/commands/agent/adl/file/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/adl/file/list.ts)_
339+
_See code: [src/commands/agent/adl/file/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/adl/file/list.ts)_
336340

337341
## `sf agent adl get`
338342

@@ -363,20 +367,23 @@ EXAMPLES
363367
$ sf agent adl get --library-id 1JDSG000007IbWX4A0 --target-org myOrg
364368
```
365369

366-
_See code: [src/commands/agent/adl/get.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/adl/get.ts)_
370+
_See code: [src/commands/agent/adl/get.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/adl/get.ts)_
367371

368372
## `sf agent adl list`
369373

370374
List Agentforce Data Libraries in an org.
371375

372376
```
373377
USAGE
374-
$ sf agent adl list -o <value> [--json] [--flags-dir <value>] [--api-version <value>]
378+
$ sf agent adl list -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [--source-type
379+
sfdrive|knowledge|retriever]
375380
376381
FLAGS
377-
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
378-
configuration variable is already set.
379-
--api-version=<value> Override the api version used for api requests made by this command
382+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
383+
configuration variable is already set.
384+
--api-version=<value> Override the api version used for api requests made by this command
385+
--source-type=<option> Filter by source type: sfdrive, knowledge, or retriever.
386+
<options: sfdrive|knowledge|retriever>
380387
381388
GLOBAL FLAGS
382389
--flags-dir=<value> Import flag values from a directory.
@@ -397,7 +404,7 @@ EXAMPLES
397404
$ sf agent adl list --target-org myOrg --json
398405
```
399406

400-
_See code: [src/commands/agent/adl/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/adl/list.ts)_
407+
_See code: [src/commands/agent/adl/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/adl/list.ts)_
401408

402409
## `sf agent adl status`
403410

@@ -429,7 +436,7 @@ EXAMPLES
429436
$ sf agent adl status --library-id 1JDSG000007IbWX4A0 --target-org myOrg
430437
```
431438

432-
_See code: [src/commands/agent/adl/status.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/adl/status.ts)_
439+
_See code: [src/commands/agent/adl/status.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/adl/status.ts)_
433440

434441
## `sf agent adl update`
435442

@@ -438,7 +445,7 @@ Update an Agentforce Data Library.
438445
```
439446
USAGE
440447
$ sf agent adl update -o <value> -i <value> [--json] [--flags-dir <value>] [--api-version <value>] [-n <value>]
441-
[--description <value>] [--content-fields <value>] [--restrict-to-public-articles]
448+
[--description <value>] [--content-fields <value>] [--restrict-to-public-articles] [--retriever-id <value>]
442449
443450
FLAGS
444451
-i, --library-id=<value> (required) Agentforce Data Library ID (18-char Salesforce ID with prefix 1JD).
@@ -451,6 +458,8 @@ FLAGS
451458
--description=<value> New description for the data library (max 255 characters).
452459
--[no-]restrict-to-public-articles Restrict to public Knowledge articles only (KNOWLEDGE libraries, triggers
453460
re-indexing).
461+
--retriever-id=<value> Swap the retriever for a RETRIEVER library (must be an active Custom Retriever
462+
ID).
454463
455464
GLOBAL FLAGS
456465
--flags-dir=<value> Import flag values from a directory.
@@ -479,19 +488,19 @@ EXAMPLES
479488
$ sf agent adl update --library-id 1JDSG000007IbWX4A0 --restrict-to-public-articles --target-org myOrg
480489
```
481490

482-
_See code: [src/commands/agent/adl/update.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/adl/update.ts)_
491+
_See code: [src/commands/agent/adl/update.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/adl/update.ts)_
483492

484493
## `sf agent adl upload`
485494

486495
Upload a file to an SFDRIVE Agentforce Data Library.
487496

488497
```
489498
USAGE
490-
$ sf agent adl upload -o <value> -i <value> -f <value> [--json] [--flags-dir <value>] [--api-version <value>] [-w
499+
$ sf agent adl upload -o <value> -i <value> -f <value>... [--json] [--flags-dir <value>] [--api-version <value>] [-w
491500
<value>]
492501
493502
FLAGS
494-
-f, --file=<value> (required) Path to the file to upload.
503+
-f, --file=<value>... (required) Path to the file to upload.
495504
-i, --library-id=<value> (required) Agentforce Data Library ID (18-char Salesforce ID with prefix 1JD).
496505
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
497506
configuration variable is already set.
@@ -522,7 +531,7 @@ EXAMPLES
522531
$ sf agent adl upload --library-id 1JDSG000007IbWX4A0 --file ./docs/guide.pdf --target-org myOrg
523532
```
524533

525-
_See code: [src/commands/agent/adl/upload.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/adl/upload.ts)_
534+
_See code: [src/commands/agent/adl/upload.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/adl/upload.ts)_
526535

527536
## `sf agent create`
528537

@@ -589,7 +598,7 @@ EXAMPLES
589598
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
590599
```
591600

592-
_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/create.ts)_
601+
_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/create.ts)_
593602

594603
## `sf agent deactivate`
595604

@@ -630,7 +639,7 @@ EXAMPLES
630639
$ sf agent deactivate --api-name Resort_Manager --target-org my-org
631640
```
632641

633-
_See code: [src/commands/agent/deactivate.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/deactivate.ts)_
642+
_See code: [src/commands/agent/deactivate.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/deactivate.ts)_
634643

635644
## `sf agent generate agent-spec`
636645

@@ -737,7 +746,7 @@ EXAMPLES
737746
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
738747
```
739748

740-
_See code: [src/commands/agent/generate/agent-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/generate/agent-spec.ts)_
749+
_See code: [src/commands/agent/generate/agent-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/generate/agent-spec.ts)_
741750

742751
## `sf agent generate authoring-bundle`
743752

@@ -814,7 +823,7 @@ EXAMPLES
814823
other-package-dir/main/default --target-org my-dev-org
815824
```
816825

817-
_See code: [src/commands/agent/generate/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/generate/authoring-bundle.ts)_
826+
_See code: [src/commands/agent/generate/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/generate/authoring-bundle.ts)_
818827

819828
## `sf agent generate template`
820829

@@ -876,7 +885,7 @@ EXAMPLES
876885
my-package --source-org my-scratch-org
877886
```
878887

879-
_See code: [src/commands/agent/generate/template.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/generate/template.ts)_
888+
_See code: [src/commands/agent/generate/template.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/generate/template.ts)_
880889

881890
## `sf agent generate test-spec`
882891

@@ -941,7 +950,7 @@ EXAMPLES
941950
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
942951
```
943952

944-
_See code: [src/commands/agent/generate/test-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/generate/test-spec.ts)_
953+
_See code: [src/commands/agent/generate/test-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/generate/test-spec.ts)_
945954

946955
## `sf agent preview`
947956

@@ -1014,7 +1023,7 @@ EXAMPLES
10141023
$ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview
10151024
```
10161025

1017-
_See code: [src/commands/agent/preview.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/preview.ts)_
1026+
_See code: [src/commands/agent/preview.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/preview.ts)_
10181027

10191028
## `sf agent preview end`
10201029

@@ -1086,7 +1095,7 @@ EXAMPLES
10861095
$ sf agent preview end --all --target-org <target_org>
10871096
```
10881097

1089-
_See code: [src/commands/agent/preview/end.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/preview/end.ts)_
1098+
_See code: [src/commands/agent/preview/end.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/preview/end.ts)_
10901099

10911100
## `sf agent preview send`
10921101

@@ -1144,7 +1153,7 @@ EXAMPLES
11441153
$ sf agent preview send --utterance "what can you help me with?" --authoring-bundle My_Local_Agent
11451154
```
11461155

1147-
_See code: [src/commands/agent/preview/send.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/preview/send.ts)_
1156+
_See code: [src/commands/agent/preview/send.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/preview/send.ts)_
11481157

11491158
## `sf agent preview sessions`
11501159

@@ -1177,7 +1186,7 @@ EXAMPLES
11771186
$ sf agent preview sessions
11781187
```
11791188

1180-
_See code: [src/commands/agent/preview/sessions.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/preview/sessions.ts)_
1189+
_See code: [src/commands/agent/preview/sessions.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/preview/sessions.ts)_
11811190

11821191
## `sf agent preview start`
11831192

@@ -1242,7 +1251,7 @@ EXAMPLES
12421251
$ sf agent preview start --api-name My_Published_Agent
12431252
```
12441253

1245-
_See code: [src/commands/agent/preview/start.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/preview/start.ts)_
1254+
_See code: [src/commands/agent/preview/start.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/preview/start.ts)_
12461255

12471256
## `sf agent publish authoring-bundle`
12481257

@@ -1302,7 +1311,7 @@ EXAMPLES
13021311
$ sf agent publish authoring-bundle --api-name MyAuthoringbundle --concise
13031312
```
13041313

1305-
_See code: [src/commands/agent/publish/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/publish/authoring-bundle.ts)_
1314+
_See code: [src/commands/agent/publish/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/publish/authoring-bundle.ts)_
13061315

13071316
## `sf agent test create`
13081317

@@ -1374,7 +1383,7 @@ FLAG DESCRIPTIONS
13741383
metadata. 'testing-center' uses AiEvaluationDefinition metadata.
13751384
```
13761385

1377-
_See code: [src/commands/agent/test/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/test/create.ts)_
1386+
_See code: [src/commands/agent/test/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/test/create.ts)_
13781387

13791388
## `sf agent test list`
13801389

@@ -1409,7 +1418,7 @@ EXAMPLES
14091418
$ sf agent test list --target-org my-org
14101419
```
14111420

1412-
_See code: [src/commands/agent/test/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/test/list.ts)_
1421+
_See code: [src/commands/agent/test/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/test/list.ts)_
14131422

14141423
## `sf agent test results`
14151424

@@ -1485,7 +1494,7 @@ FLAG DESCRIPTIONS
14851494
expression when using custom evaluations.
14861495
```
14871496

1488-
_See code: [src/commands/agent/test/results.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/test/results.ts)_
1497+
_See code: [src/commands/agent/test/results.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/test/results.ts)_
14891498

14901499
## `sf agent test resume`
14911500

@@ -1569,7 +1578,7 @@ FLAG DESCRIPTIONS
15691578
expression when using custom evaluations.
15701579
```
15711580

1572-
_See code: [src/commands/agent/test/resume.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/test/resume.ts)_
1581+
_See code: [src/commands/agent/test/resume.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/test/resume.ts)_
15731582

15741583
## `sf agent test run`
15751584

@@ -1653,7 +1662,7 @@ FLAG DESCRIPTIONS
16531662
expression when using custom evaluations.
16541663
```
16551664

1656-
_See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/test/run.ts)_
1665+
_See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/test/run.ts)_
16571666

16581667
## `sf agent test run-eval`
16591668

@@ -1729,7 +1738,7 @@ EXAMPLES
17291738
$ echo '{"tests":[...]}' | sf agent test run-eval --spec --target-org my-org
17301739
```
17311740

1732-
_See code: [src/commands/agent/test/run-eval.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/test/run-eval.ts)_
1741+
_See code: [src/commands/agent/test/run-eval.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/test/run-eval.ts)_
17331742

17341743
## `sf agent trace delete`
17351744

@@ -1793,7 +1802,7 @@ EXAMPLES
17931802
$ sf agent trace delete --no-prompt
17941803
```
17951804

1796-
_See code: [src/commands/agent/trace/delete.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/trace/delete.ts)_
1805+
_See code: [src/commands/agent/trace/delete.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/trace/delete.ts)_
17971806

17981807
## `sf agent trace list`
17991808

@@ -1863,7 +1872,7 @@ FLAG DESCRIPTIONS
18631872
(2026-04-20T14:00:00.000Z). The "Recorded At" values shown in the table output are valid inputs.
18641873
```
18651874

1866-
_See code: [src/commands/agent/trace/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/trace/list.ts)_
1875+
_See code: [src/commands/agent/trace/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/trace/list.ts)_
18671876

18681877
## `sf agent trace read`
18691878

@@ -1951,7 +1960,7 @@ EXAMPLES
19511960
$ sf agent trace read --session-id <SESSION_ID> --json
19521961
```
19531962

1954-
_See code: [src/commands/agent/trace/read.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/trace/read.ts)_
1963+
_See code: [src/commands/agent/trace/read.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/trace/read.ts)_
19551964

19561965
## `sf agent validate authoring-bundle`
19571966

@@ -1998,6 +2007,6 @@ EXAMPLES
19982007
$ sf agent validate authoring-bundle --api-name MyAuthoringBundle --target-org my-dev-org
19992008
```
20002009

2001-
_See code: [src/commands/agent/validate/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/validate/authoring-bundle.ts)_
2010+
_See code: [src/commands/agent/validate/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/validate/authoring-bundle.ts)_
20022011

20032012
<!-- 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.42.0",
4+
"version": "1.42.1",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"enableO11y": true,

0 commit comments

Comments
 (0)