@salesforce/cli 2.103.4 → 2.103.6

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 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.4 linux-x64 node-v22.18.0
28
+ @salesforce/cli/2.103.6 linux-x64 node-v22.18.0
29
29
  $ sf --help [COMMAND]
30
30
  USAGE
31
31
  $ sf COMMAND
@@ -126,7 +126,6 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
126
126
  - [`sf org list sobject record-counts`](#sf-org-list-sobject-record-counts)
127
127
  - [`sf org list users`](#sf-org-list-users)
128
128
  - [`sf org login access-token`](#sf-org-login-access-token)
129
- - [`sf org login device`](#sf-org-login-device)
130
129
  - [`sf org login jwt`](#sf-org-login-jwt)
131
130
  - [`sf org login sfdx-url`](#sf-org-login-sfdx-url)
132
131
  - [`sf org login web`](#sf-org-login-web)
@@ -242,7 +241,7 @@ EXAMPLES
242
241
  $ sf agent activate --api-name Resort_Manager --target-org my-org
243
242
  ```
244
243
 
245
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/activate.ts)_
244
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.4/src/commands/agent/activate.ts)_
246
245
 
247
246
  ## `sf agent create`
248
247
 
@@ -304,7 +303,7 @@ EXAMPLES
304
303
  $ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
305
304
  ```
306
305
 
307
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/create.ts)_
306
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.4/src/commands/agent/create.ts)_
308
307
 
309
308
  ## `sf agent deactivate`
310
309
 
@@ -344,7 +343,7 @@ EXAMPLES
344
343
  $ sf agent deactivate --api-name Resort_Manager --target-org my-org
345
344
  ```
346
345
 
347
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/deactivate.ts)_
346
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.4/src/commands/agent/deactivate.ts)_
348
347
 
349
348
  ## `sf agent generate agent-spec`
350
349
 
@@ -449,7 +448,7 @@ EXAMPLES
449
448
  $ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
450
449
  ```
451
450
 
452
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/generate/agent-spec.ts)_
451
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.4/src/commands/agent/generate/agent-spec.ts)_
453
452
 
454
453
  ## `sf agent generate template`
455
454
 
@@ -497,7 +496,7 @@ EXAMPLES
497
496
  force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
498
497
  ```
499
498
 
500
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/generate/template.ts)_
499
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.4/src/commands/agent/generate/template.ts)_
501
500
 
502
501
  ## `sf agent generate test-spec`
503
502
 
@@ -558,7 +557,7 @@ EXAMPLES
558
557
  force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
559
558
  ```
560
559
 
561
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/generate/test-spec.ts)_
560
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.4/src/commands/agent/generate/test-spec.ts)_
562
561
 
563
562
  ## `sf agent preview`
564
563
 
@@ -622,7 +621,7 @@ EXAMPLES
622
621
  transcripts/my-preview
623
622
  ```
624
623
 
625
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/preview.ts)_
624
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.4/src/commands/agent/preview.ts)_
626
625
 
627
626
  ## `sf agent test create`
628
627
 
@@ -677,7 +676,7 @@ EXAMPLES
677
676
  $ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
678
677
  ```
679
678
 
680
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/test/create.ts)_
679
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.4/src/commands/agent/test/create.ts)_
681
680
 
682
681
  ## `sf agent test list`
683
682
 
@@ -712,7 +711,7 @@ EXAMPLES
712
711
  $ sf agent test list --target-org my-org
713
712
  ```
714
713
 
715
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/test/list.ts)_
714
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.4/src/commands/agent/test/list.ts)_
716
715
 
717
716
  ## `sf agent test results`
718
717
 
@@ -721,7 +720,7 @@ Get the results of a completed agent test run.
721
720
  ```
722
721
  USAGE
723
722
  $ sf agent test results -o <value> -i <value> [--json] [--flags-dir <value>] [--api-version <value>] [--result-format
724
- json|human|junit|tap] [-d <value>]
723
+ json|human|junit|tap] [-d <value>] [--verbose]
725
724
 
726
725
  FLAGS
727
726
  -d, --output-dir=<value> Directory to write the agent test results into.
@@ -731,6 +730,7 @@ FLAGS
731
730
  --api-version=<value> Override the api version used for api requests made by this command
732
731
  --result-format=<option> [default: human] Format of the agent test run results.
733
732
  <options: json|human|junit|tap>
733
+ --verbose Show generated data in the test results output.
734
734
 
735
735
  GLOBAL FLAGS
736
736
  --flags-dir=<value> Import flag values from a directory.
@@ -766,9 +766,18 @@ FLAG DESCRIPTIONS
766
766
 
767
767
  If the agent test run completes, write the results to the specified directory. If the test is still running, the
768
768
  test results aren't written.
769
+
770
+ --verbose Show generated data in the test results output.
771
+
772
+ When enabled, includes detailed generated data (such as invoked actions) in the human-readable test results output.
773
+ This is useful for debugging test failures and understanding what actions were actually invoked during the test run.
774
+
775
+ The generated data is in JSON format and includes the Apex classes or Flows that were invoked, the Salesforce
776
+ objects that were touched, and so on. Use the JSON structure of this information to build the test case JSONPath
777
+ expression when using custom evaluations.
769
778
  ```
770
779
 
771
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/test/results.ts)_
780
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.4/src/commands/agent/test/results.ts)_
772
781
 
773
782
  ## `sf agent test resume`
774
783
 
@@ -777,7 +786,7 @@ Resume an agent test that you previously started in your org so you can view the
777
786
  ```
778
787
  USAGE
779
788
  $ sf agent test resume -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-i <value>] [-r] [-w
780
- <value>] [--result-format json|human|junit|tap] [-d <value>]
789
+ <value>] [--result-format json|human|junit|tap] [-d <value>] [--verbose]
781
790
 
782
791
  FLAGS
783
792
  -d, --output-dir=<value> Directory to write the agent test results into.
@@ -790,6 +799,7 @@ FLAGS
790
799
  --api-version=<value> Override the api version used for api requests made by this command
791
800
  --result-format=<option> [default: human] Format of the agent test run results.
792
801
  <options: json|human|junit|tap>
802
+ --verbose Show generated data in the test results output.
793
803
 
794
804
  GLOBAL FLAGS
795
805
  --flags-dir=<value> Import flag values from a directory.
