@salesforce/cli 2.101.2 → 2.101.3

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.101.2 linux-x64 node-v22.17.1
28
+ @salesforce/cli/2.101.3 linux-x64 node-v22.17.1
29
29
  $ sf --help [COMMAND]
30
30
  USAGE
31
31
  $ sf COMMAND
@@ -42,7 +42,9 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
42
42
 
43
43
  <!-- commands -->
44
44
 
45
+ - [`sf agent activate`](#sf-agent-activate)
45
46
  - [`sf agent create`](#sf-agent-create)
47
+ - [`sf agent deactivate`](#sf-agent-deactivate)
46
48
  - [`sf agent generate agent-spec`](#sf-agent-generate-agent-spec)
47
49
  - [`sf agent generate template`](#sf-agent-generate-template)
48
50
  - [`sf agent generate test-spec`](#sf-agent-generate-test-spec)
@@ -203,6 +205,45 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
203
205
  - [`sf visualforce generate page`](#sf-visualforce-generate-page)
204
206
  - [`sf which`](#sf-which)
205
207
 
208
+ ## `sf agent activate`
209
+
210
+ Activate an agent in an org.
211
+
212
+ ```
213
+ USAGE
214
+ $ sf agent activate -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-n <value>]
215
+
216
+ FLAGS
217
+ -n, --api-name=<value> API name of the agent to activate.
218
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
219
+ configuration variable is already set.
220
+ --api-version=<value> Override the api version used for api requests made by this command
221
+
222
+ GLOBAL FLAGS
223
+ --flags-dir=<value> Import flag values from a directory.
224
+ --json Format output as json.
225
+
226
+ DESCRIPTION
227
+ Activate an agent in an org.
228
+
229
+ Activating an agent makes it immediately available to your users. An agent must be active before you can preview it
230
+ with the "agent preview" CLI command or VS Code.
231
+
232
+ You must know the agent's API name to activate it; you can either be prompted for it or you can specify it with the
233
+ --api-name flag. Find the agent's API name in its Agent Details page of your org's Agentforce Studio UI in Setup.
234
+
235
+ EXAMPLES
236
+ Activate an agent in your default target org by being prompted:
237
+
238
+ $ sf agent activate
239
+
240
+ Activate an agent with API name Resort_Manager in the org with alias "my-org":
241
+
242
+ $ sf agent activate --api-name Resort_Manager --target-org my-org
243
+ ```
244
+
245
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/activate.ts)_
246
+
206
247
  ## `sf agent create`
207
248
 
208
249
  Create an agent in your org using a local agent spec file.
@@ -263,7 +304,47 @@ EXAMPLES
263
304
  $ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
264
305
  ```
265
306
 
266
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.8/src/commands/agent/create.ts)_
307
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/create.ts)_
308
+
309
+ ## `sf agent deactivate`
310
+
311
+ Deactivate an agent in an org.
312
+
313
+ ```
314
+ USAGE
315
+ $ sf agent deactivate -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-n <value>]
316
+
317
+ FLAGS
318
+ -n, --api-name=<value> API name of the agent to deactivate.
319
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
320
+ configuration variable is already set.
321
+ --api-version=<value> Override the api version used for api requests made by this command
322
+
323
+ GLOBAL FLAGS
324
+ --flags-dir=<value> Import flag values from a directory.
325
+ --json Format output as json.
326
+
327
+ DESCRIPTION
328
+ Deactivate an agent in an org.
329
+
330
+ Deactivating an agent makes it unavailable to your users. To make changes to an agent, such as adding or removing
331
+ topics or actions, you must deactivate it. You can't preview an agent with the "agent preview" CLI command or VS Code
332
+ if it's deactivated.
333
+
334
+ You must know the agent's API name to deactivate it; you can either be prompted for it or you can specify it with the
335
+ --api-name flag. Find the agent's API name in its Agent Details page of your org's Agentforce Studio UI in Setup.
336
+
337
+ EXAMPLES
338
+ Deactivate an agent in your default target org by being prompted:
339
+
340
+ $ sf agent deactivate
341
+
342
+ Deactivate the agent Resort_Manager in the org with alias "my_org":
343
+
344
+ $ sf agent deactivate --api-name Resort_Manager --target-org my-org
345
+ ```
346
+
347
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/deactivate.ts)_
267
348
 
268
349
  ## `sf agent generate agent-spec`
269
350
 
@@ -368,7 +449,7 @@ EXAMPLES
368
449
  $ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
369
450
  ```
370
451
 
371
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.8/src/commands/agent/generate/agent-spec.ts)_
452
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/generate/agent-spec.ts)_
372
453
 
373
454
  ## `sf agent generate template`
374
455
 
@@ -416,7 +497,7 @@ EXAMPLES
416
497
  force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
417
498
  ```
418
499
 
419
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.8/src/commands/agent/generate/template.ts)_
500
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/generate/template.ts)_
420
501
 
421
502
  ## `sf agent generate test-spec`
422
503
 
@@ -474,7 +555,7 @@ EXAMPLES
474
555
  force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
475
556
  ```
476
557
 
477
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.8/src/commands/agent/generate/test-spec.ts)_
558
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/generate/test-spec.ts)_
478
559
 
479
560
  ## `sf agent preview`
480
561
 
@@ -517,7 +598,8 @@ DESCRIPTION
517
598
  environment variable "SF_AGENT_PREVIEW_OUTPUT_DIR" to the directory. Or you can pass the directory to the --output-dir
518
599
  flag.
519
600
 
520
- Find the agent's API name in its main details page in your org's Agent page in Setup.
601
+ Find the agent's API name in its Agent Details page of your org's Agentforce Studio UI in Setup. If your agent is
602
+ currently deactivated, use the "agent activate" CLI command to activate it.
521
603
 
522
604
  IMPORTANT: Before you use this command, you must complete a number of configuration steps in your org and your DX
523
605
  project. The examples in this help assume you've completed the steps. See "Preview an Agent" in the "Agentforce
@@ -525,7 +607,7 @@ DESCRIPTION
525
607
  https://developer.salesforce.com/docs/einstein/genai/guide/agent-dx-preview.html.
526
608
 
527
609
  EXAMPLES
528
- Interact with an agent with API name "Resort_Manager" in the org with alias "my-org" and the linked "agent-app"
610
+ Interact with an agent with API name Resort_Manager in the org with alias "my-org" and the linked "agent-app"
529
611
  connected app:
530
612
 
531
613
  $ sf agent preview --api-name Resort_Manager --target-org my-org --client-app agent-app
@@ -537,7 +619,7 @@ EXAMPLES
537
619
  transcripts/my-preview
538
620
  ```
539
621
 
540
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.8/src/commands/agent/preview.ts)_
622
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/preview.ts)_
541
623
 
542
624
  ## `sf agent test create`
543
625
 
@@ -592,7 +674,7 @@ EXAMPLES
592
674
  $ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
593
675
  ```
594
676
 
595
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.8/src/commands/agent/test/create.ts)_
677
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/test/create.ts)_
596
678
 
