@salesforce/plugin-data 3.0.1 → 3.0.3

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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/src/commands/force/data/bulk/upsert.ts)_
872
885
 
873
886
  <!-- commandsstop -->
package/oclif.lock CHANGED
@@ -768,10 +768,10 @@
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":
772
- version "3.11.0"
773
- resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.11.0.tgz#dadfac39238af3b717e33b910dde1f1f0fd2105e"
774
- integrity sha512-9A2LhDQATf1vrRqPoO0gGuBrey0jt3kDafC+eazxTNWV2EvlEpgY2587iyrxPK/fL2xg7f+0mtxYaSHdO2k8eg==
771
+ "@oclif/core@^3.0.0", "@oclif/core@^3.0.4", "@oclif/core@^3.10.8", "@oclif/core@^3.11.0", "@oclif/core@^3.13.1", "@oclif/core@^3.3.1":
772
+ version "3.13.1"
773
+ resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.13.1.tgz#dbd5e604ec78a716a33bfa6fec6c988a507b7f38"
774
+ integrity sha512-bpnF6BL+j7D0k0T+dZ4g7LwcZzctCoKjIYm8zcSNgrItS2pgIlvsRf8SdkGNu6djzRD7vzM657ZO9fWU6goz0g==
775
775
  dependencies:
776
776
  ansi-escapes "^4.3.2"
777
777
  ansi-styles "^4.3.0"
@@ -779,6 +779,7 @@
779
779
  chalk "^4.1.2"
780
780
  clean-stack "^3.0.1"
781
781
  cli-progress "^3.12.0"
782
+ color "^4.2.3"
782
783
  debug "^4.3.4"
783
784
  ejs "^3.1.9"
784
785
  get-package-type "^0.1.0"
@@ -800,12 +801,12 @@
800
801
  wordwrap "^1.0.0"
801
802
  wrap-ansi "^7.0.0"
802
803
 
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==
804
+ "@oclif/plugin-command-snapshot@^5.0.2":
805
+ version "5.0.2"
806
+ resolved "https://registry.yarnpkg.com/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.0.2.tgz#41e88d245e1ffb1822b4cb127df39f61672cf2b1"
807
+ integrity sha512-4Aun0P/K9uVC5JLmG968OJhDT5HMiOs4mmw7A2cWmf1Paw8zp4xZ40PvYOOKN86gaKukKFDTQ1sDuLBzqNhZow==
807
808
  dependencies:
808
- "@oclif/core" "^3.5.0"
809
+ "@oclif/core" "^3.10.8"
809
810
  "@types/lodash.difference" "^4.5.8"
810
811
  chalk "^5.3.0"
811
812
  just-diff "^5.2.0"
@@ -963,7 +964,7 @@
963
964
  strip-ansi "6.0.1"
964
965
  ts-retry-promise "^0.7.1"
965
966
 
966
- "@salesforce/core@^5.3.1", "@salesforce/core@^5.3.17", "@salesforce/core@^5.3.20":
967
+ "@salesforce/core@^5.3.20":
967
968
  version "5.3.20"
968
969
  resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-5.3.20.tgz#4e934d4551bb70423cb1c4115615bc41cffca41e"
969
970
  integrity sha512-y+O6O2c8OYFDrAy2qsG+pAcNxoyL14nmBXcBRRcYA7Huj8ikK+aLJK84PuVAYdQz+hNwImQF+69IWtDkpK4Irg==
@@ -987,7 +988,31 @@
987
988
  semver "^7.5.4"
988
989
  ts-retry-promise "^0.7.1"
989
990
 
990
- "@salesforce/core@^6.1.0", "@salesforce/core@^6.1.3":
991
+ "@salesforce/core@^6.1.0":
992
+ version "6.2.2"
993
+ resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-6.2.2.tgz#c390c7c407e8916ad85a3e300d9d9e4fecfba207"
994
+ integrity sha512-R2ptk/+KSWDJOqdInxfzPTLF3V//vFtD4vQcjWIK9NaGCCq4ZwiF2gMpkBcKgDQneLUmva2NcmnzF3c51zQp5A==
995
+ dependencies:
996
+ "@salesforce/kit" "^3.0.15"
997
+ "@salesforce/schemas" "^1.6.1"
998
+ "@salesforce/ts-types" "^2.0.9"
999
+ "@types/semver" "^7.5.6"
1000
+ ajv "^8.12.0"
1001
+ change-case "^4.1.2"
1002
+ faye "^1.4.0"
1003
+ form-data "^4.0.0"
1004
+ js2xmlparser "^4.0.1"
1005
+ jsforce "^2.0.0-beta.29"
1006
+ jsonwebtoken "9.0.2"
1007
+ jszip "3.10.1"
1008
+ pino "^8.16.2"
1009
+ pino-abstract-transport "^1.1.0"
1010
+ pino-pretty "^10.2.3"
1011
+ proper-lockfile "^4.1.2"
1012
+ semver "^7.5.4"
1013
+ ts-retry-promise "^0.7.1"
1014
+
1015
+ "@salesforce/core@^6.1.3":
991
1016
  version "6.1.3"