@@ -829,9 +839,18 @@ FLAG DESCRIPTIONS
829
839
 
830
840
  If the agent test run completes, write the results to the specified directory. If the test is still running, the
831
841
  test results aren't written.
842
+
843
+ --verbose Show generated data in the test results output.
844
+
845
+ When enabled, includes detailed generated data (such as invoked actions) in the human-readable test results output.
846
+ This is useful for debugging test failures and understanding what actions were actually invoked during the test run.
847
+
848
+ The generated data is in JSON format and includes the Apex classes or Flows that were invoked, the Salesforce
849
+ objects that were touched, and so on. Use the JSON structure of this information to build the test case JSONPath
850
+ expression when using custom evaluations.
832
851
  ```
833
852
 
834
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/test/resume.ts)_
853
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.4/src/commands/agent/test/resume.ts)_
835
854
 
836
855
  ## `sf agent test run`
837
856
 
@@ -840,7 +859,7 @@ Start an agent test in your org.
840
859
  ```
841
860
  USAGE
842
861
  $ sf agent test run -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-n <value>] [-w <value>]
843
- [--result-format json|human|junit|tap] [-d <value>]
862
+ [--result-format json|human|junit|tap] [-d <value>] [--verbose]
844
863
 
845
864
  FLAGS
846
865
  -d, --output-dir=<value> Directory to write the agent test results into.
@@ -853,6 +872,7 @@ FLAGS
853
872
  --api-version=<value> Override the api version used for api requests made by this command
854
873
  --result-format=<option> [default: human] Format of the agent test run results.
855
874
  <options: json|human|junit|tap>
875
+ --verbose Show generated data in the test results output.
856
876
 
857
877
  GLOBAL FLAGS
858
878
  --flags-dir=<value> Import flag values from a directory.
@@ -893,9 +913,18 @@ FLAG DESCRIPTIONS
893
913
 
894
914
  If the agent test run completes, write the results to the specified directory. If the test is still running, the
895
915
  test results aren't written.
916
+
917
+ --verbose Show generated data in the test results output.
918
+
919
+ When enabled, includes detailed generated data (such as invoked actions) in the human-readable test results output.
920
+ This is useful for debugging test failures and understanding what actions were actually invoked during the test run.
921
+
922
+ The generated data is in JSON format and includes the Apex classes or Flows that were invoked, the Salesforce
923
+ objects that were touched, and so on. Use the JSON structure of this information to build the test case JSONPath
924
+ expression when using custom evaluations.
896
925
  ```
897
926
 
898
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/test/run.ts)_
927
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.4/src/commands/agent/test/run.ts)_
899
928
 
900
929
  ## `sf alias list`
901
930
 
@@ -2046,7 +2075,7 @@ EXAMPLES
2046
2075
  $ sf data bulk results --job-id 7507i000fake341G --target-org my-scratch
2047
2076
  ```
2048
2077
 
2049
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/bulk/results.ts)_
2078
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/data/bulk/results.ts)_
2050
2079
 
2051
2080
  ## `sf data create file`
2052
2081
 
@@ -2095,7 +2124,7 @@ EXAMPLES
2095
2124
  $ sf data create file --file path/to/astro.png --parent-id a03fakeLoJWPIA3
2096
2125
  ```
2097
2126
 
2098
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/create/file.ts)_
2127
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/data/create/file.ts)_
2099
2128
 
2100
2129
  ## `sf data create record`
2101
2130
 
@@ -2151,7 +2180,7 @@ EXAMPLES
2151
2180
  TracedEntityId=01p17000000R6bLAAS"
2152
2181
  ```
2153
2182
 
2154
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/create/record.ts)_
2183
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/data/create/record.ts)_
2155
2184
 
2156
2185
  ## `sf data delete bulk`
2157
2186
 
@@ -2159,11 +2188,10 @@ Bulk delete records from an org using a CSV file. Uses Bulk API 2.0.
2159
2188
 
2160
2189
  ```
2161
2190
  USAGE
2162
- $ sf data delete bulk -o <value> -s <value> [--json] [--flags-dir <value>] [--api-version <value>] [-w <value> | -a]
2191
+ $ sf data delete bulk -o <value> -s <value> [--json] [--flags-dir <value>] [--api-version <value>] [-w <value>]
2163
2192
  (--line-ending CRLF|LF -f <value>) [--hard-delete]
2164
2193
 
2165
2194
  FLAGS
2166
- -a, --async Run the command asynchronously.
2167
2195
  -f, --file=<value> (required) CSV file that contains the IDs of the records to update or delete.
2168
2196
  -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
2169
2197
  configuration variable is already set.
@@ -2211,7 +2239,7 @@ FLAG DESCRIPTIONS
2211
2239
  and can be enabled only by a system administrator.
2212
2240
  ```
2213
2241
 
2214
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/delete/bulk.ts)_
2242
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/data/delete/bulk.ts)_
2215
2243
 
2216
2244
  ## `sf data delete record`
2217
2245
 
@@ -2272,7 +2300,7 @@ EXAMPLES
2272
2300
  $ sf data delete record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
2273
2301
  ```
2274
2302
 
2275
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/delete/record.ts)_
2303
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/data/delete/record.ts)_
2276
2304
 
2277
2305
  ## `sf data delete resume`
2278
2306
 
@@ -2311,7 +2339,7 @@ EXAMPLES
2311
2339
  $ sf data delete resume --use-most-recent --target-org my-scratch
2312
2340
  ```
2313
2341
 
2314
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/delete/resume.ts)_
2342
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/data/delete/resume.ts)_
2315
2343
 
2316
2344
  ## `sf data export bulk`
2317
2345
 
