@salesforce/cli 2.103.2 → 2.103.4
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 +79 -79
- package/npm-shrinkwrap.json +100 -108
- package/oclif.lock +108 -114
- package/oclif.manifest.json +1 -1
- package/package.json +10 -10
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.103.
|
|
28
|
+
@salesforce/cli/2.103.4 linux-x64 node-v22.18.0
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -242,7 +242,7 @@ EXAMPLES
|
|
|
242
242
|
$ sf agent activate --api-name Resort_Manager --target-org my-org
|
|
243
243
|
```
|
|
244
244
|
|
|
245
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
245
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/activate.ts)_
|
|
246
246
|
|
|
247
247
|
## `sf agent create`
|
|
248
248
|
|
|
@@ -304,7 +304,7 @@ EXAMPLES
|
|
|
304
304
|
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
|
|
305
305
|
```
|
|
306
306
|
|
|
307
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
307
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/create.ts)_
|
|
308
308
|
|
|
309
309
|
## `sf agent deactivate`
|
|
310
310
|
|
|
@@ -344,7 +344,7 @@ EXAMPLES
|
|
|
344
344
|
$ sf agent deactivate --api-name Resort_Manager --target-org my-org
|
|
345
345
|
```
|
|
346
346
|
|
|
347
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
347
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/deactivate.ts)_
|
|
348
348
|
|
|
349
349
|
## `sf agent generate agent-spec`
|
|
350
350
|
|
|
@@ -449,7 +449,7 @@ EXAMPLES
|
|
|
449
449
|
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
|
|
450
450
|
```
|
|
451
451
|
|
|
452
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
452
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/generate/agent-spec.ts)_
|
|
453
453
|
|
|
454
454
|
## `sf agent generate template`
|
|
455
455
|
|
|
@@ -497,7 +497,7 @@ EXAMPLES
|
|
|
497
497
|
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
|
|
498
498
|
```
|
|
499
499
|
|
|
500
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
500
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/generate/template.ts)_
|
|
501
501
|
|
|
502
502
|
## `sf agent generate test-spec`
|
|
503
503
|
|
|
@@ -558,7 +558,7 @@ EXAMPLES
|
|
|
558
558
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
559
559
|
```
|
|
560
560
|
|
|
561
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
561
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/generate/test-spec.ts)_
|
|
562
562
|
|
|
563
563
|
## `sf agent preview`
|
|
564
564
|
|
|
@@ -622,7 +622,7 @@ EXAMPLES
|
|
|
622
622
|
transcripts/my-preview
|
|
623
623
|
```
|
|
624
624
|
|
|
625
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
625
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/preview.ts)_
|
|
626
626
|
|
|
627
627
|
## `sf agent test create`
|
|
628
628
|
|
|
@@ -677,7 +677,7 @@ EXAMPLES
|
|
|
677
677
|
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
|
|
678
678
|
```
|
|
679
679
|
|
|
680
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
680
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/test/create.ts)_
|
|
681
681
|
|
|
682
682
|
## `sf agent test list`
|
|
683
683
|
|
|
@@ -712,7 +712,7 @@ EXAMPLES
|
|
|
712
712
|
$ sf agent test list --target-org my-org
|
|
713
713
|
```
|
|
714
714
|
|
|
715
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
715
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/test/list.ts)_
|
|
716
716
|
|
|
717
717
|
## `sf agent test results`
|
|
718
718
|
|
|
@@ -768,7 +768,7 @@ FLAG DESCRIPTIONS
|
|
|
768
768
|
test results aren't written.
|
|
769
769
|
```
|
|
770
770
|
|
|
771
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
771
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/test/results.ts)_
|
|
772
772
|
|
|
773
773
|
## `sf agent test resume`
|
|
774
774
|
|
|
@@ -831,7 +831,7 @@ FLAG DESCRIPTIONS
|
|
|
831
831
|
test results aren't written.
|
|
832
832
|
```
|
|
833
833
|
|
|
834
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
834
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/test/resume.ts)_
|
|
835
835
|
|
|
836
836
|
## `sf agent test run`
|
|
837
837
|
|
|
@@ -895,7 +895,7 @@ FLAG DESCRIPTIONS
|
|
|
895
895
|
test results aren't written.
|
|
896
896
|
```
|
|
897
897
|
|
|
898
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
898
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/test/run.ts)_
|
|
899
899
|
|
|
900
900
|
## `sf alias list`
|
|
901
901
|
|
|
@@ -2046,7 +2046,7 @@ EXAMPLES
|
|
|
2046
2046
|
$ sf data bulk results --job-id 7507i000fake341G --target-org my-scratch
|
|
2047
2047
|
```
|
|
2048
2048
|
|
|
2049
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2049
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/bulk/results.ts)_
|
|
2050
2050
|
|
|
2051
2051
|
## `sf data create file`
|
|
2052
2052
|
|
|
@@ -2095,7 +2095,7 @@ EXAMPLES
|
|
|
2095
2095
|
$ sf data create file --file path/to/astro.png --parent-id a03fakeLoJWPIA3
|
|
2096
2096
|
```
|
|
2097
2097
|
|
|
2098
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2098
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/create/file.ts)_
|
|
2099
2099
|
|
|
2100
2100
|
## `sf data create record`
|
|
2101
2101
|
|
|
@@ -2151,7 +2151,7 @@ EXAMPLES
|
|
|
2151
2151
|
TracedEntityId=01p17000000R6bLAAS"
|
|
2152
2152
|
```
|
|
2153
2153
|
|
|
2154
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2154
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/create/record.ts)_
|
|
2155
2155
|
|
|
2156
2156
|
## `sf data delete bulk`
|
|
2157
2157
|
|
|
@@ -2211,7 +2211,7 @@ FLAG DESCRIPTIONS
|
|
|
2211
2211
|
and can be enabled only by a system administrator.
|
|
2212
2212
|
```
|
|
2213
2213
|
|
|
2214
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2214
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/delete/bulk.ts)_
|
|
2215
2215
|
|
|
2216
2216
|
## `sf data delete record`
|
|
2217
2217
|
|
|
@@ -2272,7 +2272,7 @@ EXAMPLES
|
|
|
2272
2272
|
$ sf data delete record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
2273
2273
|
```
|
|
2274
2274
|
|
|
2275
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2275
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/delete/record.ts)_
|
|
2276
2276
|
|
|
2277
2277
|
## `sf data delete resume`
|
|
2278
2278
|
|
|
@@ -2311,7 +2311,7 @@ EXAMPLES
|
|
|
2311
2311
|
$ sf data delete resume --use-most-recent --target-org my-scratch
|
|
2312
2312
|
```
|
|
2313
2313
|
|
|
2314
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2314
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/delete/resume.ts)_
|
|
2315
2315
|
|
|
2316
2316
|
## `sf data export bulk`
|
|
2317
2317
|
|
|
@@ -2385,7 +2385,7 @@ EXAMPLES
|
|
|
2385
2385
|
--result-format json --async
|
|
2386
2386
|
```
|
|
2387
2387
|
|
|
2388
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2388
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/export/bulk.ts)_
|
|
2389
2389
|
|
|
2390
2390
|
## `sf data export resume`
|
|
2391
2391
|
|
|
@@ -2424,7 +2424,7 @@ EXAMPLES
|
|
|
2424
2424
|
$ sf data export resume --use-most-recent
|
|
2425
2425
|
```
|
|
2426
2426
|
|
|
2427
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2427
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/export/resume.ts)_
|
|
2428
2428
|
|
|
2429
2429
|
## `sf data export tree`
|
|
2430
2430
|
|
|
@@ -2484,7 +2484,7 @@ EXAMPLES
|
|
|
2484
2484
|
my-scratch
|
|
2485
2485
|
```
|
|
2486
2486
|
|
|
2487
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2487
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/export/tree.ts)_
|
|
2488
2488
|
|
|
2489
2489
|
## `sf data get record`
|
|
2490
2490
|
|
|
@@ -2548,7 +2548,7 @@ EXAMPLES
|
|
|
2548
2548
|
$ sf data get record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
2549
2549
|
```
|
|
2550
2550
|
|
|
2551
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2551
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/get/record.ts)_
|
|
2552
2552
|
|
|
2553
2553
|
## `sf data import bulk`
|
|
2554
2554
|
|
|
@@ -2606,7 +2606,7 @@ EXAMPLES
|
|
|
2606
2606
|
$ sf data import bulk --file accounts.csv --sobject Account --async
|
|
2607
2607
|
```
|
|
2608
2608
|
|
|
2609
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2609
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/import/bulk.ts)_
|
|
2610
2610
|
|
|
2611
2611
|
## `sf data import resume`
|
|
2612
2612
|
|
|
@@ -2642,7 +2642,7 @@ EXAMPLES
|
|
|
2642
2642
|
$ sf data import resume --use-most-recent --target-org my-scratch
|
|
2643
2643
|
```
|
|
2644
2644
|
|
|
2645
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2645
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/import/resume.ts)_
|
|
2646
2646
|
|
|
2647
2647
|
## `sf data import tree`
|
|
2648
2648
|
|
|
@@ -2706,7 +2706,7 @@ FLAG DESCRIPTIONS
|
|
|
2706
2706
|
- files(array) - Files: An array of files paths to load
|
|
2707
2707
|
```
|
|
2708
2708
|
|
|
2709
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2709
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/import/tree.ts)_
|
|
2710
2710
|
|
|
2711
2711
|
## `sf data query`
|
|
2712
2712
|
|
|
@@ -2759,7 +2759,7 @@ EXAMPLES
|
|
|
2759
2759
|
$ sf data query --query "SELECT Name FROM ApexTrigger" --use-tooling-api
|
|
2760
2760
|
```
|
|
2761
2761
|
|
|
2762
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2762
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/query.ts)_
|
|
2763
2763
|
|
|
2764
2764
|
## `sf data resume`
|
|
2765
2765
|
|
|
@@ -2796,7 +2796,7 @@ EXAMPLES
|
|
|
2796
2796
|
$ sf data resume --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA
|
|
2797
2797
|
```
|
|
2798
2798
|
|
|
2799
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2799
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/resume.ts)_
|
|
2800
2800
|
|
|
2801
2801
|
## `sf data search`
|
|
2802
2802
|
|
|
@@ -2846,7 +2846,7 @@ EXAMPLES
|
|
|
2846
2846
|
$ sf data search --file query.txt --target-org my-scratch --result-format csv
|
|
2847
2847
|
```
|
|
2848
2848
|
|
|
2849
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2849
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/search.ts)_
|
|
2850
2850
|
|
|
2851
2851
|
## `sf data update bulk`
|
|
2852
2852
|
|
|
@@ -2907,7 +2907,7 @@ EXAMPLES
|
|
|
2907
2907
|
$ sf data update bulk --file accounts.csv --sobject Account --async
|
|
2908
2908
|
```
|
|
2909
2909
|
|
|
2910
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2910
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/update/bulk.ts)_
|
|
2911
2911
|
|
|
2912
2912
|
## `sf data update record`
|
|
2913
2913
|
|
|
@@ -2969,7 +2969,7 @@ EXAMPLES
|
|
|
2969
2969
|
"ExpirationDate=2017-12-01T00:58:04.000+0000"
|
|
2970
2970
|
```
|
|
2971
2971
|
|
|
2972
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2972
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/update/record.ts)_
|
|
2973
2973
|
|
|
2974
2974
|
## `sf data update resume`
|
|
2975
2975
|
|
|
@@ -3008,7 +3008,7 @@ EXAMPLES
|
|
|
3008
3008
|
$ sf data update resume --use-most-recent
|
|
3009
3009
|
```
|
|
3010
3010
|
|
|
3011
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3011
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/update/resume.ts)_
|
|
3012
3012
|
|
|
3013
3013
|
## `sf data upsert bulk`
|
|
3014
3014
|
|
|
@@ -3065,7 +3065,7 @@ EXAMPLES
|
|
|
3065
3065
|
my-scratch
|
|
3066
3066
|
```
|
|
3067
3067
|
|
|
3068
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3068
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/upsert/bulk.ts)_
|
|
3069
3069
|
|
|
3070
3070
|
## `sf data upsert resume`
|
|
3071
3071
|
|
|
@@ -3104,7 +3104,7 @@ EXAMPLES
|
|
|
3104
3104
|
$ sf data upsert resume --use-most-recent --target-org my-scratch
|
|
3105
3105
|
```
|
|
3106
3106
|
|
|
3107
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3107
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/upsert/resume.ts)_
|
|
3108
3108
|
|
|
3109
3109
|
## `sf doctor`
|
|
3110
3110
|
|
|
@@ -3152,7 +3152,7 @@ EXAMPLES
|
|
|
3152
3152
|
$ sf doctor --plugin @salesforce/plugin-source
|
|
3153
3153
|
```
|
|
3154
3154
|
|
|
3155
|
-
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.
|
|
3155
|
+
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.81/src/commands/doctor.ts)_
|
|
3156
3156
|
|
|
3157
3157
|
## `sf force data bulk delete`
|
|
3158
3158
|
|
|
@@ -3199,7 +3199,7 @@ EXAMPLES
|
|
|
3199
3199
|
$ sf force data bulk delete --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
|
|
3200
3200
|
```
|
|
3201
3201
|
|
|
3202
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3202
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/force/data/bulk/delete.ts)_
|
|
3203
3203
|
|
|
3204
3204
|
## `sf force data bulk status`
|
|
3205
3205
|
|
|
@@ -3236,7 +3236,7 @@ EXAMPLES
|
|
|
3236
3236
|
$ sf force data bulk status --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA --target-org my-scratch
|
|
3237
3237
|
```
|
|
3238
3238
|
|
|
3239
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3239
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/force/data/bulk/status.ts)_
|
|
3240
3240
|
|
|
3241
3241
|
## `sf force data bulk upsert`
|
|
3242
3242
|
|
|
@@ -3294,7 +3294,7 @@ EXAMPLES
|
|
|
3294
3294
|
--target-org my-scratch
|
|
3295
3295
|
```
|
|
3296
3296
|
|
|
3297
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3297
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/force/data/bulk/upsert.ts)_
|
|
3298
3298
|
|
|
3299
3299
|
## `sf help [COMMAND]`
|
|
3300
3300
|
|
|
@@ -3354,7 +3354,7 @@ EXAMPLES
|
|
|
3354
3354
|
$ sf info releasenotes display --version latest
|
|
3355
3355
|
```
|
|
3356
3356
|
|
|
3357
|
-
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.
|
|
3357
|
+
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.81/src/commands/info/releasenotes/display.ts)_
|
|
3358
3358
|
|
|
3359
3359
|
## `sf lightning generate app`
|
|
3360
3360
|
|
|
@@ -3870,7 +3870,7 @@ FLAG DESCRIPTIONS
|
|
|
3870
3870
|
You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
|
|
3871
3871
|
```
|
|
3872
3872
|
|
|
3873
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
3873
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/create/sandbox.ts)_
|
|
3874
3874
|
|
|
3875
3875
|
## `sf org create scratch`
|
|
3876
3876
|
|
|
@@ -4052,7 +4052,7 @@ FLAG DESCRIPTIONS
|
|
|
4052
4052
|
Omit this flag to have Salesforce generate a unique username for your org.
|
|
4053
4053
|
```
|
|
4054
4054
|
|
|
4055
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4055
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/create/scratch.ts)_
|
|
4056
4056
|
|
|
4057
4057
|
## `sf org create user`
|
|
4058
4058
|
|
|
@@ -4206,7 +4206,7 @@ EXAMPLES
|
|
|
4206
4206
|
$ sf org delete sandbox --target-org my-sandbox --no-prompt
|
|
4207
4207
|
```
|
|
4208
4208
|
|
|
4209
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4209
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/delete/sandbox.ts)_
|
|
4210
4210
|
|
|
4211
4211
|
## `sf org delete scratch`
|
|
4212
4212
|
|
|
@@ -4250,7 +4250,7 @@ EXAMPLES
|
|
|
4250
4250
|
$ sf org delete scratch --target-org my-scratch-org --no-prompt
|
|
4251
4251
|
```
|
|
4252
4252
|
|
|
4253
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4253
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/delete/scratch.ts)_
|
|
4254
4254
|
|
|
4255
4255
|
## `sf org disable tracking`
|
|
4256
4256
|
|
|
@@ -4289,7 +4289,7 @@ EXAMPLES
|
|
|
4289
4289
|
$ sf org disable tracking
|
|
4290
4290
|
```
|
|
4291
4291
|
|
|
4292
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4292
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/disable/tracking.ts)_
|
|
4293
4293
|
|
|
4294
4294
|
## `sf org display`
|
|
4295
4295
|
|
|
@@ -4334,7 +4334,7 @@ EXAMPLES
|
|
|
4334
4334
|
$ sf org display --target-org TestOrg1 --verbose
|
|
4335
4335
|
```
|
|
4336
4336
|
|
|
4337
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4337
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/display.ts)_
|
|
4338
4338
|
|
|
4339
4339
|
## `sf org display user`
|
|
4340
4340
|
|
|
@@ -4415,7 +4415,7 @@ EXAMPLES
|
|
|
4415
4415
|
$ sf org enable tracking
|
|
4416
4416
|
```
|
|
4417
4417
|
|
|
4418
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4418
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/enable/tracking.ts)_
|
|
4419
4419
|
|
|
4420
4420
|
## `sf org generate password`
|
|
4421
4421
|
|
|
@@ -4521,7 +4521,7 @@ EXAMPLES
|
|
|
4521
4521
|
$ sf org list --clean
|
|
4522
4522
|
```
|
|
4523
4523
|
|
|
4524
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4524
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/list.ts)_
|
|
4525
4525
|
|
|
4526
4526
|
## `sf org list auth`
|
|
4527
4527
|
|
|
@@ -4553,7 +4553,7 @@ EXAMPLES
|
|
|
4553
4553
|
$ sf org list auth
|
|
4554
4554
|
```
|
|
4555
4555
|
|
|
4556
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.
|
|
4556
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.19/src/commands/org/list/auth.ts)_
|
|
4557
4557
|
|
|
4558
4558
|
## `sf org list limits`
|
|
4559
4559
|
|
|
@@ -4660,7 +4660,7 @@ FLAG DESCRIPTIONS
|
|
|
4660
4660
|
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
|
|
4661
4661
|
```
|
|
4662
4662
|
|
|
4663
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4663
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/list/metadata.ts)_
|
|
4664
4664
|
|
|
4665
4665
|
## `sf org list metadata-types`
|
|
4666
4666
|
|
|
@@ -4715,7 +4715,7 @@ FLAG DESCRIPTIONS
|
|
|
4715
4715
|
Override the api version used for api requests made by this command
|
|
4716
4716
|
```
|
|
4717
4717
|
|
|
4718
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4718
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/list/metadata-types.ts)_
|
|
4719
4719
|
|
|
4720
4720
|
## `sf org list sobject record-counts`
|
|
4721
4721
|
|
|
@@ -4853,7 +4853,7 @@ FLAG DESCRIPTIONS
|
|
|
4853
4853
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
4854
4854
|
```
|
|
4855
4855
|
|
|
4856
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.
|
|
4856
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.19/src/commands/org/login/access-token.ts)_
|
|
4857
4857
|
|
|
4858
4858
|
## `sf org login device`
|
|
4859
4859
|
|
|
@@ -4913,7 +4913,7 @@ FLAG DESCRIPTIONS
|
|
|
4913
4913
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
4914
4914
|
```
|
|
4915
4915
|
|
|
4916
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.
|
|
4916
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.19/src/commands/org/login/device.ts)_
|
|
4917
4917
|
|
|
4918
4918
|
## `sf org login jwt`
|
|
4919
4919
|
|
|
@@ -5004,7 +5004,7 @@ FLAG DESCRIPTIONS
|
|
|
5004
5004
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5005
5005
|
```
|
|
5006
5006
|
|
|
5007
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.
|
|
5007
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.19/src/commands/org/login/jwt.ts)_
|
|
5008
5008
|
|
|
5009
5009
|
## `sf org login sfdx-url`
|
|
5010
5010
|
|
|
@@ -5074,7 +5074,7 @@ EXAMPLES
|
|
|
5074
5074
|
$ echo url | sf org login sfdx-url --sfdx-url-stdin
|
|
5075
5075
|
```
|
|
5076
5076
|
|
|
5077
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.
|
|
5077
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.19/src/commands/org/login/sfdx-url.ts)_
|
|
5078
5078
|
|
|
5079
5079
|
## `sf org login web`
|
|
5080
5080
|
|
|
@@ -5179,7 +5179,7 @@ FLAG DESCRIPTIONS
|
|
|
5179
5179
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5180
5180
|
```
|
|
5181
5181
|
|
|
5182
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.
|
|
5182
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.19/src/commands/org/login/web.ts)_
|
|
5183
5183
|
|
|
5184
5184
|
## `sf org logout`
|
|
5185
5185
|
|
|
@@ -5245,7 +5245,7 @@ FLAG DESCRIPTIONS
|
|
|
5245
5245
|
All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
|
|
5246
5246
|
```
|
|
5247
5247
|
|
|
5248
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.
|
|
5248
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.19/src/commands/org/logout.ts)_
|
|
5249
5249
|
|
|
5250
5250
|
## `sf org open`
|
|
5251
5251
|
|
|
@@ -5321,7 +5321,7 @@ EXAMPLES
|
|
|
5321
5321
|
$ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
|
|
5322
5322
|
```
|
|
5323
5323
|
|
|
5324
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5324
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/open.ts)_
|
|
5325
5325
|
|
|
5326
5326
|
## `sf org open agent`
|
|
5327
5327
|
|
|
@@ -5372,7 +5372,7 @@ EXAMPLES
|
|
|
5372
5372
|
$ sf org open agent --target-org MyTestOrg1 --browser firefox --api-name Coral_Cloud_Agent
|
|
5373
5373
|
```
|
|
5374
5374
|
|
|
5375
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5375
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/open/agent.ts)_
|
|
5376
5376
|
|
|
5377
5377
|
## `sf org refresh sandbox`
|
|
5378
5378
|
|
|
@@ -5475,7 +5475,7 @@ FLAG DESCRIPTIONS
|
|
|
5475
5475
|
You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
|
|
5476
5476
|
```
|
|
5477
5477
|
|
|
5478
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5478
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/refresh/sandbox.ts)_
|
|
5479
5479
|
|
|
5480
5480
|
## `sf org resume sandbox`
|
|
5481
5481
|
|
|
@@ -5538,7 +5538,7 @@ FLAG DESCRIPTIONS
|
|
|
5538
5538
|
returns the job ID. To resume checking the sandbox creation, rerun this command.
|
|
5539
5539
|
```
|
|
5540
5540
|
|
|
5541
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5541
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/resume/sandbox.ts)_
|
|
5542
5542
|
|
|
5543
5543
|
## `sf org resume scratch`
|
|
5544
5544
|
|
|
@@ -5591,7 +5591,7 @@ FLAG DESCRIPTIONS
|
|
|
5591
5591
|
returns the job ID. To resume checking the scratch creation, rerun this command.
|
|
5592
5592
|
```
|
|
5593
5593
|
|
|
5594
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5594
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/resume/scratch.ts)_
|
|
5595
5595
|
|
|
5596
5596
|
## `sf package convert`
|
|
5597
5597
|
|
|
@@ -7502,7 +7502,7 @@ FLAG DESCRIPTIONS
|
|
|
7502
7502
|
If you specify this flag, don’t specify --metadata or --source-dir.
|
|
7503
7503
|
```
|
|
7504
7504
|
|
|
7505
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
7505
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.41/src/commands/project/convert/mdapi.ts)_
|
|
7506
7506
|
|
|
7507
7507
|
## `sf project convert source`
|
|
7508
7508
|
|
|
@@ -7575,7 +7575,7 @@ FLAG DESCRIPTIONS
|
|
|
7575
7575
|
Override the api version used for api requests made by this command
|
|
7576
7576
|
```
|
|
7577
7577
|
|
|
7578
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
7578
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.41/src/commands/project/convert/source.ts)_
|
|
7579
7579
|
|
|
7580
7580
|
## `sf project convert source-behavior`
|
|
7581
7581
|
|
|
@@ -7634,7 +7634,7 @@ EXAMPLES
|
|
|
7634
7634
|
$ sf project convert source-behavior --behavior decomposePermissionSetBeta --dry-run --preserve-temp-dir
|
|
7635
7635
|
```
|
|
7636
7636
|
|
|
7637
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
7637
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.41/src/commands/project/convert/source-behavior.ts)_
|
|
7638
7638
|
|
|
7639
7639
|
## `sf project delete source`
|
|
7640
7640
|
|
|
@@ -7774,7 +7774,7 @@ FLAG DESCRIPTIONS
|
|
|
7774
7774
|
- Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
|
|
7775
7775
|
```
|
|
7776
7776
|
|
|
7777
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
7777
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.41/src/commands/project/delete/source.ts)_
|
|
7778
7778
|
|
|
7779
7779
|
## `sf project delete tracking`
|
|
7780
7780
|
|
|
@@ -7811,7 +7811,7 @@ EXAMPLES
|
|
|
7811
7811
|
$ sf project delete tracking --target-org my-scratch
|
|
7812
7812
|
```
|
|
7813
7813
|
|
|
7814
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
7814
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.41/src/commands/project/delete/tracking.ts)_
|
|
7815
7815
|
|
|
7816
7816
|
## `sf project deploy cancel`
|
|
7817
7817
|
|
|
@@ -7883,7 +7883,7 @@ FLAG DESCRIPTIONS
|
|
|
7883
7883
|
project deploy report".
|
|
7884
7884
|
```
|
|
7885
7885
|
|
|
7886
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
7886
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.41/src/commands/project/deploy/cancel.ts)_
|
|
7887
7887
|
|
|
7888
7888
|
## `sf project deploy preview`
|
|
7889
7889
|
|
|
@@ -7966,7 +7966,7 @@ FLAG DESCRIPTIONS
|
|
|
7966
7966
|
All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
|
|
7967
7967
|
```
|
|
7968
7968
|
|
|
7969
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
7969
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.41/src/commands/project/deploy/preview.ts)_
|
|
7970
7970
|
|
|
7971
7971
|
## `sf project deploy quick`
|
|
7972
7972
|
|
|
@@ -8059,7 +8059,7 @@ ERROR CODES
|
|
|
8059
8059
|
Canceling (69) The deploy is being canceled.
|
|
8060
8060
|
```
|
|
8061
8061
|
|
|
8062
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
8062
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.41/src/commands/project/deploy/quick.ts)_
|
|
8063
8063
|
|
|
8064
8064
|
## `sf project deploy report`
|
|
8065
8065
|
|
|
@@ -8151,7 +8151,7 @@ FLAG DESCRIPTIONS
|
|
|
8151
8151
|
--coverage-formatters lcov --coverage-formatters clover
|
|
8152
8152
|
```
|
|
8153
8153
|
|
|
8154
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
8154
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.41/src/commands/project/deploy/report.ts)_
|
|
8155
8155
|
|
|
8156
8156
|
## `sf project deploy resume`
|
|
8157
8157
|
|
|
@@ -8248,7 +8248,7 @@ ERROR CODES
|
|
|
8248
8248
|
Canceling (69) The deploy is being canceled.
|
|
8249
8249
|
```
|
|
8250
8250
|
|
|
8251
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
8251
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.41/src/commands/project/deploy/resume.ts)_
|
|
8252
8252
|
|
|
8253
8253
|
## `sf project deploy start`
|
|
8254
8254
|
|
|
@@ -8501,7 +8501,7 @@ ERROR CODES
|
|
|
8501
8501
|
Canceling (69) The deploy is being canceled.
|
|
8502
8502
|
```
|
|
8503
8503
|
|
|
8504
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
8504
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.41/src/commands/project/deploy/start.ts)_
|
|
8505
8505
|
|
|
8506
8506
|
## `sf project deploy validate`
|
|
8507
8507
|
|
|
@@ -8691,7 +8691,7 @@ ERROR CODES
|
|
|
8691
8691
|
Canceling (69) The deploy is being canceled.
|
|
8692
8692
|
```
|
|
8693
8693
|
|
|
8694
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
8694
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.41/src/commands/project/deploy/validate.ts)_
|
|
8695
8695
|
|
|
8696
8696
|
## `sf project generate`
|
|
8697
8697
|
|
|
@@ -8892,7 +8892,7 @@ EXAMPLES
|
|
|
8892
8892
|
$ sf project generate manifest --from-org test@myorg.com --excluded-metadata StandardValueSet
|
|
8893
8893
|
```
|
|
8894
8894
|
|
|
8895
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
8895
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.41/src/commands/project/generate/manifest.ts)_
|
|
8896
8896
|
|
|
8897
8897
|
## `sf project list ignored`
|
|
8898
8898
|
|
|
@@ -8934,7 +8934,7 @@ EXAMPLES
|
|
|
8934
8934
|
$ sf project list ignored --source-dir package.xml
|
|
8935
8935
|
```
|
|
8936
8936
|
|
|
8937
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
8937
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.41/src/commands/project/list/ignored.ts)_
|
|
8938
8938
|
|
|
8939
8939
|
## `sf project reset tracking`
|
|
8940
8940
|
|
|
@@ -8983,7 +8983,7 @@ EXAMPLES
|
|
|
8983
8983
|
$ sf project reset tracking --revision 30
|
|
8984
8984
|
```
|
|
8985
8985
|
|
|
8986
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
8986
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.41/src/commands/project/reset/tracking.ts)_
|
|
8987
8987
|
|
|
8988
8988
|
## `sf project retrieve preview`
|
|
8989
8989
|
|
|
@@ -9037,7 +9037,7 @@ FLAG DESCRIPTIONS
|
|
|
9037
9037
|
production orgs.
|
|
9038
9038
|
```
|
|
9039
9039
|
|
|
9040
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
9040
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.41/src/commands/project/retrieve/preview.ts)_
|
|
9041
9041
|
|
|
9042
9042
|
## `sf project retrieve start`
|
|
9043
9043
|
|
|
@@ -9218,7 +9218,7 @@ ENVIRONMENT VARIABLES
|
|
|
9218
9218
|
SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
|
|
9219
9219
|
```
|
|
9220
9220
|
|
|
9221
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.
|
|
9221
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.41/src/commands/project/retrieve/start.ts)_
|
|
9222
9222
|
|
|
9223
9223
|
## `sf schema generate field`
|
|
9224
9224
|
|
|
@@ -9611,7 +9611,7 @@ EXAMPLES
|
|
|
9611
9611
|
$ sf update --available
|
|
9612
9612
|
```
|
|
9613
9613
|
|
|
9614
|
-
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.
|
|
9614
|
+
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.4/src/commands/update.ts)_
|
|
9615
9615
|
|
|
9616
9616
|
## `sf version`
|
|
9617
9617
|
|