@salesforce/cli 2.43.1 → 2.43.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 +76 -26
- package/npm-shrinkwrap.json +19 -18
- package/oclif.lock +17 -16
- package/oclif.manifest.json +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ $ npm install -g @salesforce/cli
|
|
|
24
24
|
$ sf COMMAND
|
|
25
25
|
running command...
|
|
26
26
|
$ sf (--version|-v)
|
|
27
|
-
@salesforce/cli/2.43.
|
|
27
|
+
@salesforce/cli/2.43.2 linux-x64 node-v20.13.1
|
|
28
28
|
$ sf --help [COMMAND]
|
|
29
29
|
USAGE
|
|
30
30
|
$ sf COMMAND
|
|
@@ -59,6 +59,7 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
|
|
|
59
59
|
- [`sf config list`](#sf-config-list)
|
|
60
60
|
- [`sf config set`](#sf-config-set)
|
|
61
61
|
- [`sf config unset`](#sf-config-unset)
|
|
62
|
+
- [`sf data create file`](#sf-data-create-file)
|
|
62
63
|
- [`sf data create record`](#sf-data-create-record)
|
|
63
64
|
- [`sf data delete bulk`](#sf-data-delete-bulk)
|
|
64
65
|
- [`sf data delete record`](#sf-data-delete-record)
|
|
@@ -1083,6 +1084,55 @@ CONFIGURATION VARIABLES
|
|
|
1083
1084
|
|
|
1084
1085
|
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.2.6/src/commands/config/unset.ts)_
|
|
1085
1086
|
|
|
1087
|
+
## `sf data create file`
|
|
1088
|
+
|
|
1089
|
+
Upload a local file to an org.
|
|
1090
|
+
|
|
1091
|
+
```
|
|
1092
|
+
USAGE
|
|
1093
|
+
$ sf data create file -o <value> -f <value> [--json] [--flags-dir <value>] [--api-version <value>] [-t <value>] [-i
|
|
1094
|
+
<value>]
|
|
1095
|
+
|
|
1096
|
+
FLAGS
|
|
1097
|
+
-f, --file=<value> (required) Path of file to upload.
|
|
1098
|
+
-i, --parent-id=<value> ID of the record to attach the file to.
|
|
1099
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
1100
|
+
configuration variable is already set.
|
|
1101
|
+
-t, --title=<value> New title given to the file (ContentDocument) after it's uploaded.
|
|
1102
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
1103
|
+
|
|
1104
|
+
GLOBAL FLAGS
|
|
1105
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
1106
|
+
--json Format output as json.
|
|
1107
|
+
|
|
1108
|
+
DESCRIPTION
|
|
1109
|
+
Upload a local file to an org.
|
|
1110
|
+
|
|
1111
|
+
This command always creates a new file in the org; you can't update an existing file. After a successful upload, the
|
|
1112
|
+
command displays the ID of the new ContentDocument record which represents the uploaded file.
|
|
1113
|
+
|
|
1114
|
+
By default, the uploaded file isn't attached to a record; in the Salesforce UI the file shows up in the Files tab. You
|
|
1115
|
+
can optionally attach the file to an existing record, such as an account, as long as you know its record ID.
|
|
1116
|
+
|
|
1117
|
+
You can also give the file a new name after it's been uploaded; by default its name in the org is the same as the
|
|
1118
|
+
local file name.
|
|
1119
|
+
|
|
1120
|
+
EXAMPLES
|
|
1121
|
+
Upload the local file "resources/astro.png" to your default org:
|
|
1122
|
+
|
|
1123
|
+
$ sf data create file --file resources/astro.png
|
|
1124
|
+
|
|
1125
|
+
Give the file a different filename after it's uploaded to the org with alias "my-scratch":
|
|
1126
|
+
|
|
1127
|
+
$ sf data create file --file resources/astro.png --title AstroOnABoat.png --target-org my-scratch
|
|
1128
|
+
|
|
1129
|
+
Attach the file to a record in the org:
|
|
1130
|
+
|
|
1131
|
+
$ sf data create file --file path/to/astro.png --parent-id a03fakeLoJWPIA3
|
|
1132
|
+
```
|
|
1133
|
+
|
|
1134
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.0/src/commands/data/create/file.ts)_
|
|
1135
|
+
|
|
1086
1136
|
## `sf data create record`
|
|
1087
1137
|
|
|
1088
1138
|
Create and insert a record into a Salesforce or Tooling API object.
|
|
@@ -1137,7 +1187,7 @@ EXAMPLES
|
|
|
1137
1187
|
TracedEntityId=01p17000000R6bLAAS"
|
|
1138
1188
|
```
|
|
1139
1189
|
|
|
1140
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1190
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.0/src/commands/data/create/record.ts)_
|
|
1141
1191
|
|
|
1142
1192
|
## `sf data delete bulk`
|
|
1143
1193
|
|
|
@@ -1184,7 +1234,7 @@ EXAMPLES
|
|
|
1184
1234
|
$ sf data delete bulk --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
|
|
1185
1235
|
```
|
|
1186
1236
|
|
|
1187
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1237
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.0/src/commands/data/delete/bulk.ts)_
|
|
1188
1238
|
|
|
1189
1239
|
## `sf data delete record`
|
|
1190
1240
|
|
|
@@ -1245,7 +1295,7 @@ EXAMPLES
|
|
|
1245
1295
|
$ sf data delete record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
1246
1296
|
```
|
|
1247
1297
|
|
|
1248
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1298
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.0/src/commands/data/delete/record.ts)_
|
|
1249
1299
|
|
|
1250
1300
|
## `sf data delete resume`
|
|
1251
1301
|
|
|
@@ -1284,7 +1334,7 @@ EXAMPLES
|
|
|
1284
1334
|
$ sf data delete resume --use-most-recent --target-org my-scratch
|
|
1285
1335
|
```
|
|
1286
1336
|
|
|
1287
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1337
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.0/src/commands/data/delete/resume.ts)_
|
|
1288
1338
|
|
|
1289
1339
|
## `sf data export beta tree`
|
|
1290
1340
|
|
|
@@ -1342,7 +1392,7 @@ EXAMPLES
|
|
|
1342
1392
|
my-scratch
|
|
1343
1393
|
```
|
|
1344
1394
|
|
|
1345
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1395
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.0/src/commands/data/export/beta/tree.ts)_
|
|
1346
1396
|
|
|
1347
1397
|
## `sf data export tree`
|
|
1348
1398
|
|
|
@@ -1402,7 +1452,7 @@ EXAMPLES
|
|
|
1402
1452
|
my-scratch
|
|
1403
1453
|
```
|
|
1404
1454
|
|
|
1405
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1455
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.0/src/commands/data/export/tree.ts)_
|
|
1406
1456
|
|
|
1407
1457
|
## `sf data get record`
|
|
1408
1458
|
|
|
@@ -1466,7 +1516,7 @@ EXAMPLES
|
|
|
1466
1516
|
$ sf data get record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
1467
1517
|
```
|
|
1468
1518
|
|
|
1469
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1519
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.0/src/commands/data/get/record.ts)_
|
|
1470
1520
|
|
|
1471
1521
|
## `sf data import beta tree`
|
|
1472
1522
|
|
|
@@ -1509,7 +1559,7 @@ EXAMPLES
|
|
|
1509
1559
|
$ sf data import beta tree --plan Account-Contact-plan.json
|
|
1510
1560
|
```
|
|
1511
1561
|
|
|
1512
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1562
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.0/src/commands/data/import/beta/tree.ts)_
|
|
1513
1563
|
|
|
1514
1564
|
## `sf data import tree`
|
|
1515
1565
|
|
|
@@ -1559,7 +1609,7 @@ EXAMPLES
|
|
|
1559
1609
|
$ sf data import tree --plan Account-Contact-plan.json
|
|
1560
1610
|
```
|
|
1561
1611
|
|
|
1562
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1612
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.0/src/commands/data/import/tree.ts)_
|
|
1563
1613
|
|
|
1564
1614
|
## `sf data query`
|
|
1565
1615
|
|
|
@@ -1623,7 +1673,7 @@ EXAMPLES
|
|
|
1623
1673
|
$ sf data query --query "SELECT Id FROM Contact" --bulk --wait 0
|
|
1624
1674
|
```
|
|
1625
1675
|
|
|
1626
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1676
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.0/src/commands/data/query.ts)_
|
|
1627
1677
|
|
|
1628
1678
|
## `sf data query resume`
|
|
1629
1679
|
|
|
@@ -1661,7 +1711,7 @@ EXAMPLES
|
|
|
1661
1711
|
$ sf data query resume --bulk-query-id 7500x000005BdFzXXX
|
|
1662
1712
|
```
|
|
1663
1713
|
|
|
1664
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1714
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.0/src/commands/data/query/resume.ts)_
|
|
1665
1715
|
|
|
1666
1716
|
## `sf data resume`
|
|
1667
1717
|
|
|
@@ -1698,7 +1748,7 @@ EXAMPLES
|
|
|
1698
1748
|
$ sf data resume --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA
|
|
1699
1749
|
```
|
|
1700
1750
|
|
|
1701
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1751
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.0/src/commands/data/resume.ts)_
|
|
1702
1752
|
|
|
1703
1753
|
## `sf data update record`
|
|
1704
1754
|
|
|
@@ -1760,7 +1810,7 @@ EXAMPLES
|
|
|
1760
1810
|
"ExpirationDate=2017-12-01T00:58:04.000+0000"
|
|
1761
1811
|
```
|
|
1762
1812
|
|
|
1763
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1813
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.0/src/commands/data/update/record.ts)_
|
|
1764
1814
|
|
|
1765
1815
|
## `sf data upsert bulk`
|
|
1766
1816
|
|
|
@@ -1813,7 +1863,7 @@ EXAMPLES
|
|
|
1813
1863
|
my-scratch
|
|
1814
1864
|
```
|
|
1815
1865
|
|
|
1816
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1866
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.0/src/commands/data/upsert/bulk.ts)_
|
|
1817
1867
|
|
|
1818
1868
|
## `sf data upsert resume`
|
|
1819
1869
|
|
|
@@ -1852,7 +1902,7 @@ EXAMPLES
|
|
|
1852
1902
|
$ sf data upsert resume --use-most-recent --target-org my-scratch
|
|
1853
1903
|
```
|
|
1854
1904
|
|
|
1855
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1905
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.0/src/commands/data/upsert/resume.ts)_
|
|
1856
1906
|
|
|
1857
1907
|
## `sf doctor`
|
|
1858
1908
|
|
|
@@ -1947,7 +1997,7 @@ EXAMPLES
|
|
|
1947
1997
|
$ sf force data bulk delete --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
|
|
1948
1998
|
```
|
|
1949
1999
|
|
|
1950
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
2000
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.0/src/commands/force/data/bulk/delete.ts)_
|
|
1951
2001
|
|
|
1952
2002
|
## `sf force data bulk status`
|
|
1953
2003
|
|
|
@@ -1984,7 +2034,7 @@ EXAMPLES
|
|
|
1984
2034
|
$ sf force data bulk status --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA --target-org my-scratch
|
|
1985
2035
|
```
|
|
1986
2036
|
|
|
1987
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
2037
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.0/src/commands/force/data/bulk/status.ts)_
|
|
1988
2038
|
|
|
1989
2039
|
## `sf force data bulk upsert`
|
|
1990
2040
|
|
|
@@ -2042,7 +2092,7 @@ EXAMPLES
|
|
|
2042
2092
|
--target-org my-scratch
|
|
2043
2093
|
```
|
|
2044
2094
|
|
|
2045
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
2095
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.0/src/commands/force/data/bulk/upsert.ts)_
|
|
2046
2096
|
|
|
2047
2097
|
## `sf help [COMMAND]`
|
|
2048
2098
|
|
|
@@ -3251,7 +3301,7 @@ EXAMPLES
|
|
|
3251
3301
|
$ sf org list auth
|
|
3252
3302
|
```
|
|
3253
3303
|
|
|
3254
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.6.
|
|
3304
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.6.12/src/commands/org/list/auth.ts)_
|
|
3255
3305
|
|
|
3256
3306
|
## `sf org list limits`
|
|
3257
3307
|
|
|
@@ -3551,7 +3601,7 @@ FLAG DESCRIPTIONS
|
|
|
3551
3601
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
3552
3602
|
```
|
|
3553
3603
|
|
|
3554
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.6.
|
|
3604
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.6.12/src/commands/org/login/access-token.ts)_
|
|
3555
3605
|
|
|
3556
3606
|
## `sf org login device`
|
|
3557
3607
|
|
|
@@ -3611,7 +3661,7 @@ FLAG DESCRIPTIONS
|
|
|
3611
3661
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
3612
3662
|
```
|
|
3613
3663
|
|
|
3614
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.6.
|
|
3664
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.6.12/src/commands/org/login/device.ts)_
|
|
3615
3665
|
|
|
3616
3666
|
## `sf org login jwt`
|
|
3617
3667
|
|
|
@@ -3702,7 +3752,7 @@ FLAG DESCRIPTIONS
|
|
|
3702
3752
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
3703
3753
|
```
|
|
3704
3754
|
|
|
3705
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.6.
|
|
3755
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.6.12/src/commands/org/login/jwt.ts)_
|
|
3706
3756
|
|
|
3707
3757
|
## `sf org login sfdx-url`
|
|
3708
3758
|
|
|
@@ -3767,7 +3817,7 @@ EXAMPLES
|
|
|
3767
3817
|
$ echo url | sf org login sfdx-url --sfdx-url-stdin
|
|
3768
3818
|
```
|
|
3769
3819
|
|
|
3770
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.6.
|
|
3820
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.6.12/src/commands/org/login/sfdx-url.ts)_
|
|
3771
3821
|
|
|
3772
3822
|
## `sf org login web`
|
|
3773
3823
|
|
|
@@ -3854,7 +3904,7 @@ FLAG DESCRIPTIONS
|
|
|
3854
3904
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
3855
3905
|
```
|
|
3856
3906
|
|
|
3857
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.6.
|
|
3907
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.6.12/src/commands/org/login/web.ts)_
|
|
3858
3908
|
|
|
3859
3909
|
## `sf org logout`
|
|
3860
3910
|
|
|
@@ -3915,7 +3965,7 @@ FLAG DESCRIPTIONS
|
|
|
3915
3965
|
All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
|
|
3916
3966
|
```
|
|
3917
3967
|
|
|
3918
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.6.
|
|
3968
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.6.12/src/commands/org/logout.ts)_
|
|
3919
3969
|
|
|
3920
3970
|
## `sf org open`
|
|
3921
3971
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.43.
|
|
3
|
+
"version": "2.43.2",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.43.
|
|
9
|
+
"version": "2.43.2",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "BSD-3-Clause",
|
|
12
12
|
"dependencies": {
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"@salesforce/core": "^7.2.0",
|
|
26
26
|
"@salesforce/kit": "^3.1.0",
|
|
27
27
|
"@salesforce/plugin-apex": "3.1.11",
|
|
28
|
-
"@salesforce/plugin-auth": "3.6.
|
|
29
|
-
"@salesforce/plugin-data": "3.
|
|
28
|
+
"@salesforce/plugin-auth": "3.6.12",
|
|
29
|
+
"@salesforce/plugin-data": "3.4.0",
|
|
30
30
|
"@salesforce/plugin-deploy-retrieve": "3.7.0",
|
|
31
31
|
"@salesforce/plugin-info": "3.2.8",
|
|
32
32
|
"@salesforce/plugin-limits": "3.3.7",
|
|
@@ -4427,9 +4427,9 @@
|
|
|
4427
4427
|
}
|
|
4428
4428
|
},
|
|
4429
4429
|
"node_modules/@salesforce/core": {
|
|
4430
|
-
"version": "7.3.
|
|
4431
|
-
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-7.3.
|
|
4432
|
-
"integrity": "sha512-
|
|
4430
|
+
"version": "7.3.8",
|
|
4431
|
+
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-7.3.8.tgz",
|
|
4432
|
+
"integrity": "sha512-VWhXHfjwjtC3pJWYp8wt5/fnNQ5tK61ovMG5eteXzVD2oFd7og1f6YjwuAzoYIZK7kYWWv7KJfGtCsPs7Zw+Ww==",
|
|
4433
4433
|
"license": "BSD-3-Clause",
|
|
4434
4434
|
"dependencies": {
|
|
4435
4435
|
"@jsforce/jsforce-node": "^3.2.0",
|
|
@@ -4633,15 +4633,15 @@
|
|
|
4633
4633
|
}
|
|
4634
4634
|
},
|
|
4635
4635
|
"node_modules/@salesforce/plugin-auth": {
|
|
4636
|
-
"version": "3.6.
|
|
4637
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-auth/-/plugin-auth-3.6.
|
|
4638
|
-
"integrity": "sha512-
|
|
4636
|
+
"version": "3.6.12",
|
|
4637
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-auth/-/plugin-auth-3.6.12.tgz",
|
|
4638
|
+
"integrity": "sha512-JOwlBWmFNSrJZ4q6FKUVagSyuDPYWJSpLoLlYi30rgGkIXdz1XAvajnmjpWYRAoHZQaiGdcgHC0Xc3BeknTDyA==",
|
|
4639
4639
|
"license": "BSD-3-Clause",
|
|
4640
4640
|
"dependencies": {
|
|
4641
4641
|
"@inquirer/checkbox": "^1.5.2",
|
|
4642
4642
|
"@inquirer/select": "^1.3.3",
|
|
4643
4643
|
"@oclif/core": "^3.26.5",
|
|
4644
|
-
"@salesforce/core": "^7.3.
|
|
4644
|
+
"@salesforce/core": "^7.3.8",
|
|
4645
4645
|
"@salesforce/kit": "^3.1.1",
|
|
4646
4646
|
"@salesforce/plugin-info": "^3.2.7",
|
|
4647
4647
|
"@salesforce/sf-plugins-core": "^9.0.7",
|
|
@@ -4674,9 +4674,9 @@
|
|
|
4674
4674
|
}
|
|
4675
4675
|
},
|
|
4676
4676
|
"node_modules/@salesforce/plugin-data": {
|
|
4677
|
-
"version": "3.
|
|
4678
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-3.
|
|
4679
|
-
"integrity": "sha512-
|
|
4677
|
+
"version": "3.4.0",
|
|
4678
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-3.4.0.tgz",
|
|
4679
|
+
"integrity": "sha512-mSZD56c6Bzx0K0lWgDoolN17e1uQkEiZNDi/RWKmxpoUlhkoTo7nNvJ8kKnTvgwrGuwfEWOK2wEjEN9jcmxDsQ==",
|
|
4680
4680
|
"license": "BSD-3-Clause",
|
|
4681
4681
|
"dependencies": {
|
|
4682
4682
|
"@jsforce/jsforce-node": "^3.2.0",
|
|
@@ -4688,7 +4688,8 @@
|
|
|
4688
4688
|
"chalk": "^5.3.0",
|
|
4689
4689
|
"change-case": "^5.4.4",
|
|
4690
4690
|
"csv-parse": "^4.16.3",
|
|
4691
|
-
"csv-stringify": "^6.4.6"
|
|
4691
|
+
"csv-stringify": "^6.4.6",
|
|
4692
|
+
"form-data": "^4.0.0"
|
|
4692
4693
|
},
|
|
4693
4694
|
"engines": {
|
|
4694
4695
|
"node": ">=18.0.0"
|
|
@@ -5246,9 +5247,9 @@
|
|
|
5246
5247
|
"license": "BSD-3-Clause"
|
|
5247
5248
|
},
|
|
5248
5249
|
"node_modules/@salesforce/schemas": {
|
|
5249
|
-
"version": "1.
|
|
5250
|
-
"resolved": "https://registry.npmjs.org/@salesforce/schemas/-/schemas-1.
|
|
5251
|
-
"integrity": "sha512-
|
|
5250
|
+
"version": "1.9.0",
|
|
5251
|
+
"resolved": "https://registry.npmjs.org/@salesforce/schemas/-/schemas-1.9.0.tgz",
|
|
5252
|
+
"integrity": "sha512-LiN37zG5ODT6z70sL1fxF7BQwtCX9JOWofSU8iliSNIM+WDEeinnoFtVqPInRSNt8I0RiJxIKCrqstsmQRBNvA==",
|
|
5252
5253
|
"license": "ISC"
|
|
5253
5254
|
},
|
|
5254
5255
|
"node_modules/@salesforce/sf-plugins-core": {
|
package/oclif.lock
CHANGED
|
@@ -2244,10 +2244,10 @@
|
|
|
2244
2244
|
strip-ansi "6.0.1"
|
|
2245
2245
|
ts-retry-promise "^0.8.0"
|
|
2246
2246
|
|
|
2247
|
-
"@salesforce/core@^7.0.0", "@salesforce/core@^7.2.0", "@salesforce/core@^7.3.1", "@salesforce/core@^7.3.3", "@salesforce/core@^7.3.5", "@salesforce/core@^7.3.6":
|
|
2248
|
-
version "7.3.
|
|
2249
|
-
resolved "https://registry.npmjs.org/@salesforce/core/-/core-7.3.
|
|
2250
|
-
integrity sha512-
|
|
2247
|
+
"@salesforce/core@^7.0.0", "@salesforce/core@^7.2.0", "@salesforce/core@^7.3.1", "@salesforce/core@^7.3.3", "@salesforce/core@^7.3.5", "@salesforce/core@^7.3.6", "@salesforce/core@^7.3.8":
|
|
2248
|
+
version "7.3.8"
|
|
2249
|
+
resolved "https://registry.npmjs.org/@salesforce/core/-/core-7.3.8.tgz"
|
|
2250
|
+
integrity sha512-VWhXHfjwjtC3pJWYp8wt5/fnNQ5tK61ovMG5eteXzVD2oFd7og1f6YjwuAzoYIZK7kYWWv7KJfGtCsPs7Zw+Ww==
|
|
2251
2251
|
dependencies:
|
|
2252
2252
|
"@jsforce/jsforce-node" "^3.2.0"
|
|
2253
2253
|
"@salesforce/kit" "^3.1.1"
|
|
@@ -2346,15 +2346,15 @@
|
|
|
2346
2346
|
color-convert "^2.0.1"
|
|
2347
2347
|
color-name "^2.0.0"
|
|
2348
2348
|
|
|
2349
|
-
"@salesforce/plugin-auth@3.6.
|
|
2350
|
-
version "3.6.
|
|
2351
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-auth/-/plugin-auth-3.6.
|
|
2352
|
-
integrity sha512-
|
|
2349
|
+
"@salesforce/plugin-auth@3.6.12":
|
|
2350
|
+
version "3.6.12"
|
|
2351
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-auth/-/plugin-auth-3.6.12.tgz"
|
|
2352
|
+
integrity sha512-JOwlBWmFNSrJZ4q6FKUVagSyuDPYWJSpLoLlYi30rgGkIXdz1XAvajnmjpWYRAoHZQaiGdcgHC0Xc3BeknTDyA==
|
|
2353
2353
|
dependencies:
|
|
2354
2354
|
"@inquirer/checkbox" "^1.5.2"
|
|
2355
2355
|
"@inquirer/select" "^1.3.3"
|
|
2356
2356
|
"@oclif/core" "^3.26.5"
|
|
2357
|
-
"@salesforce/core" "^7.3.
|
|
2357
|
+
"@salesforce/core" "^7.3.8"
|
|
2358
2358
|
"@salesforce/kit" "^3.1.1"
|
|
2359
2359
|
"@salesforce/plugin-info" "^3.2.7"
|
|
2360
2360
|
"@salesforce/sf-plugins-core" "^9.0.7"
|
|
@@ -2376,10 +2376,10 @@
|
|
|
2376
2376
|
debug "^4.3.4"
|
|
2377
2377
|
handlebars "^4.7.8"
|
|
2378
2378
|
|
|
2379
|
-
"@salesforce/plugin-data@3.
|
|
2380
|
-
version "3.
|
|
2381
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-3.
|
|
2382
|
-
integrity sha512-
|
|
2379
|
+
"@salesforce/plugin-data@3.4.0":
|
|
2380
|
+
version "3.4.0"
|
|
2381
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-3.4.0.tgz"
|
|
2382
|
+
integrity sha512-mSZD56c6Bzx0K0lWgDoolN17e1uQkEiZNDi/RWKmxpoUlhkoTo7nNvJ8kKnTvgwrGuwfEWOK2wEjEN9jcmxDsQ==
|
|
2383
2383
|
dependencies:
|
|
2384
2384
|
"@jsforce/jsforce-node" "^3.2.0"
|
|
2385
2385
|
"@oclif/core" "^3.26.3"
|
|
@@ -2391,6 +2391,7 @@
|
|
|
2391
2391
|
change-case "^5.4.4"
|
|
2392
2392
|
csv-parse "^4.16.3"
|
|
2393
2393
|
csv-stringify "^6.4.6"
|
|
2394
|
+
form-data "^4.0.0"
|
|
2394
2395
|
|
|
2395
2396
|
"@salesforce/plugin-deploy-retrieve@3.7.0":
|
|
2396
2397
|
version "3.7.0"
|
|
@@ -2612,9 +2613,9 @@
|
|
|
2612
2613
|
integrity sha512-hYOhoPTCSYMDYn+U1rlEk16PoBeAJPkrdg4/UtAzupM1mRRJOwEPMG1d7U8DxJFKuXW3DMEYWr2MwAIBDaHmFg==
|
|
2613
2614
|
|
|
2614
2615
|
"@salesforce/schemas@^1.7.0":
|
|
2615
|
-
version "1.
|
|
2616
|
-
resolved "https://registry.npmjs.org/@salesforce/schemas/-/schemas-1.
|
|
2617
|
-
integrity sha512-
|
|
2616
|
+
version "1.9.0"
|
|
2617
|
+
resolved "https://registry.npmjs.org/@salesforce/schemas/-/schemas-1.9.0.tgz"
|
|
2618
|
+
integrity sha512-LiN37zG5ODT6z70sL1fxF7BQwtCX9JOWofSU8iliSNIM+WDEeinnoFtVqPInRSNt8I0RiJxIKCrqstsmQRBNvA==
|
|
2618
2619
|
|
|
2619
2620
|
"@salesforce/sf-plugins-core@^9.0.1", "@salesforce/sf-plugins-core@^9.0.10", "@salesforce/sf-plugins-core@^9.0.4", "@salesforce/sf-plugins-core@^9.0.7", "@salesforce/sf-plugins-core@^9.0.8", "@salesforce/sf-plugins-core@9.0.10":
|
|
2620
2621
|
version "9.0.10"
|
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.43.
|
|
4
|
+
"version": "2.43.2",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -153,8 +153,8 @@
|
|
|
153
153
|
"@salesforce/core": "^7.2.0",
|
|
154
154
|
"@salesforce/kit": "^3.1.0",
|
|
155
155
|
"@salesforce/plugin-apex": "3.1.11",
|
|
156
|
-
"@salesforce/plugin-auth": "3.6.
|
|
157
|
-
"@salesforce/plugin-data": "3.
|
|
156
|
+
"@salesforce/plugin-auth": "3.6.12",
|
|
157
|
+
"@salesforce/plugin-data": "3.4.0",
|
|
158
158
|
"@salesforce/plugin-deploy-retrieve": "3.7.0",
|
|
159
159
|
"@salesforce/plugin-info": "3.2.8",
|
|
160
160
|
"@salesforce/plugin-limits": "3.3.7",
|
|
@@ -206,7 +206,7 @@
|
|
|
206
206
|
"@salesforce/plugin-user"
|
|
207
207
|
],
|
|
208
208
|
"resolutions": {
|
|
209
|
-
"@salesforce/schemas": "1.
|
|
209
|
+
"@salesforce/schemas": "1.9.0"
|
|
210
210
|
},
|
|
211
211
|
"repository": "salesforcecli/cli",
|
|
212
212
|
"scripts": {
|