992
1017
  resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-6.1.3.tgz#32e71846cad033e0d2b369ecf0fafb4f76d63ad7"
993
1018
  integrity sha512-M7EQ4+LSXU4ZqD4R5ttY4RqSaYNaNBGDG0KC51IdDfpGtL4kJXeQHdr5HfMfgyCyYNM9LqqfBS7zQTBY1rf+Yg==
@@ -1016,10 +1041,10 @@
1016
1041
  resolved "https://registry.yarnpkg.com/@salesforce/dev-config/-/dev-config-4.1.0.tgz#e529576466d074e7a5f1441236510fef123da01e"
1017
1042
  integrity sha512-2iDDepiIwjXHS5IVY7pwv8jMo4xWosJ7p/UTj+lllpB/gnJiYLhjJPE4Z3FCGFKyvfg5jGaimCd8Ca6bLGsCQA==
1018
1043
 
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==
1044
+ "@salesforce/dev-scripts@^7.1.1":
1045
+ version "7.1.1"
1046
+ resolved "https://registry.yarnpkg.com/@salesforce/dev-scripts/-/dev-scripts-7.1.1.tgz#549b58fb7e8c2410ce594c46f780a0907618f19f"
1047
+ integrity sha512-6SL+QDOMZCnmU4Lu2ZCjqsMRcHw96mnjUOPE7b2HcfmfPo2a/hAYUtv8v7UsZ/+3UPbSf+XsLJfUsF15QIUWrg==
1023
1048
  dependencies:
1024
1049
  "@commitlint/cli" "^17.1.2"
1025
1050
  "@commitlint/config-conventional" "^17.1.0"
@@ -1047,7 +1072,7 @@
1047
1072
  typescript "^4.9.5"
1048
1073
  wireit "^0.14.1"
1049
1074
 
1050
- "@salesforce/kit@^3.0.13", "@salesforce/kit@^3.0.15":
1075
+ "@salesforce/kit@^3.0.15":
1051
1076
  version "3.0.15"
1052
1077
  resolved "https://registry.yarnpkg.com/@salesforce/kit/-/kit-3.0.15.tgz#713df3f5767f874c70a2e731c7cb5ba677989559"
1053
1078
  integrity sha512-XkA8jsuLvVnyP460dAbU3pBFP2IkmmmsVxMQVifcKKbNWaIBbZBzAfj+vdaQfnvZyflLhsrFT3q2xkb0vHouPg==
@@ -1055,15 +1080,15 @@
1055
1080
  "@salesforce/ts-types" "^2.0.9"
1056
1081
  tslib "^2.6.2"
1057
1082
 
1058
- "@salesforce/plugin-command-reference@^3.0.46":
1059
- version "3.0.46"
1060
- resolved "https://registry.yarnpkg.com/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.46.tgz#8ade210de4c235fa8daa9b59272481bea61bcd54"
1061
- integrity sha512-tUe8pAarH/km7wbRDpKgWc3qCzh52q5FmJpnJbs7wwWnvM5X4MzdpZ/sF/8MT3cS6FkZy//ls796QIC0vvOYsA==
1083
+ "@salesforce/plugin-command-reference@^3.0.47":
1084
+ version "3.0.47"
1085
+ resolved "https://registry.yarnpkg.com/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.47.tgz#477c3384402ef08458f4259b100447e136384e85"
1086
+ integrity sha512-A3syaw8bf8Bovne6WDiYOcOeLFKTqf1T+MXlxXPwDkDM0X5squkwVvE6wun7S54Q3n4gCSlCPiAMbJfpF8wwaw==
1062
1087
  dependencies:
