@salesforce/cli 2.129.6 → 2.129.8
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 +68 -54
- package/npm-shrinkwrap.json +29 -29
- package/oclif.lock +31 -31
- package/oclif.manifest.json +1 -1
- package/package.json +5 -5
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.129.
|
|
28
|
+
@salesforce/cli/2.129.8 linux-x64 node-v22.22.1
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -265,7 +265,7 @@ EXAMPLES
|
|
|
265
265
|
$ sf agent activate --api-name Resort_Manager --version 2 --target-org my-org
|
|
266
266
|
```
|
|
267
267
|
|
|
268
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
268
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.11/src/commands/agent/activate.ts)_
|
|
269
269
|
|
|
270
270
|
## `sf agent create`
|
|
271
271
|
|
|
@@ -332,7 +332,7 @@ EXAMPLES
|
|
|
332
332
|
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
|
|
333
333
|
```
|
|
334
334
|
|
|
335
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
335
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.11/src/commands/agent/create.ts)_
|
|
336
336
|
|
|
337
337
|
## `sf agent deactivate`
|
|
338
338
|
|
|
@@ -373,7 +373,7 @@ EXAMPLES
|
|
|
373
373
|
$ sf agent deactivate --api-name Resort_Manager --target-org my-org
|
|
374
374
|
```
|
|
375
375
|
|
|
376
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
376
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.11/src/commands/agent/deactivate.ts)_
|
|
377
377
|
|
|
378
378
|
## `sf agent generate agent-spec`
|
|
379
379
|
|
|
@@ -480,7 +480,7 @@ EXAMPLES
|
|
|
480
480
|
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
|
|
481
481
|
```
|
|
482
482
|
|
|
483
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
483
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.11/src/commands/agent/generate/agent-spec.ts)_
|
|
484
484
|
|
|
485
485
|
## `sf agent generate authoring-bundle`
|
|
486
486
|
|
|
@@ -557,18 +557,22 @@ EXAMPLES
|
|
|
557
557
|
other-package-dir/main/default --target-org my-dev-org
|
|
558
558
|
```
|
|
559
559
|
|
|
560
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
560
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.11/src/commands/agent/generate/authoring-bundle.ts)_
|
|
561
561
|
|
|
562
562
|
## `sf agent generate template`
|
|
563
563
|
|
|
564
|
-
Generate an agent template from an existing agent in your DX project so you can then package the template in a managed package.
|
|
564
|
+
Generate an agent template from an existing agent in your DX project so you can then package the template in a second-generation managed package.
|
|
565
565
|
|
|
566
566
|
```
|
|
567
567
|
USAGE
|
|
568
|
-
$ sf agent generate template --agent-version <value> -f <value> [--json] [--flags-dir <value>] [--api-version
|
|
568
|
+
$ sf agent generate template -s <value> --agent-version <value> -f <value> [--json] [--flags-dir <value>] [--api-version
|
|
569
|
+
<value>] [-r <value>]
|
|
569
570
|
|
|
570
571
|
FLAGS
|
|
571
572
|
-f, --agent-file=<value> (required) Path to an agent (Bot) metadata file.
|
|
573
|
+
-r, --output-dir=<value> Directory where the generated BotTemplate and GenAiPlannerBundle files are saved.
|
|
574
|
+
-s, --source-org=<value> (required) Username or alias of the namespaced scratch org that contains the agent which
|
|
575
|
+
this template is based on.
|
|
572
576
|
--agent-version=<value> (required) Version of the agent (BotVersion).
|
|
573
577
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
574
578
|
|
|
@@ -577,35 +581,45 @@ GLOBAL FLAGS
|
|
|
577
581
|
--json Format output as json.
|
|
578
582
|
|
|
579
583
|
DESCRIPTION
|
|
580
|
-
Generate an agent template from an existing agent in your DX project so you can then package the template in a
|
|
581
|
-
package.
|
|
584
|
+
Generate an agent template from an existing agent in your DX project so you can then package the template in a
|
|
585
|
+
second-generation managed package.
|
|
586
|
+
|
|
587
|
+
WARNING: This command doesn't work for agents that were created from an Agent Script file. In other words, you can't
|
|
588
|
+
currently package an agent template for agents that use Agent Script.
|
|
582
589
|
|
|
583
590
|
At a high-level, agents are defined by the Bot, BotVersion, and GenAiPlannerBundle metadata types. The
|
|
584
591
|
GenAiPlannerBundle type in turn defines the agent's topics and actions. This command uses the metadata files for these
|
|
585
|
-
three types, located in your local DX project, to generate a BotTemplate file for a specific agent (Bot). You
|
|
586
|
-
the BotTemplate file, along with the GenAiPlannerBundle file that references the
|
|
587
|
-
in a managed package that you can share between orgs or on AppExchange.
|
|
592
|
+
three types, located in your local DX project, to generate a BotTemplate metadata file for a specific agent (Bot). You
|
|
593
|
+
then use the BotTemplate metadata file, along with the GenAiPlannerBundle metadata file that references the
|
|
594
|
+
BotTemplate, to package the template in a managed package that you can share between orgs or on AppExchange.
|
|
588
595
|
|
|
589
596
|
Use the --agent-file flag to specify the relative or full pathname of the Bot metadata file, such as
|
|
590
597
|
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml. A single Bot can have multiple
|
|
591
|
-
BotVersions, so use the --agent-version flag to specify the version. The corresponding BotVersion file must
|
|
592
|
-
locally. For example, if you specify "--agent-version 4", then the file
|
|
598
|
+
BotVersions, so use the --agent-version flag to specify the version. The corresponding BotVersion metadata file must
|
|
599
|
+
exist locally. For example, if you specify "--agent-version 4", then the file
|
|
593
600
|
force-app/main/default/bots/My_Awesome_Agent/v4.botVersion-meta.xml must exist.
|
|
594
601
|
|
|
595
|
-
The new BotTemplate file is generated in the "botTemplates" directory in
|
|
596
|
-
name <Agent_API_name
|
|
597
|
-
|
|
598
|
-
|
|
602
|
+
The new BotTemplate metadata file is generated in the "botTemplates" directory in the output directory specified with
|
|
603
|
+
the --output-dir flag, and has the name <Agent_API_name>\_v<Version>\_Template.botTemplate-meta.xml, such as
|
|
604
|
+
my-package/botTemplates/My_Awesome_Agent_v4_Template.botTemplate-meta.xml. The command displays the full pathname of
|
|
605
|
+
the generated files when it completes.
|
|
606
|
+
|
|
607
|
+
See "Develop and Package Agent Templates Using Scratch Orgs"
|
|
608
|
+
(https://developer.salesforce.com/docs/atlas.en-us.pkg2_dev.meta/pkg2_dev/dev2gp_package_agent_templates.htm) for
|
|
609
|
+
details about the complete process, which includes using a scratch org to create and test the agent, retrieving the
|
|
610
|
+
agent metadata to your DX project, running this command to create the agent template, and then packaging the template.
|
|
599
611
|
|
|
600
612
|
EXAMPLES
|
|
601
|
-
Generate an agent template from
|
|
602
|
-
|
|
613
|
+
Generate an agent template from the My_Awesome_Agent Bot metadata file in your DX project and save the BotTemplate
|
|
614
|
+
and GenAiPlannerBundle to the specified directory; use version 1 of the agent. The agent that the template is based
|
|
615
|
+
on is in the org with alias "my-scratch-org":
|
|
603
616
|
|
|
604
617
|
$ sf agent generate template --agent-file \
|
|
605
|
-
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
|
|
618
|
+
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1 --output-dir \
|
|
619
|
+
my-package --source-org my-scratch-org
|
|
606
620
|
```
|
|
607
621
|
|
|
608
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
622
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.11/src/commands/agent/generate/template.ts)_
|
|
609
623
|
|
|
610
624
|
## `sf agent generate test-spec`
|
|
611
625
|
|
|
@@ -670,7 +684,7 @@ EXAMPLES
|
|
|
670
684
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
671
685
|
```
|
|
672
686
|
|
|
673
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
687
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.11/src/commands/agent/generate/test-spec.ts)_
|
|
674
688
|
|
|
675
689
|
## `sf agent preview`
|
|
676
690
|
|
|
@@ -743,7 +757,7 @@ EXAMPLES
|
|
|
743
757
|
$ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview
|
|
744
758
|
```
|
|
745
759
|
|
|
746
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
760
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.11/src/commands/agent/preview.ts)_
|
|
747
761
|
|
|
748
762
|
## `sf agent preview end`
|
|
749
763
|
|
|
@@ -798,7 +812,7 @@ EXAMPLES
|
|
|
798
812
|
$ sf agent preview end --authoring-bundle My_Local_Agent
|
|
799
813
|
```
|
|
800
814
|
|
|
801
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
815
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.11/src/commands/agent/preview/end.ts)_
|
|
802
816
|
|
|
803
817
|
## `sf agent preview send`
|
|
804
818
|
|
|
@@ -856,7 +870,7 @@ EXAMPLES
|
|
|
856
870
|
$ sf agent preview send --utterance "what can you help me with?" --authoring-bundle My_Local_Agent
|
|
857
871
|
```
|
|
858
872
|
|
|
859
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
873
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.11/src/commands/agent/preview/send.ts)_
|
|
860
874
|
|
|
861
875
|
## `sf agent preview sessions`
|
|
862
876
|
|
|
@@ -889,7 +903,7 @@ EXAMPLES
|
|
|
889
903
|
$ sf agent preview sessions
|
|
890
904
|
```
|
|
891
905
|
|
|
892
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
906
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.11/src/commands/agent/preview/sessions.ts)_
|
|
893
907
|
|
|
894
908
|
## `sf agent preview start`
|
|
895
909
|
|
|
@@ -946,7 +960,7 @@ EXAMPLES
|
|
|
946
960
|
$ sf agent preview start --api-name My_Published_Agent
|
|
947
961
|
```
|
|
948
962
|
|
|
949
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
963
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.11/src/commands/agent/preview/start.ts)_
|
|
950
964
|
|
|
951
965
|
## `sf agent publish authoring-bundle`
|
|
952
966
|
|
|
@@ -995,7 +1009,7 @@ EXAMPLES
|
|
|
995
1009
|
$ sf agent publish authoring-bundle --api-name MyAuthoringbundle --target-org my-dev-org
|
|
996
1010
|
```
|
|
997
1011
|
|
|
998
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1012
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.11/src/commands/agent/publish/authoring-bundle.ts)_
|
|
999
1013
|
|
|
1000
1014
|
## `sf agent test create`
|
|
1001
1015
|
|
|
@@ -1050,7 +1064,7 @@ EXAMPLES
|
|
|
1050
1064
|
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
|
|
1051
1065
|
```
|
|
1052
1066
|
|
|
1053
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1067
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.11/src/commands/agent/test/create.ts)_
|
|
1054
1068
|
|
|
1055
1069
|
## `sf agent test list`
|
|
1056
1070
|
|
|
@@ -1085,7 +1099,7 @@ EXAMPLES
|
|
|
1085
1099
|
$ sf agent test list --target-org my-org
|
|
1086
1100
|
```
|
|
1087
1101
|
|
|
1088
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1102
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.11/src/commands/agent/test/list.ts)_
|
|
1089
1103
|
|
|
1090
1104
|
## `sf agent test results`
|
|
1091
1105
|
|
|
@@ -1151,7 +1165,7 @@ FLAG DESCRIPTIONS
|
|
|
1151
1165
|
expression when using custom evaluations.
|
|
1152
1166
|
```
|
|
1153
1167
|
|
|
1154
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1168
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.11/src/commands/agent/test/results.ts)_
|
|
1155
1169
|
|
|
1156
1170
|
## `sf agent test resume`
|
|
1157
1171
|
|
|
@@ -1224,7 +1238,7 @@ FLAG DESCRIPTIONS
|
|
|
1224
1238
|
expression when using custom evaluations.
|
|
1225
1239
|
```
|
|
1226
1240
|
|
|
1227
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1241
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.11/src/commands/agent/test/resume.ts)_
|
|
1228
1242
|
|
|
1229
1243
|
## `sf agent test run`
|
|
1230
1244
|
|
|
@@ -1298,7 +1312,7 @@ FLAG DESCRIPTIONS
|
|
|
1298
1312
|
expression when using custom evaluations.
|
|
1299
1313
|
```
|
|
1300
1314
|
|
|
1301
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1315
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.11/src/commands/agent/test/run.ts)_
|
|
1302
1316
|
|
|
1303
1317
|
## `sf agent validate authoring-bundle`
|
|
1304
1318
|
|
|
@@ -1345,7 +1359,7 @@ EXAMPLES
|
|
|
1345
1359
|
$ sf agent validate authoring-bundle --api-name MyAuthoringBundle --target-org my-dev-org
|
|
1346
1360
|
```
|
|
1347
1361
|
|
|
1348
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1362
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.11/src/commands/agent/validate/authoring-bundle.ts)_
|
|
1349
1363
|
|
|
1350
1364
|
## `sf alias list`
|
|
1351
1365
|
|
|
@@ -7770,7 +7784,7 @@ FLAG DESCRIPTIONS
|
|
|
7770
7784
|
If you specify this flag, don’t specify --metadata or --source-dir.
|
|
7771
7785
|
```
|
|
7772
7786
|
|
|
7773
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
7787
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.18/src/commands/project/convert/mdapi.ts)_
|
|
7774
7788
|
|
|
7775
7789
|
## `sf project convert source`
|
|
7776
7790
|
|
|
@@ -7843,7 +7857,7 @@ FLAG DESCRIPTIONS
|
|
|
7843
7857
|
Override the api version used for api requests made by this command
|
|
7844
7858
|
```
|
|
7845
7859
|
|
|
7846
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
7860
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.18/src/commands/project/convert/source.ts)_
|
|
7847
7861
|
|
|
7848
7862
|
## `sf project convert source-behavior`
|
|
7849
7863
|
|
|
@@ -7902,7 +7916,7 @@ EXAMPLES
|
|
|
7902
7916
|
$ sf project convert source-behavior --behavior decomposePermissionSetBeta --dry-run --preserve-temp-dir
|
|
7903
7917
|
```
|
|
7904
7918
|
|
|
7905
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
7919
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.18/src/commands/project/convert/source-behavior.ts)_
|
|
7906
7920
|
|
|
7907
7921
|
## `sf project delete source`
|
|
7908
7922
|
|
|
@@ -8055,7 +8069,7 @@ FLAG DESCRIPTIONS
|
|
|
8055
8069
|
- Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
|
|
8056
8070
|
```
|
|
8057
8071
|
|
|
8058
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8072
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.18/src/commands/project/delete/source.ts)_
|
|
8059
8073
|
|
|
8060
8074
|
## `sf project delete tracking`
|
|
8061
8075
|
|
|
@@ -8092,7 +8106,7 @@ EXAMPLES
|
|
|
8092
8106
|
$ sf project delete tracking --target-org my-scratch
|
|
8093
8107
|
```
|
|
8094
8108
|
|
|
8095
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8109
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.18/src/commands/project/delete/tracking.ts)_
|
|
8096
8110
|
|
|
8097
8111
|
## `sf project deploy cancel`
|
|
8098
8112
|
|
|
@@ -8164,7 +8178,7 @@ FLAG DESCRIPTIONS
|
|
|
8164
8178
|
project deploy report".
|
|
8165
8179
|
```
|
|
8166
8180
|
|
|
8167
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8181
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.18/src/commands/project/deploy/cancel.ts)_
|
|
8168
8182
|
|
|
8169
8183
|
## `sf project deploy preview`
|
|
8170
8184
|
|
|
@@ -8247,7 +8261,7 @@ FLAG DESCRIPTIONS
|
|
|
8247
8261
|
All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
|
|
8248
8262
|
```
|
|
8249
8263
|
|
|
8250
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8264
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.18/src/commands/project/deploy/preview.ts)_
|
|
8251
8265
|
|
|
8252
8266
|
## `sf project deploy quick`
|
|
8253
8267
|
|
|
@@ -8340,7 +8354,7 @@ ERROR CODES
|
|
|
8340
8354
|
Canceling (69) The deploy is being canceled.
|
|
8341
8355
|
```
|
|
8342
8356
|
|
|
8343
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8357
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.18/src/commands/project/deploy/quick.ts)_
|
|
8344
8358
|
|
|
8345
8359
|
## `sf project deploy report`
|
|
8346
8360
|
|
|
@@ -8432,7 +8446,7 @@ FLAG DESCRIPTIONS
|
|
|
8432
8446
|
--coverage-formatters lcov --coverage-formatters clover
|
|
8433
8447
|
```
|
|
8434
8448
|
|
|
8435
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8449
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.18/src/commands/project/deploy/report.ts)_
|
|
8436
8450
|
|
|
8437
8451
|
## `sf project deploy resume`
|
|
8438
8452
|
|
|
@@ -8529,7 +8543,7 @@ ERROR CODES
|
|
|
8529
8543
|
Canceling (69) The deploy is being canceled.
|
|
8530
8544
|
```
|
|
8531
8545
|
|
|
8532
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8546
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.18/src/commands/project/deploy/resume.ts)_
|
|
8533
8547
|
|
|
8534
8548
|
## `sf project deploy start`
|
|
8535
8549
|
|
|
@@ -8795,7 +8809,7 @@ ERROR CODES
|
|
|
8795
8809
|
Canceling (69) The deploy is being canceled.
|
|
8796
8810
|
```
|
|
8797
8811
|
|
|
8798
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8812
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.18/src/commands/project/deploy/start.ts)_
|
|
8799
8813
|
|
|
8800
8814
|
## `sf project deploy validate`
|
|
8801
8815
|
|
|
@@ -8999,7 +9013,7 @@ ERROR CODES
|
|
|
8999
9013
|
Canceling (69) The deploy is being canceled.
|
|
9000
9014
|
```
|
|
9001
9015
|
|
|
9002
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9016
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.18/src/commands/project/deploy/validate.ts)_
|
|
9003
9017
|
|
|
9004
9018
|
## `sf project generate manifest`
|
|
9005
9019
|
|
|
@@ -9095,7 +9109,7 @@ EXAMPLES
|
|
|
9095
9109
|
$ sf project generate manifest --from-org test@myorg.com --excluded-metadata StandardValueSet
|
|
9096
9110
|
```
|
|
9097
9111
|
|
|
9098
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9112
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.18/src/commands/project/generate/manifest.ts)_
|
|
9099
9113
|
|
|
9100
9114
|
## `sf project list ignored`
|
|
9101
9115
|
|
|
@@ -9137,7 +9151,7 @@ EXAMPLES
|
|
|
9137
9151
|
$ sf project list ignored --source-dir package.xml
|
|
9138
9152
|
```
|
|
9139
9153
|
|
|
9140
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9154
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.18/src/commands/project/list/ignored.ts)_
|
|
9141
9155
|
|
|
9142
9156
|
## `sf project reset tracking`
|
|
9143
9157
|
|
|
@@ -9186,7 +9200,7 @@ EXAMPLES
|
|
|
9186
9200
|
$ sf project reset tracking --revision 30
|
|
9187
9201
|
```
|
|
9188
9202
|
|
|
9189
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9203
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.18/src/commands/project/reset/tracking.ts)_
|
|
9190
9204
|
|
|
9191
9205
|
## `sf project retrieve preview`
|
|
9192
9206
|
|
|
@@ -9240,7 +9254,7 @@ FLAG DESCRIPTIONS
|
|
|
9240
9254
|
production orgs.
|
|
9241
9255
|
```
|
|
9242
9256
|
|
|
9243
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9257
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.18/src/commands/project/retrieve/preview.ts)_
|
|
9244
9258
|
|
|
9245
9259
|
## `sf project retrieve start`
|
|
9246
9260
|
|
|
@@ -9421,7 +9435,7 @@ ENVIRONMENT VARIABLES
|
|
|
9421
9435
|
SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
|
|
9422
9436
|
```
|
|
9423
9437
|
|
|
9424
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9438
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.18/src/commands/project/retrieve/start.ts)_
|
|
9425
9439
|
|
|
9426
9440
|
## `sf schema generate field`
|
|
9427
9441
|
|
|
@@ -10640,7 +10654,7 @@ EXAMPLES
|
|
|
10640
10654
|
$ sf update --available
|
|
10641
10655
|
```
|
|
10642
10656
|
|
|
10643
|
-
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.
|
|
10657
|
+
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.27/src/commands/update.ts)_
|
|
10644
10658
|
|
|
10645
10659
|
## `sf version`
|
|
10646
10660
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.129.
|
|
3
|
+
"version": "2.129.8",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.129.
|
|
9
|
+
"version": "2.129.8",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"dependencies": {
|
|
@@ -18,18 +18,18 @@
|
|
|
18
18
|
"@oclif/plugin-not-found": "3.2.77",
|
|
19
19
|
"@oclif/plugin-plugins": "5.4.59",
|
|
20
20
|
"@oclif/plugin-search": "1.2.41",
|
|
21
|
-
"@oclif/plugin-update": "4.7.
|
|
21
|
+
"@oclif/plugin-update": "4.7.27",
|
|
22
22
|
"@oclif/plugin-version": "2.2.39",
|
|
23
23
|
"@oclif/plugin-warn-if-update-available": "3.1.57",
|
|
24
24
|
"@oclif/plugin-which": "3.2.46",
|
|
25
25
|
"@salesforce/core": "^8.25.0",
|
|
26
26
|
"@salesforce/kit": "^3.1.6",
|
|
27
|
-
"@salesforce/plugin-agent": "1.32.
|
|
27
|
+
"@salesforce/plugin-agent": "1.32.11",
|
|
28
28
|
"@salesforce/plugin-apex": "3.9.15",
|
|
29
29
|
"@salesforce/plugin-api": "1.3.12",
|
|
30
30
|
"@salesforce/plugin-auth": "4.3.2",
|
|
31
31
|
"@salesforce/plugin-data": "4.0.83",
|
|
32
|
-
"@salesforce/plugin-deploy-retrieve": "3.24.
|
|
32
|
+
"@salesforce/plugin-deploy-retrieve": "3.24.18",
|
|
33
33
|
"@salesforce/plugin-info": "3.4.114",
|
|
34
34
|
"@salesforce/plugin-limits": "3.3.81",
|
|
35
35
|
"@salesforce/plugin-marketplace": "1.3.10",
|
|
@@ -4111,9 +4111,9 @@
|
|
|
4111
4111
|
}
|
|
4112
4112
|
},
|
|
4113
4113
|
"node_modules/@oclif/plugin-update": {
|
|
4114
|
-
"version": "4.7.
|
|
4115
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.7.
|
|
4116
|
-
"integrity": "sha512
|
|
4114
|
+
"version": "4.7.27",
|
|
4115
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.7.27.tgz",
|
|
4116
|
+
"integrity": "sha512-/zxfP8PhxgcJIw0sIsQWer9IFaNGPyF5hpKgmWecYmnLJt4TyqClgYJjWiotkQ2tQTpQWy/GcK0ffJhbwmEIgA==",
|
|
4117
4117
|
"license": "MIT",
|
|
4118
4118
|
"dependencies": {
|
|
4119
4119
|
"@inquirer/select": "^2.5.0",
|
|
@@ -5008,9 +5008,9 @@
|
|
|
5008
5008
|
}
|
|
5009
5009
|
},
|
|
5010
5010
|
"node_modules/@salesforce/plugin-agent": {
|
|
5011
|
-
"version": "1.32.
|
|
5012
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.32.
|
|
5013
|
-
"integrity": "sha512-
|
|
5011
|
+
"version": "1.32.11",
|
|
5012
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.32.11.tgz",
|
|
5013
|
+
"integrity": "sha512-KnLhu0St/EowKXBYBj5WXtF76lF3HOPodDPL579e+lCGfZpWlOCU+V4j13/krtlZK/FlG4mvhEs/4I+xrp/0TQ==",
|
|
5014
5014
|
"license": "Apache-2.0",
|
|
5015
5015
|
"dependencies": {
|
|
5016
5016
|
"@inquirer/core": "^10.3.2",
|
|
@@ -5328,21 +5328,21 @@
|
|
|
5328
5328
|
}
|
|
5329
5329
|
},
|
|
5330
5330
|
"node_modules/@salesforce/plugin-deploy-retrieve": {
|
|
5331
|
-
"version": "3.24.
|
|
5332
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.24.
|
|
5333
|
-
"integrity": "sha512-
|
|
5331
|
+
"version": "3.24.18",
|
|
5332
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.24.18.tgz",
|
|
5333
|
+
"integrity": "sha512-XfaW2LDVy1CQpmm8KwtVAkmo0D1QNyXEHUe3lmCoVqlGM0xjH8eQLYp/V5VR9iX7l8zpXtzHc2mMskhpEaJcDg==",
|
|
5334
5334
|
"license": "Apache-2.0",
|
|
5335
5335
|
"dependencies": {
|
|
5336
5336
|
"@inquirer/prompts": "^7.8.3",
|
|
5337
5337
|
"@oclif/core": "^4.8.4",
|
|
5338
5338
|
"@oclif/multi-stage-output": "^0.8.28",
|
|
5339
5339
|
"@salesforce/apex-node": "^8.3.5",
|
|
5340
|
-
"@salesforce/core": "^8.27.
|
|
5340
|
+
"@salesforce/core": "^8.27.1",
|
|
5341
5341
|
"@salesforce/kit": "^3.2.4",
|
|
5342
5342
|
"@salesforce/plugin-info": "^3.4.93",
|
|
5343
|
-
"@salesforce/sf-plugins-core": "^12.2.
|
|
5344
|
-
"@salesforce/source-deploy-retrieve": "^12.31.
|
|
5345
|
-
"@salesforce/source-tracking": "^7.8.
|
|
5343
|
+
"@salesforce/sf-plugins-core": "^12.2.6",
|
|
5344
|
+
"@salesforce/source-deploy-retrieve": "^12.31.25",
|
|
5345
|
+
"@salesforce/source-tracking": "^7.8.7",
|
|
5346
5346
|
"@salesforce/ts-types": "^2.0.12",
|
|
5347
5347
|
"ansis": "^3.17.0",
|
|
5348
5348
|
"terminal-link": "^3.0.0"
|
|
@@ -5836,17 +5836,17 @@
|
|
|
5836
5836
|
}
|
|
5837
5837
|
},
|
|
5838
5838
|
"node_modules/@salesforce/source-deploy-retrieve": {
|
|
5839
|
-
"version": "12.31.
|
|
5840
|
-
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.31.
|
|
5841
|
-
"integrity": "sha512-
|
|
5839
|
+
"version": "12.31.25",
|
|
5840
|
+
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.31.25.tgz",
|
|
5841
|
+
"integrity": "sha512-X25mDbpb62BzpZ+g03MfTXckkblSdB1C06Wygd/MBO2bTs2Dg4+5m9yJxTUEzHVe1w8bGuyrZFzkjwzfLhvpZQ==",
|
|
5842
5842
|
"license": "Apache-2.0",
|
|
5843
5843
|
"dependencies": {
|
|
5844
|
-
"@salesforce/core": "^8.27.
|
|
5844
|
+
"@salesforce/core": "^8.27.1",
|
|
5845
5845
|
"@salesforce/kit": "^3.2.4",
|
|
5846
5846
|
"@salesforce/ts-types": "^2.0.12",
|
|
5847
5847
|
"@salesforce/types": "^1.6.0",
|
|
5848
5848
|
"fast-levenshtein": "^3.0.0",
|
|
5849
|
-
"fast-xml-parser": "^5.
|
|
5849
|
+
"fast-xml-parser": "^5.5.7",
|
|
5850
5850
|
"got": "^11.8.6",
|
|
5851
5851
|
"graceful-fs": "^4.2.11",
|
|
5852
5852
|
"ignore": "^5.3.2",
|
|
@@ -5974,16 +5974,16 @@
|
|
|
5974
5974
|
}
|
|
5975
5975
|
},
|
|
5976
5976
|
"node_modules/@salesforce/source-tracking": {
|
|
5977
|
-
"version": "7.8.
|
|
5978
|
-
"resolved": "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-7.8.
|
|
5979
|
-
"integrity": "sha512-
|
|
5977
|
+
"version": "7.8.7",
|
|
5978
|
+
"resolved": "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-7.8.7.tgz",
|
|
5979
|
+
"integrity": "sha512-blCcFaW/kOh8fTNaM/NYKKjYZ4Jb6YuCELgkVNr0v41DAWY71/3Xir5A9Cnm3FPZ1rus2givRReXTY7HTEf2PQ==",
|
|
5980
5980
|
"license": "Apache-2.0",
|
|
5981
5981
|
"dependencies": {
|
|
5982
|
-
"@salesforce/core": "^8.27.
|
|
5982
|
+
"@salesforce/core": "^8.27.1",
|
|
5983
5983
|
"@salesforce/kit": "^3.2.4",
|
|
5984
|
-
"@salesforce/source-deploy-retrieve": "^12.31.
|
|
5984
|
+
"@salesforce/source-deploy-retrieve": "^12.31.23",
|
|
5985
5985
|
"@salesforce/ts-types": "^2.0.12",
|
|
5986
|
-
"fast-xml-parser": "^5.
|
|
5986
|
+
"fast-xml-parser": "^5.5.7",
|
|
5987
5987
|
"graceful-fs": "^4.2.11",
|
|
5988
5988
|
"isomorphic-git": "^1.34.2",
|
|
5989
5989
|
"ts-retry-promise": "^0.8.1"
|
package/oclif.lock
CHANGED
|
@@ -1776,10 +1776,10 @@
|
|
|
1776
1776
|
ansi-escapes "^7.3.0"
|
|
1777
1777
|
inquirer-autocomplete-standalone "^0.8.1"
|
|
1778
1778
|
|
|
1779
|
-
"@oclif/plugin-update@4.7.
|
|
1780
|
-
version "4.7.
|
|
1781
|
-
resolved "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.7.
|
|
1782
|
-
integrity sha512
|
|
1779
|
+
"@oclif/plugin-update@4.7.27":
|
|
1780
|
+
version "4.7.27"
|
|
1781
|
+
resolved "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.7.27.tgz"
|
|
1782
|
+
integrity sha512-/zxfP8PhxgcJIw0sIsQWer9IFaNGPyF5hpKgmWecYmnLJt4TyqClgYJjWiotkQ2tQTpQWy/GcK0ffJhbwmEIgA==
|
|
1783
1783
|
dependencies:
|
|
1784
1784
|
"@inquirer/select" "^2.5.0"
|
|
1785
1785
|
"@oclif/core" "^4"
|
|
@@ -2188,10 +2188,10 @@
|
|
|
2188
2188
|
jszip "^3.10.1"
|
|
2189
2189
|
object-treeify "^2"
|
|
2190
2190
|
|
|
2191
|
-
"@salesforce/plugin-agent@1.32.
|
|
2192
|
-
version "1.32.
|
|
2193
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.32.
|
|
2194
|
-
integrity sha512-
|
|
2191
|
+
"@salesforce/plugin-agent@1.32.11":
|
|
2192
|
+
version "1.32.11"
|
|
2193
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.32.11.tgz"
|
|
2194
|
+
integrity sha512-KnLhu0St/EowKXBYBj5WXtF76lF3HOPodDPL579e+lCGfZpWlOCU+V4j13/krtlZK/FlG4mvhEs/4I+xrp/0TQ==
|
|
2195
2195
|
dependencies:
|
|
2196
2196
|
"@inquirer/core" "^10.3.2"
|
|
2197
2197
|
"@inquirer/prompts" "^7.10.1"
|
|
@@ -2287,21 +2287,21 @@
|
|
|
2287
2287
|
undici "^7.24.5"
|
|
2288
2288
|
zod "^4.3.6"
|
|
2289
2289
|
|
|
2290
|
-
"@salesforce/plugin-deploy-retrieve@3.24.
|
|
2291
|
-
version "3.24.
|
|
2292
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.24.
|
|
2293
|
-
integrity sha512-
|
|
2290
|
+
"@salesforce/plugin-deploy-retrieve@3.24.18":
|
|
2291
|
+
version "3.24.18"
|
|
2292
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.24.18.tgz"
|
|
2293
|
+
integrity sha512-XfaW2LDVy1CQpmm8KwtVAkmo0D1QNyXEHUe3lmCoVqlGM0xjH8eQLYp/V5VR9iX7l8zpXtzHc2mMskhpEaJcDg==
|
|
2294
2294
|
dependencies:
|
|
2295
2295
|
"@inquirer/prompts" "^7.8.3"
|
|
2296
2296
|
"@oclif/core" "^4.8.4"
|
|
2297
2297
|
"@oclif/multi-stage-output" "^0.8.28"
|
|
2298
2298
|
"@salesforce/apex-node" "^8.3.5"
|
|
2299
|
-
"@salesforce/core" "^8.27.
|
|
2299
|
+
"@salesforce/core" "^8.27.1"
|
|
2300
2300
|
"@salesforce/kit" "^3.2.4"
|
|
2301
2301
|
"@salesforce/plugin-info" "^3.4.93"
|
|
2302
|
-
"@salesforce/sf-plugins-core" "^12.2.
|
|
2303
|
-
"@salesforce/source-deploy-retrieve" "^12.31.
|
|
2304
|
-
"@salesforce/source-tracking" "^7.8.
|
|
2302
|
+
"@salesforce/sf-plugins-core" "^12.2.6"
|
|
2303
|
+
"@salesforce/source-deploy-retrieve" "^12.31.25"
|
|
2304
|
+
"@salesforce/source-tracking" "^7.8.7"
|
|
2305
2305
|
"@salesforce/ts-types" "^2.0.12"
|
|
2306
2306
|
ansis "^3.17.0"
|
|
2307
2307
|
terminal-link "^3.0.0"
|
|
@@ -2513,7 +2513,7 @@
|
|
|
2513
2513
|
string-width "^7.2.0"
|
|
2514
2514
|
terminal-link "^3.0.0"
|
|
2515
2515
|
|
|
2516
|
-
"@salesforce/sf-plugins-core@^12", "@salesforce/sf-plugins-core@^12.2.0", "@salesforce/sf-plugins-core@^12.2.
|
|
2516
|
+
"@salesforce/sf-plugins-core@^12", "@salesforce/sf-plugins-core@^12.2.0", "@salesforce/sf-plugins-core@^12.2.6", "@salesforce/sf-plugins-core@12.2.6":
|
|
2517
2517
|
version "12.2.6"
|
|
2518
2518
|
resolved "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-12.2.6.tgz"
|
|
2519
2519
|
integrity sha512-EDKE72f/gGk9vL7KI9wsFO5wl/jFVvA2l5XBGR+6sJ1+FTMUbTGRMLObkkYJACk7bKvUFx00xdur2R6K8SWNvg==
|
|
@@ -2529,17 +2529,17 @@
|
|
|
2529
2529
|
cli-progress "^3.12.0"
|
|
2530
2530
|
terminal-link "^3.0.0"
|
|
2531
2531
|
|
|
2532
|
-
"@salesforce/source-deploy-retrieve@^12.31.11", "@salesforce/source-deploy-retrieve@^12.31.14", "@salesforce/source-deploy-retrieve@^12.31.
|
|
2533
|
-
version "12.31.
|
|
2534
|
-
resolved "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.31.
|
|
2535
|
-
integrity sha512-
|
|
2532
|
+
"@salesforce/source-deploy-retrieve@^12.31.11", "@salesforce/source-deploy-retrieve@^12.31.14", "@salesforce/source-deploy-retrieve@^12.31.23", "@salesforce/source-deploy-retrieve@^12.31.24", "@salesforce/source-deploy-retrieve@^12.31.25":
|
|
2533
|
+
version "12.31.25"
|
|
2534
|
+
resolved "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.31.25.tgz"
|
|
2535
|
+
integrity sha512-X25mDbpb62BzpZ+g03MfTXckkblSdB1C06Wygd/MBO2bTs2Dg4+5m9yJxTUEzHVe1w8bGuyrZFzkjwzfLhvpZQ==
|
|
2536
2536
|
dependencies:
|
|
2537
|
-
"@salesforce/core" "^8.27.
|
|
2537
|
+
"@salesforce/core" "^8.27.1"
|
|
2538
2538
|
"@salesforce/kit" "^3.2.4"
|
|
2539
2539
|
"@salesforce/ts-types" "^2.0.12"
|
|
2540
2540
|
"@salesforce/types" "^1.6.0"
|
|
2541
2541
|
fast-levenshtein "^3.0.0"
|
|
2542
|
-
fast-xml-parser "^5.
|
|
2542
|
+
fast-xml-parser "^5.5.7"
|
|
2543
2543
|
got "^11.8.6"
|
|
2544
2544
|
graceful-fs "^4.2.11"
|
|
2545
2545
|
ignore "^5.3.2"
|
|
@@ -2549,16 +2549,16 @@
|
|
|
2549
2549
|
proxy-agent "^6.4.0"
|
|
2550
2550
|
yaml "^2.8.1"
|
|
2551
2551
|
|
|
2552
|
-
"@salesforce/source-tracking@^7.8.
|
|
2553
|
-
version "7.8.
|
|
2554
|
-
resolved "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-7.8.
|
|
2555
|
-
integrity sha512-
|
|
2552
|
+
"@salesforce/source-tracking@^7.8.7":
|
|
2553
|
+
version "7.8.7"
|
|
2554
|
+
resolved "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-7.8.7.tgz"
|
|
2555
|
+
integrity sha512-blCcFaW/kOh8fTNaM/NYKKjYZ4Jb6YuCELgkVNr0v41DAWY71/3Xir5A9Cnm3FPZ1rus2givRReXTY7HTEf2PQ==
|
|
2556
2556
|
dependencies:
|
|
2557
|
-
"@salesforce/core" "^8.27.
|
|
2557
|
+
"@salesforce/core" "^8.27.1"
|
|
2558
2558
|
"@salesforce/kit" "^3.2.4"
|
|
2559
|
-
"@salesforce/source-deploy-retrieve" "^12.31.
|
|
2559
|
+
"@salesforce/source-deploy-retrieve" "^12.31.23"
|
|
2560
2560
|
"@salesforce/ts-types" "^2.0.12"
|
|
2561
|
-
fast-xml-parser "^5.
|
|
2561
|
+
fast-xml-parser "^5.5.7"
|
|
2562
2562
|
graceful-fs "^4.2.11"
|
|
2563
2563
|
isomorphic-git "^1.34.2"
|
|
2564
2564
|
ts-retry-promise "^0.8.1"
|
|
@@ -5990,7 +5990,7 @@ fast-xml-builder@^1.1.4:
|
|
|
5990
5990
|
dependencies:
|
|
5991
5991
|
path-expression-matcher "^1.1.3"
|
|
5992
5992
|
|
|
5993
|
-
fast-xml-parser@^5.3.6, fast-xml-parser@^5.
|
|
5993
|
+
fast-xml-parser@^5.3.6, fast-xml-parser@^5.5.7, fast-xml-parser@^5.5.8, fast-xml-parser@5.5.8:
|
|
5994
5994
|
version "5.5.8"
|
|
5995
5995
|
resolved "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.5.8.tgz"
|
|
5996
5996
|
integrity sha512-Z7Fh2nVQSb2d+poDViM063ix2ZGt9jmY1nWhPfHBOK2Hgnb/OW3P4Et3P/81SEej0J7QbWtJqxO05h8QYfK7LQ==
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
3
|
"description": "The Salesforce CLI",
|
|
4
|
-
"version": "2.129.
|
|
4
|
+
"version": "2.129.8",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
],
|
|
78
78
|
"jitPlugins": {
|
|
79
79
|
"@salesforce/plugin-code-analyzer": "5.11.0",
|
|
80
|
-
"@salesforce/plugin-community": "3.3.
|
|
80
|
+
"@salesforce/plugin-community": "3.3.51",
|
|
81
81
|
"@salesforce/plugin-custom-metadata": "3.3.88",
|
|
82
82
|
"@salesforce/plugin-dev": "2.5.2",
|
|
83
83
|
"@salesforce/plugin-devops-center": "1.2.27",
|
|
@@ -152,18 +152,18 @@
|
|
|
152
152
|
"@oclif/plugin-not-found": "3.2.77",
|
|
153
153
|
"@oclif/plugin-plugins": "5.4.59",
|
|
154
154
|
"@oclif/plugin-search": "1.2.41",
|
|
155
|
-
"@oclif/plugin-update": "4.7.
|
|
155
|
+
"@oclif/plugin-update": "4.7.27",
|
|
156
156
|
"@oclif/plugin-version": "2.2.39",
|
|
157
157
|
"@oclif/plugin-warn-if-update-available": "3.1.57",
|
|
158
158
|
"@oclif/plugin-which": "3.2.46",
|
|
159
159
|
"@salesforce/core": "^8.25.0",
|
|
160
160
|
"@salesforce/kit": "^3.1.6",
|
|
161
|
-
"@salesforce/plugin-agent": "1.32.
|
|
161
|
+
"@salesforce/plugin-agent": "1.32.11",
|
|
162
162
|
"@salesforce/plugin-apex": "3.9.15",
|
|
163
163
|
"@salesforce/plugin-api": "1.3.12",
|
|
164
164
|
"@salesforce/plugin-auth": "4.3.2",
|
|
165
165
|
"@salesforce/plugin-data": "4.0.83",
|
|
166
|
-
"@salesforce/plugin-deploy-retrieve": "3.24.
|
|
166
|
+
"@salesforce/plugin-deploy-retrieve": "3.24.18",
|
|
167
167
|
"@salesforce/plugin-info": "3.4.114",
|
|
168
168
|
"@salesforce/plugin-limits": "3.3.81",
|
|
169
169
|
"@salesforce/plugin-marketplace": "1.3.10",
|