597
679
  ## `sf agent test list`
598
680
 
@@ -627,7 +709,7 @@ EXAMPLES
627
709
  $ sf agent test list --target-org my-org
628
710
  ```
629
711
 
630
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.8/src/commands/agent/test/list.ts)_
712
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/test/list.ts)_
631
713
 
632
714
  ## `sf agent test results`
633
715
 
@@ -683,7 +765,7 @@ FLAG DESCRIPTIONS
683
765
  test results aren't written.
684
766
  ```
685
767
 
686
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.8/src/commands/agent/test/results.ts)_
768
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/test/results.ts)_
687
769
 
688
770
  ## `sf agent test resume`
689
771
 
@@ -746,7 +828,7 @@ FLAG DESCRIPTIONS
746
828
  test results aren't written.
747
829
  ```
748
830
 
749
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.8/src/commands/agent/test/resume.ts)_
831
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/test/resume.ts)_
750
832
 
751
833
  ## `sf agent test run`
752
834
 
@@ -810,7 +892,7 @@ FLAG DESCRIPTIONS
810
892
  test results aren't written.
811
893
  ```
812
894
 
813
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.8/src/commands/agent/test/run.ts)_
895
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/test/run.ts)_
814
896
 
815
897
  ## `sf alias list`
816
898
 
