@salesforce/cli 2.65.8 → 2.66.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 +282 -123
- package/npm-shrinkwrap.json +50 -126
- package/oclif.lock +63 -57
- package/oclif.manifest.json +126 -126
- package/package.json +8 -8
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.
|
|
27
|
+
@salesforce/cli/2.66.1 linux-x64 node-v20.18.0
|
|
28
28
|
$ sf --help [COMMAND]
|
|
29
29
|
USAGE
|
|
30
30
|
$ sf COMMAND
|
|
@@ -61,6 +61,7 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
|
|
|
61
61
|
- [`sf config list`](#sf-config-list)
|
|
62
62
|
- [`sf config set`](#sf-config-set)
|
|
63
63
|
- [`sf config unset`](#sf-config-unset)
|
|
64
|
+
- [`sf data bulk results`](#sf-data-bulk-results)
|
|
64
65
|
- [`sf data create file`](#sf-data-create-file)
|
|
65
66
|
- [`sf data create record`](#sf-data-create-record)
|
|
66
67
|
- [`sf data delete bulk`](#sf-data-delete-bulk)
|
|
@@ -77,7 +78,9 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
|
|
|
77
78
|
- [`sf data query resume`](#sf-data-query-resume)
|
|
78
79
|
- [`sf data resume`](#sf-data-resume)
|
|
79
80
|
- [`sf data search`](#sf-data-search)
|
|
81
|
+
- [`sf data update bulk`](#sf-data-update-bulk)
|
|
80
82
|
- [`sf data update record`](#sf-data-update-record)
|
|
83
|
+
- [`sf data update resume`](#sf-data-update-resume)
|
|
81
84
|
- [`sf data upsert bulk`](#sf-data-upsert-bulk)
|
|
82
85
|
- [`sf data upsert resume`](#sf-data-upsert-resume)
|
|
83
86
|
- [`sf doctor`](#sf-doctor)
|
|
@@ -209,7 +212,7 @@ EXAMPLES
|
|
|
209
212
|
$ sf alias list
|
|
210
213
|
```
|
|
211
214
|
|
|
212
|
-
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.
|
|
215
|
+
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.3/src/commands/alias/list.ts)_
|
|
213
216
|
|
|
214
217
|
## `sf alias set`
|
|
215
218
|
|
|
@@ -258,7 +261,7 @@ EXAMPLES
|
|
|
258
261
|
$ sf alias set my-scratch-org test-ss0xut7txzxf@example.com
|
|
259
262
|
```
|
|
260
263
|
|
|
261
|
-
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.
|
|
264
|
+
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.3/src/commands/alias/set.ts)_
|
|
262
265
|
|
|
263
266
|
## `sf alias unset`
|
|
264
267
|
|
|
@@ -298,7 +301,7 @@ EXAMPLES
|
|
|
298
301
|
$ sf alias unset --all [--no-prompt]
|
|
299
302
|
```
|
|
300
303
|
|
|
301
|
-
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.
|
|
304
|
+
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.3/src/commands/alias/unset.ts)_
|
|
302
305
|
|
|
303
306
|
## `sf analytics generate template`
|
|
304
307
|
|
|
@@ -1125,7 +1128,7 @@ CONFIGURATION VARIABLES
|
|
|
1125
1128
|
org-capitalize-record-types Whether record types are capitalized on scratch org creation.
|
|
1126
1129
|
```
|
|
1127
1130
|
|
|
1128
|
-
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.
|
|
1131
|
+
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.3/src/commands/config/get.ts)_
|
|
1129
1132
|
|
|
1130
1133
|
## `sf config list`
|
|
1131
1134
|
|
|
@@ -1165,7 +1168,7 @@ EXAMPLES
|
|
|
1165
1168
|
$ sf config list
|
|
1166
1169
|
```
|
|
1167
1170
|
|
|
1168
|
-
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.
|
|
1171
|
+
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.3/src/commands/config/list.ts)_
|
|
1169
1172
|
|
|
1170
1173
|
## `sf config set`
|
|
1171
1174
|
|
|
@@ -1234,7 +1237,7 @@ CONFIGURATION VARIABLES
|
|
|
1234
1237
|
org-capitalize-record-types Whether record types are capitalized on scratch org creation.
|
|
1235
1238
|
```
|
|
1236
1239
|
|
|
1237
|
-
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.
|
|
1240
|
+
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.3/src/commands/config/set.ts)_
|
|
1238
1241
|
|
|
1239
1242
|
## `sf config unset`
|
|
1240
1243
|
|
|
@@ -1284,7 +1287,52 @@ CONFIGURATION VARIABLES
|
|
|
1284
1287
|
org-capitalize-record-types Whether record types are capitalized on scratch org creation.
|
|
1285
1288
|
```
|
|
1286
1289
|
|
|
1287
|
-
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.
|
|
1290
|
+
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.3/src/commands/config/unset.ts)_
|
|
1291
|
+
|
|
1292
|
+
## `sf data bulk results`
|
|
1293
|
+
|
|
1294
|
+
Get the results of a bulk ingest job that you previously ran.
|
|
1295
|
+
|
|
1296
|
+
```
|
|
1297
|
+
USAGE
|
|
1298
|
+
$ sf data bulk results -i <value> -o <value> [--json] [--flags-dir <value>] [--api-version <value>]
|
|
1299
|
+
|
|
1300
|
+
FLAGS
|
|
1301
|
+
-i, --job-id=<value> (required) Job ID of the bulk job.
|
|
1302
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
1303
|
+
configuration variable is already set.
|
|
1304
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
1305
|
+
|
|
1306
|
+
GLOBAL FLAGS
|
|
1307
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
1308
|
+
--json Format output as json.
|
|
1309
|
+
|
|
1310
|
+
DESCRIPTION
|
|
1311
|
+
Get the results of a bulk ingest job that you previously ran.
|
|
1312
|
+
|
|
1313
|
+
Use this command to get the complete results after running one of the CLI commands that uses Bulk API 2.0 to ingest
|
|
1314
|
+
(import, update, upsert, or delete) large datasets to your org, such as "data import bulk". The previously-run bulk
|
|
1315
|
+
command must have completed; if it's still processing, run the corresponding resume command first, such as "data
|
|
1316
|
+
import resume." Make note of the job ID of the previous bulk command because you use it to run this command.
|
|
1317
|
+
|
|
1318
|
+
You can also use this command to get results from running a bulk ingest job with a different tool, such as Data
|
|
1319
|
+
Loader, as long as you have the job ID. For information on Data Loader, see
|
|
1320
|
+
https://developer.salesforce.com/docs/atlas.en-us.dataLoader.meta/dataLoader/data_loader_intro.htm.
|
|
1321
|
+
|
|
1322
|
+
This command first displays the status of the previous bulk job, the operation that was executed in the org (such as
|
|
1323
|
+
insert or hard delete), and the updated Salesforce object. The command then displays how many records were processed
|
|
1324
|
+
in total, and how many were successful or failed. Finally, the output displays the names of the generated
|
|
1325
|
+
CSV-formatted files that contain the specific results for each ingested record. Depending on the success or failure of
|
|
1326
|
+
the bulk command, the results files can include the IDs of inserted records or the specific errors. When possible, if
|
|
1327
|
+
the ingest job failed or was aborted, you also get a CSV file with the unprocessed results.
|
|
1328
|
+
|
|
1329
|
+
EXAMPLES
|
|
1330
|
+
Get results from a bulk ingest job; use the org with alias "my-scratch":
|
|
1331
|
+
|
|
1332
|
+
$ sf data bulk results --job-id 7507i000fake341G --target-org my-scratch
|
|
1333
|
+
```
|
|
1334
|
+
|
|
1335
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/data/bulk/results.ts)_
|
|
1288
1336
|
|
|
1289
1337
|
## `sf data create file`
|
|
1290
1338
|
|
|
@@ -1333,7 +1381,7 @@ EXAMPLES
|
|
|
1333
1381
|
$ sf data create file --file path/to/astro.png --parent-id a03fakeLoJWPIA3
|
|
1334
1382
|
```
|
|
1335
1383
|
|
|
1336
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1384
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/data/create/file.ts)_
|
|
1337
1385
|
|
|
1338
1386
|
## `sf data create record`
|
|
1339
1387
|
|
|
@@ -1389,7 +1437,7 @@ EXAMPLES
|
|
|
1389
1437
|
TracedEntityId=01p17000000R6bLAAS"
|
|
1390
1438
|
```
|
|
1391
1439
|
|
|
1392
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1440
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/data/create/record.ts)_
|
|
1393
1441
|
|
|
1394
1442
|
## `sf data delete bulk`
|
|
1395
1443
|
|
|
@@ -1447,7 +1495,7 @@ FLAG DESCRIPTIONS
|
|
|
1447
1495
|
and can be enabled only by a system administrator.
|
|
1448
1496
|
```
|
|
1449
1497
|
|
|
1450
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1498
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/data/delete/bulk.ts)_
|
|
1451
1499
|
|
|
1452
1500
|
## `sf data delete record`
|
|
1453
1501
|
|
|
@@ -1508,7 +1556,7 @@ EXAMPLES
|
|
|
1508
1556
|
$ sf data delete record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
1509
1557
|
```
|
|
1510
1558
|
|
|
1511
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1559
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/data/delete/record.ts)_
|
|
1512
1560
|
|
|
1513
1561
|
## `sf data delete resume`
|
|
1514
1562
|
|
|
@@ -1547,7 +1595,7 @@ EXAMPLES
|
|
|
1547
1595
|
$ sf data delete resume --use-most-recent --target-org my-scratch
|
|
1548
1596
|
```
|
|
1549
1597
|
|
|
1550
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1598
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/data/delete/resume.ts)_
|
|
1551
1599
|
|
|
1552
1600
|
## `sf data export bulk`
|
|
1553
1601
|
|
|
@@ -1621,11 +1669,11 @@ EXAMPLES
|
|
|
1621
1669
|
--result-format json --async
|
|
1622
1670
|
```
|
|
1623
1671
|
|
|
1624
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1672
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/data/export/bulk.ts)_
|
|
1625
1673
|
|
|
1626
1674
|
## `sf data export resume`
|
|
1627
1675
|
|
|
1628
|
-
Resume a bulk export job that you previously started.
|
|
1676
|
+
Resume a bulk export job that you previously started. Uses Bulk API 2.0.
|
|
1629
1677
|
|
|
1630
1678
|
```
|
|
1631
1679
|
USAGE
|
|
@@ -1641,7 +1689,7 @@ GLOBAL FLAGS
|
|
|
1641
1689
|
--json Format output as json.
|
|
1642
1690
|
|
|
1643
1691
|
DESCRIPTION
|
|
1644
|
-
Resume a bulk export job that you previously started.
|
|
1692
|
+
Resume a bulk export job that you previously started. Uses Bulk API 2.0.
|
|
1645
1693
|
|
|
1646
1694
|
When the original "data export bulk" command either times out or is run with the --async flag, it displays a job ID.
|
|
1647
1695
|
To see the status and get the results of the bulk export, run this command by either passing it the job ID or using
|
|
@@ -1657,7 +1705,7 @@ EXAMPLES
|
|
|
1657
1705
|
$ sf data export resume --use-most-recent --target-org my-scratch
|
|
1658
1706
|
```
|
|
1659
1707
|
|
|
1660
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1708
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/data/export/resume.ts)_
|
|
1661
1709
|
|
|
1662
1710
|
## `sf data export tree`
|
|
1663
1711
|
|
|
@@ -1718,7 +1766,7 @@ EXAMPLES
|
|
|
1718
1766
|
my-scratch
|
|
1719
1767
|
```
|
|
1720
1768
|
|
|
1721
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1769
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/data/export/tree.ts)_
|
|
1722
1770
|
|
|
1723
1771
|
## `sf data get record`
|
|
1724
1772
|
|
|
@@ -1782,7 +1830,7 @@ EXAMPLES
|
|
|
1782
1830
|
$ sf data get record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
1783
1831
|
```
|
|
1784
1832
|
|
|
1785
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1833
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/data/get/record.ts)_
|
|
1786
1834
|
|
|
1787
1835
|
## `sf data import bulk`
|
|
1788
1836
|
|
|
@@ -1791,20 +1839,22 @@ Bulk import records into a Salesforce object from a CSV file. Uses Bulk API 2.0.
|
|
|
1791
1839
|
```
|
|
1792
1840
|
USAGE
|
|
1793
1841
|
$ sf data import bulk -s <value> -o <value> [--json] [--flags-dir <value>] [-a | -w <value>] [--api-version <value>]
|
|
1794
|
-
(--line-ending CRLF|LF -f <value>)
|
|
1842
|
+
(--line-ending CRLF|LF -f <value>) [--column-delimiter BACKQUOTE|CARET|COMMA|PIPE|SEMICOLON|TAB]
|
|
1795
1843
|
|
|
1796
1844
|
FLAGS
|
|
1797
|
-
-a, --async
|
|
1798
|
-
-f, --file=<value>
|
|
1799
|
-
-o, --target-org=<value>
|
|
1800
|
-
|
|
1801
|
-
-s, --sobject=<value>
|
|
1802
|
-
|
|
1803
|
-
-w, --wait=<value>
|
|
1804
|
-
--api-version=<value>
|
|
1805
|
-
--
|
|
1806
|
-
|
|
1807
|
-
|
|
1845
|
+
-a, --async Don't wait for the command to complete.
|
|
1846
|
+
-f, --file=<value> (required) CSV file that contains the Salesforce object records you want to import.
|
|
1847
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
1848
|
+
configuration variable is already set.
|
|
1849
|
+
-s, --sobject=<value> (required) API name of the Salesforce object, either standard or custom, into which
|
|
1850
|
+
you're importing records.
|
|
1851
|
+
-w, --wait=<value> Time to wait for the command to finish, in minutes.
|
|
1852
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
1853
|
+
--column-delimiter=<option> Column delimiter used in the CSV file. Default is COMMA.
|
|
1854
|
+
<options: BACKQUOTE|CARET|COMMA|PIPE|SEMICOLON|TAB>
|
|
1855
|
+
--line-ending=<option> Line ending used in the CSV file. Default value on Windows is `CRLF`; on macOS and
|
|
1856
|
+
Linux it's `LF`.
|
|
1857
|
+
<options: CRLF|LF>
|
|
1808
1858
|
|
|
1809
1859
|
GLOBAL FLAGS
|
|
1810
1860
|
--flags-dir=<value> Import flag values from a directory.
|
|
@@ -1838,7 +1888,7 @@ EXAMPLES
|
|
|
1838
1888
|
$ sf data import bulk --file accounts.csv --sobject Account --async
|
|
1839
1889
|
```
|
|
1840
1890
|
|
|
1841
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1891
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/data/import/bulk.ts)_
|
|
1842
1892
|
|
|
1843
1893
|
## `sf data import resume`
|
|
1844
1894
|
|
|
@@ -1874,7 +1924,7 @@ EXAMPLES
|
|
|
1874
1924
|
$ sf data import resume --use-most-recent --target-org my-scratch
|
|
1875
1925
|
```
|
|
1876
1926
|
|
|
1877
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1927
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/data/import/resume.ts)_
|
|
1878
1928
|
|
|
1879
1929
|
## `sf data import tree`
|
|
1880
1930
|
|
|
@@ -1939,7 +1989,7 @@ FLAG DESCRIPTIONS
|
|
|
1939
1989
|
- files(array) - Files: An array of files paths to load
|
|
1940
1990
|
```
|
|
1941
1991
|
|
|
1942
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1992
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/data/import/tree.ts)_
|
|
1943
1993
|
|
|
1944
1994
|
## `sf data query`
|
|
1945
1995
|
|
|
@@ -2003,7 +2053,7 @@ EXAMPLES
|
|
|
2003
2053
|
$ sf data query --query "SELECT Id FROM Contact" --bulk --wait 0
|
|
2004
2054
|
```
|
|
2005
2055
|
|
|
2006
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
2056
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/data/query.ts)_
|
|
2007
2057
|
|
|
2008
2058
|
## `sf data query resume`
|
|
2009
2059
|
|
|
@@ -2041,7 +2091,7 @@ EXAMPLES
|
|
|
2041
2091
|
$ sf data query resume --bulk-query-id 7500x000005BdFzXXX
|
|
2042
2092
|
```
|
|
2043
2093
|
|
|
2044
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
2094
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/data/query/resume.ts)_
|
|
2045
2095
|
|
|
2046
2096
|
## `sf data resume`
|
|
2047
2097
|
|
|
@@ -2078,7 +2128,7 @@ EXAMPLES
|
|
|
2078
2128
|
$ sf data resume --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA
|
|
2079
2129
|
```
|
|
2080
2130
|
|
|
2081
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
2131
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/data/resume.ts)_
|
|
2082
2132
|
|
|
2083
2133
|
## `sf data search`
|
|
2084
2134
|
|
|
@@ -2128,7 +2178,68 @@ EXAMPLES
|
|
|
2128
2178
|
$ sf data search --file query.txt --target-org my-scratch --result-format csv
|
|
2129
2179
|
```
|
|
2130
2180
|
|
|
2131
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
2181
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/data/search.ts)_
|
|
2182
|
+
|
|
2183
|
+
## `sf data update bulk`
|
|
2184
|
+
|
|
2185
|
+
Bulk update records to an org from a CSV file. Uses Bulk API 2.0.
|
|
2186
|
+
|
|
2187
|
+
```
|
|
2188
|
+
USAGE
|
|
2189
|
+
$ sf data update bulk -s <value> -o <value> [--json] [--flags-dir <value>] [-a] [-w <value>] [--api-version <value>]
|
|
2190
|
+
(--line-ending CRLF|LF -f <value>) [--column-delimiter BACKQUOTE|CARET|COMMA|PIPE|SEMICOLON|TAB]
|
|
2191
|
+
|
|
2192
|
+
FLAGS
|
|
2193
|
+
-a, --async Don't wait for the command to complete.
|
|
2194
|
+
-f, --file=<value> (required) CSV file that contains the Salesforce object records you want to update.
|
|
2195
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
2196
|
+
configuration variable is already set.
|
|
2197
|
+
-s, --sobject=<value> (required) API name of the Salesforce object, either standard or custom, which you
|
|
2198
|
+
are updating.
|
|
2199
|
+
-w, --wait=<value> Time to wait for the command to finish, in minutes.
|
|
2200
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
2201
|
+
--column-delimiter=<option> Column delimiter used in the CSV file. Default is COMMA.
|
|
2202
|
+
<options: BACKQUOTE|CARET|COMMA|PIPE|SEMICOLON|TAB>
|
|
2203
|
+
--line-ending=<option> Line ending used in the CSV file. Default value on Windows is `CRLF`; on macOS and
|
|
2204
|
+
Linux it's `LF`.
|
|
2205
|
+
<options: CRLF|LF>
|
|
2206
|
+
|
|
2207
|
+
GLOBAL FLAGS
|
|
2208
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
2209
|
+
--json Format output as json.
|
|
2210
|
+
|
|
2211
|
+
DESCRIPTION
|
|
2212
|
+
Bulk update records to an org from a CSV file. Uses Bulk API 2.0.
|
|
2213
|
+
|
|
2214
|
+
You can use this command to update millions of Salesforce object records based on a file in comma-separated values
|
|
2215
|
+
(CSV) format.
|
|
2216
|
+
|
|
2217
|
+
All the records in the CSV file must be for the same Salesforce object. Specify the object with the `--sobject` flag.
|
|
2218
|
+
The first column of every line in the CSV file must be an ID of the record you want to update. The CSV file can
|
|
2219
|
+
contain only existing records; if a record in the file doesn't currently exist in the Salesforce object, the command
|
|
2220
|
+
fails. Consider using "sf data upsert bulk" if you also want to insert new records.
|
|
2221
|
+
|
|
2222
|
+
Bulk updates can take a while, depending on how many records are in the CSV file. If the command times out, or you
|
|
2223
|
+
specified the --async flag, the command displays the job ID. To see the status and get the results of the job, run "sf
|
|
2224
|
+
data update resume" and pass the job ID to the --job-id flag.
|
|
2225
|
+
|
|
2226
|
+
For information and examples about how to prepare your CSV files, see "Prepare Data to Ingest" in the "Bulk API 2.0
|
|
2227
|
+
and Bulk API Developer Guide"
|
|
2228
|
+
(https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/datafiles_prepare_data.htm).
|
|
2229
|
+
|
|
2230
|
+
EXAMPLES
|
|
2231
|
+
Update Account records from a CSV-formatted file into an org with alias "my-scratch"; if the update doesn't complete
|
|
2232
|
+
in 10 minutes, the command ends and displays a job ID:
|
|
2233
|
+
|
|
2234
|
+
$ sf data update bulk --file accounts.csv --sobject Account --wait 10 --target-org my-scratch
|
|
2235
|
+
|
|
2236
|
+
Update asynchronously and use the default org; the command immediately returns a job ID that you then pass to the
|
|
2237
|
+
"sf data update resume" command:
|
|
2238
|
+
|
|
2239
|
+
$ sf data update bulk --file accounts.csv --sobject Account --async
|
|
2240
|
+
```
|
|
2241
|
+
|
|
2242
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/data/update/bulk.ts)_
|
|
2132
2243
|
|
|
2133
2244
|
## `sf data update record`
|
|
2134
2245
|
|
|
@@ -2190,7 +2301,43 @@ EXAMPLES
|
|
|
2190
2301
|
"ExpirationDate=2017-12-01T00:58:04.000+0000"
|
|
2191
2302
|
```
|
|
2192
2303
|
|
|
2193
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
2304
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/data/update/record.ts)_
|
|
2305
|
+
|
|
2306
|
+
## `sf data update resume`
|
|
2307
|
+
|
|
2308
|
+
Resume a bulk update job that you previously started. Uses Bulk API 2.0.
|
|
2309
|
+
|
|
2310
|
+
```
|
|
2311
|
+
USAGE
|
|
2312
|
+
$ sf data update resume [--json] [--flags-dir <value>] [--use-most-recent] [-i <value>] [-w <value>]
|
|
2313
|
+
|
|
2314
|
+
FLAGS
|
|
2315
|
+
-i, --job-id=<value> Job ID of the bulk update.
|
|
2316
|
+
-w, --wait=<value> [default: 5 minutes] Time to wait for the command to finish, in minutes.
|
|
2317
|
+
--use-most-recent Use the job ID of the bulk update job that was most recently run.
|
|
2318
|
+
|
|
2319
|
+
GLOBAL FLAGS
|
|
2320
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
2321
|
+
--json Format output as json.
|
|
2322
|
+
|
|
2323
|
+
DESCRIPTION
|
|
2324
|
+
Resume a bulk update job that you previously started. Uses Bulk API 2.0.
|
|
2325
|
+
|
|
2326
|
+
When the original "sf data update bulk" command either times out or is run with the --async flag, it displays a job
|
|
2327
|
+
ID. To see the status and get the results of the bulk update, run this command by either passing it the job ID or
|
|
2328
|
+
using the --use-most-recent flag to specify the most recent bulk update job.
|
|
2329
|
+
|
|
2330
|
+
EXAMPLES
|
|
2331
|
+
Resume a bulk update job of your default org using a job ID:
|
|
2332
|
+
|
|
2333
|
+
$ sf data update resume --job-id 750xx000000005sAAA
|
|
2334
|
+
|
|
2335
|
+
Resume the most recently run bulk update job for an org with alias "my-scratch":
|
|
2336
|
+
|
|
2337
|
+
$ sf data update resume --use-most-recent --target-org my-scratch
|
|
2338
|
+
```
|
|
2339
|
+
|
|
2340
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/data/update/resume.ts)_
|
|
2194
2341
|
|
|
2195
2342
|
## `sf data upsert bulk`
|
|
2196
2343
|
|
|
@@ -2243,7 +2390,7 @@ EXAMPLES
|
|
|
2243
2390
|
my-scratch
|
|
2244
2391
|
```
|
|
2245
2392
|
|
|
2246
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
2393
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/data/upsert/bulk.ts)_
|
|
2247
2394
|
|
|
2248
2395
|
## `sf data upsert resume`
|
|
2249
2396
|
|
|
@@ -2282,7 +2429,7 @@ EXAMPLES
|
|
|
2282
2429
|
$ sf data upsert resume --use-most-recent --target-org my-scratch
|
|
2283
2430
|
```
|
|
2284
2431
|
|
|
2285
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
2432
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/data/upsert/resume.ts)_
|
|
2286
2433
|
|
|
2287
2434
|
## `sf doctor`
|
|
2288
2435
|
|
|
@@ -2377,7 +2524,7 @@ EXAMPLES
|
|
|
2377
2524
|
$ sf force data bulk delete --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
|
|
2378
2525
|
```
|
|
2379
2526
|
|
|
2380
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
2527
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/force/data/bulk/delete.ts)_
|
|
2381
2528
|
|
|
2382
2529
|
## `sf force data bulk status`
|
|
2383
2530
|
|
|
@@ -2414,7 +2561,7 @@ EXAMPLES
|
|
|
2414
2561
|
$ sf force data bulk status --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA --target-org my-scratch
|
|
2415
2562
|
```
|
|
2416
2563
|
|
|
2417
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
2564
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/force/data/bulk/status.ts)_
|
|
2418
2565
|
|
|
2419
2566
|
## `sf force data bulk upsert`
|
|
2420
2567
|
|
|
@@ -2472,7 +2619,7 @@ EXAMPLES
|
|
|
2472
2619
|
--target-org my-scratch
|
|
2473
2620
|
```
|
|
2474
2621
|
|
|
2475
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
2622
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.0/src/commands/force/data/bulk/upsert.ts)_
|
|
2476
2623
|
|
|
2477
2624
|
## `sf help [COMMAND]`
|
|
2478
2625
|
|
|
@@ -2921,23 +3068,25 @@ Create a sandbox org.
|
|
|
2921
3068
|
```
|
|
2922
3069
|
USAGE
|
|
2923
3070
|
$ sf org create sandbox -o <value> [--json] [--flags-dir <value>] [-f <value>] [-s] [-a <value>] [-w <minutes> |
|
|
2924
|
-
--async] [-i <seconds> | ] [-n <value>] [-
|
|
2925
|
-
[--no-track-source]
|
|
2926
|
-
|
|
2927
|
-
FLAGS
|
|
2928
|
-
-a, --alias=<value>
|
|
2929
|
-
-
|
|
2930
|
-
-
|
|
2931
|
-
-
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
-
|
|
2935
|
-
|
|
2936
|
-
-s, --set-default
|
|
2937
|
-
-w, --wait=<minutes>
|
|
2938
|
-
--async
|
|
2939
|
-
--no-prompt
|
|
2940
|
-
--no-track-source
|
|
3071
|
+
--async] [-i <seconds> | ] [-n <value>] [--source-sandbox-name <value> | -l Developer|Developer_Pro|Partial|Full |
|
|
3072
|
+
--source-id <value>] [--no-prompt] [--no-track-source]
|
|
3073
|
+
|
|
3074
|
+
FLAGS
|
|
3075
|
+
-a, --alias=<value> Alias for the sandbox org.
|
|
3076
|
+
-f, --definition-file=<value> Path to a sandbox definition file.
|
|
3077
|
+
-i, --poll-interval=<seconds> Number of seconds to wait between retries.
|
|
3078
|
+
-l, --license-type=<option> Type of sandbox license.
|
|
3079
|
+
<options: Developer|Developer_Pro|Partial|Full>
|
|
3080
|
+
-n, --name=<value> Name of the sandbox org.
|
|
3081
|
+
-o, --target-org=<value> (required) Username or alias of the production org that contains the sandbox
|
|
3082
|
+
license.
|
|
3083
|
+
-s, --set-default Set the sandbox org as your default org.
|
|
3084
|
+
-w, --wait=<minutes> Number of minutes to wait for the sandbox org to be ready.
|
|
3085
|
+
--async Request the sandbox creation, but don't wait for it to complete.
|
|
3086
|
+
--no-prompt Don't prompt for confirmation about the sandbox configuration.
|
|
3087
|
+
--no-track-source Do not use source tracking for this sandbox.
|
|
3088
|
+
--source-id=<value> ID of the sandbox org to clone.
|
|
3089
|
+
--source-sandbox-name=<value> Name of the sandbox org to clone.
|
|
2941
3090
|
|
|
2942
3091
|
GLOBAL FLAGS
|
|
2943
3092
|
--flags-dir=<value> Import flag values from a directory.
|
|
@@ -2950,8 +3099,8 @@ DESCRIPTION
|
|
|
2950
3099
|
--name and --license-type flags to specify the two required options. If you want to set an option other than name or
|
|
2951
3100
|
license type, such as apexClassId, you must use a definition file.
|
|
2952
3101
|
|
|
2953
|
-
You can also use this command to clone an existing sandbox. Use the --
|
|
2954
|
-
and the --name flag to the name of the new sandbox.
|
|
3102
|
+
You can also use this command to clone an existing sandbox. Use the --source-sandbox-name flag to specify the existing
|
|
3103
|
+
sandbox name and the --name flag to the name of the new sandbox.
|
|
2955
3104
|
|
|
2956
3105
|
ALIASES
|
|
2957
3106
|
$ sf env create sandbox
|
|
@@ -2971,8 +3120,8 @@ EXAMPLES
|
|
|
2971
3120
|
Clone the existing sandbox with name "ExistingSandbox" and name the new sandbox "NewClonedSandbox". Set the new
|
|
2972
3121
|
sandbox as your default org. Wait for 30 minutes for the sandbox creation to complete.
|
|
2973
3122
|
|
|
2974
|
-
$ sf org create sandbox --
|
|
2975
|
-
MyDevSandbox --set-default --wait 30
|
|
3123
|
+
$ sf org create sandbox --source-sandbox-name ExistingSandbox --name NewClonedSandbox --target-org prodOrg \
|
|
3124
|
+
--alias MyDevSandbox --set-default --wait 30
|
|
2976
3125
|
|
|
2977
3126
|
FLAG DESCRIPTIONS
|
|
2978
3127
|
-a, --alias=<value> Alias for the sandbox org.
|
|
@@ -2983,11 +3132,6 @@ FLAG DESCRIPTIONS
|
|
|
2983
3132
|
"mysandbox". When you set an alias for a sandbox org, it's assigned to the resulting username of the user running
|
|
2984
3133
|
this command.
|
|
2985
3134
|
|
|
2986
|
-
-c, --clone=<value> Name of the sandbox org to clone.
|
|
2987
|
-
|
|
2988
|
-
The value of --clone must be an existing sandbox. The existing sandbox, and the new sandbox specified with the
|
|
2989
|
-
--name flag, must both be associated with the production org (--target-org) that contains the sandbox licenses.
|
|
2990
|
-
|
|
2991
3135
|
-f, --definition-file=<value> Path to a sandbox definition file.
|
|
2992
3136
|
|
|
2993
3137
|
The sandbox definition file is a blueprint for the sandbox. You can create different definition files for each
|
|
@@ -3027,9 +3171,24 @@ FLAG DESCRIPTIONS
|
|
|
3027
3171
|
CI/CD jobs, you probably don't want to incur the costs of source tracking (checking for conflicts, polling the
|
|
3028
3172
|
SourceMember object, various file system operations.) This is a good use case for disabling source tracking in the
|
|
3029
3173
|
sandbox.
|
|
3174
|
+
|
|
3175
|
+
--source-id=<value> ID of the sandbox org to clone.
|
|
3176
|
+
|
|
3177
|
+
The value of --source-id must be an existing sandbox. The existing sandbox, and the new sandbox specified with the
|
|
3178
|
+
--name flag, must both be associated with the production org (--target-org) that contains the sandbox licenses.
|
|
3179
|
+
|
|
3180
|
+
You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
|
|
3181
|
+
|
|
3182
|
+
--source-sandbox-name=<value> Name of the sandbox org to clone.
|
|
3183
|
+
|
|
3184
|
+
The value of --source-sandbox-name must be an existing sandbox. The existing sandbox, and the new sandbox specified
|
|
3185
|
+
with the --name flag, must both be associated with the production org (--target-org) that contains the sandbox
|
|
3186
|
+
licenses.
|
|
3187
|
+
|
|
3188
|
+
You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
|
|
3030
3189
|
```
|
|
3031
3190
|
|
|
3032
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.0
|
|
3191
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.1.0/src/commands/org/create/sandbox.ts)_
|
|
3033
3192
|
|
|
3034
3193
|
## `sf org create scratch`
|
|
3035
3194
|
|
|
@@ -3183,7 +3342,7 @@ FLAG DESCRIPTIONS
|
|
|
3183
3342
|
Omit this flag to have Salesforce generate a unique username for your org.
|
|
3184
3343
|
```
|
|
3185
3344
|
|
|
3186
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.0
|
|
3345
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.1.0/src/commands/org/create/scratch.ts)_
|
|
3187
3346
|
|
|
3188
3347
|
## `sf org create user`
|
|
3189
3348
|
|
|
@@ -3337,7 +3496,7 @@ EXAMPLES
|
|
|
3337
3496
|
$ sf org delete sandbox --target-org my-sandbox --no-prompt
|
|
3338
3497
|
```
|
|
3339
3498
|
|
|
3340
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.0
|
|
3499
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.1.0/src/commands/org/delete/sandbox.ts)_
|
|
3341
3500
|
|
|
3342
3501
|
## `sf org delete scratch`
|
|
3343
3502
|
|
|
@@ -3381,7 +3540,7 @@ EXAMPLES
|
|
|
3381
3540
|
$ sf org delete scratch --target-org my-scratch-org --no-prompt
|
|
3382
3541
|
```
|
|
3383
3542
|
|
|
3384
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.0
|
|
3543
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.1.0/src/commands/org/delete/scratch.ts)_
|
|
3385
3544
|
|
|
3386
3545
|
## `sf org disable tracking`
|
|
3387
3546
|
|
|
@@ -3420,7 +3579,7 @@ EXAMPLES
|
|
|
3420
3579
|
$ sf org disable tracking
|
|
3421
3580
|
```
|
|
3422
3581
|
|
|
3423
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.0
|
|
3582
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.1.0/src/commands/org/disable/tracking.ts)_
|
|
3424
3583
|
|
|
3425
3584
|
## `sf org display`
|
|
3426
3585
|
|
|
@@ -3465,7 +3624,7 @@ EXAMPLES
|
|
|
3465
3624
|
$ sf org display --target-org TestOrg1 --verbose
|
|
3466
3625
|
```
|
|
3467
3626
|
|
|
3468
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.0
|
|
3627
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.1.0/src/commands/org/display.ts)_
|
|
3469
3628
|
|
|
3470
3629
|
## `sf org display user`
|
|
3471
3630
|
|
|
@@ -3546,7 +3705,7 @@ EXAMPLES
|
|
|
3546
3705
|
$ sf org enable tracking
|
|
3547
3706
|
```
|
|
3548
3707
|
|
|
3549
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.0
|
|
3708
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.1.0/src/commands/org/enable/tracking.ts)_
|
|
3550
3709
|
|
|
3551
3710
|
## `sf org generate password`
|
|
3552
3711
|
|
|
@@ -3652,7 +3811,7 @@ EXAMPLES
|
|
|
3652
3811
|
$ sf org list --clean
|
|
3653
3812
|
```
|
|
3654
3813
|
|
|
3655
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.0
|
|
3814
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.1.0/src/commands/org/list.ts)_
|
|
3656
3815
|
|
|
3657
3816
|
## `sf org list auth`
|
|
3658
3817
|
|
|
@@ -3791,7 +3950,7 @@ FLAG DESCRIPTIONS
|
|
|
3791
3950
|
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
|
|
3792
3951
|
```
|
|
3793
3952
|
|
|
3794
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.0
|
|
3953
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.1.0/src/commands/org/list/metadata.ts)_
|
|
3795
3954
|
|
|
3796
3955
|
## `sf org list metadata-types`
|
|
3797
3956
|
|
|
@@ -3846,7 +4005,7 @@ FLAG DESCRIPTIONS
|
|
|
3846
4005
|
Override the api version used for api requests made by this command
|
|
3847
4006
|
```
|
|
3848
4007
|
|
|
3849
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.0
|
|
4008
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.1.0/src/commands/org/list/metadata-types.ts)_
|
|
3850
4009
|
|
|
3851
4010
|
## `sf org list sobject record-counts`
|
|
3852
4011
|
|
|
@@ -4429,7 +4588,7 @@ EXAMPLES
|
|
|
4429
4588
|
$ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
|
|
4430
4589
|
```
|
|
4431
4590
|
|
|
4432
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.0
|
|
4591
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.1.0/src/commands/org/open.ts)_
|
|
4433
4592
|
|
|
4434
4593
|
## `sf org refresh sandbox`
|
|
4435
4594
|
|
|
@@ -4506,7 +4665,7 @@ FLAG DESCRIPTIONS
|
|
|
4506
4665
|
By default, a sandbox auto-activates after a refresh. Use this flag to control sandbox activation manually.
|
|
4507
4666
|
```
|
|
4508
4667
|
|
|
4509
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.0
|
|
4668
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.1.0/src/commands/org/refresh/sandbox.ts)_
|
|
4510
4669
|
|
|
4511
4670
|
## `sf org resume sandbox`
|
|
4512
4671
|
|
|
@@ -4569,7 +4728,7 @@ FLAG DESCRIPTIONS
|
|
|
4569
4728
|
returns the job ID. To resume checking the sandbox creation, rerun this command.
|
|
4570
4729
|
```
|
|
4571
4730
|
|
|
4572
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.0
|
|
4731
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.1.0/src/commands/org/resume/sandbox.ts)_
|
|
4573
4732
|
|
|
4574
4733
|
## `sf org resume scratch`
|
|
4575
4734
|
|
|
@@ -4616,7 +4775,7 @@ FLAG DESCRIPTIONS
|
|
|
4616
4775
|
The job ID is valid for 24 hours after you start the scratch org creation.
|
|
4617
4776
|
```
|
|
4618
4777
|
|
|
4619
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.0
|
|
4778
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.1.0/src/commands/org/resume/scratch.ts)_
|
|
4620
4779
|
|
|
4621
4780
|
## `sf package create`
|
|
4622
4781
|
|
|
@@ -4695,7 +4854,7 @@ FLAG DESCRIPTIONS
|
|
|
4695
4854
|
Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
|
|
4696
4855
|
```
|
|
4697
4856
|
|
|
4698
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
4857
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.9.0/src/commands/package/create.ts)_
|
|
4699
4858
|
|
|
4700
4859
|
## `sf package delete`
|
|
4701
4860
|
|
|
@@ -4737,7 +4896,7 @@ EXAMPLES
|
|
|
4737
4896
|
$ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
|
|
4738
4897
|
```
|
|
4739
4898
|
|
|
4740
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
4899
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.9.0/src/commands/package/delete.ts)_
|
|
4741
4900
|
|
|
4742
4901
|
## `sf package install`
|
|
4743
4902
|
|
|
@@ -4836,7 +4995,7 @@ FLAG DESCRIPTIONS
|
|
|
4836
4995
|
- Delete: Delete all removed components that can be safely deleted, and deprecate the other components.
|
|
4837
4996
|
```
|
|
4838
4997
|
|
|
4839
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
4998
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.9.0/src/commands/package/install.ts)_
|
|
4840
4999
|
|
|
4841
5000
|
## `sf package install report`
|
|
4842
5001
|
|
|
@@ -4869,7 +5028,7 @@ EXAMPLES
|
|
|
4869
5028
|
$ sf package install report --request-id 0Hf... --target-org me@example.com
|
|
4870
5029
|
```
|
|
4871
5030
|
|
|
4872
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5031
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.9.0/src/commands/package/install/report.ts)_
|
|
4873
5032
|
|
|
4874
5033
|
## `sf package installed list`
|
|
4875
5034
|
|
|
@@ -4901,7 +5060,7 @@ EXAMPLES
|
|
|
4901
5060
|
$ sf package installed list --target-org me@example.com
|
|
4902
5061
|
```
|
|
4903
5062
|
|
|
4904
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5063
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.9.0/src/commands/package/installed/list.ts)_
|
|
4905
5064
|
|
|
4906
5065
|
## `sf package list`
|
|
4907
5066
|
|
|
@@ -4939,7 +5098,7 @@ EXAMPLES
|
|
|
4939
5098
|
$ sf package list --target-dev-hub devhub@example.com --verbose
|
|
4940
5099
|
```
|
|
4941
5100
|
|
|
4942
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5101
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.9.0/src/commands/package/list.ts)_
|
|
4943
5102
|
|
|
4944
5103
|
## `sf package uninstall`
|
|
4945
5104
|
|
|
@@ -4987,7 +5146,7 @@ EXAMPLES
|
|
|
4987
5146
|
$ sf package uninstall --package "Undesirable Package Alias"
|
|
4988
5147
|
```
|
|
4989
5148
|
|
|
4990
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5149
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.9.0/src/commands/package/uninstall.ts)_
|
|
4991
5150
|
|
|
4992
5151
|
## `sf package uninstall report`
|
|
4993
5152
|
|
|
@@ -5020,7 +5179,7 @@ EXAMPLES
|
|
|
5020
5179
|
$ sf package uninstall report --request-id 06y... --target-org me@example.com
|
|
5021
5180
|
```
|
|
5022
5181
|
|
|
5023
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5182
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.9.0/src/commands/package/uninstall/report.ts)_
|
|
5024
5183
|
|
|
5025
5184
|
## `sf package update`
|
|
5026
5185
|
|
|
@@ -5075,7 +5234,7 @@ FLAG DESCRIPTIONS
|
|
|
5075
5234
|
associated with your package.
|
|
5076
5235
|
```
|
|
5077
5236
|
|
|
5078
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5237
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.9.0/src/commands/package/update.ts)_
|
|
5079
5238
|
|
|
5080
5239
|
## `sf package version create`
|
|
5081
5240
|
|
|
@@ -5250,7 +5409,7 @@ FLAG DESCRIPTIONS
|
|
|
5250
5409
|
periods of no output from commands.
|
|
5251
5410
|
```
|
|
5252
5411
|
|
|
5253
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5412
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.9.0/src/commands/package/version/create.ts)_
|
|
5254
5413
|
|
|
5255
5414
|
## `sf package version create list`
|
|
5256
5415
|
|
|
@@ -5311,7 +5470,7 @@ EXAMPLES
|
|
|
5311
5470
|
$ sf package version create list --created-last-days 0 --status Success
|
|
5312
5471
|
```
|
|
5313
5472
|
|
|
5314
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5473
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.9.0/src/commands/package/version/create/list.ts)_
|
|
5315
5474
|
|
|
5316
5475
|
## `sf package version create report`
|
|
5317
5476
|
|
|
@@ -5354,7 +5513,7 @@ EXAMPLES
|
|
|
5354
5513
|
$ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
|
|
5355
5514
|
```
|
|
5356
5515
|
|
|
5357
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5516
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.9.0/src/commands/package/version/create/report.ts)_
|
|
5358
5517
|
|
|
5359
5518
|
## `sf package version delete`
|
|
5360
5519
|
|
|
@@ -5395,7 +5554,7 @@ EXAMPLES
|
|
|
5395
5554
|
$ sf package version delete --package 04t... --target-org devhub@example.com
|
|
5396
5555
|
```
|
|
5397
5556
|
|
|
5398
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5557
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.9.0/src/commands/package/version/delete.ts)_
|
|
5399
5558
|
|
|
5400
5559
|
## `sf package version displayancestry`
|
|
5401
5560
|
|
|
@@ -5455,7 +5614,7 @@ FLAG DESCRIPTIONS
|
|
|
5455
5614
|
You can use the DOT code output in graph visualization software to create tree visualizations.
|
|
5456
5615
|
```
|
|
5457
5616
|
|
|
5458
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5617
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.9.0/src/commands/package/version/displayancestry.ts)_
|
|
5459
5618
|
|
|
5460
5619
|
## `sf package version list`
|
|
5461
5620
|
|
|
@@ -5531,7 +5690,7 @@ EXAMPLES
|
|
|
5531
5690
|
$ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
|
|
5532
5691
|
```
|
|
5533
5692
|
|
|
5534
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5693
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.9.0/src/commands/package/version/list.ts)_
|
|
5535
5694
|
|
|
5536
5695
|
## `sf package version promote`
|
|
5537
5696
|
|
|
@@ -5575,7 +5734,7 @@ EXAMPLES
|
|
|
5575
5734
|
$ sf package version promote --package "Awesome Package Alias"
|
|
5576
5735
|
```
|
|
5577
5736
|
|
|
5578
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5737
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.9.0/src/commands/package/version/promote.ts)_
|
|
5579
5738
|
|
|
5580
5739
|
## `sf package version report`
|
|
5581
5740
|
|
|
@@ -5615,7 +5774,7 @@ EXAMPLES
|
|
|
5615
5774
|
$ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
|
|
5616
5775
|
```
|
|
5617
5776
|
|
|
5618
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5777
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.9.0/src/commands/package/version/report.ts)_
|
|
5619
5778
|
|
|
5620
5779
|
## `sf package version update`
|
|
5621
5780
|
|
|
@@ -5668,7 +5827,7 @@ EXAMPLES
|
|
|
5668
5827
|
$ sf package version update --package 04t... --version-description "New Package Version Description"
|
|
5669
5828
|
```
|
|
5670
5829
|
|
|
5671
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5830
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.9.0/src/commands/package/version/update.ts)_
|
|
5672
5831
|
|
|
5673
5832
|
## `sf package1 version create`
|
|
5674
5833
|
|
|
@@ -5735,7 +5894,7 @@ FLAG DESCRIPTIONS
|
|
|
5735
5894
|
subscribers.
|
|
5736
5895
|
```
|
|
5737
5896
|
|
|
5738
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5897
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.9.0/src/commands/package1/version/create.ts)_
|
|
5739
5898
|
|
|
5740
5899
|
## `sf package1 version create get`
|
|
5741
5900
|
|
|
@@ -5768,7 +5927,7 @@ EXAMPLES
|
|
|
5768
5927
|
$ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
|
|
5769
5928
|
```
|
|
5770
5929
|
|
|
5771
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5930
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.9.0/src/commands/package1/version/create/get.ts)_
|
|
5772
5931
|
|
|
5773
5932
|
## `sf package1 version display`
|
|
5774
5933
|
|
|
@@ -5802,7 +5961,7 @@ EXAMPLES
|
|
|
5802
5961
|
$ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
|
|
5803
5962
|
```
|
|
5804
5963
|
|
|
5805
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5964
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.9.0/src/commands/package1/version/display.ts)_
|
|
5806
5965
|
|
|
5807
5966
|
## `sf package1 version list`
|
|
5808
5967
|
|
|
@@ -5840,7 +5999,7 @@ FLAG DESCRIPTIONS
|
|
|
5840
5999
|
If not specified, shows all versions for all packages (managed and unmanaged) in the org.
|
|
5841
6000
|
```
|
|
5842
6001
|
|
|
5843
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6002
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.9.0/src/commands/package1/version/list.ts)_
|
|
5844
6003
|
|
|
5845
6004
|
## `sf plugins`
|
|
5846
6005
|
|
|
@@ -6141,7 +6300,7 @@ FLAG DESCRIPTIONS
|
|
|
6141
6300
|
If you specify this parameter, don’t specify --metadata or --source-dir.
|
|
6142
6301
|
```
|
|
6143
6302
|
|
|
6144
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.
|
|
6303
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.7/src/commands/project/convert/mdapi.ts)_
|
|
6145
6304
|
|
|
6146
6305
|
## `sf project convert source`
|
|
6147
6306
|
|
|
@@ -6214,7 +6373,7 @@ FLAG DESCRIPTIONS
|
|
|
6214
6373
|
Override the api version used for api requests made by this command
|
|
6215
6374
|
```
|
|
6216
6375
|
|
|
6217
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.
|
|
6376
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.7/src/commands/project/convert/source.ts)_
|
|
6218
6377
|
|
|
6219
6378
|
## `sf project convert source-behavior`
|
|
6220
6379
|
|
|
@@ -6272,7 +6431,7 @@ EXAMPLES
|
|
|
6272
6431
|
$ sf project convert source-behavior --behavior decomposePermissionSetBeta --dry-run --preserve-temp-dir
|
|
6273
6432
|
```
|
|
6274
6433
|
|
|
6275
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.
|
|
6434
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.7/src/commands/project/convert/source-behavior.ts)_
|
|
6276
6435
|
|
|
6277
6436
|
## `sf project delete source`
|
|
6278
6437
|
|
|
@@ -6412,7 +6571,7 @@ FLAG DESCRIPTIONS
|
|
|
6412
6571
|
- Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
|
|
6413
6572
|
```
|
|
6414
6573
|
|
|
6415
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.
|
|
6574
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.7/src/commands/project/delete/source.ts)_
|
|
6416
6575
|
|
|
6417
6576
|
## `sf project delete tracking`
|
|
6418
6577
|
|
|
@@ -6449,7 +6608,7 @@ EXAMPLES
|
|
|
6449
6608
|
$ sf project delete tracking --target-org my-scratch
|
|
6450
6609
|
```
|
|
6451
6610
|
|
|
6452
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.
|
|
6611
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.7/src/commands/project/delete/tracking.ts)_
|
|
6453
6612
|
|
|
6454
6613
|
## `sf project deploy cancel`
|
|
6455
6614
|
|
|
@@ -6521,7 +6680,7 @@ FLAG DESCRIPTIONS
|
|
|
6521
6680
|
project deploy report".
|
|
6522
6681
|
```
|
|
6523
6682
|
|
|
6524
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.
|
|
6683
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.7/src/commands/project/deploy/cancel.ts)_
|
|
6525
6684
|
|
|
6526
6685
|
## `sf project deploy preview`
|
|
6527
6686
|
|
|
@@ -6604,7 +6763,7 @@ FLAG DESCRIPTIONS
|
|
|
6604
6763
|
All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
|
|
6605
6764
|
```
|
|
6606
6765
|
|
|
6607
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.
|
|
6766
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.7/src/commands/project/deploy/preview.ts)_
|
|
6608
6767
|
|
|
6609
6768
|
## `sf project deploy quick`
|
|
6610
6769
|
|
|
@@ -6697,7 +6856,7 @@ ERROR CODES
|
|
|
6697
6856
|
Canceling (69) The deploy is being canceled.
|
|
6698
6857
|
```
|
|
6699
6858
|
|
|
6700
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.
|
|
6859
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.7/src/commands/project/deploy/quick.ts)_
|
|
6701
6860
|
|
|
6702
6861
|
## `sf project deploy report`
|
|
6703
6862
|
|
|
@@ -6789,7 +6948,7 @@ FLAG DESCRIPTIONS
|
|
|
6789
6948
|
--coverage-formatters lcov --coverage-formatters clover
|
|
6790
6949
|
```
|
|
6791
6950
|
|
|
6792
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.
|
|
6951
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.7/src/commands/project/deploy/report.ts)_
|
|
6793
6952
|
|
|
6794
6953
|
## `sf project deploy resume`
|
|
6795
6954
|
|
|
@@ -6886,7 +7045,7 @@ ERROR CODES
|
|
|
6886
7045
|
Canceling (69) The deploy is being canceled.
|
|
6887
7046
|
```
|
|
6888
7047
|
|
|
6889
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.
|
|
7048
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.7/src/commands/project/deploy/resume.ts)_
|
|
6890
7049
|
|
|
6891
7050
|
## `sf project deploy start`
|
|
6892
7051
|
|
|
@@ -7139,7 +7298,7 @@ ERROR CODES
|
|
|
7139
7298
|
Canceling (69) The deploy is being canceled.
|
|
7140
7299
|
```
|
|
7141
7300
|
|
|
7142
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.
|
|
7301
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.7/src/commands/project/deploy/start.ts)_
|
|
7143
7302
|
|
|
7144
7303
|
## `sf project deploy validate`
|
|
7145
7304
|
|
|
@@ -7329,7 +7488,7 @@ ERROR CODES
|
|
|
7329
7488
|
Canceling (69) The deploy is being canceled.
|
|
7330
7489
|
```
|
|
7331
7490
|
|
|
7332
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.
|
|
7491
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.7/src/commands/project/deploy/validate.ts)_
|
|
7333
7492
|
|
|
7334
7493
|
## `sf project generate`
|
|
7335
7494
|
|
|
@@ -7511,7 +7670,7 @@ EXAMPLES
|
|
|
7511
7670
|
$ sf project generate manifest --from-org test@myorg.com --include-packages unlocked
|
|
7512
7671
|
```
|
|
7513
7672
|
|
|
7514
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.
|
|
7673
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.7/src/commands/project/generate/manifest.ts)_
|
|
7515
7674
|
|
|
7516
7675
|
## `sf project list ignored`
|
|
7517
7676
|
|
|
@@ -7553,7 +7712,7 @@ EXAMPLES
|
|
|
7553
7712
|
$ sf project list ignored --source-dir package.xml
|
|
7554
7713
|
```
|
|
7555
7714
|
|
|
7556
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.
|
|
7715
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.7/src/commands/project/list/ignored.ts)_
|
|
7557
7716
|
|
|
7558
7717
|
## `sf project reset tracking`
|
|
7559
7718
|
|
|
@@ -7602,7 +7761,7 @@ EXAMPLES
|
|
|
7602
7761
|
$ sf project reset tracking --revision 30
|
|
7603
7762
|
```
|
|
7604
7763
|
|
|
7605
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.
|
|
7764
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.7/src/commands/project/reset/tracking.ts)_
|
|
7606
7765
|
|
|
7607
7766
|
## `sf project retrieve preview`
|
|
7608
7767
|
|
|
@@ -7656,7 +7815,7 @@ FLAG DESCRIPTIONS
|
|
|
7656
7815
|
production orgs.
|
|
7657
7816
|
```
|
|
7658
7817
|
|
|
7659
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.
|
|
7818
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.7/src/commands/project/retrieve/preview.ts)_
|
|
7660
7819
|
|
|
7661
7820
|
## `sf project retrieve start`
|
|
7662
7821
|
|
|
@@ -7833,7 +7992,7 @@ ENVIRONMENT VARIABLES
|
|
|
7833
7992
|
SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
|
|
7834
7993
|
```
|
|
7835
7994
|
|
|
7836
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.
|
|
7995
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.15.7/src/commands/project/retrieve/start.ts)_
|
|
7837
7996
|
|
|
7838
7997
|
## `sf schema generate field`
|
|
7839
7998
|
|