@salesforce/cli 2.138.6 → 2.139.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -25,7 +25,7 @@ $ npm install -g @salesforce/cli
25
25
  $ sf COMMAND
26
26
  running command...
27
27
  $ sf (--version|-v)
28
- @salesforce/cli/2.138.6 linux-x64 node-v22.22.3
28
+ @salesforce/cli/2.139.1 linux-x64 node-v22.22.3
29
29
  $ sf --help [COMMAND]
30
30
  USAGE
31
31
  $ sf COMMAND
@@ -294,7 +294,7 @@ ERROR CODES
294
294
  ActivationFailed (4) Failed to activate the agent due to API or network errors.
295
295
  ```
296
296
 
297
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/activate.ts)_
297
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/activate.ts)_
298
298
 
299
299
  ## `sf agent adl create`
300
300
 
@@ -352,7 +352,7 @@ EXAMPLES
352
352
  --source-type retriever --retriever-id 0ppXX0000000001
353
353
  ```
354
354
 
355
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/adl/create.ts)_
355
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/adl/create.ts)_
356
356
 
357
357
  ## `sf agent adl delete`
358
358
 
@@ -383,7 +383,7 @@ EXAMPLES
383
383
  $ sf agent adl delete --library-id 1JDSG000007IbWX4A0 --target-org myOrg
384
384
  ```
385
385
 
386
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/adl/delete.ts)_
386
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/adl/delete.ts)_
387
387
 
388
388
  ## `sf agent adl file add`
389
389
 
@@ -391,10 +391,10 @@ Add files to an existing Agentforce Data Library.
391
391
 
392
392
  ```
393
393
  USAGE
394
- $ sf agent adl file add -o <value> -i <value> -f <value> [--json] [--flags-dir <value>] [--api-version <value>]
394
+ $ sf agent adl file add -o <value> -i <value> -f <value>... [--json] [--flags-dir <value>] [--api-version <value>]
395
395
 
396
396
  FLAGS
397
- -f, --file=<value> (required) Path to the file to add to the library.
397
+ -f, --path=<value>... (required) Path to file(s) to add. Specify multiple times for batch upload.
398
398
  -i, --library-id=<value> (required) Agentforce Data Library ID (18-char Salesforce ID with prefix 1JD).
399
399
  -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
400
400
  configuration variable is already set.
@@ -415,10 +415,14 @@ DESCRIPTION
415
415
  EXAMPLES
416
416
  Add a file to an existing library:
417
417
 
418
- $ sf agent adl file add --library-id 1JDSG000007IbWX4A0 --file ./docs/new-guide.pdf --target-org myOrg
418
+ $ sf agent adl file add -i 1JDSG000007IbWX4A0 --path ./docs/new-guide.pdf --target-org myOrg
419
+
420
+ Add multiple files:
421
+
422
+ $ sf agent adl file add -i 1JDSG000007IbWX4A0 --path ./docs/guide.pdf --path ./docs/faq.txt --target-org myOrg
419
423
  ```
420
424
 
421
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/adl/file/add.ts)_
425
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/adl/file/add.ts)_
422
426
 
423
427
  ## `sf agent adl file delete`
424
428
 
@@ -451,7 +455,7 @@ EXAMPLES
451
455
  $ sf agent adl file delete --library-id 1JDSG000007IbWX4A0 --file-id a1B2C3D4E5F6G7H8I9 --target-org myOrg
452
456
  ```
453
457
 
454
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/adl/file/delete.ts)_
458
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/adl/file/delete.ts)_
455
459
 
456
460
  ## `sf agent adl file list`
457
461
 
@@ -486,7 +490,7 @@ EXAMPLES
486
490
  $ sf agent adl file list --library-id 1JDSG000007IbWX4A0 --target-org myOrg --json