@@ -969,7 +1051,7 @@ FLAG DESCRIPTIONS
969
1051
  directory.
970
1052
  ```
971
1053
 
972
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.56/src/commands/analytics/generate/template.ts)_
1054
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/analytics/generate/template.ts)_
973
1055
 
974
1056
  ## `sf apex generate class`
975
1057
 
@@ -1028,7 +1110,7 @@ FLAG DESCRIPTIONS
1028
1110
  Supplied parameter values or default values are filled into a copy of the template.
1029
1111
  ```
1030
1112
 
1031
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.56/src/commands/apex/generate/class.ts)_
1113
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/apex/generate/class.ts)_
1032
1114
 
1033
1115
  ## `sf apex generate trigger`
1034
1116
 
@@ -1097,7 +1179,7 @@ FLAG DESCRIPTIONS
1097
1179
  Supplied parameter values or default values are filled into a copy of the template.
1098
1180
  ```
1099
1181
 
1100
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.56/src/commands/apex/generate/trigger.ts)_
1182
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/apex/generate/trigger.ts)_
1101
1183
 
1102
1184
  ## `sf apex get log`
1103
1185
 
@@ -3324,7 +3406,7 @@ FLAG DESCRIPTIONS
3324
3406
  Supplied parameter values or default values are filled into a copy of the template.
3325
3407
  ```
3326
3408
 
3327
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.56/src/commands/lightning/generate/app.ts)_
3409
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/lightning/generate/app.ts)_
3328
3410
 
3329
3411
  ## `sf lightning generate component`
3330
3412
 
@@ -3393,7 +3475,7 @@ FLAG DESCRIPTIONS
3393
3475
  Supplied parameter values or default values are filled into a copy of the template.
3394
3476
  ```
3395
3477
 
3396
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.56/src/commands/lightning/generate/component.ts)_
3478
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/lightning/generate/component.ts)_
3397
3479
 
3398
3480
  ## `sf lightning generate event`
3399
3481
 
@@ -3448,7 +3530,7 @@ FLAG DESCRIPTIONS
3448
3530
  Supplied parameter values or default values are filled into a copy of the template.
3449
3531
  ```
3450
3532
 
3451
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.56/src/commands/lightning/generate/event.ts)_
3533
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/lightning/generate/event.ts)_
3452
3534
 
3453
3535
  ## `sf lightning generate interface`
3454
3536
 
@@ -3503,7 +3585,7 @@ FLAG DESCRIPTIONS
3503
3585
  Supplied parameter values or default values are filled into a copy of the template.
3504
3586
  ```
3505
3587
 
3506
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.56/src/commands/lightning/generate/interface.ts)_
3588
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/lightning/generate/interface.ts)_
3507
3589
 
3508
3590
  ## `sf lightning generate test`
3509
3591
 
@@ -3558,7 +3640,7 @@ FLAG DESCRIPTIONS
3558
3640
  Supplied parameter values or default values are filled into a copy of the template.
3559
3641
  ```
3560
3642
 
3561
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.56/src/commands/lightning/generate/test.ts)_
3643
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/lightning/generate/test.ts)_
3562
3644
 
3563
3645
  ## `sf org assign permset`
3564
3646
 
@@ -3604,7 +3686,7 @@ EXAMPLES
3604
3686
  $ sf org assign permset --name DreamHouse --on-behalf-of user1@my.org --on-behalf-of user2 --on-behalf-of user
3605
3687
  ```
3606
3688
 
3607
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.31/src/commands/org/assign/permset.ts)_
3689
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.32/src/commands/org/assign/permset.ts)_
3608
3690
 
3609
3691
  ## `sf org assign permsetlicense`
3610
3692
 
@@ -3651,7 +3733,7 @@ EXAMPLES
3651
3733
  user3
3652
3734
  ```
3653
3735
 
3654
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.31/src/commands/org/assign/permsetlicense.ts)_
3736
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.32/src/commands/org/assign/permsetlicense.ts)_
3655
3737
 
3656
3738
  ## `sf org create sandbox`
3657
3739
 
@@ -4075,7 +4157,7 @@ FLAG DESCRIPTIONS
4075
4157
  might be different than what you specify in the definition file.