@@ -2320,7 +2348,7 @@ Bulk export records from an org into a file using a SOQL query. Uses Bulk API 2.
2320
2348
  ```
2321
2349
  USAGE
2322
2350
  $ sf data export bulk -o <value> --output-file <value> -r csv|json [--json] [--flags-dir <value>] [--api-version
2323
- <value>] [-w <minutes> | --async] [-q <value> | --query-file <value>] [--all-rows] [--column-delimiter
2351
+ <value>] [-w <minutes>] [-q <value> | --query-file <value>] [--all-rows] [--column-delimiter
2324
2352
  BACKQUOTE|CARET|COMMA|PIPE|SEMICOLON|TAB] [--line-ending LF|CRLF]
2325
2353
 
2326
2354
  FLAGS
@@ -2333,7 +2361,6 @@ FLAGS
2333
2361
  --all-rows Include records that have been soft-deleted due to a merge or delete. By default,
2334
2362
  deleted records are not returned.
2335
2363
  --api-version=<value> Override the api version used for api requests made by this command
2336
- --async Don't wait for the job to complete.
2337
2364
  --column-delimiter=<option> Column delimiter to be used when writing CSV output. Default is COMMA.
2338
2365
  <options: BACKQUOTE|CARET|COMMA|PIPE|SEMICOLON|TAB>
2339
2366
  --line-ending=<option> Line ending to be used when writing CSV output. Default value on Windows is is
@@ -2357,8 +2384,8 @@ DESCRIPTION
2357
2384
  JSON format.
2358
2385
 
2359
2386
  Bulk exports can take a while, depending on how many records are returned by the SOQL query. If the command times out,
2360
- or you specified the --async flag, the command displays the job ID. To see the status and get the results of the job,
2361
- run "sf data export resume" and pass the job ID to the --job-id flag.
2387
+ the command displays the job ID. To see the status and get the results of the job, run "sf data export resume" and
2388
+ pass the job ID to the --job-id flag.
2362
2389
 
2363
2390
  IMPORTANT: This command uses Bulk API 2.0, which limits the type of SOQL queries you can run. For example, you can't
2364
2391
  use aggregate functions such as count(). For the complete list of limitations, see the "SOQL Considerations" section
@@ -2377,15 +2404,9 @@ EXAMPLES
2377
2404
 
2378
2405
  $ sf data export bulk --query "SELECT Id, Name, Account.Name FROM Contact" --output-file export-accounts.json \
2379
2406
  --result-format json --wait 10 --all-rows
2380
-
2381
- Export asynchronously; the command immediately returns a job ID that you then pass to the "sf data export resume"
2382
- command:
2383
-
2384
- $ sf data export bulk --query "SELECT Id, Name, Account.Name FROM Contact" --output-file export-accounts.json \
2385
- --result-format json --async
2386
2407
  ```
2387
2408
 
2388
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/export/bulk.ts)_
2409
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/data/export/bulk.ts)_
2389
2410
 
2390
2411
  ## `sf data export resume`
2391
2412
 
@@ -2407,9 +2428,9 @@ GLOBAL FLAGS
2407
2428
  DESCRIPTION
2408
2429
  Resume a bulk export job that you previously started. Uses Bulk API 2.0.
2409
2430
 
2410
- When the original "data export bulk" command either times out or is run with the --async flag, it displays a job ID.
2411
- To see the status and get the results of the bulk export, run this command by either passing it the job ID or using
2412
- the --use-most-recent flag to specify the most recent bulk export job.
2431
+ When the original "data export bulk" command times out, it displays a job ID. To see the status and get the results of
2432
+ the bulk export, run this command by either passing it the job ID or using the --use-most-recent flag to specify the
2433
+ most recent bulk export job.
2413
2434
 
2414
2435
  Using either `--job-id` or `--use-most-recent` will properly resolve to the correct org where the bulk job was started
2415
2436
  based on the cached data by "data export bulk".
@@ -2424,7 +2445,7 @@ EXAMPLES
2424
2445
  $ sf data export resume --use-most-recent
2425
2446
  ```
2426
2447
 
2427
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/export/resume.ts)_
2448
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/data/export/resume.ts)_
2428
2449
 
2429
2450
  ## `sf data export tree`
2430
2451
 
@@ -2484,7 +2505,7 @@ EXAMPLES
2484
2505
  my-scratch
2485
2506
  ```
2486
2507
 
2487
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/export/tree.ts)_
2508
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/data/export/tree.ts)_
2488
2509
 
2489
2510
  ## `sf data get record`
2490
2511
 
@@ -2548,7 +2569,7 @@ EXAMPLES
2548
2569
  $ sf data get record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
2549
2570
  ```
2550
2571
 
2551
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/get/record.ts)_
2572
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/data/get/record.ts)_
2552
2573
 
2553
2574
  ## `sf data import bulk`
2554
2575
 
@@ -2556,11 +2577,10 @@ Bulk import records into a Salesforce object from a CSV file. Uses Bulk API 2.0.
2556
2577
 
2557
2578
  ```
2558
2579
  USAGE
2559
- $ sf data import bulk -s <value> -o <value> [--json] [--flags-dir <value>] [-a | -w <value>] [--api-version <value>]
2580
+ $ sf data import bulk -s <value> -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-w <value>]
2560
2581
  (--line-ending CRLF|LF -f <value>) [--column-delimiter BACKQUOTE|CARET|COMMA|PIPE|SEMICOLON|TAB]
2561
2582
 
2562
2583
  FLAGS
2563
- -a, --async Don't wait for the command to complete.
2564
2584
  -f, --file=<value> (required) CSV file that contains the Salesforce object records you want to import.
2565
2585
  -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
2566
2586
  configuration variable is already set.
@@ -2586,9 +2606,9 @@ DESCRIPTION
2586
2606
 
2587
2607
  All the records in the CSV file must be for the same Salesforce object. Specify the object with the `--sobject` flag.
2588
2608
 
2589
- Bulk imports can take a while, depending on how many records are in the CSV file. If the command times out, or you
2590
- specified the --async flag, the command displays the job ID. To see the status and get the results of the job, run "sf
2591
- data import resume" and pass the job ID to the --job-id flag.
2609
+ Bulk imports can take a while, depending on how many records are in the CSV file. If the command times out, the
2610
+ command displays the job ID. To see the status and get the results of the job, run "sf data import resume" and pass
2611
+ the job ID to the --job-id flag.
2592
2612
 
2593
2613
  For information and examples about how to prepare your CSV files, see "Prepare Data to Ingest" in the "Bulk API 2.0
2594
2614
  and Bulk API Developer Guide"
@@ -2599,14 +2619,9 @@ EXAMPLES
2599
2619
  in 10 minutes, the command ends and displays a job ID:
2600
2620
 
2601
2621
  $ sf data import bulk --file accounts.csv --sobject Account --wait 10 --target-org my-scratch