487
491
  ```
488
492
 
489
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/adl/file/list.ts)_
493
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/adl/file/list.ts)_
490
494
 
491
495
  ## `sf agent adl get`
492
496
 
@@ -517,7 +521,7 @@ EXAMPLES
517
521
  $ sf agent adl get --library-id 1JDSG000007IbWX4A0 --target-org myOrg
518
522
  ```
519
523
 
520
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/adl/get.ts)_
524
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/adl/get.ts)_
521
525
 
522
526
  ## `sf agent adl list`
523
527
 
@@ -525,12 +529,15 @@ List Agentforce Data Libraries in an org.
525
529
 
526
530
  ```
527
531
  USAGE
528
- $ sf agent adl list -o <value> [--json] [--flags-dir <value>] [--api-version <value>]
532
+ $ sf agent adl list -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [--source-type
533
+ sfdrive|knowledge|retriever]
529
534
 
530
535
  FLAGS
531
- -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
532
- configuration variable is already set.
533
- --api-version=<value> Override the api version used for api requests made by this command
536
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
537
+ configuration variable is already set.
538
+ --api-version=<value> Override the api version used for api requests made by this command
539
+ --source-type=<option> Filter by source type: sfdrive, knowledge, or retriever.
540
+ <options: sfdrive|knowledge|retriever>
534
541
 
535
542
  GLOBAL FLAGS
536
543
  --flags-dir=<value> Import flag values from a directory.
@@ -551,7 +558,7 @@ EXAMPLES
551
558
  $ sf agent adl list --target-org myOrg --json
552
559
  ```
553
560
 
554
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/adl/list.ts)_
561
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/adl/list.ts)_
555
562
 
556
563
  ## `sf agent adl status`
557
564
 
@@ -583,7 +590,7 @@ EXAMPLES
583
590
  $ sf agent adl status --library-id 1JDSG000007IbWX4A0 --target-org myOrg
584
591
  ```
585
592
 
586
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/adl/status.ts)_
593
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/adl/status.ts)_
587
594
 
588
595
  ## `sf agent adl update`
589
596
 
@@ -592,7 +599,7 @@ Update an Agentforce Data Library.
592
599
  ```
593
600
  USAGE
594
601
  $ sf agent adl update -o <value> -i <value> [--json] [--flags-dir <value>] [--api-version <value>] [-n <value>]
595
- [--description <value>] [--content-fields <value>] [--restrict-to-public-articles]
602
+ [--description <value>] [--content-fields <value>] [--restrict-to-public-articles] [--retriever-id <value>]
596
603
 
597
604
  FLAGS
598
605
  -i, --library-id=<value> (required) Agentforce Data Library ID (18-char Salesforce ID with prefix 1JD).
@@ -605,6 +612,8 @@ FLAGS
605
612
  --description=<value> New description for the data library (max 255 characters).
606
613
  --[no-]restrict-to-public-articles Restrict to public Knowledge articles only (KNOWLEDGE libraries, triggers
607
614
  re-indexing).
615
+ --retriever-id=<value> Swap the retriever for a RETRIEVER library (must be an active Custom Retriever
616
+ ID).
608
617
 
609
618
  GLOBAL FLAGS
610
619
  --flags-dir=<value> Import flag values from a directory.
@@ -633,7 +642,7 @@ EXAMPLES
633
642
  $ sf agent adl update --library-id 1JDSG000007IbWX4A0 --restrict-to-public-articles --target-org myOrg
634
643
  ```
635
644
 
636
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/adl/update.ts)_
645
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/adl/update.ts)_
637
646
 
638
647
  ## `sf agent adl upload`
639
648
 
@@ -641,11 +650,11 @@ Upload a file to an SFDRIVE Agentforce Data Library.
641
650
 
642
651
  ```
643
652
  USAGE