4076
4158
  ```
4077
4159
 
4078
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.31/src/commands/org/create/user.ts)_
4160
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.32/src/commands/org/create/user.ts)_
4079
4161
 
4080
4162
  ## `sf org delete sandbox`
4081
4163
 
@@ -4288,7 +4370,7 @@ EXAMPLES
4288
4370
  $ sf org display user --target-org me@my.org --json
4289
4371
  ```
4290
4372
 
4291
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.31/src/commands/org/display/user.ts)_
4373
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.32/src/commands/org/display/user.ts)_
4292
4374
 
4293
4375
  ## `sf org enable tracking`
4294
4376
 
@@ -4397,7 +4479,7 @@ EXAMPLES
4397
4479
  $ sf org generate password --on-behalf-of user1@my.org --on-behalf-of user2@my.org --on-behalf-of user3@my.org
4398
4480
  ```
4399
4481
 
4400
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.31/src/commands/org/generate/password.ts)_
4482
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.32/src/commands/org/generate/password.ts)_
4401
4483
 
4402
4484
  ## `sf org list`
4403
4485
 
@@ -4714,7 +4796,7 @@ EXAMPLES
4714
4796
  $ sf org list users --target-org me@my.org
4715
4797
  ```
4716
4798
 
4717
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.31/src/commands/org/list/users.ts)_
4799
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.32/src/commands/org/list/users.ts)_
4718
4800
 
4719
4801
  ## `sf org login access-token`
4720
4802
 
@@ -8711,7 +8793,7 @@ FLAG DESCRIPTIONS
8711
8793
  Override the api version used for api requests made by this command
8712
8794
  ```
8713
8795
 
8714
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.56/src/commands/project/generate.ts)_
8796
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/project/generate.ts)_
8715
8797
 
8716
8798
  ## `sf project generate manifest`
8717
8799
 
@@ -9488,7 +9570,7 @@ FLAG DESCRIPTIONS
9488
9570
  etc.
9489
9571
  ```
9490
9572
 
9491
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.56/src/commands/static-resource/generate.ts)_
9573
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/static-resource/generate.ts)_
9492
9574
 
9493
9575
  ## `sf update [CHANNEL]`
9494
9576
 
@@ -9602,7 +9684,7 @@ FLAG DESCRIPTIONS
9602
9684
  Supplied parameter values or default values are filled into a copy of the template.
9603
9685
  ```
9604
9686
 
9605
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.56/src/commands/visualforce/generate/component.ts)_
9687
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/visualforce/generate/component.ts)_
9606
9688
 
9607
9689
  ## `sf visualforce generate page`
9608
9690
 
@@ -9652,7 +9734,7 @@ FLAG DESCRIPTIONS
9652
9734
  The name can be up to 40 characters and must start with a letter.
9653
9735
  ```
9654
9736
 
9655
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.56/src/commands/visualforce/generate/page.ts)_
9737
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/visualforce/generate/page.ts)_
9656
9738
 
9657
9739
  ## `sf which`
9658
9740
 
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
- "version": "2.101.2",
3
+ "version": "2.101.3",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/cli",
9
- "version": "2.101.2",
9
+ "version": "2.101.3",
10
10
  "hasInstallScript": true,
11
11
  "license": "Apache-2.0",
12
12
  "dependencies": {
@@ -24,7 +24,7 @@
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.8",
27
+ "@salesforce/plugin-agent": "1.24.0",
28
28
  "@salesforce/plugin-apex": "3.6.19",
29
29
  "@salesforce/plugin-api": "1.3.3",
30
30
  "@salesforce/plugin-auth": "3.7.16",
@@ -39,9 +39,9 @@
39
39
  "@salesforce/plugin-settings": "2.4.40",
40
40
  "@salesforce/plugin-sobject": "1.4.67",
41
41
  "@salesforce/plugin-telemetry": "3.6.52",
42
- "@salesforce/plugin-templates": "56.3.56",
42
+ "@salesforce/plugin-templates": "56.3.57",
43
43
  "@salesforce/plugin-trust": "3.7.113",
44
- "@salesforce/plugin-user": "3.6.31",
44
+ "@salesforce/plugin-user": "3.6.32",
45
45
  "@salesforce/sf-plugins-core": "12.2.3",
46
46
  "ansis": "^3.12.0"
47
47
  },
