@salesforce/plugin-data 3.0.1 → 3.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -102,7 +102,8 @@ USAGE
102
102
  $ sf data create record -o <value> -s <value> -v <value> [--json] [--api-version <value>] [-t]
103
103
 
104
104
  FLAGS
105
- -o, --target-org=<value> (required) Username or alias of the target org.
105
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
106
+ configuration variable is already set.
106
107
  -s, --sobject=<value> (required) API name of the Salesforce or Tooling API object that you're inserting a record
107
108
  into.
108
109
  -t, --use-tooling-api Use Tooling API so you can insert a record in a Tooling API object.
@@ -145,7 +146,7 @@ EXAMPLES
145
146
  TracedEntityId=01p17000000R6bLAAS"
146
147
  ```
147
148
 
148
- _See code: [src/commands/data/create/record.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/create/record.ts)_
149
+ _See code: [src/commands/data/create/record.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.2/src/commands/data/create/record.ts)_
149
150
 
150
151
  ## `sf data delete bulk`
151
152
 
@@ -158,7 +159,8 @@ USAGE
158
159
  FLAGS
159
160
  -a, --async Run the command asynchronously.
160
161
  -f, --file=<value> (required) CSV file that contains the IDs of the records to update or delete.
161
- -o, --target-org=<value> (required) Username or alias of the target org.
162
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
163
+ configuration variable is already set.
162
164
  -s, --sobject=<value> (required) API name of the Salesforce object, either standard or custom, that you want to
163
165
  update or delete records from.
164
166
  -w, --wait=<value> [default: 0 minutes] Number of minutes to wait for the command to complete before
@@ -189,7 +191,7 @@ EXAMPLES
189
191
  $ sf data delete bulk --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
190
192
  ```
191
193
 
192
- _See code: [src/commands/data/delete/bulk.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/delete/bulk.ts)_
194
+ _See code: [src/commands/data/delete/bulk.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.2/src/commands/data/delete/bulk.ts)_
193
195
 
194
196
  ## `sf data delete record`
195
197
 
@@ -201,7 +203,8 @@ USAGE
201
203
 
202
204
  FLAGS
203
205
  -i, --record-id=<value> ID of the record you’re deleting.
204
- -o, --target-org=<value> (required) Username or alias of the target org.
206
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
207
+ configuration variable is already set.
205
208
  -s, --sobject=<value> (required) API name of the Salesforce or Tooling API object that you're deleting a record
206
209
  from.
207
210
  -t, --use-tooling-api Use Tooling API so you can delete a record from a Tooling API object.
@@ -247,7 +250,7 @@ EXAMPLES
247
250
  $ sf data delete record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
248
251
  ```
249
252
 
250
- _See code: [src/commands/data/delete/record.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/delete/record.ts)_
253
+ _See code: [src/commands/data/delete/record.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.2/src/commands/data/delete/record.ts)_
251
254
 
252
255
  ## `sf data delete resume`
253
256
 
@@ -284,7 +287,7 @@ EXAMPLES
284
287
  $ sf data delete resume --use-most-recent --target-org my-scratch
285
288
  ```
286
289
 
287
- _See code: [src/commands/data/delete/resume.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/delete/resume.ts)_
290
+ _See code: [src/commands/data/delete/resume.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.2/src/commands/data/delete/resume.ts)_
288
291
 
289
292
  ## `sf data export tree`
290
293
 
@@ -296,7 +299,8 @@ USAGE
296
299
 
297
300
  FLAGS
298
301
  -d, --output-dir=<value> Directory in which to generate the JSON files; default is current directory.
299
- -o, --target-org=<value> (required) Username or alias of the target org.
302
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
303
+ configuration variable is already set.
300
304
  -p, --plan Generate multiple sObject tree files and a plan definition file for aggregated import.
301
305
  -q, --query=<value> (required) SOQL query, or filepath of a file that contains the query, to retrieve records.
302
306
  -x, --prefix=<value> Prefix of generated files.
@@ -341,7 +345,7 @@ EXAMPLES
341
345
  my-scratch