1063
- "@oclif/core" "^2.15.0"
1064
- "@salesforce/core" "^5.3.17"
1088
+ "@oclif/core" "^3.0.0"
1089
+ "@salesforce/core" "^5.3.20"
1065
1090
  "@salesforce/kit" "^3.0.15"
1066
- "@salesforce/sf-plugins-core" "^3.1.28"
1091
+ "@salesforce/sf-plugins-core" "^4"
1067
1092
  "@salesforce/ts-types" "^2.0.9"
1068
1093
  chalk "^4"
1069
1094
  handlebars "^4.7.8"
@@ -1079,32 +1104,33 @@
1079
1104
  resolved "https://registry.yarnpkg.com/@salesforce/schemas/-/schemas-1.6.1.tgz#7d1c071e1e509ca9d2d8a6e48ac7447dd67a534d"
1080
1105
  integrity sha512-eVy947ZMxCJReKJdgfddUIsBIbPTa/i8RwQGwxq4/ss38H5sLOAeSTaun9V7HpJ1hkpDznWKfgzYvjsst9K6ig==
1081
1106
 
1082
- "@salesforce/sf-plugins-core@^3.1.28":
1083
- version "3.1.28"
1084
- resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-3.1.28.tgz#7714c5b1ce26052bb5cbc524c5990bc52eb601cd"
1085
- integrity sha512-Z1fVS/pqLCX/3ESrjvtzyuvDFwXu8qxjqs5Gana0J7RKkhDL0f7w+pz3DR1/YfQPeHK8rk9pFDOKB3tOnXf9Lw==
1107
+ "@salesforce/sf-plugins-core@^4":
1108
+ version "4.1.3"
1109
+ resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-4.1.3.tgz#06fa96fec1903fe945def9303eb8c43058625a3d"
1110
+ integrity sha512-cia0FRknxeQU0IK5gOxlP2KGxqc5zxwSmHLKJsd5+sUFWpn3Hnun/3rDO94UXIDjuGKV7HK08hQNBKkSLeYaRA==
1086
1111
  dependencies:
1087
- "@oclif/core" "^2.15.0"
1088
- "@salesforce/core" "^5.3.1"
1089
- "@salesforce/kit" "^3.0.13"
1090
- "@salesforce/ts-types" "^2.0.7"
1112
+ "@oclif/core" "^3.11.0"
1113
+ "@salesforce/core" "^6.1.0"
1114
+ "@salesforce/kit" "^3.0.15"
1115
+ "@salesforce/ts-types" "^2.0.9"
1116
+ "@types/inquirer" "^8.2.3"
1091
1117
  chalk "^4"
1092
1118
  inquirer "^8.2.5"
1093
1119
 
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==
1120
+ "@salesforce/sf-plugins-core@^5.0.3":
1121
+ version "5.0.3"
1122
+ resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-5.0.3.tgz#a771dc887c0a13ac23a5b1c16a6965791914f3aa"
1123
+ integrity sha512-D+RCUzrYIWpJakNfxtHXJd6LZr6bK4gA4e7jLPR1G1FmDFss13PT7hOdFRxmAqTPbcp1jf65vwYZzu5nbqzmvQ==
1098
1124
  dependencies:
1099
1125
  "@oclif/core" "^3.11.0"
1100
- "@salesforce/core" "^6.1.0"
1126
+ "@salesforce/core" "^6.1.3"
1101
1127
  "@salesforce/kit" "^3.0.15"
1102
1128
  "@salesforce/ts-types" "^2.0.9"
1103
1129
  "@types/inquirer" "^8.2.3"
1104
1130
  chalk "^4"
1105
1131
  inquirer "^8.2.5"
1106
1132
 
1107
- "@salesforce/ts-types@^2.0.6", "@salesforce/ts-types@^2.0.7", "@salesforce/ts-types@^2.0.9":
1133
+ "@salesforce/ts-types@^2.0.6", "@salesforce/ts-types@^2.0.9":
1108
1134
  version "2.0.9"
1109
1135
  resolved "https://registry.yarnpkg.com/@salesforce/ts-types/-/ts-types-2.0.9.tgz#66bff7b41720065d6b01631b6f6a3ccca02857c5"
1110
1136
  integrity sha512-boUD9jw5vQpTCPCCmK/NFTWjSuuW+lsaxOynkyNXLW+zxOc4GDjhtKc4j0vWZJQvolpafbyS8ZLFHZJvs12gYA==
@@ -1378,6 +1404,11 @@
1378
1404
  resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.4.tgz#0a41252ad431c473158b22f9bfb9a63df7541cff"
