@salesforce/cli 2.94.0 → 2.94.2
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 +134 -110
- package/npm-shrinkwrap.json +39 -39
- package/oclif.lock +40 -40
- package/oclif.manifest.json +1 -1
- package/package.json +6 -6
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.94.
|
|
28
|
+
@salesforce/cli/2.94.2 linux-x64 node-v22.16.0
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -262,7 +262,7 @@ EXAMPLES
|
|
|
262
262
|
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
|
|
263
263
|
```
|
|
264
264
|
|
|
265
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
265
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.0/src/commands/agent/create.ts)_
|
|
266
266
|
|
|
267
267
|
## `sf agent generate agent-spec`
|
|
268
268
|
|
|
@@ -367,7 +367,7 @@ EXAMPLES
|
|
|
367
367
|
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
|
|
368
368
|
```
|
|
369
369
|
|
|
370
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
370
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.0/src/commands/agent/generate/agent-spec.ts)_
|
|
371
371
|
|
|
372
372
|
## `sf agent generate template`
|
|
373
373
|
|
|
@@ -415,7 +415,7 @@ EXAMPLES
|
|
|
415
415
|
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
|
|
416
416
|
```
|
|
417
417
|
|
|
418
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
418
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.0/src/commands/agent/generate/template.ts)_
|
|
419
419
|
|
|
420
420
|
## `sf agent generate test-spec`
|
|
421
421
|
|
|
@@ -473,7 +473,7 @@ EXAMPLES
|
|
|
473
473
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
474
474
|
```
|
|
475
475
|
|
|
476
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
476
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.0/src/commands/agent/generate/test-spec.ts)_
|
|
477
477
|
|
|
478
478
|
## `sf agent preview`
|
|
479
479
|
|
|
@@ -481,18 +481,19 @@ Interact with an active agent to preview how the agent responds to your statemen
|
|
|
481
481
|
|
|
482
482
|
```
|
|
483
483
|
USAGE
|
|
484
|
-
$ sf agent preview -
|
|
485
|
-
[-x]
|
|
484
|
+
$ sf agent preview (-c <value> -o <value>) [--flags-dir <value>] [--api-version <value>] [-n <value>] [-d
|
|
485
|
+
<value>] [-x]
|
|
486
486
|
|
|
487
487
|
FLAGS
|
|
488
|
-
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
-
|
|
492
|
-
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
488
|
+
-c, --client-app=<value> (required) Name of the linked client app to use for the agent connection. You must have
|
|
489
|
+
previously created this link with "org login web --client-app". Run "org display" to see
|
|
490
|
+
the available linked client apps.
|
|
491
|
+
-d, --output-dir=<value> Directory where conversation transcripts are saved.
|
|
492
|
+
-n, --api-name=<value> API name of the agent you want to interact with.
|
|
493
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
494
|
+
configuration variable is already set.
|
|
495
|
+
-x, --apex-debug Enable Apex debug logging during the agent preview conversation.
|
|
496
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
496
497
|
|
|
497
498
|
GLOBAL FLAGS
|
|
498
499
|
--flags-dir=<value> Import flag values from a directory.
|
|
@@ -519,55 +520,57 @@ DESCRIPTION
|
|
|
519
520
|
|
|
520
521
|
Before you use this command, you must complete these steps:
|
|
521
522
|
|
|
522
|
-
1.
|
|
523
|
-
https://developer.salesforce.com/docs/einstein/genai/guide/agent-api-get-started.html#create-a-connected-app. Do
|
|
524
|
-
|
|
523
|
+
1. Using your org's Setup UI, create a connected app in your org as described in the "Create a Connected App" section
|
|
524
|
+
here: https://developer.salesforce.com/docs/einstein/genai/guide/agent-api-get-started.html#create-a-connected-app. Do
|
|
525
|
+
these additional steps:
|
|
525
526
|
|
|
526
527
|
a. When specifying the connected app's Callback URL, add this second callback URL on a new line:
|
|
527
528
|
"http://localhost:1717/OauthRedirect".
|
|
528
529
|
|
|
529
530
|
b. When adding the scopes to the connected app, add "Manage user data via Web browsers (web)".
|
|
530
531
|
|
|
531
|
-
c. Ensure that the "Require Secret for Web Server Flow" option is not selected.
|
|
532
|
-
|
|
533
|
-
d. Make note of the user that you specified as the "Run As" user when updating the Client Credentials Flow section.
|
|
534
|
-
|
|
535
532
|
2. Add the connected app to your agent as described in the "Add Connected App to Agent" section here:
|
|
536
533
|
https://developer.salesforce.com/docs/einstein/genai/guide/agent-api-get-started.html#add-connected-app-to-agent.
|
|
537
534
|
|
|
538
535
|
3. Copy the consumer key from your connected app as described in the "Obtain Credentials" section here:
|
|
539
536
|
https://developer.salesforce.com/docs/einstein/genai/guide/agent-api-get-started.html#obtain-credentials.
|
|
540
537
|
|
|
541
|
-
4.
|
|
542
|
-
|
|
538
|
+
4. If you haven't already, run the "org login web" CLI command as usual to authorize the development org that contains
|
|
539
|
+
the agent you want to preview.
|
|
540
|
+
|
|
541
|
+
5. Re-run the "org web login" command to link the new connected app to your already-authenticated user. Use the
|
|
542
|
+
--client-app flag to give the link a name; you can specify any string, but make a note of it because you'll need it
|
|
543
|
+
later. Use --username to specify the username that you used to log into the org in the previous step. Use --client-id
|
|
544
|
+
to specify the consumer key you previously copied. Finally, use --scopes as indicated to specify the required API
|
|
545
|
+
scopes. Here's an example:
|
|
543
546
|
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_auth_web_flow.htm.
|
|
547
|
+
sf org login web --client-app agent-app --username <username> --client-id <consumer-key> --scopes "sfap_api
|
|
548
|
+
chatbot_api refresh_token api web"
|
|
547
549
|
|
|
548
550
|
IMPORTANT: You must use the "--client-id <CONNECTED-APP-CONSUMER-KEY>" flag of "org login web", where
|
|
549
551
|
CONNECTED-APP-CONSUMER-KEY is the consumer key you previously copied. This step ensures that the "org login web"
|
|
550
552
|
command uses your custom connected app, and not the default CLI connected app.
|
|
551
553
|
|
|
552
|
-
Press Enter to skip sharing the client secret.
|
|
554
|
+
6. Press Enter to skip sharing the client secret, then log in with your org username as usual and click Accept.
|
|
553
555
|
|
|
554
|
-
|
|
555
|
-
|
|
556
|
+
7. Run this command ("agent preview") to interact with an agent by using the --target-org flag to specify the org
|
|
557
|
+
username or alias as usual and --client-app to specify the linked connected app ("agent-app" in the previous example).
|
|
558
|
+
Use the "org display" command to get the list of client apps associated with an org.
|
|
556
559
|
|
|
557
560
|
EXAMPLES
|
|
558
|
-
Interact with an agent with API name "Resort_Manager" in the org with alias "my-org"
|
|
559
|
-
|
|
561
|
+
Interact with an agent with API name "Resort_Manager" in the org with alias "my-org" and the linked "agent-app"
|
|
562
|
+
connected app:
|
|
560
563
|
|
|
561
|
-
$ sf agent preview --api-name "Resort_Manager" --target-org my-org --
|
|
564
|
+
$ sf agent preview --api-name "Resort_Manager" --target-org my-org --client-app agent-app
|
|
562
565
|
|
|
563
566
|
Same as the preceding example, but this time save the conversation transcripts to the "./transcripts/my-preview"
|
|
564
567
|
directory rather than the default "./temp/agent-preview":
|
|
565
568
|
|
|
566
|
-
$ sf agent preview --api-name "Resort_Manager" --target-org my-org --
|
|
567
|
-
|
|
569
|
+
$ sf agent preview --api-name "Resort_Manager" --target-org my-org --client-app agent-app --output-dir \
|
|
570
|
+
"transcripts/my-preview"
|
|
568
571
|
```
|
|
569
572
|
|
|
570
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
573
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.0/src/commands/agent/preview.ts)_
|
|
571
574
|
|
|
572
575
|
## `sf agent test create`
|
|
573
576
|
|
|
@@ -622,7 +625,7 @@ EXAMPLES
|
|
|
622
625
|
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
|
|
623
626
|
```
|
|
624
627
|
|
|
625
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
628
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.0/src/commands/agent/test/create.ts)_
|
|
626
629
|
|
|
627
630
|
## `sf agent test list`
|
|
628
631
|
|
|
@@ -657,7 +660,7 @@ EXAMPLES
|
|
|
657
660
|
$ sf agent test list --target-org my-org
|
|
658
661
|
```
|
|
659
662
|
|
|
660
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
663
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.0/src/commands/agent/test/list.ts)_
|
|
661
664
|
|
|
662
665
|
## `sf agent test results`
|
|
663
666
|
|
|
@@ -713,7 +716,7 @@ FLAG DESCRIPTIONS
|
|
|
713
716
|
test results aren't written.
|
|
714
717
|
```
|
|
715
718
|
|
|
716
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
719
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.0/src/commands/agent/test/results.ts)_
|
|
717
720
|
|
|
718
721
|
## `sf agent test resume`
|
|
719
722
|
|
|
@@ -776,7 +779,7 @@ FLAG DESCRIPTIONS
|
|
|
776
779
|
test results aren't written.
|
|
777
780
|
```
|
|
778
781
|
|
|
779
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
782
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.0/src/commands/agent/test/resume.ts)_
|
|
780
783
|
|
|
781
784
|
## `sf agent test run`
|
|
782
785
|
|
|
@@ -840,7 +843,7 @@ FLAG DESCRIPTIONS
|
|
|
840
843
|
test results aren't written.
|
|
841
844
|
```
|
|
842
845
|
|
|
843
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
846
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.0/src/commands/agent/test/run.ts)_
|
|
844
847
|
|
|
845
848
|
## `sf alias list`
|
|
846
849
|
|
|
@@ -3804,7 +3807,7 @@ FLAG DESCRIPTIONS
|
|
|
3804
3807
|
You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
|
|
3805
3808
|
```
|
|
3806
3809
|
|
|
3807
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
3810
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.8.0/src/commands/org/create/sandbox.ts)_
|
|
3808
3811
|
|
|
3809
3812
|
## `sf org create scratch`
|
|
3810
3813
|
|
|
@@ -3986,7 +3989,7 @@ FLAG DESCRIPTIONS
|
|
|
3986
3989
|
Omit this flag to have Salesforce generate a unique username for your org.
|
|
3987
3990
|
```
|
|
3988
3991
|
|
|
3989
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
3992
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.8.0/src/commands/org/create/scratch.ts)_
|
|
3990
3993
|
|
|
3991
3994
|
## `sf org create user`
|
|
3992
3995
|
|
|
@@ -4140,7 +4143,7 @@ EXAMPLES
|
|
|
4140
4143
|
$ sf org delete sandbox --target-org my-sandbox --no-prompt
|
|
4141
4144
|
```
|
|
4142
4145
|
|
|
4143
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
4146
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.8.0/src/commands/org/delete/sandbox.ts)_
|
|
4144
4147
|
|
|
4145
4148
|
## `sf org delete scratch`
|
|
4146
4149
|
|
|
@@ -4184,7 +4187,7 @@ EXAMPLES
|
|
|
4184
4187
|
$ sf org delete scratch --target-org my-scratch-org --no-prompt
|
|
4185
4188
|
```
|
|
4186
4189
|
|
|
4187
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
4190
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.8.0/src/commands/org/delete/scratch.ts)_
|
|
4188
4191
|
|
|
4189
4192
|
## `sf org disable tracking`
|
|
4190
4193
|
|
|
@@ -4223,7 +4226,7 @@ EXAMPLES
|
|
|
4223
4226
|
$ sf org disable tracking
|
|
4224
4227
|
```
|
|
4225
4228
|
|
|
4226
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
4229
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.8.0/src/commands/org/disable/tracking.ts)_
|
|
4227
4230
|
|
|
4228
4231
|
## `sf org display`
|
|
4229
4232
|
|
|
@@ -4268,7 +4271,7 @@ EXAMPLES
|
|
|
4268
4271
|
$ sf org display --target-org TestOrg1 --verbose
|
|
4269
4272
|
```
|
|
4270
4273
|
|
|
4271
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
4274
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.8.0/src/commands/org/display.ts)_
|
|
4272
4275
|
|
|
4273
4276
|
## `sf org display user`
|
|
4274
4277
|
|
|
@@ -4349,7 +4352,7 @@ EXAMPLES
|
|
|
4349
4352
|
$ sf org enable tracking
|
|
4350
4353
|
```
|
|
4351
4354
|
|
|
4352
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
4355
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.8.0/src/commands/org/enable/tracking.ts)_
|
|
4353
4356
|
|
|
4354
4357
|
## `sf org generate password`
|
|
4355
4358
|
|
|
@@ -4455,7 +4458,7 @@ EXAMPLES
|
|
|
4455
4458
|
$ sf org list --clean
|
|
4456
4459
|
```
|
|
4457
4460
|
|
|
4458
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
4461
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.8.0/src/commands/org/list.ts)_
|
|
4459
4462
|
|
|
4460
4463
|
## `sf org list auth`
|
|
4461
4464
|
|
|
@@ -4487,7 +4490,7 @@ EXAMPLES
|
|
|
4487
4490
|
$ sf org list auth
|
|
4488
4491
|
```
|
|
4489
4492
|
|
|
4490
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.
|
|
4493
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.0/src/commands/org/list/auth.ts)_
|
|
4491
4494
|
|
|
4492
4495
|
## `sf org list limits`
|
|
4493
4496
|
|
|
@@ -4594,7 +4597,7 @@ FLAG DESCRIPTIONS
|
|
|
4594
4597
|
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
|
|
4595
4598
|
```
|
|
4596
4599
|
|
|
4597
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
4600
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.8.0/src/commands/org/list/metadata.ts)_
|
|
4598
4601
|
|
|
4599
4602
|
## `sf org list metadata-types`
|
|
4600
4603
|
|
|
@@ -4649,7 +4652,7 @@ FLAG DESCRIPTIONS
|
|
|
4649
4652
|
Override the api version used for api requests made by this command
|
|
4650
4653
|
```
|
|
4651
4654
|
|
|
4652
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
4655
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.8.0/src/commands/org/list/metadata-types.ts)_
|
|
4653
4656
|
|
|
4654
4657
|
## `sf org list sobject record-counts`
|
|
4655
4658
|
|
|
@@ -4787,7 +4790,7 @@ FLAG DESCRIPTIONS
|
|
|
4787
4790
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
4788
4791
|
```
|
|
4789
4792
|
|
|
4790
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.
|
|
4793
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.0/src/commands/org/login/access-token.ts)_
|
|
4791
4794
|
|
|
4792
4795
|
## `sf org login device`
|
|
4793
4796
|
|
|
@@ -4847,7 +4850,7 @@ FLAG DESCRIPTIONS
|
|
|
4847
4850
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
4848
4851
|
```
|
|
4849
4852
|
|
|
4850
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.
|
|
4853
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.0/src/commands/org/login/device.ts)_
|
|
4851
4854
|
|
|
4852
4855
|
## `sf org login jwt`
|
|
4853
4856
|
|
|
@@ -4938,7 +4941,7 @@ FLAG DESCRIPTIONS
|
|
|
4938
4941
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
4939
4942
|
```
|
|
4940
4943
|
|
|
4941
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.
|
|
4944
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.0/src/commands/org/login/jwt.ts)_
|
|
4942
4945
|
|
|
4943
4946
|
## `sf org login sfdx-url`
|
|
4944
4947
|
|
|
@@ -5008,7 +5011,7 @@ EXAMPLES
|
|
|
5008
5011
|
$ echo url | sf org login sfdx-url --sfdx-url-stdin
|
|
5009
5012
|
```
|
|
5010
5013
|
|
|
5011
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.
|
|
5014
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.0/src/commands/org/login/sfdx-url.ts)_
|
|
5012
5015
|
|
|
5013
5016
|
## `sf org login web`
|
|
5014
5017
|
|
|
@@ -5017,16 +5020,19 @@ Log in to a Salesforce org using the web server flow.
|
|
|
5017
5020
|
```
|
|
5018
5021
|
USAGE
|
|
5019
5022
|
$ sf org login web [--json] [--flags-dir <value>] [-b chrome|edge|firefox] [-i <value>] [-r <value>] [-d] [-s]
|
|
5020
|
-
[-a <value>]
|
|
5023
|
+
[-a <value>] [-c <value> --username <value>] [--scopes <value>]
|
|
5021
5024
|
|
|
5022
5025
|
FLAGS
|
|
5023
5026
|
-a, --alias=<value> Alias for the org.
|
|
5024
5027
|
-b, --browser=<option> Browser in which to open the org.
|
|
5025
5028
|
<options: chrome|edge|firefox>
|
|
5029
|
+
-c, --client-app=<value> Name of the connected app or external client app to link to the user.
|
|
5026
5030
|
-d, --set-default-dev-hub Set the authenticated org as the default Dev Hub.
|
|
5027
5031
|
-i, --client-id=<value> OAuth client ID (also called consumer key) of your custom connected app.
|
|
5028
5032
|
-r, --instance-url=<value> URL of the instance that the org lives on.
|
|
5029
5033
|
-s, --set-default Set the authenticated org as the default that all org-related commands run against.
|
|
5034
|
+
--scopes=<value> Authentication scopes to request.
|
|
5035
|
+
--username=<value> Username to link client app to.
|
|
5030
5036
|
|
|
5031
5037
|
GLOBAL FLAGS
|
|
5032
5038
|
--flags-dir=<value> Import flag values from a directory.
|
|
@@ -5095,7 +5101,7 @@ FLAG DESCRIPTIONS
|
|
|
5095
5101
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5096
5102
|
```
|
|
5097
5103
|
|
|
5098
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.
|
|
5104
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.0/src/commands/org/login/web.ts)_
|
|
5099
5105
|
|
|
5100
5106
|
## `sf org logout`
|
|
5101
5107
|
|
|
@@ -5103,10 +5109,11 @@ Log out of a Salesforce org.
|
|
|
5103
5109
|
|
|
5104
5110
|
```
|
|
5105
5111
|
USAGE
|
|
5106
|
-
$ sf org logout [--json] [--flags-dir <value>] [-
|
|
5112
|
+
$ sf org logout [--json] [--flags-dir <value>] [-c <value> -o <value>] [-a | ] [-p]
|
|
5107
5113
|
|
|
5108
5114
|
FLAGS
|
|
5109
5115
|
-a, --all Include all authenticated orgs.
|
|
5116
|
+
-c, --client-app=<value> Client app to log out of.
|
|
5110
5117
|
-o, --target-org=<value> Username or alias of the target org.
|
|
5111
5118
|
-p, --no-prompt Don't prompt for confirmation.
|
|
5112
5119
|
|
|
@@ -5129,6 +5136,10 @@ DESCRIPTION
|
|
|
5129
5136
|
Be careful! If you log out of a scratch org without having access to its password, you can't access the scratch org
|
|
5130
5137
|
again, either through the CLI or the Salesforce UI.
|
|
5131
5138
|
|
|
5139
|
+
Use the --client-app flag to log out of the link you previously created between an authenticated user and a connected
|
|
5140
|
+
app or external client app; you create these links with "org login web --client-app". Run "org display" to get the
|
|
5141
|
+
list of client app names.
|
|
5142
|
+
|
|
5132
5143
|
ALIASES
|
|
5133
5144
|
$ sf force auth logout
|
|
5134
5145
|
$ sf auth logout
|
|
@@ -5156,7 +5167,7 @@ FLAG DESCRIPTIONS
|
|
|
5156
5167
|
All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
|
|
5157
5168
|
```
|
|
5158
5169
|
|
|
5159
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.
|
|
5170
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.0/src/commands/org/logout.ts)_
|
|
5160
5171
|
|
|
5161
5172
|
## `sf org open`
|
|
5162
5173
|
|
|
@@ -5232,7 +5243,7 @@ EXAMPLES
|
|
|
5232
5243
|
$ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
|
|
5233
5244
|
```
|
|
5234
5245
|
|
|
5235
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
5246
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.8.0/src/commands/org/open.ts)_
|
|
5236
5247
|
|
|
5237
5248
|
## `sf org open agent`
|
|
5238
5249
|
|
|
@@ -5283,7 +5294,7 @@ EXAMPLES
|
|
|
5283
5294
|
$ sf org open agent --target-org MyTestOrg1 --browser firefox --api-name Coral_Cloud_Agent
|
|
5284
5295
|
```
|
|
5285
5296
|
|
|
5286
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
5297
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.8.0/src/commands/org/open/agent.ts)_
|
|
5287
5298
|
|
|
5288
5299
|
## `sf org refresh sandbox`
|
|
5289
5300
|
|
|
@@ -5386,7 +5397,7 @@ FLAG DESCRIPTIONS
|
|
|
5386
5397
|
You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
|
|
5387
5398
|
```
|
|
5388
5399
|
|
|
5389
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
5400
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.8.0/src/commands/org/refresh/sandbox.ts)_
|
|
5390
5401
|
|
|
5391
5402
|
## `sf org resume sandbox`
|
|
5392
5403
|
|
|
@@ -5449,7 +5460,7 @@ FLAG DESCRIPTIONS
|
|
|
5449
5460
|
returns the job ID. To resume checking the sandbox creation, rerun this command.
|
|
5450
5461
|
```
|
|
5451
5462
|
|
|
5452
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
5463
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.8.0/src/commands/org/resume/sandbox.ts)_
|
|
5453
5464
|
|
|
5454
5465
|
## `sf org resume scratch`
|
|
5455
5466
|
|
|
@@ -5502,7 +5513,7 @@ FLAG DESCRIPTIONS
|
|
|
5502
5513
|
returns the job ID. To resume checking the scratch creation, rerun this command.
|
|
5503
5514
|
```
|
|
5504
5515
|
|
|
5505
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
5516
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.8.0/src/commands/org/resume/scratch.ts)_
|
|
5506
5517
|
|
|
5507
5518
|
## `sf package convert`
|
|
5508
5519
|
|
|
@@ -5511,10 +5522,12 @@ Convert a managed-released first-generation managed package into a second-genera
|
|
|
5511
5522
|
```
|
|
5512
5523
|
USAGE
|
|
5513
5524
|
$ sf package convert -v <value> -p <value> [--json] [--flags-dir <value>] [--api-version <value>] [-k <value>] [-f
|
|
5514
|
-
<value>] [-x] [-w <value>] [-m <value>] [--verbose] [-a <value>]
|
|
5525
|
+
<value>] [-x] [-w <value>] [-m <value>] [--verbose] [-a <value>] [-c]
|
|
5515
5526
|
|
|
5516
5527
|
FLAGS
|
|
5517
5528
|
-a, --patch-version=<value> Specific released patch version to be converted.
|
|
5529
|
+
-c, --code-coverage Calculate and store the code coverage percentage by running the packaged Apex tests
|
|
5530
|
+
included in this package version.
|
|
5518
5531
|
-f, --definition-file=<value> Path to a definition file that contains features and org preferences that the metadata
|
|
5519
5532
|
of the package version depends on.
|
|
5520
5533
|
-k, --installation-key=<value> Installation key for key-protected package.
|
|
@@ -5545,6 +5558,9 @@ DESCRIPTION
|
|
|
5545
5558
|
To protect the contents of your package and to prevent unauthorized installation of your package, specify the
|
|
5546
5559
|
--installation-key flag.
|
|
5547
5560
|
|
|
5561
|
+
To promote a package version to released, you must use the --code-coverage parameter. The package must also meet the
|
|
5562
|
+
code coverage requirements.
|
|
5563
|
+
|
|
5548
5564
|
To list package version creation requests in the org, run "sf package version create list".
|
|
5549
5565
|
|
|
5550
5566
|
ALIASES
|
|
@@ -5565,6 +5581,14 @@ FLAG DESCRIPTIONS
|
|
|
5565
5581
|
|
|
5566
5582
|
Specify a released patch version as major.minor.patch to convert to a second-generation managed package version.
|
|
5567
5583
|
|
|
5584
|
+
-c, --code-coverage
|
|
5585
|
+
|
|
5586
|
+
Calculate and store the code coverage percentage by running the packaged Apex tests included in this package
|
|
5587
|
+
version.
|
|
5588
|
+
|
|
5589
|
+
Before you can promote and release a managed package version, the Apex code must meet a minimum 75% code coverage
|
|
5590
|
+
requirement.
|
|
5591
|
+
|
|
5568
5592
|
-f, --definition-file=<value>
|
|
5569
5593
|
|
|
5570
5594
|
Path to a definition file that contains features and org preferences that the metadata of the package version
|
|
@@ -5586,7 +5610,7 @@ FLAG DESCRIPTIONS
|
|
|
5586
5610
|
--installation-key-bypass flag is required.
|
|
5587
5611
|
```
|
|
5588
5612
|
|
|
5589
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5613
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/convert.ts)_
|
|
5590
5614
|
|
|
5591
5615
|
## `sf package create`
|
|
5592
5616
|
|
|
@@ -5665,7 +5689,7 @@ FLAG DESCRIPTIONS
|
|
|
5665
5689
|
Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
|
|
5666
5690
|
```
|
|
5667
5691
|
|
|
5668
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5692
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/create.ts)_
|
|
5669
5693
|
|
|
5670
5694
|
## `sf package delete`
|
|
5671
5695
|
|
|
@@ -5707,7 +5731,7 @@ EXAMPLES
|
|
|
5707
5731
|
$ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
|
|
5708
5732
|
```
|
|
5709
5733
|
|
|
5710
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5734
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/delete.ts)_
|
|
5711
5735
|
|
|
5712
5736
|
## `sf package install`
|
|
5713
5737
|
|
|
@@ -5806,7 +5830,7 @@ FLAG DESCRIPTIONS
|
|
|
5806
5830
|
- Delete: Delete all removed components that can be safely deleted, and deprecate the other components.
|
|
5807
5831
|
```
|
|
5808
5832
|
|
|
5809
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5833
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/install.ts)_
|
|
5810
5834
|
|
|
5811
5835
|
## `sf package install report`
|
|
5812
5836
|
|
|
@@ -5839,7 +5863,7 @@ EXAMPLES
|
|
|
5839
5863
|
$ sf package install report --request-id 0Hf... --target-org me@example.com
|
|
5840
5864
|
```
|
|
5841
5865
|
|
|
5842
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5866
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/install/report.ts)_
|
|
5843
5867
|
|
|
5844
5868
|
## `sf package installed list`
|
|
5845
5869
|
|
|
@@ -5871,7 +5895,7 @@ EXAMPLES
|
|
|
5871
5895
|
$ sf package installed list --target-org me@example.com
|
|
5872
5896
|
```
|
|
5873
5897
|
|
|
5874
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5898
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/installed/list.ts)_
|
|
5875
5899
|
|
|
5876
5900
|
## `sf package list`
|
|
5877
5901
|
|
|
@@ -5909,7 +5933,7 @@ EXAMPLES
|
|
|
5909
5933
|
$ sf package list --target-dev-hub devhub@example.com --verbose
|
|
5910
5934
|
```
|
|
5911
5935
|
|
|
5912
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5936
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/list.ts)_
|
|
5913
5937
|
|
|
5914
5938
|
## `sf package push-upgrade abort`
|
|
5915
5939
|
|
|
@@ -5949,7 +5973,7 @@ EXAMPLES
|
|
|
5949
5973
|
$ sf package push-upgrade abort --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
5950
5974
|
```
|
|
5951
5975
|
|
|
5952
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5976
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/push-upgrade/abort.ts)_
|
|
5953
5977
|
|
|
5954
5978
|
## `sf package push-upgrade list`
|
|
5955
5979
|
|
|
@@ -6008,7 +6032,7 @@ EXAMPLES
|
|
|
6008
6032
|
$ sf package push-upgrade list --package 033xyz –-status Failed
|
|
6009
6033
|
```
|
|
6010
6034
|
|
|
6011
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6035
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/push-upgrade/list.ts)_
|
|
6012
6036
|
|
|
6013
6037
|
## `sf package push-upgrade report`
|
|
6014
6038
|
|
|
@@ -6050,7 +6074,7 @@ EXAMPLES
|
|
|
6050
6074
|
$ sf package push-upgrade report --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
6051
6075
|
```
|
|
6052
6076
|
|
|
6053
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6077
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/push-upgrade/report.ts)_
|
|
6054
6078
|
|
|
6055
6079
|
## `sf package push-upgrade schedule`
|
|
6056
6080
|
|
|
@@ -6132,7 +6156,7 @@ FLAG DESCRIPTIONS
|
|
|
6132
6156
|
Overrides the value of the target-dev-hub configuration variable, if set.
|
|
6133
6157
|
```
|
|
6134
6158
|
|
|
6135
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6159
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/push-upgrade/schedule.ts)_
|
|
6136
6160
|
|
|
6137
6161
|
## `sf package uninstall`
|
|
6138
6162
|
|
|
@@ -6180,7 +6204,7 @@ EXAMPLES
|
|
|
6180
6204
|
$ sf package uninstall --package "Undesirable Package Alias"
|
|
6181
6205
|
```
|
|
6182
6206
|
|
|
6183
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6207
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/uninstall.ts)_
|
|
6184
6208
|
|
|
6185
6209
|
## `sf package uninstall report`
|
|
6186
6210
|
|
|
@@ -6213,7 +6237,7 @@ EXAMPLES
|
|
|
6213
6237
|
$ sf package uninstall report --request-id 06y... --target-org me@example.com
|
|
6214
6238
|
```
|
|
6215
6239
|
|
|
6216
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6240
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/uninstall/report.ts)_
|
|
6217
6241
|
|
|
6218
6242
|
## `sf package update`
|
|
6219
6243
|
|
|
@@ -6268,7 +6292,7 @@ FLAG DESCRIPTIONS
|
|
|
6268
6292
|
associated with your package.
|
|
6269
6293
|
```
|
|
6270
6294
|
|
|
6271
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6295
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/update.ts)_
|
|
6272
6296
|
|
|
6273
6297
|
## `sf package version create`
|
|
6274
6298
|
|
|
@@ -6443,7 +6467,7 @@ FLAG DESCRIPTIONS
|
|
|
6443
6467
|
periods of no output from commands.
|
|
6444
6468
|
```
|
|
6445
6469
|
|
|
6446
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6470
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/version/create.ts)_
|
|
6447
6471
|
|
|
6448
6472
|
## `sf package version create list`
|
|
6449
6473
|
|
|
@@ -6504,7 +6528,7 @@ EXAMPLES
|
|
|
6504
6528
|
$ sf package version create list --created-last-days 0 --status Success
|
|
6505
6529
|
```
|
|
6506
6530
|
|
|
6507
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6531
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/version/create/list.ts)_
|
|
6508
6532
|
|
|
6509
6533
|
## `sf package version create report`
|
|
6510
6534
|
|
|
@@ -6547,7 +6571,7 @@ EXAMPLES
|
|
|
6547
6571
|
$ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
|
|
6548
6572
|
```
|
|
6549
6573
|
|
|
6550
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6574
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/version/create/report.ts)_
|
|
6551
6575
|
|
|
6552
6576
|
## `sf package version delete`
|
|
6553
6577
|
|
|
@@ -6588,7 +6612,7 @@ EXAMPLES
|
|
|
6588
6612
|
$ sf package version delete --package 04t... --target-org devhub@example.com
|
|
6589
6613
|
```
|
|
6590
6614
|
|
|
6591
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6615
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/version/delete.ts)_
|
|
6592
6616
|
|
|
6593
6617
|
## `sf package version displayancestry`
|
|
6594
6618
|
|
|
@@ -6648,7 +6672,7 @@ FLAG DESCRIPTIONS
|
|
|
6648
6672
|
You can use the DOT code output in graph visualization software to create tree visualizations.
|
|
6649
6673
|
```
|
|
6650
6674
|
|
|
6651
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6675
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/version/displayancestry.ts)_
|
|
6652
6676
|
|
|
6653
6677
|
## `sf package version list`
|
|
6654
6678
|
|
|
@@ -6724,7 +6748,7 @@ EXAMPLES
|
|
|
6724
6748
|
$ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
|
|
6725
6749
|
```
|
|
6726
6750
|
|
|
6727
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6751
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/version/list.ts)_
|
|
6728
6752
|
|
|
6729
6753
|
## `sf package version promote`
|
|
6730
6754
|
|
|
@@ -6768,7 +6792,7 @@ EXAMPLES
|
|
|
6768
6792
|
$ sf package version promote --package "Awesome Package Alias"
|
|
6769
6793
|
```
|
|
6770
6794
|
|
|
6771
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6795
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/version/promote.ts)_
|
|
6772
6796
|
|
|
6773
6797
|
## `sf package version report`
|
|
6774
6798
|
|
|
@@ -6808,7 +6832,7 @@ EXAMPLES
|
|
|
6808
6832
|
$ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
|
|
6809
6833
|
```
|
|
6810
6834
|
|
|
6811
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6835
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/version/report.ts)_
|
|
6812
6836
|
|
|
6813
6837
|
## `sf package version update`
|
|
6814
6838
|
|
|
@@ -6861,7 +6885,7 @@ EXAMPLES
|
|
|
6861
6885
|
$ sf package version update --package 04t... --version-description "New Package Version Description"
|
|
6862
6886
|
```
|
|
6863
6887
|
|
|
6864
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6888
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/version/update.ts)_
|
|
6865
6889
|
|
|
6866
6890
|
## `sf package1 version create`
|
|
6867
6891
|
|
|
@@ -6928,7 +6952,7 @@ FLAG DESCRIPTIONS
|
|
|
6928
6952
|
subscribers.
|
|
6929
6953
|
```
|
|
6930
6954
|
|
|
6931
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6955
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package1/version/create.ts)_
|
|
6932
6956
|
|
|
6933
6957
|
## `sf package1 version create get`
|
|
6934
6958
|
|
|
@@ -6961,7 +6985,7 @@ EXAMPLES
|
|
|
6961
6985
|
$ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
|
|
6962
6986
|
```
|
|
6963
6987
|
|
|
6964
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6988
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package1/version/create/get.ts)_
|
|
6965
6989
|
|
|
6966
6990
|
## `sf package1 version display`
|
|
6967
6991
|
|
|
@@ -6995,7 +7019,7 @@ EXAMPLES
|
|
|
6995
7019
|
$ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
|
|
6996
7020
|
```
|
|
6997
7021
|
|
|
6998
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
7022
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package1/version/display.ts)_
|
|
6999
7023
|
|
|
7000
7024
|
## `sf package1 version list`
|
|
7001
7025
|
|
|
@@ -7033,7 +7057,7 @@ FLAG DESCRIPTIONS
|
|
|
7033
7057
|
If not specified, shows all versions for all packages (managed and unmanaged) in the org.
|
|
7034
7058
|
```
|
|
7035
7059
|
|
|
7036
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
7060
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package1/version/list.ts)_
|
|
7037
7061
|
|
|
7038
7062
|
## `sf plugins`
|
|
7039
7063
|
|
|
@@ -7334,7 +7358,7 @@ FLAG DESCRIPTIONS
|
|
|
7334
7358
|
If you specify this flag, don’t specify --metadata or --source-dir.
|
|
7335
7359
|
```
|
|
7336
7360
|
|
|
7337
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
7361
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.23/src/commands/project/convert/mdapi.ts)_
|
|
7338
7362
|
|
|
7339
7363
|
## `sf project convert source`
|
|
7340
7364
|
|
|
@@ -7407,7 +7431,7 @@ FLAG DESCRIPTIONS
|
|
|
7407
7431
|
Override the api version used for api requests made by this command
|
|
7408
7432
|
```
|
|
7409
7433
|
|
|
7410
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
7434
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.23/src/commands/project/convert/source.ts)_
|
|
7411
7435
|
|
|
7412
7436
|
## `sf project convert source-behavior`
|
|
7413
7437
|
|
|
@@ -7466,7 +7490,7 @@ EXAMPLES
|
|
|
7466
7490
|
$ sf project convert source-behavior --behavior decomposePermissionSetBeta --dry-run --preserve-temp-dir
|
|
7467
7491
|
```
|
|
7468
7492
|
|
|
7469
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
7493
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.23/src/commands/project/convert/source-behavior.ts)_
|
|
7470
7494
|
|
|
7471
7495
|
## `sf project delete source`
|
|
7472
7496
|
|
|
@@ -7606,7 +7630,7 @@ FLAG DESCRIPTIONS
|
|
|
7606
7630
|
- Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
|
|
7607
7631
|
```
|
|
7608
7632
|
|
|
7609
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
7633
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.23/src/commands/project/delete/source.ts)_
|
|
7610
7634
|
|
|
7611
7635
|
## `sf project delete tracking`
|
|
7612
7636
|
|
|
@@ -7643,7 +7667,7 @@ EXAMPLES
|
|
|
7643
7667
|
$ sf project delete tracking --target-org my-scratch
|
|
7644
7668
|
```
|
|
7645
7669
|
|
|
7646
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
7670
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.23/src/commands/project/delete/tracking.ts)_
|
|
7647
7671
|
|
|
7648
7672
|
## `sf project deploy cancel`
|
|
7649
7673
|
|
|
@@ -7715,7 +7739,7 @@ FLAG DESCRIPTIONS
|
|
|
7715
7739
|
project deploy report".
|
|
7716
7740
|
```
|
|
7717
7741
|
|
|
7718
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
7742
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.23/src/commands/project/deploy/cancel.ts)_
|
|
7719
7743
|
|
|
7720
7744
|
## `sf project deploy preview`
|
|
7721
7745
|
|
|
@@ -7798,7 +7822,7 @@ FLAG DESCRIPTIONS
|
|
|
7798
7822
|
All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
|
|
7799
7823
|
```
|
|
7800
7824
|
|
|
7801
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
7825
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.23/src/commands/project/deploy/preview.ts)_
|
|
7802
7826
|
|
|
7803
7827
|
## `sf project deploy quick`
|
|
7804
7828
|
|
|
@@ -7891,7 +7915,7 @@ ERROR CODES
|
|
|
7891
7915
|
Canceling (69) The deploy is being canceled.
|
|
7892
7916
|
```
|
|
7893
7917
|
|
|
7894
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
7918
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.23/src/commands/project/deploy/quick.ts)_
|
|
7895
7919
|
|
|
7896
7920
|
## `sf project deploy report`
|
|
7897
7921
|
|
|
@@ -7983,7 +8007,7 @@ FLAG DESCRIPTIONS
|
|
|
7983
8007
|
--coverage-formatters lcov --coverage-formatters clover
|
|
7984
8008
|
```
|
|
7985
8009
|
|
|
7986
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
8010
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.23/src/commands/project/deploy/report.ts)_
|
|
7987
8011
|
|
|
7988
8012
|
## `sf project deploy resume`
|
|
7989
8013
|
|
|
@@ -8080,7 +8104,7 @@ ERROR CODES
|
|
|
8080
8104
|
Canceling (69) The deploy is being canceled.
|
|
8081
8105
|
```
|
|
8082
8106
|
|
|
8083
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
8107
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.23/src/commands/project/deploy/resume.ts)_
|
|
8084
8108
|
|
|
8085
8109
|
## `sf project deploy start`
|
|
8086
8110
|
|
|
@@ -8333,7 +8357,7 @@ ERROR CODES
|
|
|
8333
8357
|
Canceling (69) The deploy is being canceled.
|
|
8334
8358
|
```
|
|
8335
8359
|
|
|
8336
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
8360
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.23/src/commands/project/deploy/start.ts)_
|
|
8337
8361
|
|
|
8338
8362
|
## `sf project deploy validate`
|
|
8339
8363
|
|
|
@@ -8523,7 +8547,7 @@ ERROR CODES
|
|
|
8523
8547
|
Canceling (69) The deploy is being canceled.
|
|
8524
8548
|
```
|
|
8525
8549
|
|
|
8526
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
8550
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.23/src/commands/project/deploy/validate.ts)_
|
|
8527
8551
|
|
|
8528
8552
|
## `sf project generate`
|
|
8529
8553
|
|
|
@@ -8724,7 +8748,7 @@ EXAMPLES
|
|
|
8724
8748
|
$ sf project generate manifest --from-org test@myorg.com --excluded-metadata StandardValueSet
|
|
8725
8749
|
```
|
|
8726
8750
|
|
|
8727
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
8751
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.23/src/commands/project/generate/manifest.ts)_
|
|
8728
8752
|
|
|
8729
8753
|
## `sf project list ignored`
|
|
8730
8754
|
|
|
@@ -8766,7 +8790,7 @@ EXAMPLES
|
|
|
8766
8790
|
$ sf project list ignored --source-dir package.xml
|
|
8767
8791
|
```
|
|
8768
8792
|
|
|
8769
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
8793
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.23/src/commands/project/list/ignored.ts)_
|
|
8770
8794
|
|
|
8771
8795
|
## `sf project reset tracking`
|
|
8772
8796
|
|
|
@@ -8815,7 +8839,7 @@ EXAMPLES
|
|
|
8815
8839
|
$ sf project reset tracking --revision 30
|
|
8816
8840
|
```
|
|
8817
8841
|
|
|
8818
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
8842
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.23/src/commands/project/reset/tracking.ts)_
|
|
8819
8843
|
|
|
8820
8844
|
## `sf project retrieve preview`
|
|
8821
8845
|
|
|
@@ -8869,7 +8893,7 @@ FLAG DESCRIPTIONS
|
|
|
8869
8893
|
production orgs.
|
|
8870
8894
|
```
|
|
8871
8895
|
|
|
8872
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
8896
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.23/src/commands/project/retrieve/preview.ts)_
|
|
8873
8897
|
|
|
8874
8898
|
## `sf project retrieve start`
|
|
8875
8899
|
|
|
@@ -9050,7 +9074,7 @@ ENVIRONMENT VARIABLES
|
|
|
9050
9074
|
SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
|
|
9051
9075
|
```
|
|
9052
9076
|
|
|
9053
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
9077
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.23/src/commands/project/retrieve/start.ts)_
|
|
9054
9078
|
|
|
9055
9079
|
## `sf schema generate field`
|
|
9056
9080
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.94.
|
|
3
|
+
"version": "2.94.2",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.94.
|
|
9
|
+
"version": "2.94.2",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"dependencies": {
|
|
@@ -24,17 +24,17 @@
|
|
|
24
24
|
"@oclif/plugin-which": "3.2.35",
|
|
25
25
|
"@salesforce/core": "^8.9.1",
|
|
26
26
|
"@salesforce/kit": "^3.1.6",
|
|
27
|
-
"@salesforce/plugin-agent": "1.
|
|
27
|
+
"@salesforce/plugin-agent": "1.23.0",
|
|
28
28
|
"@salesforce/plugin-apex": "3.6.19",
|
|
29
29
|
"@salesforce/plugin-api": "1.3.3",
|
|
30
|
-
"@salesforce/plugin-auth": "3.
|
|
30
|
+
"@salesforce/plugin-auth": "3.7.0",
|
|
31
31
|
"@salesforce/plugin-data": "4.0.39",
|
|
32
|
-
"@salesforce/plugin-deploy-retrieve": "3.22.
|
|
32
|
+
"@salesforce/plugin-deploy-retrieve": "3.22.23",
|
|
33
33
|
"@salesforce/plugin-info": "3.4.66",
|
|
34
34
|
"@salesforce/plugin-limits": "3.3.56",
|
|
35
35
|
"@salesforce/plugin-marketplace": "1.3.8",
|
|
36
|
-
"@salesforce/plugin-org": "5.
|
|
37
|
-
"@salesforce/plugin-packaging": "2.
|
|
36
|
+
"@salesforce/plugin-org": "5.8.0",
|
|
37
|
+
"@salesforce/plugin-packaging": "2.16.0",
|
|
38
38
|
"@salesforce/plugin-schema": "3.3.66",
|
|
39
39
|
"@salesforce/plugin-settings": "2.4.31",
|
|
40
40
|
"@salesforce/plugin-sobject": "1.4.60",
|
|
@@ -4809,9 +4809,9 @@
|
|
|
4809
4809
|
}
|
|
4810
4810
|
},
|
|
4811
4811
|
"node_modules/@salesforce/core": {
|
|
4812
|
-
"version": "8.
|
|
4813
|
-
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.
|
|
4814
|
-
"integrity": "sha512-
|
|
4812
|
+
"version": "8.13.0",
|
|
4813
|
+
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.13.0.tgz",
|
|
4814
|
+
"integrity": "sha512-FyAn0UGa93D0N++8poeJt7yEaWQH++qxrv/Wf4TjNaUCLoh19g57lrXuos3qDJPr8Ut4x6QjVxEc49XLy+vBkw==",
|
|
4815
4815
|
"license": "BSD-3-Clause",
|
|
4816
4816
|
"dependencies": {
|
|
4817
4817
|
"@jsforce/jsforce-node": "^3.8.2",
|
|
@@ -5006,10 +5006,10 @@
|
|
|
5006
5006
|
}
|
|
5007
5007
|
},
|
|
5008
5008
|
"node_modules/@salesforce/packaging": {
|
|
5009
|
-
"version": "4.
|
|
5010
|
-
"resolved": "https://registry.npmjs.org/@salesforce/packaging/-/packaging-4.
|
|
5011
|
-
"integrity": "sha512-
|
|
5012
|
-
"license": "
|
|
5009
|
+
"version": "4.7.0",
|
|
5010
|
+
"resolved": "https://registry.npmjs.org/@salesforce/packaging/-/packaging-4.7.0.tgz",
|
|
5011
|
+
"integrity": "sha512-fYwE0oChQ7MBqeAbi2vq3NZBe2qw0nsXbXdNwgl2ybREDE2RLqWRIB75OGxEa9ARQNrdWOVE7sR81cGLyCIupg==",
|
|
5012
|
+
"license": "Apache-2.0",
|
|
5013
5013
|
"dependencies": {
|
|
5014
5014
|
"@jsforce/jsforce-node": "^3.6.5",
|
|
5015
5015
|
"@salesforce/core": "^8.11.1",
|
|
@@ -5040,9 +5040,9 @@
|
|
|
5040
5040
|
}
|
|
5041
5041
|
},
|
|
5042
5042
|
"node_modules/@salesforce/plugin-agent": {
|
|
5043
|
-
"version": "1.
|
|
5044
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.
|
|
5045
|
-
"integrity": "sha512-
|
|
5043
|
+
"version": "1.23.0",
|
|
5044
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.23.0.tgz",
|
|
5045
|
+
"integrity": "sha512-bFzfruSJO5EQwWpdSQ9w7ASXIwRCj2Mw6++j7BGV3KRoQYr19vdcKkI7PhQNvgLdNOWEAHtrTE1/YQP1tIJbfw==",
|
|
5046
5046
|
"license": "BSD-3-Clause",
|
|
5047
5047
|
"dependencies": {
|
|
5048
5048
|
"@inquirer/core": "^10.1.6",
|
|
@@ -5050,7 +5050,7 @@
|
|
|
5050
5050
|
"@oclif/core": "^4",
|
|
5051
5051
|
"@oclif/multi-stage-output": "^0.7.12",
|
|
5052
5052
|
"@salesforce/agents": "0.15.0",
|
|
5053
|
-
"@salesforce/core": "^8.
|
|
5053
|
+
"@salesforce/core": "^8.13.0",
|
|
5054
5054
|
"@salesforce/kit": "^3.2.3",
|
|
5055
5055
|
"@salesforce/sf-plugins-core": "^12.2.0",
|
|
5056
5056
|
"@salesforce/source-deploy-retrieve": "^12.19.3",
|
|
@@ -5289,15 +5289,15 @@
|
|
|
5289
5289
|
}
|
|
5290
5290
|
},
|
|
5291
5291
|
"node_modules/@salesforce/plugin-auth": {
|
|
5292
|
-
"version": "3.
|
|
5293
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-auth/-/plugin-auth-3.
|
|
5294
|
-
"integrity": "sha512-
|
|
5292
|
+
"version": "3.7.0",
|
|
5293
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-auth/-/plugin-auth-3.7.0.tgz",
|
|
5294
|
+
"integrity": "sha512-dVcwpX32abxQI4V7KkVFZq5pVzw4LltUk20P2ekLKpGQ+MAWt+PQ98QzY34AbaJwuEQR1TuPD+AgOJrN2bHXlA==",
|
|
5295
5295
|
"license": "Apache-2.0",
|
|
5296
5296
|
"dependencies": {
|
|
5297
5297
|
"@inquirer/checkbox": "^2.5.0",
|
|
5298
5298
|
"@inquirer/select": "^2.5.0",
|
|
5299
5299
|
"@oclif/core": "^4",
|
|
5300
|
-
"@salesforce/core": "^8.
|
|
5300
|
+
"@salesforce/core": "^8.13.0",
|
|
5301
5301
|
"@salesforce/kit": "^3.2.3",
|
|
5302
5302
|
"@salesforce/plugin-info": "^3.4.65",
|
|
5303
5303
|
"@salesforce/sf-plugins-core": "^12.2.2",
|
|
@@ -5443,9 +5443,9 @@
|
|
|
5443
5443
|
}
|
|
5444
5444
|
},
|
|
5445
5445
|
"node_modules/@salesforce/plugin-deploy-retrieve": {
|
|
5446
|
-
"version": "3.22.
|
|
5447
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.22.
|
|
5448
|
-
"integrity": "sha512-
|
|
5446
|
+
"version": "3.22.23",
|
|
5447
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.22.23.tgz",
|
|
5448
|
+
"integrity": "sha512-WTLuyUzJqELdxl7b5C+HxNLoCSyVly5/IzqfsAS4PyVZxvYPMF55bp17r3wNpoYBGzG/ojtNewPeSZzmxCjUlA==",
|
|
5449
5449
|
"license": "Apache-2.0",
|
|
5450
5450
|
"dependencies": {
|
|
5451
5451
|
"@inquirer/prompts": "^7.5.3",
|
|
@@ -5456,8 +5456,8 @@
|
|
|
5456
5456
|
"@salesforce/kit": "^3.2.3",
|
|
5457
5457
|
"@salesforce/plugin-info": "^3.4.65",
|
|
5458
5458
|
"@salesforce/sf-plugins-core": "^12.2.2",
|
|
5459
|
-
"@salesforce/source-deploy-retrieve": "^12.19.
|
|
5460
|
-
"@salesforce/source-tracking": "^7.4.
|
|
5459
|
+
"@salesforce/source-deploy-retrieve": "^12.19.10",
|
|
5460
|
+
"@salesforce/source-tracking": "^7.4.1",
|
|
5461
5461
|
"@salesforce/ts-types": "^2.0.12",
|
|
5462
5462
|
"ansis": "^3.17.0",
|
|
5463
5463
|
"terminal-link": "^3.0.0"
|
|
@@ -5519,14 +5519,14 @@
|
|
|
5519
5519
|
}
|
|
5520
5520
|
},
|
|
5521
5521
|
"node_modules/@salesforce/plugin-org": {
|
|
5522
|
-
"version": "5.
|
|
5523
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-5.
|
|
5524
|
-
"integrity": "sha512-
|
|
5522
|
+
"version": "5.8.0",
|
|
5523
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-5.8.0.tgz",
|
|
5524
|
+
"integrity": "sha512-h2mtotzXB82Swh0KcU852Bs6HViyu3QkF3hjNx541IraPslRBRgrOI8ldYqWUz/mUmoh3ize9mO+HxrZlEjS1g==",
|
|
5525
5525
|
"license": "Apache-2.0",
|
|
5526
5526
|
"dependencies": {
|
|
5527
5527
|
"@oclif/core": "^4.3.0",
|
|
5528
5528
|
"@oclif/multi-stage-output": "^0.8.13",
|
|
5529
|
-
"@salesforce/core": "^8.
|
|
5529
|
+
"@salesforce/core": "^8.13.0",
|
|
5530
5530
|
"@salesforce/kit": "^3.2.3",
|
|
5531
5531
|
"@salesforce/sf-plugins-core": "^12.2.2",
|
|
5532
5532
|
"@salesforce/source-deploy-retrieve": "^12.19.7",
|
|
@@ -5542,15 +5542,15 @@
|
|
|
5542
5542
|
}
|
|
5543
5543
|
},
|
|
5544
5544
|
"node_modules/@salesforce/plugin-packaging": {
|
|
5545
|
-
"version": "2.
|
|
5546
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-packaging/-/plugin-packaging-2.
|
|
5547
|
-
"integrity": "sha512-
|
|
5545
|
+
"version": "2.16.0",
|
|
5546
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-packaging/-/plugin-packaging-2.16.0.tgz",
|
|
5547
|
+
"integrity": "sha512-vA6UgyzH21g482n89RA8WeNTy/KTAqtLMJ2nseyrT3AQ/xf+8yB2Bnzq7gGzCSJO05WvHmAAorr4rQoFILQO4Q==",
|
|
5548
5548
|
"license": "Apache-2.0",
|
|
5549
5549
|
"dependencies": {
|
|
5550
5550
|
"@oclif/core": "^4",
|
|
5551
5551
|
"@salesforce/core": "^8.12.0",
|
|
5552
5552
|
"@salesforce/kit": "^3.2.3",
|
|
5553
|
-
"@salesforce/packaging": "^4.
|
|
5553
|
+
"@salesforce/packaging": "^4.7.0",
|
|
5554
5554
|
"@salesforce/sf-plugins-core": "^12.2.2",
|
|
5555
5555
|
"chalk": "^5.4.1"
|
|
5556
5556
|
},
|
|
@@ -5936,12 +5936,12 @@
|
|
|
5936
5936
|
}
|
|
5937
5937
|
},
|
|
5938
5938
|
"node_modules/@salesforce/source-deploy-retrieve": {
|
|
5939
|
-
"version": "12.19.
|
|
5940
|
-
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.19.
|
|
5941
|
-
"integrity": "sha512-
|
|
5939
|
+
"version": "12.19.10",
|
|
5940
|
+
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.19.10.tgz",
|
|
5941
|
+
"integrity": "sha512-FfiX+Y96QnLjabpWjOxJgGq5Kh+ZQaP+RJa71DO/DtFFa0SlGW+VWqVzjSnNboHyq+nPF6DPDm1wT633zbEYvw==",
|
|
5942
5942
|
"license": "BSD-3-Clause",
|
|
5943
5943
|
"dependencies": {
|
|
5944
|
-
"@salesforce/core": "^8.
|
|
5944
|
+
"@salesforce/core": "^8.12.0",
|
|
5945
5945
|
"@salesforce/kit": "^3.2.3",
|
|
5946
5946
|
"@salesforce/ts-types": "^2.0.12",
|
|
5947
5947
|
"@salesforce/types": "^1.3.0",
|
package/oclif.lock
CHANGED
|
@@ -1995,10 +1995,10 @@
|
|
|
1995
1995
|
strip-ansi "6.0.1"
|
|
1996
1996
|
ts-retry-promise "^0.8.1"
|
|
1997
1997
|
|
|
1998
|
-
"@salesforce/core@^8.10.0", "@salesforce/core@^8.10.1", "@salesforce/core@^8.10.
|
|
1999
|
-
version "8.
|
|
2000
|
-
resolved "https://registry.npmjs.org/@salesforce/core/-/core-8.
|
|
2001
|
-
integrity sha512-
|
|
1998
|
+
"@salesforce/core@^8.10.0", "@salesforce/core@^8.10.1", "@salesforce/core@^8.10.3", "@salesforce/core@^8.11.1", "@salesforce/core@^8.11.4", "@salesforce/core@^8.12.0", "@salesforce/core@^8.13.0", "@salesforce/core@^8.5.1", "@salesforce/core@^8.8.0", "@salesforce/core@^8.8.1", "@salesforce/core@^8.8.5", "@salesforce/core@^8.9.1":
|
|
1999
|
+
version "8.13.0"
|
|
2000
|
+
resolved "https://registry.npmjs.org/@salesforce/core/-/core-8.13.0.tgz"
|
|
2001
|
+
integrity sha512-FyAn0UGa93D0N++8poeJt7yEaWQH++qxrv/Wf4TjNaUCLoh19g57lrXuos3qDJPr8Ut4x6QjVxEc49XLy+vBkw==
|
|
2002
2002
|
dependencies:
|
|
2003
2003
|
"@jsforce/jsforce-node" "^3.8.2"
|
|
2004
2004
|
"@salesforce/kit" "^3.2.2"
|
|
@@ -2063,10 +2063,10 @@
|
|
|
2063
2063
|
dependencies:
|
|
2064
2064
|
"@salesforce/ts-types" "^2.0.12"
|
|
2065
2065
|
|
|
2066
|
-
"@salesforce/packaging@^4.
|
|
2067
|
-
version "4.
|
|
2068
|
-
resolved "https://registry.npmjs.org/@salesforce/packaging/-/packaging-4.
|
|
2069
|
-
integrity sha512-
|
|
2066
|
+
"@salesforce/packaging@^4.7.0":
|
|
2067
|
+
version "4.7.0"
|
|
2068
|
+
resolved "https://registry.npmjs.org/@salesforce/packaging/-/packaging-4.7.0.tgz"
|
|
2069
|
+
integrity sha512-fYwE0oChQ7MBqeAbi2vq3NZBe2qw0nsXbXdNwgl2ybREDE2RLqWRIB75OGxEa9ARQNrdWOVE7sR81cGLyCIupg==
|
|
2070
2070
|
dependencies:
|
|
2071
2071
|
"@jsforce/jsforce-node" "^3.6.5"
|
|
2072
2072
|
"@salesforce/core" "^8.11.1"
|
|
@@ -2083,17 +2083,17 @@
|
|
|
2083
2083
|
jszip "^3.10.1"
|
|
2084
2084
|
object-treeify "^2"
|
|
2085
2085
|
|
|
2086
|
-
"@salesforce/plugin-agent@1.
|
|
2087
|
-
version "1.
|
|
2088
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.
|
|
2089
|
-
integrity sha512-
|
|
2086
|
+
"@salesforce/plugin-agent@1.23.0":
|
|
2087
|
+
version "1.23.0"
|
|
2088
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.23.0.tgz"
|
|
2089
|
+
integrity sha512-bFzfruSJO5EQwWpdSQ9w7ASXIwRCj2Mw6++j7BGV3KRoQYr19vdcKkI7PhQNvgLdNOWEAHtrTE1/YQP1tIJbfw==
|
|
2090
2090
|
dependencies:
|
|
2091
2091
|
"@inquirer/core" "^10.1.6"
|
|
2092
2092
|
"@inquirer/prompts" "^7.2.0"
|
|
2093
2093
|
"@oclif/core" "^4"
|
|
2094
2094
|
"@oclif/multi-stage-output" "^0.7.12"
|
|
2095
2095
|
"@salesforce/agents" "0.15.0"
|
|
2096
|
-
"@salesforce/core" "^8.
|
|
2096
|
+
"@salesforce/core" "^8.13.0"
|
|
2097
2097
|
"@salesforce/kit" "^3.2.3"
|
|
2098
2098
|
"@salesforce/sf-plugins-core" "^12.2.0"
|
|
2099
2099
|
"@salesforce/source-deploy-retrieve" "^12.19.3"
|
|
@@ -2132,15 +2132,15 @@
|
|
|
2132
2132
|
got "^13.0.0"
|
|
2133
2133
|
proxy-agent "^6.4.0"
|
|
2134
2134
|
|
|
2135
|
-
"@salesforce/plugin-auth@3.
|
|
2136
|
-
version "3.
|
|
2137
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-auth/-/plugin-auth-3.
|
|
2138
|
-
integrity sha512-
|
|
2135
|
+
"@salesforce/plugin-auth@3.7.0":
|
|
2136
|
+
version "3.7.0"
|
|
2137
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-auth/-/plugin-auth-3.7.0.tgz"
|
|
2138
|
+
integrity sha512-dVcwpX32abxQI4V7KkVFZq5pVzw4LltUk20P2ekLKpGQ+MAWt+PQ98QzY34AbaJwuEQR1TuPD+AgOJrN2bHXlA==
|
|
2139
2139
|
dependencies:
|
|
2140
2140
|
"@inquirer/checkbox" "^2.5.0"
|
|
2141
2141
|
"@inquirer/select" "^2.5.0"
|
|
2142
2142
|
"@oclif/core" "^4"
|
|
2143
|
-
"@salesforce/core" "^8.
|
|
2143
|
+
"@salesforce/core" "^8.13.0"
|
|
2144
2144
|
"@salesforce/kit" "^3.2.3"
|
|
2145
2145
|
"@salesforce/plugin-info" "^3.4.65"
|
|
2146
2146
|
"@salesforce/sf-plugins-core" "^12.2.2"
|
|
@@ -2179,10 +2179,10 @@
|
|
|
2179
2179
|
form-data "^4.0.3"
|
|
2180
2180
|
terminal-link "^3.0.0"
|
|
2181
2181
|
|
|
2182
|
-
"@salesforce/plugin-deploy-retrieve@3.22.
|
|
2183
|
-
version "3.22.
|
|
2184
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.22.
|
|
2185
|
-
integrity sha512-
|
|
2182
|
+
"@salesforce/plugin-deploy-retrieve@3.22.23":
|
|
2183
|
+
version "3.22.23"
|
|
2184
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.22.23.tgz"
|
|
2185
|
+
integrity sha512-WTLuyUzJqELdxl7b5C+HxNLoCSyVly5/IzqfsAS4PyVZxvYPMF55bp17r3wNpoYBGzG/ojtNewPeSZzmxCjUlA==
|
|
2186
2186
|
dependencies:
|
|
2187
2187
|
"@inquirer/prompts" "^7.5.3"
|
|
2188
2188
|
"@oclif/core" "^4.3.0"
|
|
@@ -2192,8 +2192,8 @@
|
|
|
2192
2192
|
"@salesforce/kit" "^3.2.3"
|
|
2193
2193
|
"@salesforce/plugin-info" "^3.4.65"
|
|
2194
2194
|
"@salesforce/sf-plugins-core" "^12.2.2"
|
|
2195
|
-
"@salesforce/source-deploy-retrieve" "^12.19.
|
|
2196
|
-
"@salesforce/source-tracking" "^7.4.
|
|
2195
|
+
"@salesforce/source-deploy-retrieve" "^12.19.10"
|
|
2196
|
+
"@salesforce/source-tracking" "^7.4.1"
|
|
2197
2197
|
"@salesforce/ts-types" "^2.0.12"
|
|
2198
2198
|
ansis "^3.17.0"
|
|
2199
2199
|
terminal-link "^3.0.0"
|
|
@@ -2235,14 +2235,14 @@
|
|
|
2235
2235
|
got "^13.0.0"
|
|
2236
2236
|
proxy-agent "^6.4.0"
|
|
2237
2237
|
|
|
2238
|
-
"@salesforce/plugin-org@5.
|
|
2239
|
-
version "5.
|
|
2240
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-5.
|
|
2241
|
-
integrity sha512-
|
|
2238
|
+
"@salesforce/plugin-org@5.8.0":
|
|
2239
|
+
version "5.8.0"
|
|
2240
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-5.8.0.tgz"
|
|
2241
|
+
integrity sha512-h2mtotzXB82Swh0KcU852Bs6HViyu3QkF3hjNx541IraPslRBRgrOI8ldYqWUz/mUmoh3ize9mO+HxrZlEjS1g==
|
|
2242
2242
|
dependencies:
|
|
2243
2243
|
"@oclif/core" "^4.3.0"
|
|
2244
2244
|
"@oclif/multi-stage-output" "^0.8.13"
|
|
2245
|
-
"@salesforce/core" "^8.
|
|
2245
|
+
"@salesforce/core" "^8.13.0"
|
|
2246
2246
|
"@salesforce/kit" "^3.2.3"
|
|
2247
2247
|
"@salesforce/sf-plugins-core" "^12.2.2"
|
|
2248
2248
|
"@salesforce/source-deploy-retrieve" "^12.19.7"
|
|
@@ -2253,15 +2253,15 @@
|
|
|
2253
2253
|
open "^10.1.2"
|
|
2254
2254
|
terminal-link "^3.0.0"
|
|
2255
2255
|
|
|
2256
|
-
"@salesforce/plugin-packaging@2.
|
|
2257
|
-
version "2.
|
|
2258
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-packaging/-/plugin-packaging-2.
|
|
2259
|
-
integrity sha512-
|
|
2256
|
+
"@salesforce/plugin-packaging@2.16.0":
|
|
2257
|
+
version "2.16.0"
|
|
2258
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-packaging/-/plugin-packaging-2.16.0.tgz"
|
|
2259
|
+
integrity sha512-vA6UgyzH21g482n89RA8WeNTy/KTAqtLMJ2nseyrT3AQ/xf+8yB2Bnzq7gGzCSJO05WvHmAAorr4rQoFILQO4Q==
|
|
2260
2260
|
dependencies:
|
|
2261
2261
|
"@oclif/core" "^4"
|
|
2262
2262
|
"@salesforce/core" "^8.12.0"
|
|
2263
2263
|
"@salesforce/kit" "^3.2.3"
|
|
2264
|
-
"@salesforce/packaging" "^4.
|
|
2264
|
+
"@salesforce/packaging" "^4.7.0"
|
|
2265
2265
|
"@salesforce/sf-plugins-core" "^12.2.2"
|
|
2266
2266
|
chalk "^5.4.1"
|
|
2267
2267
|
|
|
@@ -2421,12 +2421,12 @@
|
|
|
2421
2421
|
cli-progress "^3.12.0"
|
|
2422
2422
|
terminal-link "^3.0.0"
|
|
2423
2423
|
|
|
2424
|
-
"@salesforce/source-deploy-retrieve@^12.16.9", "@salesforce/source-deploy-retrieve@^12.19.3", "@salesforce/source-deploy-retrieve@^12.19.5", "@salesforce/source-deploy-retrieve@^12.19.7", "@salesforce/source-deploy-retrieve@^12.19.9":
|
|
2425
|
-
version "12.19.
|
|
2426
|
-
resolved "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.19.
|
|
2427
|
-
integrity sha512-
|
|
2424
|
+
"@salesforce/source-deploy-retrieve@^12.16.9", "@salesforce/source-deploy-retrieve@^12.19.10", "@salesforce/source-deploy-retrieve@^12.19.3", "@salesforce/source-deploy-retrieve@^12.19.5", "@salesforce/source-deploy-retrieve@^12.19.7", "@salesforce/source-deploy-retrieve@^12.19.9":
|
|
2425
|
+
version "12.19.10"
|
|
2426
|
+
resolved "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.19.10.tgz"
|
|
2427
|
+
integrity sha512-FfiX+Y96QnLjabpWjOxJgGq5Kh+ZQaP+RJa71DO/DtFFa0SlGW+VWqVzjSnNboHyq+nPF6DPDm1wT633zbEYvw==
|
|
2428
2428
|
dependencies:
|
|
2429
|
-
"@salesforce/core" "^8.
|
|
2429
|
+
"@salesforce/core" "^8.12.0"
|
|
2430
2430
|
"@salesforce/kit" "^3.2.3"
|
|
2431
2431
|
"@salesforce/ts-types" "^2.0.12"
|
|
2432
2432
|
"@salesforce/types" "^1.3.0"
|
|
@@ -2442,7 +2442,7 @@
|
|
|
2442
2442
|
proxy-agent "^6.4.0"
|
|
2443
2443
|
yaml "^2.7.1"
|
|
2444
2444
|
|
|
2445
|
-
"@salesforce/source-tracking@^7.4.
|
|
2445
|
+
"@salesforce/source-tracking@^7.4.1":
|
|
2446
2446
|
version "7.4.1"
|
|
2447
2447
|
resolved "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-7.4.1.tgz"
|
|
2448
2448
|
integrity sha512-UwouGuno36nHUVLEn47GVtA1v2bzrkccZ6ps8QYqbqpuipnkuraOmFXTlaIz8+8ZEZV0XDkBkual6qGH/Twc5A==
|
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.94.
|
|
4
|
+
"version": "2.94.2",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -158,17 +158,17 @@
|
|
|
158
158
|
"@oclif/plugin-which": "3.2.35",
|
|
159
159
|
"@salesforce/core": "^8.9.1",
|
|
160
160
|
"@salesforce/kit": "^3.1.6",
|
|
161
|
-
"@salesforce/plugin-agent": "1.
|
|
161
|
+
"@salesforce/plugin-agent": "1.23.0",
|
|
162
162
|
"@salesforce/plugin-apex": "3.6.19",
|
|
163
163
|
"@salesforce/plugin-api": "1.3.3",
|
|
164
|
-
"@salesforce/plugin-auth": "3.
|
|
164
|
+
"@salesforce/plugin-auth": "3.7.0",
|
|
165
165
|
"@salesforce/plugin-data": "4.0.39",
|
|
166
|
-
"@salesforce/plugin-deploy-retrieve": "3.22.
|
|
166
|
+
"@salesforce/plugin-deploy-retrieve": "3.22.23",
|
|
167
167
|
"@salesforce/plugin-info": "3.4.66",
|
|
168
168
|
"@salesforce/plugin-limits": "3.3.56",
|
|
169
169
|
"@salesforce/plugin-marketplace": "1.3.8",
|
|
170
|
-
"@salesforce/plugin-org": "5.
|
|
171
|
-
"@salesforce/plugin-packaging": "2.
|
|
170
|
+
"@salesforce/plugin-org": "5.8.0",
|
|
171
|
+
"@salesforce/plugin-packaging": "2.16.0",
|
|
172
172
|
"@salesforce/plugin-schema": "3.3.66",
|
|
173
173
|
"@salesforce/plugin-settings": "2.4.31",
|
|
174
174
|
"@salesforce/plugin-sobject": "1.4.60",
|