644
- $ sf agent adl upload -o <value> -i <value> -f <value> [--json] [--flags-dir <value>] [--api-version <value>] [-w
653
+ $ sf agent adl upload -o <value> -i <value> -f <value>... [--json] [--flags-dir <value>] [--api-version <value>] [-w
645
654
  <value>]
646
655
 
647
656
  FLAGS
648
- -f, --file=<value> (required) Path to the file to upload.
657
+ -f, --file=<value>... (required) Path to the file to upload.
649
658
  -i, --library-id=<value> (required) Agentforce Data Library ID (18-char Salesforce ID with prefix 1JD).
650
659
  -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
651
660
  configuration variable is already set.
@@ -676,7 +685,7 @@ EXAMPLES
676
685
  $ sf agent adl upload --library-id 1JDSG000007IbWX4A0 --file ./docs/guide.pdf --target-org myOrg
677
686
  ```
678
687
 
679
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/adl/upload.ts)_
688
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/adl/upload.ts)_
680
689
 
681
690
  ## `sf agent create`
682
691
 
@@ -743,7 +752,7 @@ EXAMPLES
743
752
  $ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
744
753
  ```
745
754
 
746
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/create.ts)_
755
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/create.ts)_
747
756
 
748
757
  ## `sf agent deactivate`
749
758
 
@@ -792,7 +801,7 @@ ERROR CODES
792
801
  DeactivationFailed (4) Failed to deactivate the agent due to API or network errors.
793
802
  ```
794
803
 
795
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/deactivate.ts)_
804
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/deactivate.ts)_
796
805
 
797
806
  ## `sf agent generate agent-spec`
798
807
 
@@ -899,7 +908,7 @@ EXAMPLES
899
908
  $ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
900
909
  ```
901
910
 
902
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/generate/agent-spec.ts)_
911
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/generate/agent-spec.ts)_
903
912
 
904
913
  ## `sf agent generate authoring-bundle`
905
914
 
@@ -976,7 +985,7 @@ EXAMPLES
976
985
  other-package-dir/main/default --target-org my-dev-org
977
986
  ```
978
987
 
979
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/generate/authoring-bundle.ts)_
988
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/generate/authoring-bundle.ts)_
980
989
 
981
990
  ## `sf agent generate template`
982
991
 
@@ -1038,7 +1047,7 @@ EXAMPLES
1038
1047
  my-package --source-org my-scratch-org
1039
1048
  ```
1040
1049
 
1041
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/generate/template.ts)_
1050
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/generate/template.ts)_
1042
1051
 
1043
1052
  ## `sf agent generate test-spec`
1044
1053
 
@@ -1103,7 +1112,7 @@ EXAMPLES
1103
1112
  force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
1104
1113
  ```
1105
1114
 
1106
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/generate/test-spec.ts)_
1115
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/generate/test-spec.ts)_
1107
1116
 
1108
1117
  ## `sf agent preview`
1109
1118
 
@@ -1176,7 +1185,7 @@ EXAMPLES
1176
1185
  $ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview
1177
1186
  ```
1178
1187
 
1179
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/preview.ts)_
1188
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/preview.ts)_
1180
1189
 
1181
1190
  ## `sf agent preview end`
1182
1191
 
@@ -1260,7 +1269,7 @@ ERROR CODES
1260
1269
  SessionAmbiguous (5) Multiple preview sessions found; specify --session-id to choose one.
1261
1270
  ```
1262
1271
 
1263
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/preview/end.ts)_
1272
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/preview/end.ts)_
1264
1273
 
1265
1274
  ## `sf agent preview send`
1266
1275
 
@@ -1327,7 +1336,7 @@ ERROR CODES
1327
1336
  SessionAmbiguous (5) Multiple preview sessions found; specify --session-id to choose one.
1328
1337
  ```
1329
1338
 
1330
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/preview/send.ts)_
1339
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/preview/send.ts)_
1331
1340
 
1332
1341
  ## `sf agent preview sessions`
1333
1342
 
@@ -1363,7 +1372,7 @@ ERROR CODES
1363
1372
  Succeeded (0) Sessions listed successfully (or empty list if no active sessions).
