@salesforce/cli 2.99.6 → 2.100.0

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.99.6 linux-x64 node-v22.17.1
28
+ @salesforce/cli/2.100.0 linux-x64 node-v22.17.1
29
29
  $ sf --help [COMMAND]
30
30
  USAGE
31
31
  $ sf COMMAND
@@ -262,7 +262,7 @@ EXAMPLES
262
262
  $ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
263
263
  ```
264
264
 
265
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.3/src/commands/agent/create.ts)_
265
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.5/src/commands/agent/create.ts)_
266
266
 
267
267
  ## `sf agent generate agent-spec`
268
268
 
@@ -367,7 +367,7 @@ EXAMPLES
367
367
  $ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
368
368
  ```
369
369
 
370
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.3/src/commands/agent/generate/agent-spec.ts)_
370
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.5/src/commands/agent/generate/agent-spec.ts)_
371
371
 
372
372
  ## `sf agent generate template`
373
373
 
@@ -415,7 +415,7 @@ EXAMPLES
415
415
  force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
416
416
  ```
417
417
 
418
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.3/src/commands/agent/generate/template.ts)_
418
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.5/src/commands/agent/generate/template.ts)_
419
419
 
420
420
  ## `sf agent generate test-spec`
421
421
 
@@ -473,7 +473,7 @@ EXAMPLES
473
473
  force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
474
474
  ```
475
475
 
476
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.3/src/commands/agent/generate/test-spec.ts)_
476
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.5/src/commands/agent/generate/test-spec.ts)_
477
477
 
478
478
  ## `sf agent preview`
479
479
 
@@ -518,59 +518,25 @@ DESCRIPTION
518
518
 
519
519
  Find the agent's API name in its main details page in your org's Agent page in Setup.
520
520
 
521
- Before you use this command, you must complete these steps:
522
-
523
- 1. Using your org's Setup UI, create a connected app in your org as described in the "Create a Connected App" section
524
- here: https://developer.salesforce.com/docs/einstein/genai/guide/agent-api-get-started.html#create-a-connected-app. Do
525
- these additional steps:
526
-
527
- a. When specifying the connected app's Callback URL, add this second callback URL on a new line:
528
- "http://localhost:1717/OauthRedirect".
529
-
530
- b. When adding the scopes to the connected app, add "Manage user data via Web browsers (web)".
531
-
532
- 2. Add the connected app to your agent as described in the "Add Connected App to Agent" section here:
533
- https://developer.salesforce.com/docs/einstein/genai/guide/agent-api-get-started.html#add-connected-app-to-agent.
534
-
535
- 3. Copy the consumer key from your connected app as described in the "Obtain Credentials" section here:
536
- https://developer.salesforce.com/docs/einstein/genai/guide/agent-api-get-started.html#obtain-credentials.
537
-
538
- 4. If you haven't already, run the "org login web" CLI command as usual to authorize the development org that contains
539
- the agent you want to preview.
540
-
541
- 5. Re-run the "org web login" command to link the new connected app to your already-authenticated user. Use the
542
- --client-app flag to give the link a name; you can specify any string, but make a note of it because you'll need it
543
- later. Use --username to specify the username that you used to log into the org in the previous step. Use --client-id
544
- to specify the consumer key you previously copied. Finally, use --scopes as indicated to specify the required API
545
- scopes. Here's an example:
546
-
547
- sf org login web --client-app agent-app --username <username> --client-id <consumer-key> --scopes "sfap_api
548
- chatbot_api refresh_token api web"
549
-
550
- IMPORTANT: You must use the "--client-id <CONNECTED-APP-CONSUMER-KEY>" flag of "org login web", where
551
- CONNECTED-APP-CONSUMER-KEY is the consumer key you previously copied. This step ensures that the "org login web"
552
- command uses your custom connected app, and not the default CLI connected app.
553
-
554
- 6. Press Enter to skip sharing the client secret, then log in with your org username as usual and click Accept.
555
-
556
- 7. Run this command ("agent preview") to interact with an agent by using the --target-org flag to specify the org
557
- username or alias as usual and --client-app to specify the linked connected app ("agent-app" in the previous example).
558
- Use the "org display" command to get the list of client apps associated with an org.
521
+ IMPORTANT: Before you use this command, you must complete a number of configuration steps in your org and your DX
522
+ project. The examples in this help assume you've completed the steps. See "Preview an Agent" in the "Agentforce
523
+ Developer Guide" for complete documentation:
524
+ https://developer.salesforce.com/docs/einstein/genai/guide/agent-dx-preview.html.
559
525
 