342
346
  ```
343
347
 
344
- _See code: [src/commands/data/export/tree.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/export/tree.ts)_
348
+ _See code: [src/commands/data/export/tree.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.2/src/commands/data/export/tree.ts)_
345
349
 
346
350
  ## `sf data get record`
347
351
 
@@ -353,7 +357,8 @@ USAGE
353
357
 
354
358
  FLAGS
355
359
  -i, --record-id=<value> ID of the record you’re retrieving.
356
- -o, --target-org=<value> (required) Username or alias of the target org.
360
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
361
+ configuration variable is already set.
357
362
  -s, --sobject=<value> (required) API name of the Salesforce or Tooling API object that you're retrieving a record
358
363
  from.
359
364
  -t, --use-tooling-api Use Tooling API so you can retrieve a record from a Tooling API object.
@@ -402,7 +407,7 @@ EXAMPLES
402
407
  $ sf data get record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
403
408
  ```
404
409
 
405
- _See code: [src/commands/data/get/record.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/get/record.ts)_
410
+ _See code: [src/commands/data/get/record.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.2/src/commands/data/get/record.ts)_
406
411
 
407
412
  ## `sf data import tree`
408
413
 
@@ -415,7 +420,8 @@ USAGE
415
420
  FLAGS
416
421
  -f, --files=<value>... Comma-separated and in-order JSON files that contain the records, in sObject tree format,
417
422
  that you want to insert.
418
- -o, --target-org=<value> (required) Username or alias of the target org.
423
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
424
+ configuration variable is already set.
419
425
  -p, --plan=<value> Plan definition file to insert multiple data files.
420
426
  --api-version=<value> Override the api version used for api requests made by this command
421
427
  --config-help Display schema information for the --plan configuration file to stdout; if you specify this
@@ -452,7 +458,7 @@ EXAMPLES
452
458
  $ sf data import tree --plan Account-Contact-plan.json
453
459
  ```
454
460
 
455
- _See code: [src/commands/data/import/tree.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/import/tree.ts)_
461
+ _See code: [src/commands/data/import/tree.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.2/src/commands/data/import/tree.ts)_
456
462
 
457
463
  ## `sf data query`
458
464
 
@@ -466,7 +472,8 @@ USAGE
466
472
  FLAGS
467
473
  -b, --bulk Use Bulk API 2.0 to run the query.
468
474
  -f, --file=<value> File that contains the SOQL query.
469
- -o, --target-org=<value> (required) Username or alias of the target org.
475
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
476
+ configuration variable is already set.
470
477
  -q, --query=<value> SOQL query to execute.
471
478
  -r, --result-format=<option> [default: human] Format to display the results; the --json flag overrides this flag.
472
479
  <options: human|json|csv>
@@ -514,7 +521,7 @@ EXAMPLES
514
521
  $ sf data query --query "SELECT Id FROM Contact" --bulk --wait 0
515
522
  ```
516
523
 
517
- _See code: [src/commands/data/query.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/query.ts)_
524
+ _See code: [src/commands/data/query.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.2/src/commands/data/query.ts)_
518
525
 
519
526
  ## `sf data query resume`
520
527
 
@@ -550,7 +557,7 @@ EXAMPLES
550
557
  $ sf data query resume --bulk-query-id 7500x000005BdFzXXX
551
558
  ```
552
559
 
553
- _See code: [src/commands/data/query/resume.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/query/resume.ts)_
560
+ _See code: [src/commands/data/query/resume.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.2/src/commands/data/query/resume.ts)_
554
561
 
555
562
  ## `sf data resume`
556
563
 
@@ -563,7 +570,8 @@ USAGE
563
570
  FLAGS
564
571
  -b, --batch-id=<value> ID of the batch whose status you want to view; you must also specify the job ID.
565
572
  -i, --job-id=<value> (required) ID of the job whose status you want to view.
566
- -o, --target-org=<value> (required) Username or alias of the target org.
573
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
574
+ configuration variable is already set.
567
575
  --api-version=<value> Override the api version used for api requests made by this command
568
576
 
569
577
  GLOBAL FLAGS
@@ -585,7 +593,7 @@ EXAMPLES
585
593
  $ sf data resume --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA
586
594
  ```
587
595
 
588
- _See code: [src/commands/data/resume.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/resume.ts)_
596
+ _See code: [src/commands/data/resume.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.2/src/commands/data/resume.ts)_
589
597
 
590
598
  ## `sf data update record`
591
599
 
@@ -598,7 +606,8 @@ USAGE
598
606
 
599
607
  FLAGS
600
608
  -i, --record-id=<value> ID of the record you’re updating.
601
- -o, --target-org=<value> (required) Username or alias of the target org.
609
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
610
+ configuration variable is already set.
602
611
  -s, --sobject=<value> (required) API name of the Salesforce or Tooling API object that contains the record you're