2602
-
2603
- Import asynchronously and use the default org; the command immediately returns a job ID that you then pass to the
2604
- "sf data import resume" command:
2605
-
2606
- $ sf data import bulk --file accounts.csv --sobject Account --async
2607
2622
  ```
2608
2623
 
2609
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/import/bulk.ts)_
2624
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/data/import/bulk.ts)_
2610
2625
 
2611
2626
  ## `sf data import resume`
2612
2627
 
@@ -2628,9 +2643,9 @@ GLOBAL FLAGS
2628
2643
  DESCRIPTION
2629
2644
  Resume a bulk import job that you previously started. Uses Bulk API 2.0.
2630
2645
 
2631
- When the original "sf data import bulk" command either times out or is run with the --async flag, it displays a job
2632
- ID. To see the status and get the results of the bulk import, run this command by either passing it the job ID or
2633
- using the --use-most-recent flag to specify the most recent bulk import job.
2646
+ When the original "sf data import bulk" command times out, it displays a job ID. To see the status and get the results
2647
+ of the bulk import, run this command by either passing it the job ID or using the --use-most-recent flag to specify
2648
+ the most recent bulk import job.
2634
2649
 
2635
2650
  EXAMPLES
2636
2651
  Resume a bulk import job to your default org using an ID:
@@ -2642,7 +2657,7 @@ EXAMPLES
2642
2657
  $ sf data import resume --use-most-recent --target-org my-scratch
2643
2658
  ```
2644
2659
 
2645
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/import/resume.ts)_
2660
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/data/import/resume.ts)_
2646
2661
 
2647
2662
  ## `sf data import tree`
2648
2663
 
@@ -2706,7 +2721,7 @@ FLAG DESCRIPTIONS
2706
2721
  - files(array) - Files: An array of files paths to load
2707
2722
  ```
2708
2723
 
2709
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/import/tree.ts)_
2724
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/data/import/tree.ts)_
2710
2725
 
2711
2726
  ## `sf data query`
2712
2727
 
@@ -2759,7 +2774,7 @@ EXAMPLES
2759
2774
  $ sf data query --query "SELECT Name FROM ApexTrigger" --use-tooling-api
2760
2775
  ```
2761
2776
 
2762
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/query.ts)_
2777
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/data/query.ts)_
2763
2778
 
2764
2779
  ## `sf data resume`
2765
2780
 
@@ -2796,7 +2811,7 @@ EXAMPLES
2796
2811
  $ sf data resume --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA
2797
2812
  ```
2798
2813
 
2799
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/resume.ts)_
2814
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/data/resume.ts)_
2800
2815
 
2801
2816
  ## `sf data search`
2802
2817
 
@@ -2846,7 +2861,7 @@ EXAMPLES
2846
2861
  $ sf data search --file query.txt --target-org my-scratch --result-format csv
2847
2862
  ```
2848
2863
 
2849
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/search.ts)_
2864
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/data/search.ts)_
2850
2865
 
2851
2866
  ## `sf data update bulk`
2852
2867
 
@@ -2854,11 +2869,10 @@ Bulk update records to an org from a CSV file. Uses Bulk API 2.0.
2854
2869
 
2855
2870
  ```
2856
2871
  USAGE
2857
- $ sf data update bulk -s <value> -o <value> [--json] [--flags-dir <value>] [-a] [-w <value>] [--api-version <value>]
2872
+ $ sf data update bulk -s <value> -o <value> [--json] [--flags-dir <value>] [-w <value>] [--api-version <value>]
2858
2873
  (--line-ending CRLF|LF -f <value>) [--column-delimiter BACKQUOTE|CARET|COMMA|PIPE|SEMICOLON|TAB]
2859
2874
 
2860
2875
  FLAGS
2861
- -a, --async Don't wait for the command to complete.
2862
2876
  -f, --file=<value> (required) CSV file that contains the Salesforce object records you want to update.
2863
2877
  -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
2864
2878
  configuration variable is already set.
@@ -2887,9 +2901,9 @@ DESCRIPTION
2887
2901
  contain only existing records; if a record in the file doesn't currently exist in the Salesforce object, the command
2888
2902
  fails. Consider using "sf data upsert bulk" if you also want to insert new records.
2889
2903
 
2890
- Bulk updates can take a while, depending on how many records are in the CSV file. If the command times out, or you
2891
- specified the --async flag, the command displays the job ID. To see the status and get the results of the job, run "sf
2892
- data update resume" and pass the job ID to the --job-id flag.
2904
+ Bulk updates can take a while, depending on how many records are in the CSV file. If the command times out, the
2905
+ command displays the job ID. To see the status and get the results of the job, run "sf data update resume" and pass
2906
+ the job ID to the --job-id flag.
2893
2907
 
2894
2908
  For information and examples about how to prepare your CSV files, see "Prepare Data to Ingest" in the "Bulk API 2.0
2895
2909
  and Bulk API Developer Guide"
@@ -2900,14 +2914,9 @@ EXAMPLES
2900
2914
  in 10 minutes, the command ends and displays a job ID:
2901
2915
 
2902
2916
  $ sf data update bulk --file accounts.csv --sobject Account --wait 10 --target-org my-scratch
2903
-
2904
- Update asynchronously and use the default org; the command immediately returns a job ID that you then pass to the
2905
- "sf data update resume" command:
2906
-
2907
- $ sf data update bulk --file accounts.csv --sobject Account --async
2908
2917
  ```
2909
2918
 
2910
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/update/bulk.ts)_
2919
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/data/update/bulk.ts)_
2911
2920
 
2912
2921
  ## `sf data update record`
2913
2922
 
@@ -2969,7 +2978,7 @@ EXAMPLES
2969
2978
  "ExpirationDate=2017-12-01T00:58:04.000+0000"