560
526
  EXAMPLES
561
527
  Interact with an agent with API name "Resort_Manager" in the org with alias "my-org" and the linked "agent-app"
562
528
  connected app:
563
529
 
564
- $ sf agent preview --api-name "Resort_Manager" --target-org my-org --client-app agent-app
530
+ $ sf agent preview --api-name Resort_Manager --target-org my-org --client-app agent-app
565
531
 
566
532
  Same as the preceding example, but this time save the conversation transcripts to the "./transcripts/my-preview"
567
533
  directory rather than the default "./temp/agent-preview":
568
534
 
569
- $ sf agent preview --api-name "Resort_Manager" --target-org my-org --client-app agent-app --output-dir \
570
- "transcripts/my-preview"
535
+ $ sf agent preview --api-name Resort_Manager --target-org my-org --client-app agent-app --output-dir \
536
+ transcripts/my-preview
571
537
  ```
572
538
 
573
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.3/src/commands/agent/preview.ts)_
539
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.5/src/commands/agent/preview.ts)_
574
540
 
575
541
  ## `sf agent test create`
576
542
 
@@ -625,7 +591,7 @@ EXAMPLES
625
591
  $ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
626
592
  ```
627
593
 
628
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.3/src/commands/agent/test/create.ts)_
594
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.5/src/commands/agent/test/create.ts)_
629
595
 
630
596
  ## `sf agent test list`
631
597
 
@@ -660,7 +626,7 @@ EXAMPLES
660
626
  $ sf agent test list --target-org my-org
661
627
  ```
662
628
 
663
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.3/src/commands/agent/test/list.ts)_
629
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.5/src/commands/agent/test/list.ts)_
664
630
 
665
631
  ## `sf agent test results`
666
632
 
@@ -716,7 +682,7 @@ FLAG DESCRIPTIONS
716
682
  test results aren't written.
717
683
  ```
718
684
 
719
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.3/src/commands/agent/test/results.ts)_
685
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.5/src/commands/agent/test/results.ts)_
720
686
 
721
687
  ## `sf agent test resume`
722
688
 
@@ -779,7 +745,7 @@ FLAG DESCRIPTIONS
779
745
  test results aren't written.
780
746
  ```
781
747
 
782
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.3/src/commands/agent/test/resume.ts)_
748
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.5/src/commands/agent/test/resume.ts)_
783
749
 
784
750
  ## `sf agent test run`
785
751
 
@@ -843,7 +809,7 @@ FLAG DESCRIPTIONS
843
809
  test results aren't written.
844
810
  ```
845
811
 
846
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.3/src/commands/agent/test/run.ts)_
812
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.5/src/commands/agent/test/run.ts)_
847
813
 
848
814
  ## `sf alias list`
849
815
 
@@ -7388,7 +7354,7 @@ FLAG DESCRIPTIONS
7388
7354
  If you specify this flag, don’t specify --metadata or --source-dir.
7389
7355
  ```
7390
7356
 
7391
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33/src/commands/project/convert/mdapi.ts)_
7357
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34/src/commands/project/convert/mdapi.ts)_
7392
7358
 
7393
7359
  ## `sf project convert source`
7394
7360
 
@@ -7461,7 +7427,7 @@ FLAG DESCRIPTIONS
7461
7427
  Override the api version used for api requests made by this command
7462
7428
  ```
7463
7429
 
7464
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33/src/commands/project/convert/source.ts)_
7430
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34/src/commands/project/convert/source.ts)_
7465
7431
 
7466
7432
  ## `sf project convert source-behavior`
7467
7433
 