@@ -4477,9 +4477,9 @@
4477
4477
  "license": "BSD-3-Clause"
4478
4478
  },
4479
4479
  "node_modules/@salesforce/agents": {
4480
- "version": "0.16.0",
4481
- "resolved": "https://registry.npmjs.org/@salesforce/agents/-/agents-0.16.0.tgz",
4482
- "integrity": "sha512-FS6Mr8a3+MIZ1yciE/6AnLAhSwPivwT3e/ZTQVuvWMZUMT7Z4TuIqVFijN/r76YdprN/lFGM8KNLpIplNX7tjw==",
4480
+ "version": "0.17.0",
4481
+ "resolved": "https://registry.npmjs.org/@salesforce/agents/-/agents-0.17.0.tgz",
4482
+ "integrity": "sha512-e94ZSybklrrm62jWnfQcpbNSMm5vSxo3yACAhDCATxsjbTh1Lrx1C9TuwEUAB/SV4BWNysUhiyNgyVbvUcyDog==",
4483
4483
  "license": "BSD-3-Clause",
4484
4484
  "dependencies": {
4485
4485
  "@salesforce/core": "^8.18.5",
@@ -4860,16 +4860,16 @@
4860
4860
  }
4861
4861
  },
4862
4862
  "node_modules/@salesforce/plugin-agent": {
4863
- "version": "1.23.8",
4864
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.23.8.tgz",
4865
- "integrity": "sha512-lKQVDSJwWCa0O+0fRzc5QEyZCFCQzkl7lu449Q8Vnu1SgVXQAUqNTu9tncxDj34JkmSxe70Oec+bM1S6LPfEhQ==",
4863
+ "version": "1.24.0",
4864
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.24.0.tgz",
4865
+ "integrity": "sha512-FEc6aC/Sg/KP2fcmFHSBAkEPJal8jAHe/dFh4W8dUkYNi99WJdjj4BMJbnxJsbapml+OQFipUN5jmV8dI/mpMw==",
4866
4866
  "license": "BSD-3-Clause",
4867
4867
  "dependencies": {
4868
4868
  "@inquirer/core": "^10.1.6",
4869
4869
  "@inquirer/prompts": "^7.2.0",
4870
4870
  "@oclif/core": "^4",
4871
4871
  "@oclif/multi-stage-output": "^0.8.20",
4872
- "@salesforce/agents": "^0.16.0",
4872
+ "@salesforce/agents": "0.17.0",
4873
4873
  "@salesforce/core": "^8.18.5",
4874
4874
  "@salesforce/kit": "^3.2.3",
4875
4875
  "@salesforce/sf-plugins-core": "^12.2.3",
@@ -5470,12 +5470,12 @@
5470
5470
  }
5471
5471
  },
5472
5472
  "node_modules/@salesforce/plugin-templates": {
5473
- "version": "56.3.56",
5474
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-templates/-/plugin-templates-56.3.56.tgz",
5475
- "integrity": "sha512-0Ii4bDy7Leal3LACPgxtBRrVX8UlmihQ+8ZXqG5Yntxr65y8LlG6JKOBAIpFojae9IcdErrCZRDmA3Tq3dvoFw==",
5473
+ "version": "56.3.57",
5474
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-templates/-/plugin-templates-56.3.57.tgz",
5475
+ "integrity": "sha512-lvMpzpYV5/bJvbYlQujfNXTYDqRPCZR0TQGmO/+Duh4nGzdl5eQnAjnmSciDDlsIl5HQSD7buceDyRSAVjBTlw==",
5476
5476
  "license": "Apache-2.0",
5477
5477
  "dependencies": {
5478
- "@salesforce/core": "^8.18.5",
5478
+ "@salesforce/core": "^8.18.7",
5479
5479
  "@salesforce/sf-plugins-core": "^12",
5480
5480
  "@salesforce/templates": "^64.2.1"
5481
5481
  },
@@ -5509,12 +5509,12 @@
5509
5509
  }
5510
5510
  },