1364
1373
  ```
1365
1374
 
1366
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/preview/sessions.ts)_
1375
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/preview/sessions.ts)_
1367
1376
 
1368
1377
  ## `sf agent preview start`
1369
1378
 
@@ -1439,7 +1448,7 @@ ERROR CODES
1439
1448
  PreviewStartFailed (4) Preview session failed to start due to API or network errors.
1440
1449
  ```
1441
1450
 
1442
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/preview/start.ts)_
1451
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/preview/start.ts)_
1443
1452
 
1444
1453
  ## `sf agent publish authoring-bundle`
1445
1454
 
@@ -1503,7 +1512,7 @@ ERROR CODES
1503
1512
  Failed (1) Compilation errors found in the Agent Script file.
1504
1513
  ```
1505
1514
 
1506
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/publish/authoring-bundle.ts)_
1515
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/publish/authoring-bundle.ts)_
1507
1516
 
1508
1517
  ## `sf agent test create`
1509
1518
 
@@ -1584,7 +1593,7 @@ ERROR CODES
1584
1593
  DeploymentFailed (4) Deployment failed due to API or network errors.
1585
1594
  ```
1586
1595
 
1587
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/test/create.ts)_
1596
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/test/create.ts)_
1588
1597
 
1589
1598
  ## `sf agent test list`
1590
1599
 
@@ -1626,7 +1635,7 @@ ERROR CODES
1626
1635
  Failed (4) Failed to retrieve agent tests due to API or network errors.
1627
1636
  ```
1628
1637
 
1629
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/test/list.ts)_
1638
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/test/list.ts)_
1630
1639
 
1631
1640
  ## `sf agent test results`
1632
1641
 
@@ -1710,7 +1719,7 @@ ERROR CODES
1710
1719
  Failed (4) Failed to retrieve results due to API or network errors.
1711
1720
  ```
1712
1721
 
1713
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/test/results.ts)_
1722
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/test/results.ts)_
1714
1723
 
1715
1724
  ## `sf agent test resume`
1716
1725
 
@@ -1803,7 +1812,7 @@ ERROR CODES
1803
1812
  OperationFailed (4) Failed to poll test due to API or network errors.
1804
1813
  ```
1805
1814
 
1806
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/test/resume.ts)_
1815
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/test/resume.ts)_
1807
1816
 
1808
1817
  ## `sf agent test run`
1809
1818
 
@@ -1896,7 +1905,7 @@ ERROR CODES
1896
1905
  OperationFailed (4) Failed to start or poll test due to API or network errors.
1897
1906
  ```
1898
1907
 
1899
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/test/run.ts)_
1908
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/test/run.ts)_
1900
1909
 
1901
1910
  ## `sf agent test run-eval`
1902
1911
 
@@ -1981,7 +1990,7 @@ ERROR CODES
1981
1990
  OperationFailed (4) Failed to execute tests due to API or network errors.
1982
1991
  ```
1983
1992
 
1984
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/test/run-eval.ts)_
1993
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/test/run-eval.ts)_
1985
1994
 
1986
1995
  ## `sf agent trace delete`
1987
1996
 
@@ -2048,7 +2057,7 @@ ERROR CODES
2048
2057
  Succeeded (0) Traces deleted successfully (or no traces matched).
2049
2058
  ```
2050
2059
 
2051
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/trace/delete.ts)_
2060
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/trace/delete.ts)_
2052
2061
 
2053
2062
  ## `sf agent trace list`
2054
2063
 
@@ -2121,7 +2130,7 @@ ERROR CODES
2121
2130
  Succeeded (0) Trace files listed successfully (or empty list if none found).
2122
2131
  ```
2123
2132
 
2124
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/trace/list.ts)_
2133
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/trace/list.ts)_
2125
2134
 
2126
2135
  ## `sf agent trace read`
2127
2136
 
@@ -2209,7 +2218,7 @@ EXAMPLES
2209
2218
  $ sf agent trace read --session-id <SESSION_ID> --json
2210
2219
  ```