1379
1405
  integrity sha512-MMzuxN3GdFwskAnb6fz0orFvhfqi752yjaXylr0Rp4oDg5H0Zn1IuyRhDVvYOwAXoJirx2xuS16I3WjxnAIHiQ==
1380
1406
 
1407
+ "@types/semver@^7.5.6":
1408
+ version "7.5.6"
1409
+ resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.6.tgz#c65b2bfce1bec346582c07724e3f8c1017a20339"
1410
+ integrity sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==
1411
+
1381
1412
  "@types/shelljs@^0.8.15":
1382
1413
  version "0.8.15"
1383
1414
  resolved "https://registry.yarnpkg.com/@types/shelljs/-/shelljs-0.8.15.tgz#22c6ab9dfe05cec57d8e6cb1a95ea173aee9fcac"
@@ -2429,16 +2460,32 @@ color-name@1.1.3:
2429
2460
  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
2430
2461
  integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
2431
2462
 
2432
- color-name@~1.1.4:
2463
+ color-name@^1.0.0, color-name@~1.1.4:
2433
2464
  version "1.1.4"
2434
2465
  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
2435
2466
  integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
2436
2467
 
2468
+ color-string@^1.9.0:
2469
+ version "1.9.1"
2470
+ resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.9.1.tgz#4467f9146f036f855b764dfb5bf8582bf342c7a4"
2471
+ integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==
2472
+ dependencies:
2473
+ color-name "^1.0.0"
2474
+ simple-swizzle "^0.2.2"
2475
+
2437
2476
  color-support@^1.1.2, color-support@^1.1.3:
2438
2477
  version "1.1.3"
2439
2478
  resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2"
2440
2479
  integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==
2441
2480
 
2481
+ color@^4.2.3:
2482
+ version "4.2.3"
2483
+ resolved "https://registry.yarnpkg.com/color/-/color-4.2.3.tgz#d781ecb5e57224ee43ea9627560107c0e0c6463a"
2484
+ integrity sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==
2485
+ dependencies:
2486
+ color-convert "^2.0.1"
2487
+ color-string "^1.9.0"
2488
+
2442
2489
  colorette@^2.0.7:
2443
2490
  version "2.0.20"
2444
2491
  resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a"
@@ -4155,6 +4202,11 @@ is-arrayish@^0.2.1:
4155
4202
  resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
4156
4203
  integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
4157
4204
 
4205
+ is-arrayish@^0.3.1:
4206
+ version "0.3.2"
4207
+ resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03"
4208
+ integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==
4209
+
4158
4210
  is-bigint@^1.0.1:
4159
4211
  version "1.0.4"
4160
4212
  resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
@@ -4570,6 +4622,32 @@ jsforce@^2.0.0-beta.28:
4570
4622
  strip-ansi "^6.0.0"
4571
4623
  xml2js "^0.5.0"
4572
4624
 
4625
+ jsforce@^2.0.0-beta.29:
4626
+ version "2.0.0-beta.29"
4627
+ resolved "https://registry.yarnpkg.com/jsforce/-/jsforce-2.0.0-beta.29.tgz#0b59b026eb0b90dfb199a53656af32a4c8acc48f"
4628
+ integrity sha512-Fq7xjOYOikyozZZDQNTfzsAdhcO0rUXwtavsjM+cCYUFiCMVOJJavgco303zOsJk3v8sdAYnGgHyKckLIhnyAg==
4629
+ dependencies:
4630
+ "@babel/runtime" "^7.12.5"
4631
+ "@babel/runtime-corejs3" "^7.12.5"
4632
+ "@types/node" "^12.19.9"
4633
+ abort-controller "^3.0.0"
4634
+ base64url "^3.0.1"
4635
+ commander "^4.0.1"
4636
+ core-js "^3.6.4"
4637
+ csv-parse "^4.8.2"
4638
+ csv-stringify "^5.3.4"
4639
+ faye "^1.4.0"
4640
+ form-data "^4.0.0"
4641
+ fs-extra "^8.1.0"
4642
+ https-proxy-agent "^5.0.0"
4643
+ inquirer "^7.0.0"
4644
+ multistream "^3.1.0"
4645
+ node-fetch "^2.6.1"
4646
+ open "^7.0.0"
4647
+ regenerator-runtime "^0.13.3"
4648
+ strip-ansi "^6.0.0"
4649
+ xml2js "^0.5.0"
4650
+
4573
4651
  json-buffer@3.0.1:
4574
4652
  version "3.0.1"
4575
4653
  resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13"
@@ -5766,10 +5844,10 @@ object.values@^1.1.7:
5766
5844
  define-properties "^1.2.0"
5767
5845
  es-abstract "^1.22.1"
5768
5846
 
5769
- oclif@^4.0.3:
5770
- version "4.0.3"
5771
- resolved "https://registry.yarnpkg.com/oclif/-/oclif-4.0.3.tgz#2ff8fab10c29b2cd0bbf8e9c87640a64151b65ff"
5772
- integrity sha512-Bq7t1bJvAKYwW3DKQIzok3jkXv7yUIMneoSec1qUr9wfSqzRTZQB0UUDovwlT/L+3TBMVoRyw1WeX+YDvfRJNA==
5847
+ oclif@^4.0.4:
5848
+ version "4.0.4"
5849
+ resolved "https://registry.yarnpkg.com/oclif/-/oclif-4.0.4.tgz#ee05d5339fa1aad8fb6a303e53f4618feba86a5e"
5850
+ integrity sha512-2rebdu1Ow9/TRolMI7s1IsJmKH7RpwlBzIKZFtE8eFiDmGenX6GEsWaxSEtgMXmzCSSQ1DbCRDv0hwcwVGIJuA==
5773
5851
  dependencies:
5774
5852
  "@oclif/core" "^3.0.4"
5775
5853
  "@oclif/plugin-help" "^5.2.14"
@@ -6157,7 +6235,7 @@ pino-std-serializers@^6.0.0:
6157
6235
  resolved "https://registry.yarnpkg.com/pino-std-serializers/-/pino-std-serializers-6.2.2.tgz#d9a9b5f2b9a402486a5fc4db0a737570a860aab3"
6158
6236
  integrity sha512-cHjPPsE+vhj/tnhCy/wiMh3M3z3h/j15zHQX+S9GkTBgqJuTuJzYJ4gUyACLhDaJ7kk9ba9iRDmbH2tJU03OiA==
6159
6237
 
6160
- pino@^8.16.0, pino@^8.16.1:
6238
+ pino@^8.16.0, pino@^8.16.1, pino@^8.16.2:
6161
6239
  version "8.16.2"
6162
6240
  resolved "https://registry.yarnpkg.com/pino/-/pino-8.16.2.tgz#7a906f2d9a8c5b4c57412c9ca95d6820bd2090cd"
6163
6241
  integrity sha512-2advCDGVEvkKu9TTVSa/kWW7Z3htI/sBKEZpqiHk6ive0i/7f5b1rsU8jn0aimxqfnSz5bj/nOYkwhBUn5xxvg==
@@ -6831,6 +6909,13 @@ sigstore@^1.3.0:
6831
6909
  "@sigstore/tuf" "^1.0.3"
6832
6910
  make-fetch-happen "^11.0.1"
6833
6911
 
6912
+ simple-swizzle@^0.2.2:
6913
+ version "0.2.2"
6914
+ resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a"
6915
+ integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==
6916
+ dependencies:
6917
+ is-arrayish "^0.3.1"
6918
+
6834
6919
  sinon@10.0.0:
6835
6920
  version "10.0.0"
6836
6921
  resolved "https://registry.yarnpkg.com/sinon/-/sinon-10.0.0.tgz#52279f97e35646ff73d23207d0307977c9b81430"
@@ -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"
@@ -314,6 +314,160 @@
314
314
  "resume:data"
315
315
  ]
316
316
  },