603
612
  updating.
604
613
  -t, --use-tooling-api Use Tooling API so you can update a record in a Tooling API object.
@@ -645,7 +654,7 @@ EXAMPLES
645
654
  "ExpirationDate=2017-12-01T00:58:04.000+0000"
646
655
  ```
647
656
 
648
- _See code: [src/commands/data/update/record.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/update/record.ts)_
657
+ _See code: [src/commands/data/update/record.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.2/src/commands/data/update/record.ts)_
649
658
 
650
659
  ## `sf data upsert bulk`
651
660
 
@@ -660,7 +669,8 @@ FLAGS
660
669
  -a, --async Run the command asynchronously.
661
670
  -f, --file=<value> (required) CSV file that contains the IDs of the records to update or delete.
662
671
  -i, --external-id=<value> (required) Name of the external ID field, or the Id field.
663
- -o, --target-org=<value> (required) Username or alias of the target org.
672
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
673
+ configuration variable is already set.
664
674
  -s, --sobject=<value> (required) API name of the Salesforce object, either standard or custom, that you want to
665
675
  update or delete records from.
666
676
  -w, --wait=<value> [default: 0 minutes] Number of minutes to wait for the command to complete before
@@ -696,7 +706,7 @@ EXAMPLES
696
706
  my-scratch
697
707
  ```
698
708
 
699
- _See code: [src/commands/data/upsert/bulk.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/upsert/bulk.ts)_
709
+ _See code: [src/commands/data/upsert/bulk.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.2/src/commands/data/upsert/bulk.ts)_
700
710
 
701
711
  ## `sf data upsert resume`
702
712
 
@@ -733,7 +743,7 @@ EXAMPLES
733
743
  $ sf data upsert resume --use-most-recent --target-org my-scratch
734
744
  ```
735
745
 
736
- _See code: [src/commands/data/upsert/resume.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/data/upsert/resume.ts)_
746
+ _See code: [src/commands/data/upsert/resume.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.2/src/commands/data/upsert/resume.ts)_
737
747
 
738
748
  ## `sf force data bulk delete`
739
749
 
@@ -745,7 +755,8 @@ USAGE
745
755
 
746
756
  FLAGS
747
757
  -f, --file=<value> (required) CSV file that contains the IDs of the records to delete.
748
- -o, --target-org=<value> (required) Username or alias of the target org.
758
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
759
+ configuration variable is already set.
749
760
  -s, --sobject=<value> (required) API name of the Salesforce object, either standard or custom, that you want to
750
761
  delete records from.
751
762
  -w, --wait=<value> [default: 0 minutes] Number of minutes to wait for the command to complete before
@@ -777,7 +788,7 @@ EXAMPLES
777
788
  $ sf force data bulk delete --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
778
789
  ```
779
790
 
780
- _See code: [src/commands/force/data/bulk/delete.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/force/data/bulk/delete.ts)_
791
+ _See code: [src/commands/force/data/bulk/delete.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.2/src/commands/force/data/bulk/delete.ts)_
781
792
 
782
793
  ## `sf force data bulk status`
783
794
 
@@ -790,7 +801,8 @@ USAGE
790
801
  FLAGS
791
802
  -b, --batch-id=<value> ID of the batch whose status you want to view; you must also specify the job ID.
792
803
  -i, --job-id=<value> (required) ID of the job whose status you want to view.
793
- -o, --target-org=<value> (required) Username or alias of the target org.
804
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
805
+ configuration variable is already set.
794
806
  --api-version=<value> Override the api version used for api requests made by this command
795
807
 
796
808
  GLOBAL FLAGS
@@ -812,7 +824,7 @@ EXAMPLES
812
824
  $ sf force data bulk status --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA --target-org my-scratch
813
825
  ```
814
826
 
815
- _See code: [src/commands/force/data/bulk/status.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/force/data/bulk/status.ts)_
827
+ _See code: [src/commands/force/data/bulk/status.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.2/src/commands/force/data/bulk/status.ts)_
816
828
 
817
829
  ## `sf force data bulk upsert`
818
830
 
@@ -826,7 +838,8 @@ USAGE
826
838
  FLAGS
827
839
  -f, --file=<value> (required) CSV file that contains the records to upsert.
828
840
  -i, --external-id=<value> (required) Name of the external ID field, or the Id field.
829
- -o, --target-org=<value> (required) Username or alias of the target org.
841
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
842
+ configuration variable is already set.
830
843
  -r, --serial Run batches in serial mode.
831
844
  -s, --sobject=<value> (required) API name of the Salesforce object, either standard or custom, that you want to
832
845
  upsert records to.
@@ -868,6 +881,6 @@ EXAMPLES
868
881
  --target-org my-scratch
869
882
  ```