5511
5511
  "node_modules/@salesforce/plugin-user": {
5512
- "version": "3.6.31",
5513
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-user/-/plugin-user-3.6.31.tgz",
5514
- "integrity": "sha512-UamO70QkrWFBNjb++OofO/J3r7l7l6T5LpJ7mGJsSWXmu63TKjJijluBcbhu7M1vdcgwuajZiCY9UMZs0sgHGQ==",
5512
+ "version": "3.6.32",
5513
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-user/-/plugin-user-3.6.32.tgz",
5514
+ "integrity": "sha512-5FxRfKzDjOgPK/HqS7dTnFQi5qpk+ZG3D7f+lqXkCDa8UeZYYT/rNOvPt0WOkvpLso0brL56utSQSYk4E30vRg==",
5515
5515
  "license": "Apache-2.0",
5516
5516
  "dependencies": {
5517
- "@salesforce/core": "^8.18.5",
5517
+ "@salesforce/core": "^8.18.7",
5518
5518
  "@salesforce/kit": "^3.2.2",
5519
5519
  "@salesforce/sf-plugins-core": "^12.2.3",
5520
5520
  "@salesforce/ts-types": "^2.0.11"
package/oclif.lock CHANGED
@@ -1973,10 +1973,10 @@
1973
1973
  resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz"
1974
1974
  integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==
1975
1975
 
1976
- "@salesforce/agents@^0.16.0":
1977
- version "0.16.0"
1978
- resolved "https://registry.npmjs.org/@salesforce/agents/-/agents-0.16.0.tgz"
1979
- integrity sha512-FS6Mr8a3+MIZ1yciE/6AnLAhSwPivwT3e/ZTQVuvWMZUMT7Z4TuIqVFijN/r76YdprN/lFGM8KNLpIplNX7tjw==
1976
+ "@salesforce/agents@0.17.0":
1977
+ version "0.17.0"
1978
+ resolved "https://registry.npmjs.org/@salesforce/agents/-/agents-0.17.0.tgz"
1979
+ integrity sha512-e94ZSybklrrm62jWnfQcpbNSMm5vSxo3yACAhDCATxsjbTh1Lrx1C9TuwEUAB/SV4BWNysUhiyNgyVbvUcyDog==
1980
1980
  dependencies:
1981
1981
  "@salesforce/core" "^8.18.5"
1982
1982
  "@salesforce/kit" "^3.2.3"
@@ -2113,16 +2113,16 @@
2113
2113
  jszip "^3.10.1"
2114
2114
  object-treeify "^2"
2115
2115
 
2116
- "@salesforce/plugin-agent@1.23.8":
2117
- version "1.23.8"
2118
- resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.23.8.tgz"
2119
- integrity sha512-lKQVDSJwWCa0O+0fRzc5QEyZCFCQzkl7lu449Q8Vnu1SgVXQAUqNTu9tncxDj34JkmSxe70Oec+bM1S6LPfEhQ==
2116
+ "@salesforce/plugin-agent@1.24.0":
2117
+ version "1.24.0"
2118
+ resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.24.0.tgz"
2119
+ integrity sha512-FEc6aC/Sg/KP2fcmFHSBAkEPJal8jAHe/dFh4W8dUkYNi99WJdjj4BMJbnxJsbapml+OQFipUN5jmV8dI/mpMw==
2120
2120
  dependencies:
2121
2121
  "@inquirer/core" "^10.1.6"
2122
2122
  "@inquirer/prompts" "^7.2.0"
2123
2123
  "@oclif/core" "^4"
2124
2124
  "@oclif/multi-stage-output" "^0.8.20"
2125
- "@salesforce/agents" "^0.16.0"
2125
+ "@salesforce/agents" "0.17.0"
2126
2126
  "@salesforce/core" "^8.18.5"
2127
2127
  "@salesforce/kit" "^3.2.3"
2128
2128
  "@salesforce/sf-plugins-core" "^12.2.3"
@@ -2371,12 +2371,12 @@
2371
2371
  "@salesforce/ts-types" "^2.0.11"
2372
2372
  debug "^4.4.1"
2373
2373
 
2374
- "@salesforce/plugin-templates@56.3.56":
2375
- version "56.3.56"
2376
- resolved "https://registry.npmjs.org/@salesforce/plugin-templates/-/plugin-templates-56.3.56.tgz"
2377
- integrity sha512-0Ii4bDy7Leal3LACPgxtBRrVX8UlmihQ+8ZXqG5Yntxr65y8LlG6JKOBAIpFojae9IcdErrCZRDmA3Tq3dvoFw==
2374
+ "@salesforce/plugin-templates@56.3.57":
2375
+ version "56.3.57"
2376
+ resolved "https://registry.npmjs.org/@salesforce/plugin-templates/-/plugin-templates-56.3.57.tgz"
2377
+ integrity sha512-lvMpzpYV5/bJvbYlQujfNXTYDqRPCZR0TQGmO/+Duh4nGzdl5eQnAjnmSciDDlsIl5HQSD7buceDyRSAVjBTlw==
2378
2378
  dependencies:
2379
- "@salesforce/core" "^8.18.5"
2379
+ "@salesforce/core" "^8.18.7"
2380
2380
  "@salesforce/sf-plugins-core" "^12"
2381
2381
  "@salesforce/templates" "^64.2.1"
2382
2382
 
@@ -2397,12 +2397,12 @@
2397
2397
  semver "^7.7.2"
2398
2398
  shelljs "0.8.5"
2399
2399
 
2400
- "@salesforce/plugin-user@3.6.31":
2401
- version "3.6.31"
2402
- resolved "https://registry.npmjs.org/@salesforce/plugin-user/-/plugin-user-3.6.31.tgz"
2403
- integrity sha512-UamO70QkrWFBNjb++OofO/J3r7l7l6T5LpJ7mGJsSWXmu63TKjJijluBcbhu7M1vdcgwuajZiCY9UMZs0sgHGQ==
2400
+ "@salesforce/plugin-user@3.6.32":
2401
+ version "3.6.32"
2402
+ resolved "https://registry.npmjs.org/@salesforce/plugin-user/-/plugin-user-3.6.32.tgz"
2403
+ integrity sha512-5FxRfKzDjOgPK/HqS7dTnFQi5qpk+ZG3D7f+lqXkCDa8UeZYYT/rNOvPt0WOkvpLso0brL56utSQSYk4E30vRg==
2404
2404
  dependencies:
2405
- "@salesforce/core" "^8.18.5"
2405
+ "@salesforce/core" "^8.18.7"
2406
2406
  "@salesforce/kit" "^3.2.2"
2407
2407
  "@salesforce/sf-plugins-core" "^12.2.3"
2408
2408
  "@salesforce/ts-types" "^2.0.11"
@@ -4158,5 +4158,5 @@
4158
4158
  "requiresProject": true
4159
4159
  }
4160
4160
  },