317
+ "data:create:record": {
318
+ "aliases": [
319
+ "force:data:record:create"
320
+ ],
321
+ "args": {},
322
+ "deprecateAliases": true,
323
+ "description": "You must specify a value for all required fields of the object.\n\nWhen specifying fields, use the format <fieldName>=<value>. Enclose all field-value pairs in one set of double quotation marks, delimited by spaces. Enclose values that contain spaces in single quotes.\n\nThis command inserts a record into Salesforce objects by default. Use the --use-tooling-api flag to insert into a Tooling API object.",
324
+ "examples": [
325
+ "Insert a record into the Account object of your default org; only the required Name field has a value:\n<%= config.bin %> <%= command.id %> --sobject Account --values \"Name=Acme\"",
326
+ "Insert an Account record with values for two fields, one value contains a space; the command uses the org with alias \"my-scratch\":\n<%= config.bin %> <%= command.id %> --sobject Account --values \"Name='Universal Containers' Website=www.example.com\" --target-org my-scratch",
327
+ "Insert a record into the Tooling API object TraceFlag:\n<%= config.bin %> <%= command.id %> --use-tooling-api --sobject TraceFlag --values \"DebugLevelId=7dl170000008U36AAE StartDate=2022-12-15T00:26:04.000+0000 ExpirationDate=2022-12-15T00:56:04.000+0000 LogType=CLASS_TRACING TracedEntityId=01p17000000R6bLAAS\""
328
+ ],
329
+ "flags": {
330
+ "json": {
331
+ "description": "Format output as json.",
332
+ "helpGroup": "GLOBAL",
333
+ "name": "json",
334
+ "allowNo": false,
335
+ "type": "boolean"
336
+ },
337
+ "target-org": {
338
+ "aliases": [
339
+ "targetusername",
340
+ "u"
341
+ ],
342
+ "char": "o",
343
+ "deprecateAliases": true,
344
+ "name": "target-org",
345
+ "noCacheDefault": true,
346
+ "required": true,
347
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
348
+ "hasDynamicHelp": true,
349
+ "multiple": false,
350
+ "type": "option"
351
+ },
352
+ "api-version": {
353
+ "aliases": [
354
+ "apiversion"
355
+ ],
356
+ "deprecateAliases": true,
357
+ "description": "Override the api version used for api requests made by this command",
358
+ "name": "api-version",
359
+ "hasDynamicHelp": false,
360
+ "multiple": false,
361
+ "type": "option"
362
+ },
363
+ "loglevel": {
364
+ "deprecated": {
365
+ "message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
366
+ },
367
+ "hidden": true,
368
+ "name": "loglevel",
369
+ "hasDynamicHelp": false,
370
+ "multiple": false,
371
+ "type": "option"
372
+ },
373
+ "sobject": {
374
+ "aliases": [
375
+ "sobjecttype"
376
+ ],
377
+ "char": "s",
378
+ "deprecateAliases": true,
379
+ "name": "sobject",
380
+ "required": true,
381
+ "summary": "API name of the Salesforce or Tooling API object that you're inserting a record into.",
382
+ "hasDynamicHelp": false,
383
+ "multiple": false,
384
+ "type": "option"
385
+ },
386
+ "values": {
387
+ "char": "v",
388
+ "name": "values",
389
+ "required": true,
390
+ "summary": "Values for the flags in the form <fieldName>=<value>, separate multiple pairs with spaces.",
391
+ "hasDynamicHelp": false,
392
+ "multiple": false,
393
+ "type": "option"
394
+ },
395
+ "use-tooling-api": {
396
+ "aliases": [
397
+ "usetoolingapi"
398
+ ],
399
+ "char": "t",
400
+ "deprecateAliases": true,
401
+ "name": "use-tooling-api",
402
+ "summary": "Use Tooling API so you can insert a record in a Tooling API object.",
403
+ "allowNo": false,
404
+ "type": "boolean"
405
+ },
406
+ "perflog": {
407
+ "deprecated": {
408
+ "version": "57"
409
+ },
410
+ "description": "Gets data on API performance metrics from the server. The data is stored in $HOME/.sfdx/apiPerformanceLog.json.",
411
+ "hidden": true,
412
+ "name": "perflog",
413
+ "summary": "Get API performance data.",
414
+ "allowNo": false,
415
+ "type": "boolean"
416
+ }
417
+ },
418
+ "hasDynamicHelp": true,
419
+ "hiddenAliases": [],
420
+ "id": "data:create:record",
421
+ "pluginAlias": "@salesforce/plugin-data",
422
+ "pluginName": "@salesforce/plugin-data",
423
+ "pluginType": "core",
424
+ "strict": true,
425
+ "summary": "Create and insert a record into a Salesforce or Tooling API object.",
426
+ "enableJsonFlag": true,
427
+ "SF_ENV": "SF_ENV",
428
+ "isESM": true,
429
+ "relativePath": [
430
+ "lib",
431
+ "commands",
432
+ "data",
433
+ "create",
434
+ "record.js"
435
+ ],
436
+ "aliasPermutations": [
437
+ "force:data:record:create",
438
+ "data:force:record:create",
439
+ "data:record:force:create",
440
+ "data:record:create:force",
441
+ "force:record:data:create",
442
+ "record:force:data:create",
443
+ "record:data:force:create",
444
+ "record:data:create:force",
445
+ "force:record:create:data",
446
+ "record:force:create:data",
447
+ "record:create:force:data",
448
+ "record:create:data:force",
449
+ "force:data:create:record",
450
+ "data:force:create:record",
451
+ "data:create:force:record",
452
+ "data:create:record:force",
453
+ "force:create:data:record",
454
+ "create:force:data:record",
455
+ "create:data:force:record",
456
+ "create:data:record:force",
457
+ "force:create:record:data",
458
+ "create:force:record:data",
459
+ "create:record:force:data",
460
+ "create:record:data:force"
461
+ ],
462
+ "permutations": [
463
+ "data:create:record",
464
+ "create:data:record",
465
+ "create:record:data",
466
+ "data:record:create",
467
+ "record:data:create",
468
+ "record:create:data"
469
+ ]
470
+ },
317
471
  "data:delete:bulk": {
318
472
  "aliases": [],
319
473
  "args": {},
@@ -340,7 +494,7 @@
340
494
  "name": "target-org",
341
495
  "noCacheDefault": true,
342
496
  "required": true,
343
- "summary": "Username or alias of the target org.",
497
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
344
498
  "hasDynamicHelp": true,
345
499
  "multiple": false,
346
500
  "type": "option"
@@ -483,7 +637,7 @@
483
637
  "name": "target-org",
484
638
  "noCacheDefault": true,
485
639
  "required": true,
486
- "summary": "Username or alias of the target org.",
640
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
487
641
  "hasDynamicHelp": true,
488
642
  "multiple": false,
489
643
  "type": "option"
@@ -727,160 +881,6 @@
727
881
  "resume:delete:data"
728
882
  ]