870
883
 
871
- _See code: [src/commands/force/data/bulk/upsert.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.1/src/commands/force/data/bulk/upsert.ts)_
884
+ _See code: [src/commands/force/data/bulk/upsert.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.2/src/commands/force/data/bulk/upsert.ts)_
872
885
 
873
886
  <!-- commandsstop -->
package/oclif.lock CHANGED
@@ -768,7 +768,7 @@
768
768
  wordwrap "^1.0.0"
769
769
  wrap-ansi "^7.0.0"
770
770
 
771
- "@oclif/core@^3.0.4", "@oclif/core@^3.11.0", "@oclif/core@^3.3.1", "@oclif/core@^3.5.0":
771
+ "@oclif/core@^3.0.4", "@oclif/core@^3.10.8", "@oclif/core@^3.11.0", "@oclif/core@^3.3.1":
772
772
  version "3.11.0"
773
773
  resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.11.0.tgz#dadfac39238af3b717e33b910dde1f1f0fd2105e"
774
774
  integrity sha512-9A2LhDQATf1vrRqPoO0gGuBrey0jt3kDafC+eazxTNWV2EvlEpgY2587iyrxPK/fL2xg7f+0mtxYaSHdO2k8eg==
@@ -800,12 +800,12 @@
800
800
  wordwrap "^1.0.0"
801
801
  wrap-ansi "^7.0.0"
802
802
 
803
- "@oclif/plugin-command-snapshot@^5.0.1":
804
- version "5.0.1"
805
- resolved "https://registry.yarnpkg.com/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.0.1.tgz#6c21b2ef8007cda21f0caacd3462d5eedd622f32"
806
- integrity sha512-pUwr5jJ1Jq2yojjRYmzjZouVw4UIfu8IZAXaaWXUl21dEg+8UY1gdIlnQgGdSJo9tkEVz3sUCo6uLVCK6tClAA==
803
+ "@oclif/plugin-command-snapshot@^5.0.2":
804
+ version "5.0.2"
805
+ resolved "https://registry.yarnpkg.com/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.0.2.tgz#41e88d245e1ffb1822b4cb127df39f61672cf2b1"
806
+ integrity sha512-4Aun0P/K9uVC5JLmG968OJhDT5HMiOs4mmw7A2cWmf1Paw8zp4xZ40PvYOOKN86gaKukKFDTQ1sDuLBzqNhZow==
807
807
  dependencies:
808
- "@oclif/core" "^3.5.0"
808
+ "@oclif/core" "^3.10.8"
809
809
  "@types/lodash.difference" "^4.5.8"
810
810
  chalk "^5.3.0"
811
811
  just-diff "^5.2.0"
@@ -987,7 +987,7 @@
987
987
  semver "^7.5.4"
988
988
  ts-retry-promise "^0.7.1"
989
989
 
990
- "@salesforce/core@^6.1.0", "@salesforce/core@^6.1.3":
990
+ "@salesforce/core@^6.1.3":
991
991
  version "6.1.3"
992
992
  resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-6.1.3.tgz#32e71846cad033e0d2b369ecf0fafb4f76d63ad7"
993
993
  integrity sha512-M7EQ4+LSXU4ZqD4R5ttY4RqSaYNaNBGDG0KC51IdDfpGtL4kJXeQHdr5HfMfgyCyYNM9LqqfBS7zQTBY1rf+Yg==
@@ -1016,10 +1016,10 @@
1016
1016
  resolved "https://registry.yarnpkg.com/@salesforce/dev-config/-/dev-config-4.1.0.tgz#e529576466d074e7a5f1441236510fef123da01e"
1017
1017
  integrity sha512-2iDDepiIwjXHS5IVY7pwv8jMo4xWosJ7p/UTj+lllpB/gnJiYLhjJPE4Z3FCGFKyvfg5jGaimCd8Ca6bLGsCQA==
1018
1018
 