2970
2979
  ```
2971
2980
 
2972
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/update/record.ts)_
2981
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/data/update/record.ts)_
2973
2982
 
2974
2983
  ## `sf data update resume`
2975
2984
 
@@ -2991,9 +3000,9 @@ GLOBAL FLAGS
2991
3000
  DESCRIPTION
2992
3001
  Resume a bulk update job that you previously started. Uses Bulk API 2.0.
2993
3002
 
2994
- When the original "sf data update bulk" command either times out or is run with the --async flag, it displays a job
2995
- ID. To see the status and get the results of the bulk update, run this command by either passing it the job ID or
2996
- using the --use-most-recent flag to specify the most recent bulk update job.
3003
+ When the original "sf data update bulk" command times out, it displays a job ID. To see the status and get the results
3004
+ of the bulk update, run this command by either passing it the job ID or using the --use-most-recent flag to specify
3005
+ the most recent bulk update job.
2997
3006
 
2998
3007
  Using either `--job-id` or `--use-most-recent` will properly resolve to the correct org where the bulk job was started
2999
3008
  based on the cached data by "data update bulk".
@@ -3008,7 +3017,7 @@ EXAMPLES
3008
3017
  $ sf data update resume --use-most-recent
3009
3018
  ```
3010
3019
 
3011
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/update/resume.ts)_
3020
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/data/update/resume.ts)_
3012
3021
 
3013
3022
  ## `sf data upsert bulk`
3014
3023
 
@@ -3017,10 +3026,9 @@ Bulk upsert records to an org from a CSV file. Uses Bulk API 2.0.
3017
3026
  ```
3018
3027
  USAGE
3019
3028
  $ sf data upsert bulk -o <value> -s <value> -i <value> [--json] [--flags-dir <value>] [--api-version <value>] [-w
3020
- <value> | -a] (--line-ending CRLF|LF -f <value>) [--column-delimiter BACKQUOTE|CARET|COMMA|PIPE|SEMICOLON|TAB]
3029
+ <value>] (--line-ending CRLF|LF -f <value>) [--column-delimiter BACKQUOTE|CARET|COMMA|PIPE|SEMICOLON|TAB]
3021
3030
 
3022
3031
  FLAGS
3023
- -a, --async Run the command asynchronously.
3024
3032
  -f, --file=<value> (required) CSV file that contains the IDs of the records to update or delete.
3025
3033
  -i, --external-id=<value> (required) Name of the external ID field, or the Id field.
3026
3034
  -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
@@ -3065,7 +3073,7 @@ EXAMPLES
3065
3073
  my-scratch
3066
3074
  ```
3067
3075
 
3068
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/upsert/bulk.ts)_
3076
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/data/upsert/bulk.ts)_
3069
3077
 
3070
3078
  ## `sf data upsert resume`
3071
3079
 
@@ -3104,7 +3112,7 @@ EXAMPLES
3104
3112
  $ sf data upsert resume --use-most-recent --target-org my-scratch
3105
3113
  ```
3106
3114
 
3107
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/upsert/resume.ts)_
3115
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/data/upsert/resume.ts)_
3108
3116
 
3109
3117
  ## `sf doctor`
3110
3118
 
@@ -3199,7 +3207,7 @@ EXAMPLES
3199
3207
  $ sf force data bulk delete --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
3200
3208
  ```
3201
3209
 
3202
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/force/data/bulk/delete.ts)_
3210
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/force/data/bulk/delete.ts)_
3203
3211
 
3204
3212
  ## `sf force data bulk status`
3205
3213
 
@@ -3236,7 +3244,7 @@ EXAMPLES
3236
3244
  $ sf force data bulk status --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA --target-org my-scratch
3237
3245
  ```
3238
3246
 
3239
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/force/data/bulk/status.ts)_
3247
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/force/data/bulk/status.ts)_
3240
3248
 
3241
3249
  ## `sf force data bulk upsert`
3242
3250
 
@@ -3294,7 +3302,7 @@ EXAMPLES
3294
3302
  --target-org my-scratch
3295
3303
  ```
3296
3304
 
3297
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/force/data/bulk/upsert.ts)_
3305
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.53/src/commands/force/data/bulk/upsert.ts)_
3298
3306
 
3299
3307
  ## `sf help [COMMAND]`
3300
3308
 
@@ -4553,7 +4561,7 @@ EXAMPLES
4553
4561
  $ sf org list auth
4554
4562
  ```
4555
4563
 
4556
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.19/src/commands/org/list/auth.ts)_
4564
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.8.1/src/commands/org/list/auth.ts)_
4557
4565
 
4558
4566
  ## `sf org list limits`
4559
4567
 
@@ -4853,67 +4861,7 @@ FLAG DESCRIPTIONS
4853
4861
  To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
4854
4862
  ```
4855
4863
 
4856
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.19/src/commands/org/login/access-token.ts)_
4857
-
4858
- ## `sf org login device`
4859
-
4860
- Authorize an org using a device code.
4861
-
4862
- ```
4863
- USAGE
4864
- $ sf org login device [--json] [--flags-dir <value>] [-i <value>] [-r <value>] [-d] [-s] [-a <value>]
4865
-
4866
- FLAGS
4867
- -a, --alias=<value> Alias for the org.
4868
- -d, --set-default-dev-hub Set the authenticated org as the default Dev Hub.
4869
- -i, --client-id=<value> OAuth client ID (also called consumer key) of your custom connected app.
4870
- -r, --instance-url=<value> URL of the instance that the org lives on.
4871
- -s, --set-default Set the authenticated org as the default that all org-related commands run against.
4872
-
4873
- GLOBAL FLAGS
4874
- --flags-dir=<value> Import flag values from a directory.
4875
- --json Format output as json.
4876
-
4877
- DESCRIPTION
4878
- Authorize an org using a device code.
4879
-
4880
- Use this command to allow a device to connect to an org.
4881
-
4882
- When you run this command, it first displays an 8-digit device code and the URL for verifying the code on your org.
4883
- The default instance URL is https://login.salesforce.com, so if the org you're authorizing is on a different instance,
4884
- use the --instance-url. The command waits while you complete the verification. Open a browser and navigate to the
4885
- displayed verification URL, enter the code, then click Connect. If you aren't already logged into your org, log in,
4886
- and then you're prompted to allow the device to connect to the org. After you successfully authorize the org, you can
4887
- close the browser window.
4888
-
4889
- ALIASES
4890
- $ sf force auth device login
4891
- $ sf auth device login
4892
-
4893
- EXAMPLES
4894
- Authorize an org using a device code, give the org the alias TestOrg1, and set it as your default Dev Hub org:
4895
-
4896
- $ sf org login device --set-default-dev-hub --alias TestOrg1
4897
-
4898
- Authorize an org in which you've created a custom connected app with the specified client ID (consumer key):
4899
-
4900
- $ sf org login device --client-id <OAuth client id>
4901
-
4902
- Authorize a sandbox org with the specified instance URL:
4903
-
4904
- $ sf org login device --instance-url https://MyDomainName--SandboxName.sandbox.my.salesforce.com
4905
-
4906
- FLAG DESCRIPTIONS
4907
- -r, --instance-url=<value> URL of the instance that the org lives on.
4908
-
4909
- If you specify an --instance-url value, this value overrides the sfdcLoginUrl value in your sfdx-project.json file.
4910
-
4911
- To specify a My Domain URL, use the format "https://<MyDomainName>.my.salesforce.com".
4912
-
4913
- To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
4914
- ```
4915
-
4916
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.19/src/commands/org/login/device.ts)_
4864
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.8.1/src/commands/org/login/access-token.ts)_
4917
4865
 