4161
- "version": "2.101.2"
4161
+ "version": "2.101.3"
4162
4162
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
3
  "description": "The Salesforce CLI",
4
- "version": "2.101.2",
4
+ "version": "2.101.3",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "sf": "./bin/run.js",
@@ -157,7 +157,7 @@
157
157
  "@oclif/plugin-which": "3.2.39",
158
158
  "@salesforce/core": "^8.9.1",
159
159
  "@salesforce/kit": "^3.1.6",
160
- "@salesforce/plugin-agent": "1.23.8",
160
+ "@salesforce/plugin-agent": "1.24.0",
161
161
  "@salesforce/plugin-apex": "3.6.19",
162
162
  "@salesforce/plugin-api": "1.3.3",
163
163
  "@salesforce/plugin-auth": "3.7.16",
@@ -172,9 +172,9 @@
172
172
  "@salesforce/plugin-settings": "2.4.40",
173
173
  "@salesforce/plugin-sobject": "1.4.67",
174
174
  "@salesforce/plugin-telemetry": "3.6.52",
175
- "@salesforce/plugin-templates": "56.3.56",
175
+ "@salesforce/plugin-templates": "56.3.57",
176
176
  "@salesforce/plugin-trust": "3.7.113",
177
- "@salesforce/plugin-user": "3.6.31",
177
+ "@salesforce/plugin-user": "3.6.32",
178
178
  "@salesforce/sf-plugins-core": "12.2.3",
179
179
  "ansis": "^3.12.0"
180
180
  },