1019
- "@salesforce/dev-scripts@^7.1.0":
1020
- version "7.1.0"
1021
- resolved "https://registry.yarnpkg.com/@salesforce/dev-scripts/-/dev-scripts-7.1.0.tgz#123708d4f494d8b95464b90c28993141986e84bc"
1022
- integrity sha512-79x6QgENORLyCrr9b4MO2pPq8N7d9ILj83vOtAp5NLreAfjZN/c5TEEHuIZKZ3UaO+hkwbtzv3Qs6CyNxiasWA==
1019
+ "@salesforce/dev-scripts@^7.1.1":
1020
+ version "7.1.1"
1021
+ resolved "https://registry.yarnpkg.com/@salesforce/dev-scripts/-/dev-scripts-7.1.1.tgz#549b58fb7e8c2410ce594c46f780a0907618f19f"
1022
+ integrity sha512-6SL+QDOMZCnmU4Lu2ZCjqsMRcHw96mnjUOPE7b2HcfmfPo2a/hAYUtv8v7UsZ/+3UPbSf+XsLJfUsF15QIUWrg==
1023
1023
  dependencies:
1024
1024
  "@commitlint/cli" "^17.1.2"
1025
1025
  "@commitlint/config-conventional" "^17.1.0"
@@ -1091,13 +1091,13 @@
1091
1091
  chalk "^4"
1092
1092
  inquirer "^8.2.5"
1093
1093
 
1094
- "@salesforce/sf-plugins-core@^5.0.1":
1095
- version "5.0.1"
1096
- resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-5.0.1.tgz#16b085eda99e28f2607957954d6ac957a8d0a0eb"
1097
- integrity sha512-gKUhAP9DDUlB4bjr0a6bsWiM16hn/n1cW8BglhYHAow8UJ0OQBxx+dfvAO0ftXmfzg82IZdMViiDmQXt0Z+e6A==
1094
+ "@salesforce/sf-plugins-core@^5.0.3":
1095
+ version "5.0.3"
1096
+ resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-5.0.3.tgz#a771dc887c0a13ac23a5b1c16a6965791914f3aa"
1097
+ integrity sha512-D+RCUzrYIWpJakNfxtHXJd6LZr6bK4gA4e7jLPR1G1FmDFss13PT7hOdFRxmAqTPbcp1jf65vwYZzu5nbqzmvQ==
1098
1098
  dependencies:
1099
1099
  "@oclif/core" "^3.11.0"
1100
- "@salesforce/core" "^6.1.0"
1100
+ "@salesforce/core" "^6.1.3"
1101
1101
  "@salesforce/kit" "^3.0.15"
1102
1102
  "@salesforce/ts-types" "^2.0.9"
1103
1103
  "@types/inquirer" "^8.2.3"
@@ -31,7 +31,7 @@
31
31
  "name": "target-org",
32
32
  "noCacheDefault": true,
33
33
  "required": true,
34
- "summary": "Username or alias of the target org.",
34
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
35
35
  "hasDynamicHelp": true,
36
36
  "multiple": false,
37
37
  "type": "option"
@@ -238,7 +238,7 @@
238
238
  "name": "target-org",
239
239
  "noCacheDefault": true,
240
240
  "required": true,
241
- "summary": "Username or alias of the target org.",
241
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
242
242
  "hasDynamicHelp": true,
243
243
  "multiple": false,
244
244
  "type": "option"
@@ -340,7 +340,7 @@
340
340
  "name": "target-org",
341
341
  "noCacheDefault": true,
342
342
  "required": true,
343
- "summary": "Username or alias of the target org.",
343
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
344
344
  "hasDynamicHelp": true,
345
345
  "multiple": false,
346
346
  "type": "option"
@@ -483,7 +483,7 @@
483
483
  "name": "target-org",
484
484
  "noCacheDefault": true,
485
485
  "required": true,
486
- "summary": "Username or alias of the target org.",
486
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
487
487
  "hasDynamicHelp": true,
488
488
  "multiple": false,
489
489
  "type": "option"
@@ -757,7 +757,7 @@
757
757
  "name": "target-org",
758
758
  "noCacheDefault": true,
759
759
  "required": true,
760
- "summary": "Username or alias of the target org.",
760
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
761
761
  "hasDynamicHelp": true,
762
762
  "multiple": false,
763
763
  "type": "option"
@@ -911,7 +911,7 @@
911
911
  "name": "target-org",
912
912
  "noCacheDefault": true,
913
913
  "required": true,
914
- "summary": "Username or alias of the target org.",
914
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
915
915
  "hasDynamicHelp": true,
916
916
  "multiple": false,
917
917
  "type": "option"
@@ -1058,7 +1058,7 @@
1058
1058
  "name": "target-org",