4918
4866
  ## `sf org login jwt`
4919
4867
 
@@ -5004,7 +4952,7 @@ FLAG DESCRIPTIONS
5004
4952
  To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
5005
4953
  ```
5006
4954
 
5007
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.19/src/commands/org/login/jwt.ts)_
4955
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.8.1/src/commands/org/login/jwt.ts)_
5008
4956
 
5009
4957
  ## `sf org login sfdx-url`
5010
4958
 
@@ -5074,7 +5022,7 @@ EXAMPLES
5074
5022
  $ echo url | sf org login sfdx-url --sfdx-url-stdin
5075
5023
  ```
5076
5024
 
5077
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.19/src/commands/org/login/sfdx-url.ts)_
5025
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.8.1/src/commands/org/login/sfdx-url.ts)_
5078
5026
 
5079
5027
  ## `sf org login web`
5080
5028
 
@@ -5179,7 +5127,7 @@ FLAG DESCRIPTIONS
5179
5127
  To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
5180
5128
  ```
5181
5129
 
5182
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.19/src/commands/org/login/web.ts)_
5130
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.8.1/src/commands/org/login/web.ts)_
5183
5131
 
5184
5132
  ## `sf org logout`
5185
5133
 
@@ -5245,7 +5193,7 @@ FLAG DESCRIPTIONS
5245
5193
  All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
5246
5194
  ```
5247
5195
 
5248
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.19/src/commands/org/logout.ts)_
5196
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.8.1/src/commands/org/logout.ts)_
5249
5197
 
5250
5198
  ## `sf org open`
5251
5199
 
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
- "version": "2.103.4",
3
+ "version": "2.103.6",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/cli",
9
- "version": "2.103.4",
9
+ "version": "2.103.6",
10
10
  "hasInstallScript": true,
11
11
  "license": "Apache-2.0",
12
12
  "dependencies": {
@@ -24,11 +24,11 @@
24
24
  "@oclif/plugin-which": "3.2.39",
25
25
  "@salesforce/core": "^8.9.1",
26
26
  "@salesforce/kit": "^3.1.6",
27
- "@salesforce/plugin-agent": "1.24.3",
27
+ "@salesforce/plugin-agent": "1.24.4",
28
28
  "@salesforce/plugin-apex": "3.6.19",
29
29
  "@salesforce/plugin-api": "1.3.3",
30
- "@salesforce/plugin-auth": "3.7.19",
31
- "@salesforce/plugin-data": "4.0.52",
30
+ "@salesforce/plugin-auth": "3.8.1",
31
+ "@salesforce/plugin-data": "4.0.53",
32
32
  "@salesforce/plugin-deploy-retrieve": "3.22.41",
33
33
  "@salesforce/plugin-info": "3.4.81",
34
34
  "@salesforce/plugin-limits": "3.3.64",
@@ -38,7 +38,7 @@
38
38
  "@salesforce/plugin-schema": "3.3.78",
39
39
  "@salesforce/plugin-settings": "2.4.42",
40
40
  "@salesforce/plugin-sobject": "1.4.68",
41
- "@salesforce/plugin-telemetry": "3.6.54",
41
+ "@salesforce/plugin-telemetry": "3.6.55",
42
42
  "@salesforce/plugin-templates": "56.3.60",
43
43
  "@salesforce/plugin-trust": "3.7.113",
44
44
  "@salesforce/plugin-user": "3.6.34",
@@ -4741,9 +4741,9 @@
4741
4741
  }
4742
4742
  },
4743
4743
  "node_modules/@salesforce/core": {
4744
- "version": "8.19.1",
4745
- "resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.19.1.tgz",
4746
- "integrity": "sha512-HPJxus0W4S1aoT4Qn6mG2s9Ik/mZ59rXNUFc2c+BgEAs28khbZOLR2uiZYexNpXIIZnCrSbb+v1t8IW/idIyCA==",
4744
+ "version": "8.20.0",
4745
+ "resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.20.0.tgz",
4746
+ "integrity": "sha512-WZoab9aHDbYXUh4nO+91PNLHpiPfK408qjn3l6Sbgck2d0bzYkW5wOmuv5D5yWrEybs9kGosrW/e9liKPGmgng==",
4747
4747
  "license": "BSD-3-Clause",
4748
4748
  "dependencies": {
4749
4749
  "@jsforce/jsforce-node": "^3.10.1",
@@ -4986,9 +4986,9 @@
4986
4986
  }
4987
4987
  },
4988
4988
  "node_modules/@salesforce/plugin-agent": {
4989
- "version": "1.24.3",
4990
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.24.3.tgz",
4991
- "integrity": "sha512-ck2cOVvnaUuuukajUkBvxgAHy53lYbzCxMXr6m1L99ZRYO9l44tosvUfJMkBb4xKBgDrOWtLZtZd7ddwutDPfw==",
4989
+ "version": "1.24.4",
4990
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.24.4.tgz",
4991
+ "integrity": "sha512-DrZ3bBUyOOlrrHqN8YBJlVfBW0JVDPOt5N7Zzjux5z84K8EfoO0rVAoFCfPXlNtAQwI2WaXZWEVMDTigcv0h3g==",
4992
4992
  "license": "BSD-3-Clause",
4993
4993
  "dependencies": {
4994
4994
  "@inquirer/core": "^10.1.6",
@@ -5050,15 +5050,15 @@
5050
5050
  }
5051
5051
  },