@@ -7520,7 +7486,7 @@ EXAMPLES
7520
7486
  $ sf project convert source-behavior --behavior decomposePermissionSetBeta --dry-run --preserve-temp-dir
7521
7487
  ```
7522
7488
 
7523
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33/src/commands/project/convert/source-behavior.ts)_
7489
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34/src/commands/project/convert/source-behavior.ts)_
7524
7490
 
7525
7491
  ## `sf project delete source`
7526
7492
 
@@ -7660,7 +7626,7 @@ FLAG DESCRIPTIONS
7660
7626
  - Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
7661
7627
  ```
7662
7628
 
7663
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33/src/commands/project/delete/source.ts)_
7629
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34/src/commands/project/delete/source.ts)_
7664
7630
 
7665
7631
  ## `sf project delete tracking`
7666
7632
 
@@ -7697,7 +7663,7 @@ EXAMPLES
7697
7663
  $ sf project delete tracking --target-org my-scratch
7698
7664
  ```
7699
7665
 
7700
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33/src/commands/project/delete/tracking.ts)_
7666
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34/src/commands/project/delete/tracking.ts)_
7701
7667
 
7702
7668
  ## `sf project deploy cancel`
7703
7669
 
@@ -7769,7 +7735,7 @@ FLAG DESCRIPTIONS
7769
7735
  project deploy report".
7770
7736
  ```
7771
7737
 
7772
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33/src/commands/project/deploy/cancel.ts)_
7738
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34/src/commands/project/deploy/cancel.ts)_
7773
7739
 
7774
7740
  ## `sf project deploy preview`
7775
7741
 
@@ -7852,7 +7818,7 @@ FLAG DESCRIPTIONS
7852
7818
  All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
7853
7819
  ```
7854
7820
 
7855
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33/src/commands/project/deploy/preview.ts)_
7821
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34/src/commands/project/deploy/preview.ts)_
7856
7822
 
7857
7823
  ## `sf project deploy quick`
7858
7824
 
@@ -7945,7 +7911,7 @@ ERROR CODES
7945
7911
  Canceling (69) The deploy is being canceled.
7946
7912
  ```
7947
7913
 
7948
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33/src/commands/project/deploy/quick.ts)_
7914
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34/src/commands/project/deploy/quick.ts)_
7949
7915
 
7950
7916
  ## `sf project deploy report`
7951
7917
 
@@ -8037,7 +8003,7 @@ FLAG DESCRIPTIONS
8037
8003
  --coverage-formatters lcov --coverage-formatters clover
8038
8004
  ```
8039
8005
 
8040
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33/src/commands/project/deploy/report.ts)_
8006
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34/src/commands/project/deploy/report.ts)_
8041
8007
 
8042
8008
  ## `sf project deploy resume`
8043
8009
 
@@ -8134,7 +8100,7 @@ ERROR CODES
8134
8100
  Canceling (69) The deploy is being canceled.
8135
8101
  ```
8136
8102
 
8137
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33/src/commands/project/deploy/resume.ts)_
8103
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34/src/commands/project/deploy/resume.ts)_
8138
8104
 
8139
8105
  ## `sf project deploy start`
8140
8106
 
@@ -8387,7 +8353,7 @@ ERROR CODES
8387
8353
  Canceling (69) The deploy is being canceled.
8388
8354
  ```
8389
8355
 
8390
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33/src/commands/project/deploy/start.ts)_
8356
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34/src/commands/project/deploy/start.ts)_
8391
8357
 
8392
8358
  ## `sf project deploy validate`
8393
8359
 
@@ -8577,7 +8543,7 @@ ERROR CODES
8577
8543
  Canceling (69) The deploy is being canceled.
8578
8544
  ```
8579
8545
 
8580
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33/src/commands/project/deploy/validate.ts)_
8546
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34/src/commands/project/deploy/validate.ts)_
8581
8547
 
8582
8548
  ## `sf project generate`
8583
8549
 
@@ -8778,7 +8744,7 @@ EXAMPLES
8778
8744
  $ sf project generate manifest --from-org test@myorg.com --excluded-metadata StandardValueSet