2211
2220
 
2212
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/trace/read.ts)_
2221
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/trace/read.ts)_
2213
2222
 
2214
2223
  ## `sf agent validate authoring-bundle`
2215
2224
 
@@ -2266,7 +2275,7 @@ ERROR CODES
2266
2275
  ServerError (3) Validation/compilation API returned HTTP 500. A server error occurred during compilation.
2267
2276
  ```
2268
2277
 
2269
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.0/src/commands/agent/validate/authoring-bundle.ts)_
2278
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.42.1/src/commands/agent/validate/authoring-bundle.ts)_
2270
2279
 
2271
2280
  ## `sf alias list`
2272
2281
 
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
- "version": "2.138.6",
3
+ "version": "2.139.1",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/cli",
9
- "version": "2.138.6",
9
+ "version": "2.139.1",
10
10
  "hasInstallScript": true,
11
11
  "license": "Apache-2.0",
12
12
  "dependencies": {
@@ -24,7 +24,7 @@
24
24
  "@oclif/plugin-which": "3.2.55",
25
25
  "@salesforce/core": "^8.28.0",
26
26
  "@salesforce/kit": "^3.1.6",
27
- "@salesforce/plugin-agent": "1.42.0",
27
+ "@salesforce/plugin-agent": "1.42.1",
28
28
  "@salesforce/plugin-apex": "3.9.32",
29
29
  "@salesforce/plugin-api": "1.3.37",
30
30
  "@salesforce/plugin-auth": "4.4.1",
@@ -4485,9 +4485,9 @@
4485
4485
  "license": "BSD-3-Clause"
4486
4486
  },
4487
4487
  "node_modules/@salesforce/agents": {
4488
- "version": "1.8.0",
4489
- "resolved": "https://registry.npmjs.org/@salesforce/agents/-/agents-1.8.0.tgz",
4490
- "integrity": "sha512-D65MUnEnAsuFcXwBW48HsFdFsdqJx+VWuzsyKRkc7d0XCCwFbkkiyydRoqi1tCHLx+4rqsPMnImezahyW5inIA==",
4488
+ "version": "1.8.1",
4489
+ "resolved": "https://registry.npmjs.org/@salesforce/agents/-/agents-1.8.1.tgz",
4490
+ "integrity": "sha512-DyybLIzO/eo1xLxus02e9W1e/xY6Jwet531qztaUfMF/YCW+Mbonn6WJFeN2orWJcSop5TOz1C5tkDOrNAQsDg==",
4491
4491
  "license": "Apache-2.0",
4492
4492
  "dependencies": {
4493
4493
  "@salesforce/core": "^8.31.0",
@@ -4942,16 +4942,16 @@
4942
4942
  }
4943
4943
  },
4944
4944
  "node_modules/@salesforce/plugin-agent": {
4945
- "version": "1.42.0",
4946
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.42.0.tgz",
4947
- "integrity": "sha512-zutws59EWIGOff/MrOU32PWR1/JnIciIc+GBai24dNNbk6qU8rzjcL09Jj/Kt3VEB1KdiPHw772KPGec5QpPIg==",
4945
+ "version": "1.42.1",
4946
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.42.1.tgz",
4947
+ "integrity": "sha512-1kDzoKO+UBdWbhEIVNVcCvV3IfwQwZji9wDvAHg/VQQRxV9eHJmqXmx2KG+pLdLPZMkustMpTEjnwKLYTX0b2g==",
4948
4948
  "license": "Apache-2.0",
4949
4949
  "dependencies": {
4950
4950
  "@inquirer/core": "^10.3.2",
4951
4951
  "@inquirer/prompts": "^7.10.1",
4952
4952
  "@oclif/core": "^4",
4953
4953
  "@oclif/multi-stage-output": "^0.8.36",
4954
- "@salesforce/agents": "^1.8.0",
4954
+ "@salesforce/agents": "^1.8.1",
4955
4955
  "@salesforce/core": "^8.28.3",
4956
4956
  "@salesforce/kit": "^3.2.6",
4957
4957
  "@salesforce/sf-plugins-core": "^12.2.6",
package/oclif.lock CHANGED
@@ -1985,10 +1985,10 @@
1985
1985
  resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.1.tgz"
1986
1986
  integrity sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==
1987
1987
 
1988
- "@salesforce/agents@^1.8.0":
1989
- version "1.8.0"
1990
- resolved "https://registry.npmjs.org/@salesforce/agents/-/agents-1.8.0.tgz"
1991
- integrity sha512-D65MUnEnAsuFcXwBW48HsFdFsdqJx+VWuzsyKRkc7d0XCCwFbkkiyydRoqi1tCHLx+4rqsPMnImezahyW5inIA==
1988
+ "@salesforce/agents@^1.8.1":
1989
+ version "1.8.1"
1990
+ resolved "https://registry.npmjs.org/@salesforce/agents/-/agents-1.8.1.tgz"
1991
+ integrity sha512-DyybLIzO/eo1xLxus02e9W1e/xY6Jwet531qztaUfMF/YCW+Mbonn6WJFeN2orWJcSop5TOz1C5tkDOrNAQsDg==
1992
1992
  dependencies:
1993
1993
  "@salesforce/core" "^8.31.0"
1994
1994
  "@salesforce/kit" "^3.2.6"
@@ -2126,16 +2126,16 @@
2126
2126
  jszip "^3.10.1"
2127
2127
  object-treeify "^2"
2128
2128
 
2129
- "@salesforce/plugin-agent@1.42.0":
2130
- version "1.42.0"
2131
- resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.42.0.tgz"
2132
- integrity sha512-zutws59EWIGOff/MrOU32PWR1/JnIciIc+GBai24dNNbk6qU8rzjcL09Jj/Kt3VEB1KdiPHw772KPGec5QpPIg==
2129
+ "@salesforce/plugin-agent@1.42.1":
2130
+ version "1.42.1"
2131
+ resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.42.1.tgz"
2132
+ integrity sha512-1kDzoKO+UBdWbhEIVNVcCvV3IfwQwZji9wDvAHg/VQQRxV9eHJmqXmx2KG+pLdLPZMkustMpTEjnwKLYTX0b2g==
2133
2133
  dependencies:
2134
2134
  "@inquirer/core" "^10.3.2"
2135
2135
  "@inquirer/prompts" "^7.10.1"
2136
2136
  "@oclif/core" "^4"
2137
2137
  "@oclif/multi-stage-output" "^0.8.36"
2138
- "@salesforce/agents" "^1.8.0"
2138
+ "@salesforce/agents" "^1.8.1"
2139
2139
  "@salesforce/core" "^8.28.3"
2140
2140
  "@salesforce/kit" "^3.2.6"
2141
2141
  "@salesforce/sf-plugins-core" "^12.2.6"
@@ -4554,5 +4554,5 @@
4554
4554
  "requiresProject": true
4555
4555
  }
4556
4556
  },
4557
- "version": "2.138.6"
4557
+ "version": "2.139.1"
4558
4558
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
3
  "description": "The Salesforce CLI",
4
- "version": "2.138.6",
4
+ "version": "2.139.1",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "sf": "./bin/run.js",
@@ -159,7 +159,7 @@
159
159
  "@oclif/plugin-which": "3.2.55",
160
160
  "@salesforce/core": "^8.28.0",
161
161
  "@salesforce/kit": "^3.1.6",
162
- "@salesforce/plugin-agent": "1.42.0",
162
+ "@salesforce/plugin-agent": "1.42.1",
163
163
  "@salesforce/plugin-apex": "3.9.32",
164
164
  "@salesforce/plugin-api": "1.3.37",
165
165
  "@salesforce/plugin-auth": "4.4.1",