729
883
  },
730
- "data:create:record": {
731
- "aliases": [
732
- "force:data:record:create"
733
- ],
734
- "args": {},
735
- "deprecateAliases": true,
736
- "description": "You must specify a value for all required fields of the object.\n\nWhen specifying fields, use the format <fieldName>=<value>. Enclose all field-value pairs in one set of double quotation marks, delimited by spaces. Enclose values that contain spaces in single quotes.\n\nThis command inserts a record into Salesforce objects by default. Use the --use-tooling-api flag to insert into a Tooling API object.",
737
- "examples": [
738
- "Insert a record into the Account object of your default org; only the required Name field has a value:\n<%= config.bin %> <%= command.id %> --sobject Account --values \"Name=Acme\"",
739
- "Insert an Account record with values for two fields, one value contains a space; the command uses the org with alias \"my-scratch\":\n<%= config.bin %> <%= command.id %> --sobject Account --values \"Name='Universal Containers' Website=www.example.com\" --target-org my-scratch",
740
- "Insert a record into the Tooling API object TraceFlag:\n<%= config.bin %> <%= command.id %> --use-tooling-api --sobject TraceFlag --values \"DebugLevelId=7dl170000008U36AAE StartDate=2022-12-15T00:26:04.000+0000 ExpirationDate=2022-12-15T00:56:04.000+0000 LogType=CLASS_TRACING TracedEntityId=01p17000000R6bLAAS\""
741
- ],
742
- "flags": {
743
- "json": {
744
- "description": "Format output as json.",
745
- "helpGroup": "GLOBAL",
746
- "name": "json",
747
- "allowNo": false,
748
- "type": "boolean"
749
- },
750
- "target-org": {
751
- "aliases": [
752
- "targetusername",
753
- "u"
754
- ],
755
- "char": "o",
756
- "deprecateAliases": true,
757
- "name": "target-org",
758
- "noCacheDefault": true,
759
- "required": true,
760
- "summary": "Username or alias of the target org.",
761
- "hasDynamicHelp": true,
762
- "multiple": false,
763
- "type": "option"
764
- },
765
- "api-version": {
766
- "aliases": [
767
- "apiversion"
768
- ],
769
- "deprecateAliases": true,
770
- "description": "Override the api version used for api requests made by this command",
771
- "name": "api-version",
772
- "hasDynamicHelp": false,
773
- "multiple": false,
774
- "type": "option"
775
- },
776
- "loglevel": {
777
- "deprecated": {
778
- "message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
779
- },
780
- "hidden": true,
781
- "name": "loglevel",
782
- "hasDynamicHelp": false,
783
- "multiple": false,
784
- "type": "option"
785
- },
786
- "sobject": {
787
- "aliases": [
788
- "sobjecttype"
789
- ],
790
- "char": "s",
791
- "deprecateAliases": true,
792
- "name": "sobject",
793
- "required": true,
794
- "summary": "API name of the Salesforce or Tooling API object that you're inserting a record into.",
795
- "hasDynamicHelp": false,
796
- "multiple": false,
797
- "type": "option"
798
- },
799
- "values": {
800
- "char": "v",
801
- "name": "values",
802
- "required": true,
803
- "summary": "Values for the flags in the form <fieldName>=<value>, separate multiple pairs with spaces.",
804
- "hasDynamicHelp": false,
805
- "multiple": false,
806
- "type": "option"
807
- },
808
- "use-tooling-api": {
809
- "aliases": [
810
- "usetoolingapi"
811
- ],
812
- "char": "t",
813
- "deprecateAliases": true,
814
- "name": "use-tooling-api",
815
- "summary": "Use Tooling API so you can insert a record in a Tooling API object.",
816
- "allowNo": false,
817
- "type": "boolean"
818
- },
819
- "perflog": {
820
- "deprecated": {
821
- "version": "57"
822
- },
823
- "description": "Gets data on API performance metrics from the server. The data is stored in $HOME/.sfdx/apiPerformanceLog.json.",
824
- "hidden": true,
825
- "name": "perflog",
826
- "summary": "Get API performance data.",
827
- "allowNo": false,
828
- "type": "boolean"
829
- }
830
- },
831
- "hasDynamicHelp": true,
832
- "hiddenAliases": [],
833
- "id": "data:create:record",
834
- "pluginAlias": "@salesforce/plugin-data",
835
- "pluginName": "@salesforce/plugin-data",
836
- "pluginType": "core",
837
- "strict": true,
838
- "summary": "Create and insert a record into a Salesforce or Tooling API object.",
839
- "enableJsonFlag": true,
840
- "SF_ENV": "SF_ENV",
841
- "isESM": true,
842
- "relativePath": [
843
- "lib",
844
- "commands",
845
- "data",
846
- "create",
847
- "record.js"
848
- ],
849
- "aliasPermutations": [
850
- "force:data:record:create",
851
- "data:force:record:create",
852
- "data:record:force:create",
853
- "data:record:create:force",
854
- "force:record:data:create",
855
- "record:force:data:create",
856
- "record:data:force:create",
857
- "record:data:create:force",
858
- "force:record:create:data",
859
- "record:force:create:data",
860
- "record:create:force:data",
861
- "record:create:data:force",
862
- "force:data:create:record",
863
- "data:force:create:record",
864
- "data:create:force:record",
865
- "data:create:record:force",
866
- "force:create:data:record",
867
- "create:force:data:record",
868
- "create:data:force:record",
869
- "create:data:record:force",
870
- "force:create:record:data",
871
- "create:force:record:data",
872
- "create:record:force:data",
873
- "create:record:data:force"
874
- ],
875
- "permutations": [
876
- "data:create:record",
877
- "create:data:record",
878
- "create:record:data",
879
- "data:record:create",
880
- "record:data:create",
881
- "record:create:data"
882
- ]
883
- },
884
884
  "data:export:tree": {
885
885
  "aliases": [
886
886
  "force:data:tree:export"
@@ -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.3"
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.3",
4
4
  "description": "Plugin for salesforce data commands",
5
5
  "author": "Salesforce",
6
6
  "homepage": "https://github.com/salesforcecli/plugin-data",
@@ -108,10 +108,10 @@
108
108
  "version": "oclif readme"
109
109
  },
110
110
  "dependencies": {
111
- "@oclif/core": "^3.11.0",
111
+ "@oclif/core": "^3.13.1",
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,14 +119,14 @@
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",
125
- "@salesforce/plugin-command-reference": "^3.0.46",
124
+ "@salesforce/dev-scripts": "^7.1.1",
125
+ "@salesforce/plugin-command-reference": "^3.0.47",
126
126
  "@types/chai-as-promised": "^7.1.8",
127
127
  "chai-as-promised": "^7.1.1",
128
128
  "eslint-plugin-sf-plugin": "^1.16.15",
129
- "oclif": "^4.0.3",
129
+ "oclif": "^4.0.4",
130
130
  "shx": "^0.3.3",
131
131
  "ts-node": "^10.9.1",
132
132
  "typescript": "^5.2.2"
@@ -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.3.crt",
243
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/3.0.3.sig"
244
244
  }
245
245
  }