5052
5052
  "node_modules/@salesforce/plugin-auth": {
5053
- "version": "3.7.19",
5054
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-auth/-/plugin-auth-3.7.19.tgz",
5055
- "integrity": "sha512-dqXyi8SyygnAHGaHtucx8D0rNlC3IMMtLai98qh6E0XQFPCvZEiYjpYAQlO206CvVgjQ6HGtymWsT4a52eoyVA==",
5053
+ "version": "3.8.1",
5054
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-auth/-/plugin-auth-3.8.1.tgz",
5055
+ "integrity": "sha512-ltovvzozwA8cw3f+2HgahZTRyy1K++ijfv1ekiKugkaRvwFvcUtbhDhtKmeew0m74npUKcahoRsafPNeNu81XQ==",
5056
5056
  "license": "Apache-2.0",
5057
5057
  "dependencies": {
5058
5058
  "@inquirer/checkbox": "^2.5.0",
5059
5059
  "@inquirer/select": "^2.5.0",
5060
5060
  "@oclif/core": "^4",
5061
- "@salesforce/core": "^8.18.7",
5061
+ "@salesforce/core": "^8.20.0",
5062
5062
  "@salesforce/kit": "^3.2.3",
5063
5063
  "@salesforce/plugin-info": "^3.4.80",
5064
5064
  "@salesforce/sf-plugins-core": "^12.2.4",
@@ -5181,9 +5181,9 @@
5181
5181
  }
5182
5182
  },
5183
5183
  "node_modules/@salesforce/plugin-data": {
5184
- "version": "4.0.52",
5185
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-4.0.52.tgz",
5186
- "integrity": "sha512-ClcTYXITqksDhqHXuLrNa4uAPM5tV9KF2MDHyNaRvz9VaxFk+JZnUXhfsb1D2akzRMgWaKEv4rCSqNMKQOmT+Q==",
5184
+ "version": "4.0.53",
5185
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-4.0.53.tgz",
5186
+ "integrity": "sha512-fIOazIGnz5eh7kR/641ilPn/IFWGp6FyuQMq+p2CsTlU1OR2E+eXG23L53R/SOrdJvNvYKq0wr85hXivBpLhzg==",
5187
5187
  "license": "Apache-2.0",
5188
5188
  "dependencies": {
5189
5189
  "@jsforce/jsforce-node": "^3.9.4",
@@ -5578,9 +5578,9 @@
5578
5578
  }
5579
5579
  },
