@salesforce/cli 2.124.0 → 2.124.1
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 +99 -16
- package/npm-shrinkwrap.json +16 -16
- package/oclif.lock +15 -15
- package/oclif.manifest.json +1 -1
- package/package.json +3 -3
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.124.
|
|
28
|
+
@salesforce/cli/2.124.1 linux-x64 node-v22.22.0
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -203,6 +203,7 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
|
|
|
203
203
|
- [`sf template generate apex class`](#sf-template-generate-apex-class)
|
|
204
204
|
- [`sf template generate apex trigger`](#sf-template-generate-apex-trigger)
|
|
205
205
|
- [`sf template generate digital-experience site`](#sf-template-generate-digital-experience-site)
|
|
206
|
+
- [`sf template generate flexipage`](#sf-template-generate-flexipage)
|
|
206
207
|
- [`sf template generate lightning app`](#sf-template-generate-lightning-app)
|
|
207
208
|
- [`sf template generate lightning component`](#sf-template-generate-lightning-component)
|
|
208
209
|
- [`sf template generate lightning event`](#sf-template-generate-lightning-event)
|
|
@@ -1889,7 +1890,7 @@ EXAMPLES
|
|
|
1889
1890
|
$ sf api request graphql --body example.txt --stream-to-file output.txt --include
|
|
1890
1891
|
```
|
|
1891
1892
|
|
|
1892
|
-
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.
|
|
1893
|
+
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.10/src/commands/api/request/graphql.ts)_
|
|
1893
1894
|
|
|
1894
1895
|
## `sf api request rest [URL]`
|
|
1895
1896
|
|
|
@@ -1998,7 +1999,7 @@ FLAG DESCRIPTIONS
|
|
|
1998
1999
|
https://github.com/salesforcecli/plugin-api/tree/main/test/test-files/data-project.
|
|
1999
2000
|
```
|
|
2000
2001
|
|
|
2001
|
-
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.
|
|
2002
|
+
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.10/src/commands/api/request/rest.ts)_
|
|
2002
2003
|
|
|
2003
2004
|
## `sf autocomplete [SHELL]`
|
|
2004
2005
|
|
|
@@ -9661,7 +9662,7 @@ FLAG DESCRIPTIONS
|
|
|
9661
9662
|
directory.
|
|
9662
9663
|
```
|
|
9663
9664
|
|
|
9664
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
9665
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.8.0/src/commands/template/generate/analytics/template.ts)_
|
|
9665
9666
|
|
|
9666
9667
|
## `sf template generate apex class`
|
|
9667
9668
|
|
|
@@ -9721,7 +9722,7 @@ FLAG DESCRIPTIONS
|
|
|
9721
9722
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
9722
9723
|
```
|
|
9723
9724
|
|
|
9724
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
9725
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.8.0/src/commands/template/generate/apex/class.ts)_
|
|
9725
9726
|
|
|
9726
9727
|
## `sf template generate apex trigger`
|
|
9727
9728
|
|
|
@@ -9791,7 +9792,7 @@ FLAG DESCRIPTIONS
|
|
|
9791
9792
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
9792
9793
|
```
|
|
9793
9794
|
|
|
9794
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
9795
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.8.0/src/commands/template/generate/apex/trigger.ts)_
|
|
9795
9796
|
|
|
9796
9797
|
## `sf template generate digital-experience site`
|
|
9797
9798
|
|
|
@@ -9841,7 +9842,89 @@ FLAG DESCRIPTIONS
|
|
|
9841
9842
|
project, defaults to the current directory.
|
|
9842
9843
|
```
|
|
9843
9844
|
|
|
9844
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
9845
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.8.0/src/commands/template/generate/digital-experience/site.ts)_
|
|
9846
|
+
|
|
9847
|
+
## `sf template generate flexipage`
|
|
9848
|
+
|
|
9849
|
+
Generate a FlexiPage, also known as a Lightning page.
|
|
9850
|
+
|
|
9851
|
+
```
|
|
9852
|
+
USAGE
|
|
9853
|
+
$ sf template generate flexipage -n <value> -t RecordPage|AppPage|HomePage [--json] [--flags-dir <value>] [-d <value>]
|
|
9854
|
+
[--api-version <value>] [--label <value>] [--description <value>] [-s <value>] [--primary-field <value>]
|
|
9855
|
+
[--secondary-fields <value>...] [--detail-fields <value>...]
|
|
9856
|
+
|
|
9857
|
+
FLAGS
|
|
9858
|
+
-d, --output-dir=<value> [default: .] Directory for saving the created files.
|
|
9859
|
+
-n, --name=<value> (required) Name of the FlexiPage.
|
|
9860
|
+
-s, --sobject=<value> API name of the Salesforce object; required when creating a RecordPage.
|
|
9861
|
+
-t, --template=<option> (required) Template type for the FlexiPage.
|
|
9862
|
+
<options: RecordPage|AppPage|HomePage>
|
|
9863
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
9864
|
+
--description=<value> Description for the FlexiPage, which provides context about its purpose.
|
|
9865
|
+
--detail-fields=<value>... Fields to display in the Details tab. Specify multiple fields separated by commas.
|
|
9866
|
+
Fields are split into two columns. Used only with RecordPage.
|
|
9867
|
+
--label=<value> Label of this FlexiPage; if not specified, uses the FlexiPage name as the label.
|
|
9868
|
+
--primary-field=<value> Primary field for the dynamic highlights header; typically 'Name'. Used only with
|
|
9869
|
+
RecordPage.
|
|
9870
|
+
--secondary-fields=<value>... Secondary fields shown in the dynamic highlights header. Specify multiple fields
|
|
9871
|
+
separated by commas. Maximum of 11 fields. Used only with RecordPage.
|
|
9872
|
+
|
|
9873
|
+
GLOBAL FLAGS
|
|
9874
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
9875
|
+
--json Format output as json.
|
|
9876
|
+
|
|
9877
|
+
DESCRIPTION
|
|
9878
|
+
Generate a FlexiPage, also known as a Lightning page.
|
|
9879
|
+
|
|
9880
|
+
FlexiPages are the metadata types associated with a Lightning page. A Lightning page represents a customizable screen
|
|
9881
|
+
made up of regions containing Lightning components.
|
|
9882
|
+
|
|
9883
|
+
You can use this command to generate these types of FlexiPages; specify the type with the --template flag:
|
|
9884
|
+
|
|
9885
|
+
- AppPage: A Lightning page used as the home page for a custom app or a standalone application page.
|
|
9886
|
+
- HomePage: A Lightning page used to override the Home page in Lightning Experience.
|
|
9887
|
+
- RecordPage: A Lightning page used to override an object record page in Lightning Experience. Requires that you
|
|
9888
|
+
specify the object name with the --sobject flag.
|
|
9889
|
+
|
|
9890
|
+
EXAMPLES
|
|
9891
|
+
Generate a RecordPage FlexiPage for the Account object in the current directory:
|
|
9892
|
+
|
|
9893
|
+
$ sf template generate flexipage --name Account_Record_Page --template RecordPage --sobject Account
|
|
9894
|
+
|
|
9895
|
+
Generate an AppPage FlexiPage in the "force-app/main/default/flexipages" directory:
|
|
9896
|
+
|
|
9897
|
+
$ sf template generate flexipage --name Sales_Dashboard --template AppPage --output-dir \
|
|
9898
|
+
force-app/main/default/flexipages
|
|
9899
|
+
|
|
9900
|
+
Generate a HomePage FlexiPage with a custom label:
|
|
9901
|
+
|
|
9902
|
+
$ sf template generate flexipage --name Custom_Home --template HomePage --label "Sales Home Page"
|
|
9903
|
+
|
|
9904
|
+
Generate a RecordPage with dynamic highlights and detail fields:
|
|
9905
|
+
|
|
9906
|
+
$ sf template generate flexipage --name Property_Page --template RecordPage --sobject Rental_Property__c \
|
|
9907
|
+
--primary-field Name --secondary-fields Property_Address__c,City__c --detail-fields \
|
|
9908
|
+
Name,Property_Address__c,City__c,Monthly_Rent__c,Bedrooms__c
|
|
9909
|
+
|
|
9910
|
+
FLAG DESCRIPTIONS
|
|
9911
|
+
-d, --output-dir=<value> Directory for saving the created files.
|
|
9912
|
+
|
|
9913
|
+
The location can be an absolute path or relative to the current working directory. The default is the current
|
|
9914
|
+
directory.
|
|
9915
|
+
|
|
9916
|
+
-n, --name=<value> Name of the FlexiPage.
|
|
9917
|
+
|
|
9918
|
+
The name can contain only alphanumeric characters, must start with a letter, and can't end with an underscore or
|
|
9919
|
+
contain two consecutive underscores.
|
|
9920
|
+
|
|
9921
|
+
-s, --sobject=<value> API name of the Salesforce object; required when creating a RecordPage.
|
|
9922
|
+
|
|
9923
|
+
For RecordPage FlexiPages, you must specify the associated object API name, such as 'Account', 'Opportunity', or
|
|
9924
|
+
'Custom_Object__c'. This sets the `sobjectType` field in the FlexiPage metadata.
|
|
9925
|
+
```
|
|
9926
|
+
|
|
9927
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.8.0/src/commands/template/generate/flexipage/index.ts)_
|
|
9845
9928
|
|
|
9846
9929
|
## `sf template generate lightning app`
|
|
9847
9930
|
|
|
@@ -9897,7 +9980,7 @@ FLAG DESCRIPTIONS
|
|
|
9897
9980
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
9898
9981
|
```
|
|
9899
9982
|
|
|
9900
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
9983
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.8.0/src/commands/template/generate/lightning/app.ts)_
|
|
9901
9984
|
|
|
9902
9985
|
## `sf template generate lightning component`
|
|
9903
9986
|
|
|
@@ -9967,7 +10050,7 @@ FLAG DESCRIPTIONS
|
|
|
9967
10050
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
9968
10051
|
```
|
|
9969
10052
|
|
|
9970
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10053
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.8.0/src/commands/template/generate/lightning/component.ts)_
|
|
9971
10054
|
|
|
9972
10055
|
## `sf template generate lightning event`
|
|
9973
10056
|
|
|
@@ -10023,7 +10106,7 @@ FLAG DESCRIPTIONS
|
|
|
10023
10106
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
10024
10107
|
```
|
|
10025
10108
|
|
|
10026
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10109
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.8.0/src/commands/template/generate/lightning/event.ts)_
|
|
10027
10110
|
|
|
10028
10111
|
## `sf template generate lightning interface`
|
|
10029
10112
|
|
|
@@ -10079,7 +10162,7 @@ FLAG DESCRIPTIONS
|
|
|
10079
10162
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
10080
10163
|
```
|
|
10081
10164
|
|
|
10082
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10165
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.8.0/src/commands/template/generate/lightning/interface.ts)_
|
|
10083
10166
|
|
|
10084
10167
|
## `sf template generate lightning test`
|
|
10085
10168
|
|
|
@@ -10135,7 +10218,7 @@ FLAG DESCRIPTIONS
|
|
|
10135
10218
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
10136
10219
|
```
|
|
10137
10220
|
|
|
10138
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10221
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.8.0/src/commands/template/generate/lightning/test.ts)_
|
|
10139
10222
|
|
|
10140
10223
|
## `sf template generate project`
|
|
10141
10224
|
|
|
@@ -10241,7 +10324,7 @@ FLAG DESCRIPTIONS
|
|
|
10241
10324
|
Override the api version used for api requests made by this command
|
|
10242
10325
|
```
|
|
10243
10326
|
|
|
10244
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10327
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.8.0/src/commands/template/generate/project/index.ts)_
|
|
10245
10328
|
|
|
10246
10329
|
## `sf template generate static-resource`
|
|
10247
10330
|
|
|
@@ -10304,7 +10387,7 @@ FLAG DESCRIPTIONS
|
|
|
10304
10387
|
etc.
|
|
10305
10388
|
```
|
|
10306
10389
|
|
|
10307
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10390
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.8.0/src/commands/template/generate/static-resource/index.ts)_
|
|
10308
10391
|
|
|
10309
10392
|
## `sf template generate visualforce component`
|
|
10310
10393
|
|
|
@@ -10361,7 +10444,7 @@ FLAG DESCRIPTIONS
|
|
|
10361
10444
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
10362
10445
|
```
|
|
10363
10446
|
|
|
10364
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10447
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.8.0/src/commands/template/generate/visualforce/component.ts)_
|
|
10365
10448
|
|
|
10366
10449
|
## `sf template generate visualforce page`
|
|
10367
10450
|
|
|
@@ -10412,7 +10495,7 @@ FLAG DESCRIPTIONS
|
|
|
10412
10495
|
The name can be up to 40 characters and must start with a letter.
|
|
10413
10496
|
```
|
|
10414
10497
|
|
|
10415
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10498
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.8.0/src/commands/template/generate/visualforce/page.ts)_
|
|
10416
10499
|
|
|
10417
10500
|
## `sf update [CHANNEL]`
|
|
10418
10501
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.124.
|
|
3
|
+
"version": "2.124.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.124.
|
|
9
|
+
"version": "2.124.1",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"dependencies": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@salesforce/kit": "^3.1.6",
|
|
27
27
|
"@salesforce/plugin-agent": "1.29.0",
|
|
28
28
|
"@salesforce/plugin-apex": "3.9.7",
|
|
29
|
-
"@salesforce/plugin-api": "1.3.
|
|
29
|
+
"@salesforce/plugin-api": "1.3.10",
|
|
30
30
|
"@salesforce/plugin-auth": "4.1.5",
|
|
31
31
|
"@salesforce/plugin-data": "4.0.70",
|
|
32
32
|
"@salesforce/plugin-deploy-retrieve": "3.24.9",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@salesforce/plugin-settings": "2.4.56",
|
|
40
40
|
"@salesforce/plugin-sobject": "1.4.82",
|
|
41
41
|
"@salesforce/plugin-telemetry": "3.7.2",
|
|
42
|
-
"@salesforce/plugin-templates": "56.
|
|
42
|
+
"@salesforce/plugin-templates": "56.8.0",
|
|
43
43
|
"@salesforce/plugin-trust": "3.7.113",
|
|
44
44
|
"@salesforce/plugin-user": "3.6.49",
|
|
45
45
|
"@salesforce/sf-plugins-core": "12.2.6",
|
|
@@ -5192,20 +5192,20 @@
|
|
|
5192
5192
|
}
|
|
5193
5193
|
},
|
|
5194
5194
|
"node_modules/@salesforce/plugin-api": {
|
|
5195
|
-
"version": "1.3.
|
|
5196
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-api/-/plugin-api-1.3.
|
|
5197
|
-
"integrity": "sha512-
|
|
5198
|
-
"license": "
|
|
5195
|
+
"version": "1.3.10",
|
|
5196
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-api/-/plugin-api-1.3.10.tgz",
|
|
5197
|
+
"integrity": "sha512-20TMn7TPj5oM6t5xhg6iE4+0u9nBpE301ZDODZWxcN8ugk9oUjuUtqvUaKRIkANUEmt1dJvcZzmtPDfzGaS1xg==",
|
|
5198
|
+
"license": "Apache-2.0",
|
|
5199
5199
|
"dependencies": {
|
|
5200
5200
|
"@oclif/core": "^4",
|
|
5201
|
-
"@salesforce/core": "^8.
|
|
5202
|
-
"@salesforce/kit": "^3.2.
|
|
5203
|
-
"@salesforce/sf-plugins-core": "^12",
|
|
5201
|
+
"@salesforce/core": "^8.25.1",
|
|
5202
|
+
"@salesforce/kit": "^3.2.4",
|
|
5203
|
+
"@salesforce/sf-plugins-core": "^12.2.6",
|
|
5204
5204
|
"@salesforce/ts-types": "^2.0.12",
|
|
5205
5205
|
"ansis": "^3.3.2",
|
|
5206
|
-
"form-data": "^4.0.
|
|
5206
|
+
"form-data": "^4.0.5",
|
|
5207
5207
|
"got": "^13.0.0",
|
|
5208
|
-
"proxy-agent": "^6.
|
|
5208
|
+
"proxy-agent": "^6.5.0"
|
|
5209
5209
|
},
|
|
5210
5210
|
"engines": {
|
|
5211
5211
|
"node": ">=18.0.0"
|
|
@@ -5759,9 +5759,9 @@
|
|
|
5759
5759
|
}
|
|
5760
5760
|
},
|
|
5761
5761
|
"node_modules/@salesforce/plugin-templates": {
|
|
5762
|
-
"version": "56.
|
|
5763
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-templates/-/plugin-templates-56.
|
|
5764
|
-
"integrity": "sha512-
|
|
5762
|
+
"version": "56.8.0",
|
|
5763
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-templates/-/plugin-templates-56.8.0.tgz",
|
|
5764
|
+
"integrity": "sha512-z3kqgzEUseNL+MFnV1rcXrE23AvWYqFFJi9qpd6FR/coFI1T/eBm9LtVbRkETeS6sX4FXQYO/HmfiVBCA/+4Qg==",
|
|
5765
5765
|
"license": "Apache-2.0",
|
|
5766
5766
|
"dependencies": {
|
|
5767
5767
|
"@salesforce/core": "^8.25.1",
|
package/oclif.lock
CHANGED
|
@@ -2118,7 +2118,7 @@
|
|
|
2118
2118
|
strip-ansi "6.0.1"
|
|
2119
2119
|
ts-retry-promise "^0.8.1"
|
|
2120
2120
|
|
|
2121
|
-
"@salesforce/core@^8.18.1", "@salesforce/core@^8.18.7", "@salesforce/core@^8.24.0", "@salesforce/core@^8.25.0", "@salesforce/core@^8.25.1", "@salesforce/core@^8.5.1", "@salesforce/core@^8.8.0", "@salesforce/core@^8.8.
|
|
2121
|
+
"@salesforce/core@^8.18.1", "@salesforce/core@^8.18.7", "@salesforce/core@^8.24.0", "@salesforce/core@^8.25.0", "@salesforce/core@^8.25.1", "@salesforce/core@^8.5.1", "@salesforce/core@^8.8.0", "@salesforce/core@^8.8.5":
|
|
2122
2122
|
version "8.25.1"
|
|
2123
2123
|
resolved "https://registry.npmjs.org/@salesforce/core/-/core-8.25.1.tgz"
|
|
2124
2124
|
integrity sha512-Jon0a9uZpp+mNa5PiY+y8dTjaPcsMaxXEkswdzWotrdrZ4g84MmPKSEv+Q/LtXw3uc9i4RmqBJBUXSIvZhgrjg==
|
|
@@ -2180,7 +2180,7 @@
|
|
|
2180
2180
|
typescript "^5.5.4"
|
|
2181
2181
|
wireit "^0.14.12"
|
|
2182
2182
|
|
|
2183
|
-
"@salesforce/kit@^3.1.6", "@salesforce/kit@^3.2.0", "@salesforce/kit@^3.2.
|
|
2183
|
+
"@salesforce/kit@^3.1.6", "@salesforce/kit@^3.2.0", "@salesforce/kit@^3.2.2", "@salesforce/kit@^3.2.3", "@salesforce/kit@^3.2.4":
|
|
2184
2184
|
version "3.2.4"
|
|
2185
2185
|
resolved "https://registry.npmjs.org/@salesforce/kit/-/kit-3.2.4.tgz"
|
|
2186
2186
|
integrity sha512-9buqZ2puIGWqjUFWYNroSeNih4d1s9kdQAzZfutr/Re/JMl6xBct0ATO5LVb1ty5UhdBruJrVaiTg03PqVKU+Q==
|
|
@@ -2250,20 +2250,20 @@
|
|
|
2250
2250
|
"@salesforce/sf-plugins-core" "^12.2.6"
|
|
2251
2251
|
ansis "^3.3.1"
|
|
2252
2252
|
|
|
2253
|
-
"@salesforce/plugin-api@1.3.
|
|
2254
|
-
version "1.3.
|
|
2255
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-api/-/plugin-api-1.3.
|
|
2256
|
-
integrity sha512-
|
|
2253
|
+
"@salesforce/plugin-api@1.3.10":
|
|
2254
|
+
version "1.3.10"
|
|
2255
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-api/-/plugin-api-1.3.10.tgz"
|
|
2256
|
+
integrity sha512-20TMn7TPj5oM6t5xhg6iE4+0u9nBpE301ZDODZWxcN8ugk9oUjuUtqvUaKRIkANUEmt1dJvcZzmtPDfzGaS1xg==
|
|
2257
2257
|
dependencies:
|
|
2258
2258
|
"@oclif/core" "^4"
|
|
2259
|
-
"@salesforce/core" "^8.
|
|
2260
|
-
"@salesforce/kit" "^3.2.
|
|
2261
|
-
"@salesforce/sf-plugins-core" "^12"
|
|
2259
|
+
"@salesforce/core" "^8.25.1"
|
|
2260
|
+
"@salesforce/kit" "^3.2.4"
|
|
2261
|
+
"@salesforce/sf-plugins-core" "^12.2.6"
|
|
2262
2262
|
"@salesforce/ts-types" "^2.0.12"
|
|
2263
2263
|
ansis "^3.3.2"
|
|
2264
|
-
form-data "^4.0.
|
|
2264
|
+
form-data "^4.0.5"
|
|
2265
2265
|
got "^13.0.0"
|
|
2266
|
-
proxy-agent "^6.
|
|
2266
|
+
proxy-agent "^6.5.0"
|
|
2267
2267
|
|
|
2268
2268
|
"@salesforce/plugin-auth@4.1.5":
|
|
2269
2269
|
version "4.1.5"
|
|
@@ -2475,10 +2475,10 @@
|
|
|
2475
2475
|
"@salesforce/ts-types" "^2.0.12"
|
|
2476
2476
|
debug "^4.4.3"
|
|
2477
2477
|
|
|
2478
|
-
"@salesforce/plugin-templates@56.
|
|
2479
|
-
version "56.
|
|
2480
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-templates/-/plugin-templates-56.
|
|
2481
|
-
integrity sha512-
|
|
2478
|
+
"@salesforce/plugin-templates@56.8.0":
|
|
2479
|
+
version "56.8.0"
|
|
2480
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-templates/-/plugin-templates-56.8.0.tgz"
|
|
2481
|
+
integrity sha512-z3kqgzEUseNL+MFnV1rcXrE23AvWYqFFJi9qpd6FR/coFI1T/eBm9LtVbRkETeS6sX4FXQYO/HmfiVBCA/+4Qg==
|
|
2482
2482
|
dependencies:
|
|
2483
2483
|
"@salesforce/core" "^8.25.1"
|
|
2484
2484
|
"@salesforce/sf-plugins-core" "^12"
|
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.124.
|
|
4
|
+
"version": "2.124.1",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
"@salesforce/kit": "^3.1.6",
|
|
160
160
|
"@salesforce/plugin-agent": "1.29.0",
|
|
161
161
|
"@salesforce/plugin-apex": "3.9.7",
|
|
162
|
-
"@salesforce/plugin-api": "1.3.
|
|
162
|
+
"@salesforce/plugin-api": "1.3.10",
|
|
163
163
|
"@salesforce/plugin-auth": "4.1.5",
|
|
164
164
|
"@salesforce/plugin-data": "4.0.70",
|
|
165
165
|
"@salesforce/plugin-deploy-retrieve": "3.24.9",
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
"@salesforce/plugin-settings": "2.4.56",
|
|
173
173
|
"@salesforce/plugin-sobject": "1.4.82",
|
|
174
174
|
"@salesforce/plugin-telemetry": "3.7.2",
|
|
175
|
-
"@salesforce/plugin-templates": "56.
|
|
175
|
+
"@salesforce/plugin-templates": "56.8.0",
|
|
176
176
|
"@salesforce/plugin-trust": "3.7.113",
|
|
177
177
|
"@salesforce/plugin-user": "3.6.49",
|
|
178
178
|
"@salesforce/sf-plugins-core": "12.2.6",
|