8779
8745
  ```
8780
8746
 
8781
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33/src/commands/project/generate/manifest.ts)_
8747
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34/src/commands/project/generate/manifest.ts)_
8782
8748
 
8783
8749
  ## `sf project list ignored`
8784
8750
 
@@ -8820,7 +8786,7 @@ EXAMPLES
8820
8786
  $ sf project list ignored --source-dir package.xml
8821
8787
  ```
8822
8788
 
8823
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33/src/commands/project/list/ignored.ts)_
8789
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34/src/commands/project/list/ignored.ts)_
8824
8790
 
8825
8791
  ## `sf project reset tracking`
8826
8792
 
@@ -8869,7 +8835,7 @@ EXAMPLES
8869
8835
  $ sf project reset tracking --revision 30
8870
8836
  ```
8871
8837
 
8872
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33/src/commands/project/reset/tracking.ts)_
8838
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34/src/commands/project/reset/tracking.ts)_
8873
8839
 
8874
8840
  ## `sf project retrieve preview`
8875
8841
 
@@ -8923,7 +8889,7 @@ FLAG DESCRIPTIONS
8923
8889
  production orgs.
8924
8890
  ```
8925
8891
 
8926
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33/src/commands/project/retrieve/preview.ts)_
8892
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34/src/commands/project/retrieve/preview.ts)_
8927
8893
 
8928
8894
  ## `sf project retrieve start`
8929
8895
 
@@ -9104,7 +9070,7 @@ ENVIRONMENT VARIABLES
9104
9070
  SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