5580
5580
  "node_modules/@salesforce/plugin-telemetry": {
5581
- "version": "3.6.54",
5582
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-telemetry/-/plugin-telemetry-3.6.54.tgz",
5583
- "integrity": "sha512-YNSshwHXpln2impiDLd7sfjBSl1NnADSYXiafJiPjr67Zb5lbl9Pc3uFSQCCWPcwA0Fk9X8tc4kpKsJc3wbPXA==",
5581
+ "version": "3.6.55",
5582
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-telemetry/-/plugin-telemetry-3.6.55.tgz",
5583
+ "integrity": "sha512-n5mpUxtS8ti8AXsX8LNxYc4gPl5ljn9KVS72Hd8ZUAMk9W9Atw/foZu6D2hAICGBzC2qdEXlmPWPbMPzGyIO7Q==",
5584
5584
  "license": "Apache-2.0",
5585
5585
  "dependencies": {
5586
5586
  "@oclif/core": "^4.5.2",
package/oclif.lock CHANGED
@@ -2068,10 +2068,10 @@
2068
2068
  strip-ansi "6.0.1"
2069
2069
  ts-retry-promise "^0.8.1"
2070
2070
 
2071
- "@salesforce/core@^8.10.1", "@salesforce/core@^8.12.0", "@salesforce/core@^8.15.0", "@salesforce/core@^8.18.1", "@salesforce/core@^8.18.5", "@salesforce/core@^8.18.7", "@salesforce/core@^8.19.1", "@salesforce/core@^8.5.1", "@salesforce/core@^8.8.0", "@salesforce/core@^8.8.1", "@salesforce/core@^8.8.5", "@salesforce/core@^8.9.1":
2072
- version "8.19.1"
2073
- resolved "https://registry.npmjs.org/@salesforce/core/-/core-8.19.1.tgz"
2074
- integrity sha512-HPJxus0W4S1aoT4Qn6mG2s9Ik/mZ59rXNUFc2c+BgEAs28khbZOLR2uiZYexNpXIIZnCrSbb+v1t8IW/idIyCA==
2071
+ "@salesforce/core@^8.10.1", "@salesforce/core@^8.12.0", "@salesforce/core@^8.15.0", "@salesforce/core@^8.18.1", "@salesforce/core@^8.18.5", "@salesforce/core@^8.18.7", "@salesforce/core@^8.19.1", "@salesforce/core@^8.20.0", "@salesforce/core@^8.5.1", "@salesforce/core@^8.8.0", "@salesforce/core@^8.8.1", "@salesforce/core@^8.8.5", "@salesforce/core@^8.9.1":
2072
+ version "8.20.0"
2073
+ resolved "https://registry.npmjs.org/@salesforce/core/-/core-8.20.0.tgz"
2074
+ integrity sha512-WZoab9aHDbYXUh4nO+91PNLHpiPfK408qjn3l6Sbgck2d0bzYkW5wOmuv5D5yWrEybs9kGosrW/e9liKPGmgng==
2075
2075
  dependencies:
2076
2076
  "@jsforce/jsforce-node" "^3.10.1"
2077
2077
  "@salesforce/kit" "^3.2.2"
@@ -2165,10 +2165,10 @@
2165
2165
  jszip "^3.10.1"
2166
2166
  object-treeify "^2"
2167
2167
 
2168
- "@salesforce/plugin-agent@1.24.3":
2169
- version "1.24.3"
2170
- resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.24.3.tgz"
2171
- integrity sha512-ck2cOVvnaUuuukajUkBvxgAHy53lYbzCxMXr6m1L99ZRYO9l44tosvUfJMkBb4xKBgDrOWtLZtZd7ddwutDPfw==
2168
+ "@salesforce/plugin-agent@1.24.4":
2169
+ version "1.24.4"
2170
+ resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.24.4.tgz"
2171
+ integrity sha512-DrZ3bBUyOOlrrHqN8YBJlVfBW0JVDPOt5N7Zzjux5z84K8EfoO0rVAoFCfPXlNtAQwI2WaXZWEVMDTigcv0h3g==
2172
2172
  dependencies:
2173
2173
  "@inquirer/core" "^10.1.6"
2174
2174
  "@inquirer/prompts" "^7.2.0"
@@ -2214,15 +2214,15 @@
2214
2214
  got "^13.0.0"
2215
2215
  proxy-agent "^6.4.0"
2216
2216
 
2217
- "@salesforce/plugin-auth@3.7.19":
2218
- version "3.7.19"
2219
- resolved "https://registry.npmjs.org/@salesforce/plugin-auth/-/plugin-auth-3.7.19.tgz"
2220
- integrity sha512-dqXyi8SyygnAHGaHtucx8D0rNlC3IMMtLai98qh6E0XQFPCvZEiYjpYAQlO206CvVgjQ6HGtymWsT4a52eoyVA==
2217
+ "@salesforce/plugin-auth@3.8.1":
2218
+ version "3.8.1"
2219
+ resolved "https://registry.npmjs.org/@salesforce/plugin-auth/-/plugin-auth-3.8.1.tgz"
2220
+ integrity sha512-ltovvzozwA8cw3f+2HgahZTRyy1K++ijfv1ekiKugkaRvwFvcUtbhDhtKmeew0m74npUKcahoRsafPNeNu81XQ==
2221
2221
  dependencies:
2222
2222
  "@inquirer/checkbox" "^2.5.0"
2223
2223
  "@inquirer/select" "^2.5.0"
2224
2224
  "@oclif/core" "^4"
2225
- "@salesforce/core" "^8.18.7"
2225
+ "@salesforce/core" "^8.20.0"
2226
2226
  "@salesforce/kit" "^3.2.3"
2227
2227
  "@salesforce/plugin-info" "^3.4.80"
2228
2228
  "@salesforce/sf-plugins-core" "^12.2.4"
@@ -2243,10 +2243,10 @@
2243
2243
  debug "^4.4.0"
2244
2244
  handlebars "^4.7.8"
2245
2245
 
2246
- "@salesforce/plugin-data@4.0.52":
2247
- version "4.0.52"
2248
- resolved "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-4.0.52.tgz"
2249
- integrity sha512-ClcTYXITqksDhqHXuLrNa4uAPM5tV9KF2MDHyNaRvz9VaxFk+JZnUXhfsb1D2akzRMgWaKEv4rCSqNMKQOmT+Q==
2246
+ "@salesforce/plugin-data@4.0.53":
2247
+ version "4.0.53"
2248
+ resolved "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-4.0.53.tgz"
2249
+ integrity sha512-fIOazIGnz5eh7kR/641ilPn/IFWGp6FyuQMq+p2CsTlU1OR2E+eXG23L53R/SOrdJvNvYKq0wr85hXivBpLhzg==
2250
2250
  dependencies:
2251
2251
  "@jsforce/jsforce-node" "^3.9.4"
2252
2252
  "@oclif/multi-stage-output" "^0.8.20"
@@ -2410,10 +2410,10 @@
2410
2410
  fast-xml-parser "^4.5.3"
2411
2411
  js2xmlparser "^4.0.2"
2412
2412
 
2413
- "@salesforce/plugin-telemetry@3.6.54":
2414
- version "3.6.54"
2415
- resolved "https://registry.npmjs.org/@salesforce/plugin-telemetry/-/plugin-telemetry-3.6.54.tgz"
2416
- integrity sha512-YNSshwHXpln2impiDLd7sfjBSl1NnADSYXiafJiPjr67Zb5lbl9Pc3uFSQCCWPcwA0Fk9X8tc4kpKsJc3wbPXA==
2413
+ "@salesforce/plugin-telemetry@3.6.55":
2414
+ version "3.6.55"
2415
+ resolved "https://registry.npmjs.org/@salesforce/plugin-telemetry/-/plugin-telemetry-3.6.55.tgz"
2416
+ integrity sha512-n5mpUxtS8ti8AXsX8LNxYc4gPl5ljn9KVS72Hd8ZUAMk9W9Atw/foZu6D2hAICGBzC2qdEXlmPWPbMPzGyIO7Q==
2417
2417
  dependencies:
2418
2418
  "@oclif/core" "^4.5.2"
2419
2419
  "@salesforce/core" "^8.15.0"
@@ -4158,5 +4158,5 @@
4158
4158
  "requiresProject": true
4159
4159
  }
4160
4160
  },
4161
- "version": "2.103.4"
4161
+ "version": "2.103.6"
4162
4162
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
3
  "description": "The Salesforce CLI",
4
- "version": "2.103.4",
4
+ "version": "2.103.6",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "sf": "./bin/run.js",
@@ -157,11 +157,11 @@
157
157
  "@oclif/plugin-which": "3.2.39",
158
158
  "@salesforce/core": "^8.9.1",
159
159
  "@salesforce/kit": "^3.1.6",
160
- "@salesforce/plugin-agent": "1.24.3",
160
+ "@salesforce/plugin-agent": "1.24.4",
161
161
  "@salesforce/plugin-apex": "3.6.19",
162
162
  "@salesforce/plugin-api": "1.3.3",
163
- "@salesforce/plugin-auth": "3.7.19",
164
- "@salesforce/plugin-data": "4.0.52",
163
+ "@salesforce/plugin-auth": "3.8.1",
164
+ "@salesforce/plugin-data": "4.0.53",
165
165
  "@salesforce/plugin-deploy-retrieve": "3.22.41",
166
166
  "@salesforce/plugin-info": "3.4.81",
167
167
  "@salesforce/plugin-limits": "3.3.64",
@@ -171,7 +171,7 @@
171
171
  "@salesforce/plugin-schema": "3.3.78",
172
172
  "@salesforce/plugin-settings": "2.4.42",
173
173
  "@salesforce/plugin-sobject": "1.4.68",
174
- "@salesforce/plugin-telemetry": "3.6.54",
174
+ "@salesforce/plugin-telemetry": "3.6.55",
175
175
  "@salesforce/plugin-templates": "56.3.60",
176
176
  "@salesforce/plugin-trust": "3.7.113",
177
177
  "@salesforce/plugin-user": "3.6.34",