@salesforce/cli 2.129.7 → 2.130.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 +56 -42
- package/npm-shrinkwrap.json +21 -21
- package/oclif.lock +21 -21
- package/oclif.manifest.json +126 -126
- package/package.json +7 -7
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.
|
|
28
|
+
@salesforce/cli/2.130.0 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
|
|
|
@@ -7510,7 +7524,7 @@ EXAMPLES
|
|
|
7510
7524
|
$ sf plugins discover
|
|
7511
7525
|
```
|
|
7512
7526
|
|
|
7513
|
-
_See code: [@salesforce/plugin-marketplace](https://github.com/salesforcecli/plugin-marketplace/blob/1.3.
|
|
7527
|
+
_See code: [@salesforce/plugin-marketplace](https://github.com/salesforcecli/plugin-marketplace/blob/1.3.13/src/commands/plugins/discover.ts)_
|
|
7514
7528
|
|
|
7515
7529
|
## `sf plugins:inspect PLUGIN...`
|
|
7516
7530
|
|
|
@@ -7661,7 +7675,7 @@ EXAMPLES
|
|
|
7661
7675
|
$ sf plugins trust verify --npm @scope/npmName
|
|
7662
7676
|
```
|
|
7663
7677
|
|
|
7664
|
-
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.7.
|
|
7678
|
+
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.7.116/src/commands/plugins/trust/verify.ts)_
|
|
7665
7679
|
|
|
7666
7680
|
## `sf plugins uninstall [PLUGIN]`
|
|
7667
7681
|
|
|
@@ -9475,7 +9489,7 @@ FLAG DESCRIPTIONS
|
|
|
9475
9489
|
If you don't specify this flag, the command prompts you to choose from your local objects.
|
|
9476
9490
|
```
|
|
9477
9491
|
|
|
9478
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9492
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.90/src/commands/schema/generate/field.ts)_
|
|
9479
9493
|
|
|
9480
9494
|
## `sf schema generate platformevent`
|
|
9481
9495
|
|
|
@@ -9507,7 +9521,7 @@ EXAMPLES
|
|
|
9507
9521
|
$ sf schema generate platformevent --label "My Platform Event"
|
|
9508
9522
|
```
|
|
9509
9523
|
|
|
9510
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9524
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.90/src/commands/schema/generate/platformevent.ts)_
|
|
9511
9525
|
|
|
9512
9526
|
## `sf schema generate sobject`
|
|
9513
9527
|
|
|
@@ -9564,7 +9578,7 @@ FLAG DESCRIPTIONS
|
|
|
9564
9578
|
- Streaming API: With Bulk API and Sharing, classifies the custom object as an Enterprise Application object.
|
|
9565
9579
|
```
|
|
9566
9580
|
|
|
9567
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9581
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.90/src/commands/schema/generate/sobject.ts)_
|
|
9568
9582
|
|
|
9569
9583
|
## `sf schema generate tab`
|
|
9570
9584
|
|
|
@@ -9612,7 +9626,7 @@ FLAG DESCRIPTIONS
|
|
|
9612
9626
|
The API name for a custom object always ends in `__c`, such as `MyObject__c`.
|
|
9613
9627
|
```
|
|
9614
9628
|
|
|
9615
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9629
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.90/src/commands/schema/generate/tab.ts)_
|
|
9616
9630
|
|
|
9617
9631
|
## `sf search`
|
|
9618
9632
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.130.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.
|
|
9
|
+
"version": "2.130.0",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"dependencies": {
|
|
@@ -24,7 +24,7 @@
|
|
|
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",
|
|
@@ -32,15 +32,15 @@
|
|
|
32
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
|
-
"@salesforce/plugin-marketplace": "1.3.
|
|
35
|
+
"@salesforce/plugin-marketplace": "1.3.13",
|
|
36
36
|
"@salesforce/plugin-org": "5.9.75",
|
|
37
37
|
"@salesforce/plugin-packaging": "2.25.12",
|
|
38
38
|
"@salesforce/plugin-schema": "3.3.100",
|
|
39
39
|
"@salesforce/plugin-settings": "2.4.62",
|
|
40
|
-
"@salesforce/plugin-sobject": "1.4.
|
|
40
|
+
"@salesforce/plugin-sobject": "1.4.90",
|
|
41
41
|
"@salesforce/plugin-telemetry": "3.8.5",
|
|
42
42
|
"@salesforce/plugin-templates": "56.11.4",
|
|
43
|
-
"@salesforce/plugin-trust": "3.7.
|
|
43
|
+
"@salesforce/plugin-trust": "3.7.116",
|
|
44
44
|
"@salesforce/plugin-user": "3.8.0",
|
|
45
45
|
"@salesforce/sf-plugins-core": "12.2.6",
|
|
46
46
|
"ansis": "^3.12.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",
|
|
@@ -5388,12 +5388,12 @@
|
|
|
5388
5388
|
}
|
|
5389
5389
|
},
|
|
5390
5390
|
"node_modules/@salesforce/plugin-marketplace": {
|
|
5391
|
-
"version": "1.3.
|
|
5392
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-marketplace/-/plugin-marketplace-1.3.
|
|
5393
|
-
"integrity": "sha512-
|
|
5391
|
+
"version": "1.3.13",
|
|
5392
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-marketplace/-/plugin-marketplace-1.3.13.tgz",
|
|
5393
|
+
"integrity": "sha512-B4FcE1/ix3KlGCX6mt8jeB4cFSNv1exLBPi56PNbbslMNOBmvQB1/y+Kr6D0Nd0/KaOy9flnOBVTVnBK5CyQOA==",
|
|
5394
5394
|
"license": "Apache-2.0",
|
|
5395
5395
|
"dependencies": {
|
|
5396
|
-
"@salesforce/core": "^8.
|
|
5396
|
+
"@salesforce/core": "^8.27.1",
|
|
5397
5397
|
"@salesforce/kit": "^3.2.4",
|
|
5398
5398
|
"@salesforce/sf-plugins-core": "^12.2.6",
|
|
5399
5399
|
"got": "^13.0.0",
|
|
@@ -5623,16 +5623,16 @@
|
|
|
5623
5623
|
}
|
|
5624
5624
|
},
|
|
5625
5625
|
"node_modules/@salesforce/plugin-sobject": {
|
|
5626
|
-
"version": "1.4.
|
|
5627
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-sobject/-/plugin-sobject-1.4.
|
|
5628
|
-
"integrity": "sha512-
|
|
5626
|
+
"version": "1.4.90",
|
|
5627
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-sobject/-/plugin-sobject-1.4.90.tgz",
|
|
5628
|
+
"integrity": "sha512-GTx0jYCiO+15dDLrdnB+4eNwZF2NX485S9E+xE2ystKBT4gZ0yqj08Hyl0r7/i+cEX3t9Bnjzc5TJfPU6psHVg==",
|
|
5629
5629
|
"license": "Apache-2.0",
|
|
5630
5630
|
"dependencies": {
|
|
5631
5631
|
"@inquirer/confirm": "^3.2.0",
|
|
5632
5632
|
"@inquirer/input": "^2.3.0",
|
|
5633
5633
|
"@inquirer/select": "^2.5.0",
|
|
5634
5634
|
"@oclif/core": "^4",
|
|
5635
|
-
"@salesforce/core": "^8.
|
|
5635
|
+
"@salesforce/core": "^8.27.1",
|
|
5636
5636
|
"@salesforce/kit": "^3.2.4",
|
|
5637
5637
|
"@salesforce/sf-plugins-core": "^11.3.12",
|
|
5638
5638
|
"fast-glob": "^3.3.3",
|
|
@@ -5749,15 +5749,15 @@
|
|
|
5749
5749
|
}
|
|
5750
5750
|
},
|
|
5751
5751
|
"node_modules/@salesforce/plugin-trust": {
|
|
5752
|
-
"version": "3.7.
|
|
5753
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-trust/-/plugin-trust-3.7.
|
|
5754
|
-
"integrity": "sha512-
|
|
5752
|
+
"version": "3.7.116",
|
|
5753
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-trust/-/plugin-trust-3.7.116.tgz",
|
|
5754
|
+
"integrity": "sha512-R0MCOEa8eP1ziJK4wgEpWSZs62W1NO8cLuvfGTqkWWPKuSDTY+uv+tQ0ar2RtnvnXUMIrEI5tkQEVeq/QtIe2g==",
|
|
5755
5755
|
"license": "Apache-2.0",
|
|
5756
5756
|
"dependencies": {
|
|
5757
5757
|
"@oclif/core": "^4",
|
|
5758
5758
|
"@salesforce/core": "^8.26.2",
|
|
5759
5759
|
"@salesforce/kit": "^3.2.4",
|
|
5760
|
-
"@salesforce/plugin-info": "^3.4.
|
|
5760
|
+
"@salesforce/plugin-info": "^3.4.114",
|
|
5761
5761
|
"@salesforce/sf-plugins-core": "^12",
|
|
5762
5762
|
"got": "^13.0.0",
|
|
5763
5763
|
"npm": "^10.9.3",
|
package/oclif.lock
CHANGED
|
@@ -2091,7 +2091,7 @@
|
|
|
2091
2091
|
strip-ansi "6.0.1"
|
|
2092
2092
|
ts-retry-promise "^0.8.1"
|
|
2093
2093
|
|
|
2094
|
-
"@salesforce/core@^8.18.7", "@salesforce/core@^8.
|
|
2094
|
+
"@salesforce/core@^8.18.7", "@salesforce/core@^8.25.0", "@salesforce/core@^8.25.1", "@salesforce/core@^8.26.2", "@salesforce/core@^8.26.3", "@salesforce/core@^8.27.0", "@salesforce/core@^8.27.1", "@salesforce/core@^8.5.1", "@salesforce/core@^8.8.0", "@salesforce/core@^8.8.5":
|
|
2095
2095
|
version "8.27.1"
|
|
2096
2096
|
resolved "https://registry.npmjs.org/@salesforce/core/-/core-8.27.1.tgz"
|
|
2097
2097
|
integrity sha512-1WpVt9tQAEINGzsQsSiVRmcmYUpKeK4P54624f9HvLIv7o7jTjdARwirJpOqivIihbDE8OJnYOdsr0vV5Dz93A==
|
|
@@ -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"
|
|
@@ -2306,7 +2306,7 @@
|
|
|
2306
2306
|
ansis "^3.17.0"
|
|
2307
2307
|
terminal-link "^3.0.0"
|
|
2308
2308
|
|
|
2309
|
-
"@salesforce/plugin-info@^3.4.100", "@salesforce/plugin-info@^3.4.
|
|
2309
|
+
"@salesforce/plugin-info@^3.4.100", "@salesforce/plugin-info@^3.4.114", "@salesforce/plugin-info@^3.4.93", "@salesforce/plugin-info@3.4.114":
|
|
2310
2310
|
version "3.4.114"
|
|
2311
2311
|
resolved "https://registry.npmjs.org/@salesforce/plugin-info/-/plugin-info-3.4.114.tgz"
|
|
2312
2312
|
integrity sha512-3Mn+rT0vLjo+4IBrKg6wtem4fhulMY8ob1Jdz9bZfL5n2OclrKPp5h2PaxBInzBg42qJfZWGD6+cBvibnhY5uw==
|
|
@@ -2332,12 +2332,12 @@
|
|
|
2332
2332
|
"@salesforce/core" "^8.27.0"
|
|
2333
2333
|
"@salesforce/sf-plugins-core" "^12.2.6"
|
|
2334
2334
|
|
|
2335
|
-
"@salesforce/plugin-marketplace@1.3.
|
|
2336
|
-
version "1.3.
|
|
2337
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-marketplace/-/plugin-marketplace-1.3.
|
|
2338
|
-
integrity sha512-
|
|
2335
|
+
"@salesforce/plugin-marketplace@1.3.13":
|
|
2336
|
+
version "1.3.13"
|
|
2337
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-marketplace/-/plugin-marketplace-1.3.13.tgz"
|
|
2338
|
+
integrity sha512-B4FcE1/ix3KlGCX6mt8jeB4cFSNv1exLBPi56PNbbslMNOBmvQB1/y+Kr6D0Nd0/KaOy9flnOBVTVnBK5CyQOA==
|
|
2339
2339
|
dependencies:
|
|
2340
|
-
"@salesforce/core" "^8.
|
|
2340
|
+
"@salesforce/core" "^8.27.1"
|
|
2341
2341
|
"@salesforce/kit" "^3.2.4"
|
|
2342
2342
|
"@salesforce/sf-plugins-core" "^12.2.6"
|
|
2343
2343
|
got "^13.0.0"
|
|
@@ -2420,16 +2420,16 @@
|
|
|
2420
2420
|
"@salesforce/sf-plugins-core" "^12.2.6"
|
|
2421
2421
|
fast-levenshtein "^3.0.0"
|
|
2422
2422
|
|
|
2423
|
-
"@salesforce/plugin-sobject@1.4.
|
|
2424
|
-
version "1.4.
|
|
2425
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-sobject/-/plugin-sobject-1.4.
|
|
2426
|
-
integrity sha512-
|
|
2423
|
+
"@salesforce/plugin-sobject@1.4.90":
|
|
2424
|
+
version "1.4.90"
|
|
2425
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-sobject/-/plugin-sobject-1.4.90.tgz"
|
|
2426
|
+
integrity sha512-GTx0jYCiO+15dDLrdnB+4eNwZF2NX485S9E+xE2ystKBT4gZ0yqj08Hyl0r7/i+cEX3t9Bnjzc5TJfPU6psHVg==
|
|
2427
2427
|
dependencies:
|
|
2428
2428
|
"@inquirer/confirm" "^3.2.0"
|
|
2429
2429
|
"@inquirer/input" "^2.3.0"
|
|
2430
2430
|
"@inquirer/select" "^2.5.0"
|
|
2431
2431
|
"@oclif/core" "^4"
|
|
2432
|
-
"@salesforce/core" "^8.
|
|
2432
|
+
"@salesforce/core" "^8.27.1"
|
|
2433
2433
|
"@salesforce/kit" "^3.2.4"
|
|
2434
2434
|
"@salesforce/sf-plugins-core" "^11.3.12"
|
|
2435
2435
|
fast-glob "^3.3.3"
|
|
@@ -2458,15 +2458,15 @@
|
|
|
2458
2458
|
"@salesforce/sf-plugins-core" "^12"
|
|
2459
2459
|
"@salesforce/templates" "^66.5.6"
|
|
2460
2460
|
|
|
2461
|
-
"@salesforce/plugin-trust@^3.7.69", "@salesforce/plugin-trust@3.7.
|
|
2462
|
-
version "3.7.
|
|
2463
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-trust/-/plugin-trust-3.7.
|
|
2464
|
-
integrity sha512-
|
|
2461
|
+
"@salesforce/plugin-trust@^3.7.69", "@salesforce/plugin-trust@3.7.116":
|
|
2462
|
+
version "3.7.116"
|
|
2463
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-trust/-/plugin-trust-3.7.116.tgz"
|
|
2464
|
+
integrity sha512-R0MCOEa8eP1ziJK4wgEpWSZs62W1NO8cLuvfGTqkWWPKuSDTY+uv+tQ0ar2RtnvnXUMIrEI5tkQEVeq/QtIe2g==
|
|
2465
2465
|
dependencies:
|
|
2466
2466
|
"@oclif/core" "^4"
|
|
2467
2467
|
"@salesforce/core" "^8.26.2"
|
|
2468
2468
|
"@salesforce/kit" "^3.2.4"
|
|
2469
|
-
"@salesforce/plugin-info" "^3.4.
|
|
2469
|
+
"@salesforce/plugin-info" "^3.4.114"
|
|
2470
2470
|
"@salesforce/sf-plugins-core" "^12"
|
|
2471
2471
|
got "^13.0.0"
|
|
2472
2472
|
npm "^10.9.3"
|
package/oclif.manifest.json
CHANGED
|
@@ -3889,6 +3889,131 @@
|
|
|
3889
3889
|
"snapshot:delete:org"
|
|
3890
3890
|
]
|
|
3891
3891
|
},
|
|
3892
|
+
"org:get:snapshot": {
|
|
3893
|
+
"aliases": [
|
|
3894
|
+
"force:org:snapshot:get"
|
|
3895
|
+
],
|
|
3896
|
+
"args": {},
|
|
3897
|
+
"deprecateAliases": true,
|
|
3898
|
+
"description": "Snapshot creation can take a while. Use this command with the snapshot name or ID to check its creation status. After the status changes to Active, you can use the snapshot to create scratch orgs.\n\nTo create a snapshot, use the \"<%= config.bin %> org create snapshot\" command. To retrieve a list of all snapshots, use \"<%= config.bin %> org list snapshot\".",
|
|
3899
|
+
"examples": [
|
|
3900
|
+
"Get snapshot details using its ID and the default Dev Hub org:\n<%= config.bin %> <%= command.id %> --snapshot 0Oo...",
|
|
3901
|
+
"Get snapshot details using its name from a Dev Hub org with alias SnapshotDevHub:\n<%= config.bin %> <%= command.id %> --snapshot Dependencies --target-dev-hub SnapshotDevHub"
|
|
3902
|
+
],
|
|
3903
|
+
"flags": {
|
|
3904
|
+
"json": {
|
|
3905
|
+
"description": "Format output as json.",
|
|
3906
|
+
"helpGroup": "GLOBAL",
|
|
3907
|
+
"name": "json",
|
|
3908
|
+
"allowNo": false,
|
|
3909
|
+
"type": "boolean"
|
|
3910
|
+
},
|
|
3911
|
+
"flags-dir": {
|
|
3912
|
+
"helpGroup": "GLOBAL",
|
|
3913
|
+
"name": "flags-dir",
|
|
3914
|
+
"summary": "Import flag values from a directory.",
|
|
3915
|
+
"hasDynamicHelp": false,
|
|
3916
|
+
"multiple": false,
|
|
3917
|
+
"type": "option"
|
|
3918
|
+
},
|
|
3919
|
+
"target-dev-hub": {
|
|
3920
|
+
"aliases": [
|
|
3921
|
+
"targetdevhubusername"
|
|
3922
|
+
],
|
|
3923
|
+
"char": "v",
|
|
3924
|
+
"deprecateAliases": true,
|
|
3925
|
+
"name": "target-dev-hub",
|
|
3926
|
+
"noCacheDefault": true,
|
|
3927
|
+
"required": true,
|
|
3928
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
3929
|
+
"hasDynamicHelp": true,
|
|
3930
|
+
"multiple": false,
|
|
3931
|
+
"type": "option"
|
|
3932
|
+
},
|
|
3933
|
+
"api-version": {
|
|
3934
|
+
"aliases": [
|
|
3935
|
+
"apiversion"
|
|
3936
|
+
],
|
|
3937
|
+
"deprecateAliases": true,
|
|
3938
|
+
"description": "Override the api version used for api requests made by this command",
|
|
3939
|
+
"name": "api-version",
|
|
3940
|
+
"hasDynamicHelp": false,
|
|
3941
|
+
"multiple": false,
|
|
3942
|
+
"type": "option"
|
|
3943
|
+
},
|
|
3944
|
+
"loglevel": {
|
|
3945
|
+
"deprecated": {
|
|
3946
|
+
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
3947
|
+
},
|
|
3948
|
+
"hidden": true,
|
|
3949
|
+
"name": "loglevel",
|
|
3950
|
+
"hasDynamicHelp": false,
|
|
3951
|
+
"multiple": false,
|
|
3952
|
+
"type": "option"
|
|
3953
|
+
},
|
|
3954
|
+
"snapshot": {
|
|
3955
|
+
"char": "s",
|
|
3956
|
+
"description": "The IDs of scratch org snapshots start with 0Oo.",
|
|
3957
|
+
"name": "snapshot",
|
|
3958
|
+
"required": true,
|
|
3959
|
+
"summary": "Name or ID of snapshot to retrieve.",
|
|
3960
|
+
"hasDynamicHelp": false,
|
|
3961
|
+
"multiple": false,
|
|
3962
|
+
"type": "option"
|
|
3963
|
+
}
|
|
3964
|
+
},
|
|
3965
|
+
"hasDynamicHelp": true,
|
|
3966
|
+
"hiddenAliases": [],
|
|
3967
|
+
"id": "org:get:snapshot",
|
|
3968
|
+
"pluginAlias": "@salesforce/plugin-signups",
|
|
3969
|
+
"pluginName": "@salesforce/plugin-signups",
|
|
3970
|
+
"pluginType": "jit",
|
|
3971
|
+
"strict": true,
|
|
3972
|
+
"summary": "Get details about a scratch org snapshot.",
|
|
3973
|
+
"enableJsonFlag": true,
|
|
3974
|
+
"isESM": true,
|
|
3975
|
+
"relativePath": [
|
|
3976
|
+
"lib",
|
|
3977
|
+
"commands",
|
|
3978
|
+
"org",
|
|
3979
|
+
"get",
|
|
3980
|
+
"snapshot.js"
|
|
3981
|
+
],
|
|
3982
|
+
"aliasPermutations": [
|
|
3983
|
+
"force:org:snapshot:get",
|
|
3984
|
+
"org:force:snapshot:get",
|
|
3985
|
+
"org:snapshot:force:get",
|
|
3986
|
+
"org:snapshot:get:force",
|
|
3987
|
+
"force:snapshot:org:get",
|
|
3988
|
+
"snapshot:force:org:get",
|
|
3989
|
+
"snapshot:org:force:get",
|
|
3990
|
+
"snapshot:org:get:force",
|
|
3991
|
+
"force:snapshot:get:org",
|
|
3992
|
+
"snapshot:force:get:org",
|
|
3993
|
+
"snapshot:get:force:org",
|
|
3994
|
+
"snapshot:get:org:force",
|
|
3995
|
+
"force:org:get:snapshot",
|
|
3996
|
+
"org:force:get:snapshot",
|
|
3997
|
+
"org:get:force:snapshot",
|
|
3998
|
+
"org:get:snapshot:force",
|
|
3999
|
+
"force:get:org:snapshot",
|
|
4000
|
+
"get:force:org:snapshot",
|
|
4001
|
+
"get:org:force:snapshot",
|
|
4002
|
+
"get:org:snapshot:force",
|
|
4003
|
+
"force:get:snapshot:org",
|
|
4004
|
+
"get:force:snapshot:org",
|
|
4005
|
+
"get:snapshot:force:org",
|
|
4006
|
+
"get:snapshot:org:force"
|
|
4007
|
+
],
|
|
4008
|
+
"permutations": [
|
|
4009
|
+
"org:get:snapshot",
|
|
4010
|
+
"get:org:snapshot",
|
|
4011
|
+
"get:snapshot:org",
|
|
4012
|
+
"org:snapshot:get",
|
|
4013
|
+
"snapshot:org:get",
|
|
4014
|
+
"snapshot:get:org"
|
|
4015
|
+
]
|
|
4016
|
+
},
|
|
3892
4017
|
"org:list:shape": {
|
|
3893
4018
|
"aliases": [
|
|
3894
4019
|
"force:org:shape:list"
|
|
@@ -4101,131 +4226,6 @@
|
|
|
4101
4226
|
"snapshot:list:org"
|
|
4102
4227
|
]
|
|
4103
4228
|
},
|
|
4104
|
-
"org:get:snapshot": {
|
|
4105
|
-
"aliases": [
|
|
4106
|
-
"force:org:snapshot:get"
|
|
4107
|
-
],
|
|
4108
|
-
"args": {},
|
|
4109
|
-
"deprecateAliases": true,
|
|
4110
|
-
"description": "Snapshot creation can take a while. Use this command with the snapshot name or ID to check its creation status. After the status changes to Active, you can use the snapshot to create scratch orgs.\n\nTo create a snapshot, use the \"<%= config.bin %> org create snapshot\" command. To retrieve a list of all snapshots, use \"<%= config.bin %> org list snapshot\".",
|
|
4111
|
-
"examples": [
|
|
4112
|
-
"Get snapshot details using its ID and the default Dev Hub org:\n<%= config.bin %> <%= command.id %> --snapshot 0Oo...",
|
|
4113
|
-
"Get snapshot details using its name from a Dev Hub org with alias SnapshotDevHub:\n<%= config.bin %> <%= command.id %> --snapshot Dependencies --target-dev-hub SnapshotDevHub"
|
|
4114
|
-
],
|
|
4115
|
-
"flags": {
|
|
4116
|
-
"json": {
|
|
4117
|
-
"description": "Format output as json.",
|
|
4118
|
-
"helpGroup": "GLOBAL",
|
|
4119
|
-
"name": "json",
|
|
4120
|
-
"allowNo": false,
|
|
4121
|
-
"type": "boolean"
|
|
4122
|
-
},
|
|
4123
|
-
"flags-dir": {
|
|
4124
|
-
"helpGroup": "GLOBAL",
|
|
4125
|
-
"name": "flags-dir",
|
|
4126
|
-
"summary": "Import flag values from a directory.",
|
|
4127
|
-
"hasDynamicHelp": false,
|
|
4128
|
-
"multiple": false,
|
|
4129
|
-
"type": "option"
|
|
4130
|
-
},
|
|
4131
|
-
"target-dev-hub": {
|
|
4132
|
-
"aliases": [
|
|
4133
|
-
"targetdevhubusername"
|
|
4134
|
-
],
|
|
4135
|
-
"char": "v",
|
|
4136
|
-
"deprecateAliases": true,
|
|
4137
|
-
"name": "target-dev-hub",
|
|
4138
|
-
"noCacheDefault": true,
|
|
4139
|
-
"required": true,
|
|
4140
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
4141
|
-
"hasDynamicHelp": true,
|
|
4142
|
-
"multiple": false,
|
|
4143
|
-
"type": "option"
|
|
4144
|
-
},
|
|
4145
|
-
"api-version": {
|
|
4146
|
-
"aliases": [
|
|
4147
|
-
"apiversion"
|
|
4148
|
-
],
|
|
4149
|
-
"deprecateAliases": true,
|
|
4150
|
-
"description": "Override the api version used for api requests made by this command",
|
|
4151
|
-
"name": "api-version",
|
|
4152
|
-
"hasDynamicHelp": false,
|
|
4153
|
-
"multiple": false,
|
|
4154
|
-
"type": "option"
|
|
4155
|
-
},
|
|
4156
|
-
"loglevel": {
|
|
4157
|
-
"deprecated": {
|
|
4158
|
-
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
4159
|
-
},
|
|
4160
|
-
"hidden": true,
|
|
4161
|
-
"name": "loglevel",
|
|
4162
|
-
"hasDynamicHelp": false,
|
|
4163
|
-
"multiple": false,
|
|
4164
|
-
"type": "option"
|
|
4165
|
-
},
|
|
4166
|
-
"snapshot": {
|
|
4167
|
-
"char": "s",
|
|
4168
|
-
"description": "The IDs of scratch org snapshots start with 0Oo.",
|
|
4169
|
-
"name": "snapshot",
|
|
4170
|
-
"required": true,
|
|
4171
|
-
"summary": "Name or ID of snapshot to retrieve.",
|
|
4172
|
-
"hasDynamicHelp": false,
|
|
4173
|
-
"multiple": false,
|
|
4174
|
-
"type": "option"
|
|
4175
|
-
}
|
|
4176
|
-
},
|
|
4177
|
-
"hasDynamicHelp": true,
|
|
4178
|
-
"hiddenAliases": [],
|
|
4179
|
-
"id": "org:get:snapshot",
|
|
4180
|
-
"pluginAlias": "@salesforce/plugin-signups",
|
|
4181
|
-
"pluginName": "@salesforce/plugin-signups",
|
|
4182
|
-
"pluginType": "jit",
|
|
4183
|
-
"strict": true,
|
|
4184
|
-
"summary": "Get details about a scratch org snapshot.",
|
|
4185
|
-
"enableJsonFlag": true,
|
|
4186
|
-
"isESM": true,
|
|
4187
|
-
"relativePath": [
|
|
4188
|
-
"lib",
|
|
4189
|
-
"commands",
|
|
4190
|
-
"org",
|
|
4191
|
-
"get",
|
|
4192
|
-
"snapshot.js"
|
|
4193
|
-
],
|
|
4194
|
-
"aliasPermutations": [
|
|
4195
|
-
"force:org:snapshot:get",
|
|
4196
|
-
"org:force:snapshot:get",
|
|
4197
|
-
"org:snapshot:force:get",
|
|
4198
|
-
"org:snapshot:get:force",
|
|
4199
|
-
"force:snapshot:org:get",
|
|
4200
|
-
"snapshot:force:org:get",
|
|
4201
|
-
"snapshot:org:force:get",
|
|
4202
|
-
"snapshot:org:get:force",
|
|
4203
|
-
"force:snapshot:get:org",
|
|
4204
|
-
"snapshot:force:get:org",
|
|
4205
|
-
"snapshot:get:force:org",
|
|
4206
|
-
"snapshot:get:org:force",
|
|
4207
|
-
"force:org:get:snapshot",
|
|
4208
|
-
"org:force:get:snapshot",
|
|
4209
|
-
"org:get:force:snapshot",
|
|
4210
|
-
"org:get:snapshot:force",
|
|
4211
|
-
"force:get:org:snapshot",
|
|
4212
|
-
"get:force:org:snapshot",
|
|
4213
|
-
"get:org:force:snapshot",
|
|
4214
|
-
"get:org:snapshot:force",
|
|
4215
|
-
"force:get:snapshot:org",
|
|
4216
|
-
"get:force:snapshot:org",
|
|
4217
|
-
"get:snapshot:force:org",
|
|
4218
|
-
"get:snapshot:org:force"
|
|
4219
|
-
],
|
|
4220
|
-
"permutations": [
|
|
4221
|
-
"org:get:snapshot",
|
|
4222
|
-
"get:org:snapshot",
|
|
4223
|
-
"get:snapshot:org",
|
|
4224
|
-
"org:snapshot:get",
|
|
4225
|
-
"snapshot:org:get",
|
|
4226
|
-
"snapshot:get:org"
|
|
4227
|
-
]
|
|
4228
|
-
},
|
|
4229
4229
|
"force:lightning:lwc:test:create": {
|
|
4230
4230
|
"id": "force:lightning:lwc:test:create",
|
|
4231
4231
|
"description": "creates a Lightning web component test file with boilerplate code inside a __tests__ directory.",
|
|
@@ -4435,5 +4435,5 @@
|
|
|
4435
4435
|
"requiresProject": true
|
|
4436
4436
|
}
|
|
4437
4437
|
},
|
|
4438
|
-
"version": "2.
|
|
4438
|
+
"version": "2.130.0"
|
|
4439
4439
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
3
|
"description": "The Salesforce CLI",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.130.0",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -77,13 +77,13 @@
|
|
|
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",
|
|
84
84
|
"@salesforce/plugin-flow": "1.0.5",
|
|
85
85
|
"@salesforce/plugin-lightning-dev": "6.2.16",
|
|
86
|
-
"@salesforce/plugin-signups": "2.6.
|
|
86
|
+
"@salesforce/plugin-signups": "2.6.58",
|
|
87
87
|
"@salesforce/sfdx-plugin-lwc-test": "1.2.1"
|
|
88
88
|
},
|
|
89
89
|
"devPlugins": [
|
|
@@ -158,7 +158,7 @@
|
|
|
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",
|
|
@@ -166,15 +166,15 @@
|
|
|
166
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
|
-
"@salesforce/plugin-marketplace": "1.3.
|
|
169
|
+
"@salesforce/plugin-marketplace": "1.3.13",
|
|
170
170
|
"@salesforce/plugin-org": "5.9.75",
|
|
171
171
|
"@salesforce/plugin-packaging": "2.25.12",
|
|
172
172
|
"@salesforce/plugin-schema": "3.3.100",
|
|
173
173
|
"@salesforce/plugin-settings": "2.4.62",
|
|
174
|
-
"@salesforce/plugin-sobject": "1.4.
|
|
174
|
+
"@salesforce/plugin-sobject": "1.4.90",
|
|
175
175
|
"@salesforce/plugin-telemetry": "3.8.5",
|
|
176
176
|
"@salesforce/plugin-templates": "56.11.4",
|
|
177
|
-
"@salesforce/plugin-trust": "3.7.
|
|
177
|
+
"@salesforce/plugin-trust": "3.7.116",
|
|
178
178
|
"@salesforce/plugin-user": "3.8.0",
|
|
179
179
|
"@salesforce/sf-plugins-core": "12.2.6",
|
|
180
180
|
"ansis": "^3.12.0"
|