9105
9071
  ```
9106
9072
 
9107
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33/src/commands/project/retrieve/start.ts)_
9073
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34/src/commands/project/retrieve/start.ts)_
9108
9074
 
9109
9075
  ## `sf schema generate field`
9110
9076
 
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
- "version": "2.99.6",
3
+ "version": "2.100.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/cli",
9
- "version": "2.99.6",
9
+ "version": "2.100.0",
10
10
  "hasInstallScript": true,
11
11
  "license": "Apache-2.0",
12
12
  "dependencies": {
13
13
  "@inquirer/select": "^2.3.5",
14
- "@oclif/core": "4.5.1",
14
+ "@oclif/core": "4.5.2",
15
15
  "@oclif/plugin-autocomplete": "3.2.33",
16
16
  "@oclif/plugin-commands": "4.1.29",
17
17
  "@oclif/plugin-help": "6.2.31",
@@ -24,12 +24,12 @@
24
24
  "@oclif/plugin-which": "3.2.39",
25
25
  "@salesforce/core": "^8.9.1",
26
26
  "@salesforce/kit": "^3.1.6",
27
- "@salesforce/plugin-agent": "1.23.3",
27
+ "@salesforce/plugin-agent": "1.23.5",
28
28
  "@salesforce/plugin-apex": "3.6.19",
29
29
  "@salesforce/plugin-api": "1.3.3",
30
30
  "@salesforce/plugin-auth": "3.7.11",
31
31
  "@salesforce/plugin-data": "4.0.48",
32
- "@salesforce/plugin-deploy-retrieve": "3.22.33",
32
+ "@salesforce/plugin-deploy-retrieve": "3.22.34",
33
33
  "@salesforce/plugin-info": "3.4.74",
34
34
  "@salesforce/plugin-limits": "3.3.60",
35
35
  "@salesforce/plugin-marketplace": "1.3.8",
@@ -3441,9 +3441,9 @@
3441
3441
  }
3442
3442
  },
3443
3443
  "node_modules/@oclif/core": {
3444
- "version": "4.5.1",
3445
- "resolved": "https://registry.npmjs.org/@oclif/core/-/core-4.5.1.tgz",
3446
- "integrity": "sha512-JAuARvXOzf75L7rqLL3TIP3OmuTf7N/cjRejkGASfRJH+09180+EGbSkPWSMCns+AaYpDMI+fdaJ6QCoa3f15A==",
3444
+ "version": "4.5.2",
3445
+ "resolved": "https://registry.npmjs.org/@oclif/core/-/core-4.5.2.tgz",
3446
+ "integrity": "sha512-eQcKyrEcDYeZJKu4vUWiu0ii/1Gfev6GF4FsLSgNez5/+aQyAUCjg3ZWlurf491WiYZTXCWyKAxyPWk8DKv2MA==",
3447
3447
  "license": "MIT",
3448
3448
  "dependencies": {
3449
3449
  "ansi-escapes": "^4.3.2",
@@ -4708,9 +4708,9 @@
4708
4708
  }
4709
4709
  },
4710
4710
  "node_modules/@salesforce/plugin-agent": {
4711
- "version": "1.23.3",
4712
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.23.3.tgz",
4713
- "integrity": "sha512-rZcbO0kN0wFIz5t4n8ntSBsrVlVfVwZPyydBUBOjBOFqnUAUJsQjmpG8L+nxynA/H+PebvpNgkDCWnSs4TS1Fw==",
4711
+ "version": "1.23.5",
4712
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.23.5.tgz",
4713
+ "integrity": "sha512-Uf3wsSo1JqCUETssaYmnIrdJEbfDXlWL8PiuDG4Zzls/U5PA/OS2FqAfyuiufy0VQXOEV+2QgPHyshpM8PULyw==",
4714
4714
  "license": "BSD-3-Clause",
4715
4715
  "dependencies": {
4716
4716
  "@inquirer/core": "^10.1.6",
@@ -4926,9 +4926,9 @@
4926
4926
  }
4927
4927
  },
4928
4928
  "node_modules/@salesforce/plugin-deploy-retrieve": {
4929
- "version": "3.22.33",
4930
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.22.33.tgz",
4931
- "integrity": "sha512-WwYPKE4bAQUH/DWWLuKRGSwg+uPnF1DDSNa97NaLCvM0Yix15cwNKrYy6iKYGu1E3rsEnuPDBOTT3tfZSR1dmg==",
4929
+ "version": "3.22.34",
4930
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.22.34.tgz",
4931
+ "integrity": "sha512-Hq4dLhhlo2VQwvXyRRsaxmLi5Z7VxNMnYRvmJkXzYTifGyyVDqhF7mX44B7cY2ZJsw7avP1ObI0m+HnkWpcbwg==",
4932
4932
  "license": "Apache-2.0",
4933
4933
  "dependencies": {
4934
4934
  "@inquirer/prompts": "^7.5.3",
package/oclif.lock CHANGED
@@ -1587,10 +1587,10 @@
1587
1587
  proc-log "^5.0.0"
1588
1588
  which "^5.0.0"
1589
1589
 
1590
- "@oclif/core@^4", "@oclif/core@^4.0.27", "@oclif/core@^4.2.3", "@oclif/core@^4.2.8", "@oclif/core@^4.3.0", "@oclif/core@^4.3.2", "@oclif/core@^4.5.1", "@oclif/core@>= 3.0.0", "@oclif/core@4.5.1":
1591
- version "4.5.1"
1592
- resolved "https://registry.npmjs.org/@oclif/core/-/core-4.5.1.tgz"
1593
- integrity sha512-JAuARvXOzf75L7rqLL3TIP3OmuTf7N/cjRejkGASfRJH+09180+EGbSkPWSMCns+AaYpDMI+fdaJ6QCoa3f15A==
1590
+ "@oclif/core@^4", "@oclif/core@^4.0.27", "@oclif/core@^4.2.3", "@oclif/core@^4.2.8", "@oclif/core@^4.3.0", "@oclif/core@^4.3.2", "@oclif/core@^4.5.1", "@oclif/core@>= 3.0.0", "@oclif/core@4.5.2":
1591
+ version "4.5.2"
1592
+ resolved "https://registry.npmjs.org/@oclif/core/-/core-4.5.2.tgz"
1593
+ integrity sha512-eQcKyrEcDYeZJKu4vUWiu0ii/1Gfev6GF4FsLSgNez5/+aQyAUCjg3ZWlurf491WiYZTXCWyKAxyPWk8DKv2MA==
1594
1594
  dependencies:
1595
1595
  ansi-escapes "^4.3.2"
1596
1596
  ansis "^3.17.0"
@@ -2052,10 +2052,10 @@
2052
2052
  jszip "^3.10.1"
2053
2053
  object-treeify "^2"
2054
2054
 
2055
- "@salesforce/plugin-agent@1.23.3":
2056
- version "1.23.3"
2057
- resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.23.3.tgz"
2058
- integrity sha512-rZcbO0kN0wFIz5t4n8ntSBsrVlVfVwZPyydBUBOjBOFqnUAUJsQjmpG8L+nxynA/H+PebvpNgkDCWnSs4TS1Fw==
2055
+ "@salesforce/plugin-agent@1.23.5":
2056
+ version "1.23.5"
2057
+ resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.23.5.tgz"
2058
+ integrity sha512-Uf3wsSo1JqCUETssaYmnIrdJEbfDXlWL8PiuDG4Zzls/U5PA/OS2FqAfyuiufy0VQXOEV+2QgPHyshpM8PULyw==
2059
2059
  dependencies:
2060
2060
  "@inquirer/core" "^10.1.6"
2061
2061
  "@inquirer/prompts" "^7.2.0"
@@ -2148,10 +2148,10 @@
2148
2148
  form-data "^4.0.4"
2149
2149
  terminal-link "^3.0.0"
2150
2150
 
2151
- "@salesforce/plugin-deploy-retrieve@3.22.33":
2152
- version "3.22.33"
2153
- resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.22.33.tgz"
2154
- integrity sha512-WwYPKE4bAQUH/DWWLuKRGSwg+uPnF1DDSNa97NaLCvM0Yix15cwNKrYy6iKYGu1E3rsEnuPDBOTT3tfZSR1dmg==
2151
+ "@salesforce/plugin-deploy-retrieve@3.22.34":
2152
+ version "3.22.34"
2153
+ resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.22.34.tgz"
2154
+ integrity sha512-Hq4dLhhlo2VQwvXyRRsaxmLi5Z7VxNMnYRvmJkXzYTifGyyVDqhF7mX44B7cY2ZJsw7avP1ObI0m+HnkWpcbwg==
2155
2155
  dependencies:
2156
2156
  "@inquirer/prompts" "^7.5.3"
2157
2157
  "@oclif/core" "^4.3.0"
@@ -4831,5 +4831,5 @@
4831
4831
  ]
4832
4832
  }
4833
4833
  },
4834
- "version": "2.99.6"
4834
+ "version": "2.100.0"
4835
4835
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
3
  "description": "The Salesforce CLI",
4
- "version": "2.99.6",
4
+ "version": "2.100.0",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "sf": "./bin/run.js",
@@ -145,7 +145,7 @@
145
145
  },
146
146
  "dependencies": {
147
147
  "@inquirer/select": "^2.3.5",
148
- "@oclif/core": "4.5.1",
148
+ "@oclif/core": "4.5.2",
149
149
  "@oclif/plugin-autocomplete": "3.2.33",
150
150
  "@oclif/plugin-commands": "4.1.29",
151
151
  "@oclif/plugin-help": "6.2.31",
@@ -158,12 +158,12 @@
158
158
  "@oclif/plugin-which": "3.2.39",
159
159
  "@salesforce/core": "^8.9.1",
160
160
  "@salesforce/kit": "^3.1.6",
161
- "@salesforce/plugin-agent": "1.23.3",
161
+ "@salesforce/plugin-agent": "1.23.5",
162
162
  "@salesforce/plugin-apex": "3.6.19",
163
163
  "@salesforce/plugin-api": "1.3.3",
164
164
  "@salesforce/plugin-auth": "3.7.11",
165
165
  "@salesforce/plugin-data": "4.0.48",
166
- "@salesforce/plugin-deploy-retrieve": "3.22.33",
166
+ "@salesforce/plugin-deploy-retrieve": "3.22.34",
167
167
  "@salesforce/plugin-info": "3.4.74",
168
168
  "@salesforce/plugin-limits": "3.3.60",
169
169
  "@salesforce/plugin-marketplace": "1.3.8",