1059
1059
  "noCacheDefault": true,
1060
1060
  "required": true,
1061
- "summary": "Username or alias of the target org.",
1061
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
1062
1062
  "hasDynamicHelp": true,
1063
1063
  "multiple": false,
1064
1064
  "type": "option"
@@ -1222,7 +1222,7 @@
1222
1222
  "name": "target-org",
1223
1223
  "noCacheDefault": true,
1224
1224
  "required": true,
1225
- "summary": "Username or alias of the target org.",
1225
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
1226
1226
  "hasDynamicHelp": true,
1227
1227
  "multiple": false,
1228
1228
  "type": "option"
@@ -1622,7 +1622,7 @@
1622
1622
  "name": "target-org",
1623
1623
  "noCacheDefault": true,
1624
1624
  "required": true,
1625
- "summary": "Username or alias of the target org.",
1625
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
1626
1626
  "hasDynamicHelp": true,
1627
1627
  "multiple": false,
1628
1628
  "type": "option"
@@ -1791,7 +1791,7 @@
1791
1791
  "name": "target-org",
1792
1792
  "noCacheDefault": true,
1793
1793
  "required": true,
1794
- "summary": "Username or alias of the target org.",
1794
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
1795
1795
  "hasDynamicHelp": true,
1796
1796
  "multiple": false,
1797
1797
  "type": "option"
@@ -2050,7 +2050,7 @@
2050
2050
  "name": "target-org",
2051
2051
  "noCacheDefault": true,
2052
2052
  "required": true,
2053
- "summary": "Username or alias of the target org.",
2053
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
2054
2054
  "hasDynamicHelp": true,
2055
2055
  "multiple": false,
2056
2056
  "type": "option"
@@ -2188,7 +2188,7 @@
2188
2188
  "name": "target-org",
2189
2189
  "noCacheDefault": true,
2190
2190
  "required": true,
2191
- "summary": "Username or alias of the target org.",
2191
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
2192
2192
  "hasDynamicHelp": true,
2193
2193
  "multiple": false,
2194
2194
  "type": "option"
@@ -2313,7 +2313,7 @@
2313
2313
  "name": "target-org",
2314
2314
  "noCacheDefault": true,
2315
2315
  "required": true,
2316
- "summary": "Username or alias of the target org.",
2316
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
2317
2317
  "hasDynamicHelp": true,
2318
2318
  "multiple": false,
2319
2319
  "type": "option"
@@ -2446,5 +2446,5 @@
2446
2446
  ]
2447
2447
  }
2448
2448
  },
2449
- "version": "3.0.1"
2449
+ "version": "3.0.2"
2450
2450
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-data",
3
- "version": "3.0.1",
3
+ "version": "3.0.2",
4
4
  "description": "Plugin for salesforce data commands",
5
5
  "author": "Salesforce",
6
6
  "homepage": "https://github.com/salesforcecli/plugin-data",
@@ -111,7 +111,7 @@
111
111
  "@oclif/core": "^3.11.0",
112
112
  "@salesforce/core": "^6.1.3",
113
113
  "@salesforce/kit": "^3.0.15",
114
- "@salesforce/sf-plugins-core": "^5.0.1",
114
+ "@salesforce/sf-plugins-core": "^5.0.3",
115
115
  "@salesforce/ts-types": "^2.0.9",
116
116
  "chalk": "^5.3.0",
117
117
  "csv-parse": "^4.16.3",
@@ -119,9 +119,9 @@
119
119
  "jsforce": "^2.0.0-beta.28"
120
120
  },
121
121
  "devDependencies": {
122
- "@oclif/plugin-command-snapshot": "^5.0.1",
122
+ "@oclif/plugin-command-snapshot": "^5.0.2",
123
123
  "@salesforce/cli-plugins-testkit": "^5.0.4",
124
- "@salesforce/dev-scripts": "^7.1.0",
124
+ "@salesforce/dev-scripts": "^7.1.1",
125
125
  "@salesforce/plugin-command-reference": "^3.0.46",
126
126
  "@types/chai-as-promised": "^7.1.8",
127
127
  "chai-as-promised": "^7.1.1",
@@ -239,7 +239,7 @@
239
239
  "exports": "./lib/index.js",
240
240
  "type": "module",
241
241
  "sfdx": {
242
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/3.0.1.crt",
243
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/3.0.1.sig"
242
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/3.0.2.crt",
243
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/3.0.2.sig"
244
244
  }
245
245
  }