@salesforce/plugin-data 3.0.13 → 3.0.15
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/LICENSE.txt +1 -1
- package/README.md +16 -16
- package/oclif.lock +214 -162
- package/oclif.manifest.json +1 -17
- package/package.json +10 -10
package/LICENSE.txt
CHANGED
package/README.md
CHANGED
|
@@ -146,7 +146,7 @@ EXAMPLES
|
|
|
146
146
|
TracedEntityId=01p17000000R6bLAAS"
|
|
147
147
|
```
|
|
148
148
|
|
|
149
|
-
_See code: [
|
|
149
|
+
_See code: [lib/commands/data/create/record.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.15/lib/commands/data/create/record.ts)_
|
|
150
150
|
|
|
151
151
|
## `sf data delete bulk`
|
|
152
152
|
|
|
@@ -191,7 +191,7 @@ EXAMPLES
|
|
|
191
191
|
$ sf data delete bulk --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
|
|
192
192
|
```
|
|
193
193
|
|
|
194
|
-
_See code: [
|
|
194
|
+
_See code: [lib/commands/data/delete/bulk.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.15/lib/commands/data/delete/bulk.ts)_
|
|
195
195
|
|
|
196
196
|
## `sf data delete record`
|
|
197
197
|
|
|
@@ -250,7 +250,7 @@ EXAMPLES
|
|
|
250
250
|
$ sf data delete record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
251
251
|
```
|
|
252
252
|
|
|
253
|
-
_See code: [
|
|
253
|
+
_See code: [lib/commands/data/delete/record.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.15/lib/commands/data/delete/record.ts)_
|
|
254
254
|
|
|
255
255
|
## `sf data delete resume`
|
|
256
256
|
|
|
@@ -287,7 +287,7 @@ EXAMPLES
|
|
|
287
287
|
$ sf data delete resume --use-most-recent --target-org my-scratch
|
|
288
288
|
```
|
|
289
289
|
|
|
290
|
-
_See code: [
|
|
290
|
+
_See code: [lib/commands/data/delete/resume.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.15/lib/commands/data/delete/resume.ts)_
|
|
291
291
|
|
|
292
292
|
## `sf data export tree`
|
|
293
293
|
|
|
@@ -345,7 +345,7 @@ EXAMPLES
|
|
|
345
345
|
my-scratch
|
|
346
346
|
```
|
|
347
347
|
|
|
348
|
-
_See code: [
|
|
348
|
+
_See code: [lib/commands/data/export/tree.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.15/lib/commands/data/export/tree.ts)_
|
|
349
349
|
|
|
350
350
|
## `sf data get record`
|
|
351
351
|
|
|
@@ -407,7 +407,7 @@ EXAMPLES
|
|
|
407
407
|
$ sf data get record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
408
408
|
```
|
|
409
409
|
|
|
410
|
-
_See code: [
|
|
410
|
+
_See code: [lib/commands/data/get/record.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.15/lib/commands/data/get/record.ts)_
|
|
411
411
|
|
|
412
412
|
## `sf data import tree`
|
|
413
413
|
|
|
@@ -458,7 +458,7 @@ EXAMPLES
|
|
|
458
458
|
$ sf data import tree --plan Account-Contact-plan.json
|
|
459
459
|
```
|
|
460
460
|
|
|
461
|
-
_See code: [
|
|
461
|
+
_See code: [lib/commands/data/import/tree.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.15/lib/commands/data/import/tree.ts)_
|
|
462
462
|
|
|
463
463
|
## `sf data query`
|
|
464
464
|
|
|
@@ -521,7 +521,7 @@ EXAMPLES
|
|
|
521
521
|
$ sf data query --query "SELECT Id FROM Contact" --bulk --wait 0
|
|
522
522
|
```
|
|
523
523
|
|
|
524
|
-
_See code: [
|
|
524
|
+
_See code: [lib/commands/data/query.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.15/lib/commands/data/query.ts)_
|
|
525
525
|
|
|
526
526
|
## `sf data query resume`
|
|
527
527
|
|
|
@@ -557,7 +557,7 @@ EXAMPLES
|
|
|
557
557
|
$ sf data query resume --bulk-query-id 7500x000005BdFzXXX
|
|
558
558
|
```
|
|
559
559
|
|
|
560
|
-
_See code: [
|
|
560
|
+
_See code: [lib/commands/data/query/resume.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.15/lib/commands/data/query/resume.ts)_
|
|
561
561
|
|
|
562
562
|
## `sf data resume`
|
|
563
563
|
|
|
@@ -593,7 +593,7 @@ EXAMPLES
|
|
|
593
593
|
$ sf data resume --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA
|
|
594
594
|
```
|
|
595
595
|
|
|
596
|
-
_See code: [
|
|
596
|
+
_See code: [lib/commands/data/resume.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.15/lib/commands/data/resume.ts)_
|
|
597
597
|
|
|
598
598
|
## `sf data update record`
|
|
599
599
|
|
|
@@ -654,7 +654,7 @@ EXAMPLES
|
|
|
654
654
|
"ExpirationDate=2017-12-01T00:58:04.000+0000"
|
|
655
655
|
```
|
|
656
656
|
|
|
657
|
-
_See code: [
|
|
657
|
+
_See code: [lib/commands/data/update/record.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.15/lib/commands/data/update/record.ts)_
|
|
658
658
|
|
|
659
659
|
## `sf data upsert bulk`
|
|
660
660
|
|
|
@@ -706,7 +706,7 @@ EXAMPLES
|
|
|
706
706
|
my-scratch
|
|
707
707
|
```
|
|
708
708
|
|
|
709
|
-
_See code: [
|
|
709
|
+
_See code: [lib/commands/data/upsert/bulk.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.15/lib/commands/data/upsert/bulk.ts)_
|
|
710
710
|
|
|
711
711
|
## `sf data upsert resume`
|
|
712
712
|
|
|
@@ -743,7 +743,7 @@ EXAMPLES
|
|
|
743
743
|
$ sf data upsert resume --use-most-recent --target-org my-scratch
|
|
744
744
|
```
|
|
745
745
|
|
|
746
|
-
_See code: [
|
|
746
|
+
_See code: [lib/commands/data/upsert/resume.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.15/lib/commands/data/upsert/resume.ts)_
|
|
747
747
|
|
|
748
748
|
## `sf force data bulk delete`
|
|
749
749
|
|
|
@@ -788,7 +788,7 @@ EXAMPLES
|
|
|
788
788
|
$ sf force data bulk delete --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
|
|
789
789
|
```
|
|
790
790
|
|
|
791
|
-
_See code: [
|
|
791
|
+
_See code: [lib/commands/force/data/bulk/delete.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.15/lib/commands/force/data/bulk/delete.ts)_
|
|
792
792
|
|
|
793
793
|
## `sf force data bulk status`
|
|
794
794
|
|
|
@@ -824,7 +824,7 @@ EXAMPLES
|
|
|
824
824
|
$ sf force data bulk status --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA --target-org my-scratch
|
|
825
825
|
```
|
|
826
826
|
|
|
827
|
-
_See code: [
|
|
827
|
+
_See code: [lib/commands/force/data/bulk/status.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.15/lib/commands/force/data/bulk/status.ts)_
|
|
828
828
|
|
|
829
829
|
## `sf force data bulk upsert`
|
|
830
830
|
|
|
@@ -881,6 +881,6 @@ EXAMPLES
|
|
|
881
881
|
--target-org my-scratch
|
|
882
882
|
```
|
|
883
883
|
|
|
884
|
-
_See code: [
|
|
884
|
+
_See code: [lib/commands/force/data/bulk/upsert.ts](https://github.com/salesforcecli/plugin-data/blob/3.0.15/lib/commands/force/data/bulk/upsert.ts)_
|
|
885
885
|
|
|
886
886
|
<!-- commandsstop -->
|
package/oclif.lock
CHANGED
|
@@ -442,6 +442,59 @@
|
|
|
442
442
|
resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz#e5211452df060fa8522b55c7b3c0c4d1981cb044"
|
|
443
443
|
integrity sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==
|
|
444
444
|
|
|
445
|
+
"@inquirer/confirm@^2.0.15":
|
|
446
|
+
version "2.0.15"
|
|
447
|
+
resolved "https://registry.yarnpkg.com/@inquirer/confirm/-/confirm-2.0.15.tgz#b5512ed190efd8c5b96e0969115756b48546ab36"
|
|
448
|
+
integrity sha512-hj8Q/z7sQXsF0DSpLQZVDhWYGN6KLM/gNjjqGkpKwBzljbQofGjn0ueHADy4HUY+OqDHmXuwk/bY+tZyIuuB0w==
|
|
449
|
+
dependencies:
|
|
450
|
+
"@inquirer/core" "^5.1.1"
|
|
451
|
+
"@inquirer/type" "^1.1.5"
|
|
452
|
+
chalk "^4.1.2"
|
|
453
|
+
|
|
454
|
+
"@inquirer/core@^5.1.1":
|
|
455
|
+
version "5.1.1"
|
|
456
|
+
resolved "https://registry.yarnpkg.com/@inquirer/core/-/core-5.1.1.tgz#849d4846aea68371c133df6ec9059f5e5bd30d30"
|
|
457
|
+
integrity sha512-IuJyZQUg75+L5AmopgnzxYrgcU6PJKL0hoIs332G1Gv55CnmZrhG6BzNOeZ5sOsTi1YCGOopw4rYICv74ejMFg==
|
|
458
|
+
dependencies:
|
|
459
|
+
"@inquirer/type" "^1.1.5"
|
|
460
|
+
"@types/mute-stream" "^0.0.4"
|
|
461
|
+
"@types/node" "^20.9.0"
|
|
462
|
+
"@types/wrap-ansi" "^3.0.0"
|
|
463
|
+
ansi-escapes "^4.3.2"
|
|
464
|
+
chalk "^4.1.2"
|
|
465
|
+
cli-spinners "^2.9.1"
|
|
466
|
+
cli-width "^4.1.0"
|
|
467
|
+
figures "^3.2.0"
|
|
468
|
+
mute-stream "^1.0.0"
|
|
469
|
+
run-async "^3.0.0"
|
|
470
|
+
signal-exit "^4.1.0"
|
|
471
|
+
strip-ansi "^6.0.1"
|
|
472
|
+
wrap-ansi "^6.2.0"
|
|
473
|
+
|
|
474
|
+
"@inquirer/input@^1.2.14":
|
|
475
|
+
version "1.2.14"
|
|
476
|
+
resolved "https://registry.yarnpkg.com/@inquirer/input/-/input-1.2.14.tgz#8951867618bb5cd16dd096e02404eec225a92207"
|
|
477
|
+
integrity sha512-tISLGpUKXixIQue7jypNEShrdzJoLvEvZOJ4QRsw5XTfrIYfoWFqAjMQLerGs9CzR86yAI89JR6snHmKwnNddw==
|
|
478
|
+
dependencies:
|
|
479
|
+
"@inquirer/core" "^5.1.1"
|
|
480
|
+
"@inquirer/type" "^1.1.5"
|
|
481
|
+
chalk "^4.1.2"
|
|
482
|
+
|
|
483
|
+
"@inquirer/password@^1.1.14":
|
|
484
|
+
version "1.1.14"
|
|
485
|
+
resolved "https://registry.yarnpkg.com/@inquirer/password/-/password-1.1.14.tgz#c1fc139efe84a38986870a1bcf80718050f82bbf"
|
|
486
|
+
integrity sha512-vL2BFxfMo8EvuGuZYlryiyAB3XsgtbxOcFs4H9WI9szAS/VZCAwdVqs8rqEeaAf/GV/eZOghIOYxvD91IsRWSg==
|
|
487
|
+
dependencies:
|
|
488
|
+
"@inquirer/input" "^1.2.14"
|
|
489
|
+
"@inquirer/type" "^1.1.5"
|
|
490
|
+
ansi-escapes "^4.3.2"
|
|
491
|
+
chalk "^4.1.2"
|
|
492
|
+
|
|
493
|
+
"@inquirer/type@^1.1.5":
|
|
494
|
+
version "1.1.5"
|
|
495
|
+
resolved "https://registry.yarnpkg.com/@inquirer/type/-/type-1.1.5.tgz#b8c171f755859c8159b10e41e1e3a88f0ca99d7f"
|
|
496
|
+
integrity sha512-wmwHvHozpPo4IZkkNtbYenem/0wnfI6hvOcGKmPEa0DwuaH5XUQzFqy6OpEpjEegZMhYIk8HDYITI16BPLtrRA==
|
|
497
|
+
|
|
445
498
|
"@isaacs/cliui@^8.0.2":
|
|
446
499
|
version "8.0.2"
|
|
447
500
|
resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550"
|
|
@@ -734,44 +787,10 @@
|
|
|
734
787
|
read-package-json-fast "^3.0.0"
|
|
735
788
|
which "^3.0.0"
|
|
736
789
|
|
|
737
|
-
"@oclif/core@^
|
|
738
|
-
version "
|
|
739
|
-
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-
|
|
740
|
-
integrity sha512
|
|
741
|
-
dependencies:
|
|
742
|
-
"@types/cli-progress" "^3.11.0"
|
|
743
|
-
ansi-escapes "^4.3.2"
|
|
744
|
-
ansi-styles "^4.3.0"
|
|
745
|
-
cardinal "^2.1.1"
|
|
746
|
-
chalk "^4.1.2"
|
|
747
|
-
clean-stack "^3.0.1"
|
|
748
|
-
cli-progress "^3.12.0"
|
|
749
|
-
debug "^4.3.4"
|
|
750
|
-
ejs "^3.1.8"
|
|
751
|
-
get-package-type "^0.1.0"
|
|
752
|
-
globby "^11.1.0"
|
|
753
|
-
hyperlinker "^1.0.0"
|
|
754
|
-
indent-string "^4.0.0"
|
|
755
|
-
is-wsl "^2.2.0"
|
|
756
|
-
js-yaml "^3.14.1"
|
|
757
|
-
natural-orderby "^2.0.3"
|
|
758
|
-
object-treeify "^1.1.33"
|
|
759
|
-
password-prompt "^1.1.2"
|
|
760
|
-
slice-ansi "^4.0.0"
|
|
761
|
-
string-width "^4.2.3"
|
|
762
|
-
strip-ansi "^6.0.1"
|
|
763
|
-
supports-color "^8.1.1"
|
|
764
|
-
supports-hyperlinks "^2.2.0"
|
|
765
|
-
ts-node "^10.9.1"
|
|
766
|
-
tslib "^2.5.0"
|
|
767
|
-
widest-line "^3.1.0"
|
|
768
|
-
wordwrap "^1.0.0"
|
|
769
|
-
wrap-ansi "^7.0.0"
|
|
770
|
-
|
|
771
|
-
"@oclif/core@^3.0.4", "@oclif/core@^3.14.1", "@oclif/core@^3.15.0", "@oclif/core@^3.15.1", "@oclif/core@^3.3.1":
|
|
772
|
-
version "3.15.1"
|
|
773
|
-
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.15.1.tgz#e03fa775d658e76056150ac0c7b8097b6f51ab9c"
|
|
774
|
-
integrity sha512-d4457zVo2agLoJG97CmdY6M3BeP5sogBP3BtP65hUvJH6wA6Us1hdY3UiPPtD/ZzZImq7cATVMABuCF9tM+rWA==
|
|
790
|
+
"@oclif/core@^3.15.0", "@oclif/core@^3.15.1", "@oclif/core@^3.16.0":
|
|
791
|
+
version "3.16.0"
|
|
792
|
+
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.16.0.tgz#682657cb5e4a3262a47e26e0c8a7bf0343acaf76"
|
|
793
|
+
integrity sha512-/PIz+udzb59XE8O/bQvqlCtXy6RByEHH0KsrAJNa/ZrqtdsLmeDNJcHdgygFHx+nz+PYMoUzsyzJMau++EDNoQ==
|
|
775
794
|
dependencies:
|
|
776
795
|
ansi-escapes "^4.3.2"
|
|
777
796
|
ansi-styles "^4.3.0"
|
|
@@ -816,28 +835,28 @@
|
|
|
816
835
|
semver "^7.5.4"
|
|
817
836
|
ts-json-schema-generator "^1.5.0"
|
|
818
837
|
|
|
819
|
-
"@oclif/plugin-help@^
|
|
820
|
-
version "
|
|
821
|
-
resolved "https://registry.yarnpkg.com/@oclif/plugin-help/-/plugin-help-
|
|
822
|
-
integrity sha512-
|
|
838
|
+
"@oclif/plugin-help@^6.0.9":
|
|
839
|
+
version "6.0.9"
|
|
840
|
+
resolved "https://registry.yarnpkg.com/@oclif/plugin-help/-/plugin-help-6.0.9.tgz#87bbf624372b9afe5dc183a13f52c929d6b022cf"
|
|
841
|
+
integrity sha512-O9zHzjsj8G3DWV+Ju4prrBwHUmwT1pcq7AJNxguedMk8jGZhwKWrcQHdZX6kjC+7QbupSzgjcvXvXpYVR1y3ow==
|
|
823
842
|
dependencies:
|
|
824
|
-
"@oclif/core" "^
|
|
843
|
+
"@oclif/core" "^3.15.0"
|
|
825
844
|
|
|
826
|
-
"@oclif/plugin-not-found@^
|
|
827
|
-
version "
|
|
828
|
-
resolved "https://registry.yarnpkg.com/@oclif/plugin-not-found/-/plugin-not-found-
|
|
829
|
-
integrity sha512-
|
|
845
|
+
"@oclif/plugin-not-found@^3.0.7":
|
|
846
|
+
version "3.0.8"
|
|
847
|
+
resolved "https://registry.yarnpkg.com/@oclif/plugin-not-found/-/plugin-not-found-3.0.8.tgz#d694a9308993703a1cbacbab7f5625315f0169ea"
|
|
848
|
+
integrity sha512-sfh7jFc+1vFsF/+9ghF3pVul9xFJ4Hu1JI+KzkDjgWkfVSyPSEE+s6Hfn2z6lCXkwSKQ5lJATuZmafnGes7NGg==
|
|
830
849
|
dependencies:
|
|
831
|
-
"@oclif/core" "^
|
|
832
|
-
chalk "^
|
|
850
|
+
"@oclif/core" "^3.16.0"
|
|
851
|
+
chalk "^5.3.0"
|
|
833
852
|
fast-levenshtein "^3.0.0"
|
|
834
853
|
|
|
835
|
-
"@oclif/plugin-warn-if-update-available@^3.0.
|
|
836
|
-
version "3.0.
|
|
837
|
-
resolved "https://registry.yarnpkg.com/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-3.0.
|
|
838
|
-
integrity sha512-
|
|
854
|
+
"@oclif/plugin-warn-if-update-available@^3.0.8":
|
|
855
|
+
version "3.0.8"
|
|
856
|
+
resolved "https://registry.yarnpkg.com/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-3.0.8.tgz#715c7f8896a318805cae08f2994115b8d5e39c20"
|
|
857
|
+
integrity sha512-CNusBwZHzWdj4E6xVBbR9+DtxjeQZoK2LDYk3CFwBfLd5L8TJ/6IJNer0ZacDRvnCeABeVqMN33Vk7UlmJ7ngQ==
|
|
839
858
|
dependencies:
|
|
840
|
-
"@oclif/core" "^3.
|
|
859
|
+
"@oclif/core" "^3.15.1"
|
|
841
860
|
chalk "^5.3.0"
|
|
842
861
|
debug "^4.1.0"
|
|
843
862
|
http-call "^5.2.2"
|
|
@@ -949,12 +968,12 @@
|
|
|
949
968
|
resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
|
|
950
969
|
integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
|
|
951
970
|
|
|
952
|
-
"@salesforce/cli-plugins-testkit@^5.1.
|
|
953
|
-
version "5.1.
|
|
954
|
-
resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.1.
|
|
955
|
-
integrity sha512-
|
|
971
|
+
"@salesforce/cli-plugins-testkit@^5.1.4":
|
|
972
|
+
version "5.1.4"
|
|
973
|
+
resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.1.4.tgz#6afcfe9573fb41dae0202bef6c5353925f9707e3"
|
|
974
|
+
integrity sha512-BvN36/Yx5hoDU1cUsWwSb1DsY29aJU7t7Q6/1dPIdUv8t0wLsaUTxR+7uYtA2sQAMgCD2UewCUiUOWnutA25Pw==
|
|
956
975
|
dependencies:
|
|
957
|
-
"@salesforce/core" "^6.4.
|
|
976
|
+
"@salesforce/core" "^6.4.4"
|
|
958
977
|
"@salesforce/kit" "^3.0.15"
|
|
959
978
|
"@salesforce/ts-types" "^2.0.9"
|
|
960
979
|
"@types/shelljs" "^0.8.15"
|
|
@@ -964,10 +983,10 @@
|
|
|
964
983
|
strip-ansi "6.0.1"
|
|
965
984
|
ts-retry-promise "^0.7.1"
|
|
966
985
|
|
|
967
|
-
"@salesforce/core@^6.4.
|
|
968
|
-
version "6.4.
|
|
969
|
-
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-6.4.
|
|
970
|
-
integrity sha512-
|
|
986
|
+
"@salesforce/core@^6.4.1", "@salesforce/core@^6.4.2", "@salesforce/core@^6.4.4", "@salesforce/core@^6.4.6":
|
|
987
|
+
version "6.4.7"
|
|
988
|
+
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-6.4.7.tgz#f15538380aa5c75de697d3c95a2ddbdabae69dbb"
|
|
989
|
+
integrity sha512-gebjw2xC8Z0gqS3lYRQWz7J+PuGZtybotrnnaJbnzzxdfpBFIp6PjW4nt/235BQW9UWFTLaQh+AwkFgmMTTSkA==
|
|
971
990
|
dependencies:
|
|
972
991
|
"@salesforce/kit" "^3.0.15"
|
|
973
992
|
"@salesforce/schemas" "^1.6.1"
|
|
@@ -981,9 +1000,9 @@
|
|
|
981
1000
|
jsforce "^2.0.0-beta.29"
|
|
982
1001
|
jsonwebtoken "9.0.2"
|
|
983
1002
|
jszip "3.10.1"
|
|
984
|
-
pino "^8.
|
|
1003
|
+
pino "^8.17.2"
|
|
985
1004
|
pino-abstract-transport "^1.1.0"
|
|
986
|
-
pino-pretty "^10.3.
|
|
1005
|
+
pino-pretty "^10.3.1"
|
|
987
1006
|
proper-lockfile "^4.1.2"
|
|
988
1007
|
semver "^7.5.4"
|
|
989
1008
|
ts-retry-promise "^0.7.1"
|
|
@@ -993,10 +1012,10 @@
|
|
|
993
1012
|
resolved "https://registry.yarnpkg.com/@salesforce/dev-config/-/dev-config-4.1.0.tgz#e529576466d074e7a5f1441236510fef123da01e"
|
|
994
1013
|
integrity sha512-2iDDepiIwjXHS5IVY7pwv8jMo4xWosJ7p/UTj+lllpB/gnJiYLhjJPE4Z3FCGFKyvfg5jGaimCd8Ca6bLGsCQA==
|
|
995
1014
|
|
|
996
|
-
"@salesforce/dev-scripts@^8.
|
|
997
|
-
version "8.
|
|
998
|
-
resolved "https://registry.yarnpkg.com/@salesforce/dev-scripts/-/dev-scripts-8.
|
|
999
|
-
integrity sha512-
|
|
1015
|
+
"@salesforce/dev-scripts@^8.3.0":
|
|
1016
|
+
version "8.3.0"
|
|
1017
|
+
resolved "https://registry.yarnpkg.com/@salesforce/dev-scripts/-/dev-scripts-8.3.0.tgz#8fcf223edc57dbdeb11397bf7db1f07a8a5e7720"
|
|
1018
|
+
integrity sha512-NoaGfTtyIYed5lGXtLM7QsyGbZvPVa5uflbmIQdeFOefrvAv48k0+RbJzOl7nuj58EmvULzqrZHL6B7w5u4T5Q==
|
|
1000
1019
|
dependencies:
|
|
1001
1020
|
"@commitlint/cli" "^17.1.2"
|
|
1002
1021
|
"@commitlint/config-conventional" "^17.8.1"
|
|
@@ -1011,7 +1030,7 @@
|
|
|
1011
1030
|
cosmiconfig "^7.0.0"
|
|
1012
1031
|
eslint-config-salesforce-typescript "^3.0.5"
|
|
1013
1032
|
husky "^7.0.4"
|
|
1014
|
-
linkinator "^6.0.
|
|
1033
|
+
linkinator "^6.0.3"
|
|
1015
1034
|
mocha "^10.2.0"
|
|
1016
1035
|
nyc "^15.1.0"
|
|
1017
1036
|
prettier "^2.8.8"
|
|
@@ -1033,15 +1052,15 @@
|
|
|
1033
1052
|
"@salesforce/ts-types" "^2.0.9"
|
|
1034
1053
|
tslib "^2.6.2"
|
|
1035
1054
|
|
|
1036
|
-
"@salesforce/plugin-command-reference@^3.0.
|
|
1037
|
-
version "3.0.
|
|
1038
|
-
resolved "https://registry.yarnpkg.com/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.
|
|
1039
|
-
integrity sha512-
|
|
1055
|
+
"@salesforce/plugin-command-reference@^3.0.59":
|
|
1056
|
+
version "3.0.59"
|
|
1057
|
+
resolved "https://registry.yarnpkg.com/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.59.tgz#309dba84ae01828e1b8d62d80390240418688c43"
|
|
1058
|
+
integrity sha512-8mjPJyxz1FF6Ei7RwjMLHZTmFX2+bOOh5aq7lNwk3qkSqy5cSTW8bf+1/lcOPkm2125qCbAUL0wAgAyNACF6Xg==
|
|
1040
1059
|
dependencies:
|
|
1041
|
-
"@oclif/core" "^3.
|
|
1042
|
-
"@salesforce/core" "^6.4.
|
|
1060
|
+
"@oclif/core" "^3.15.1"
|
|
1061
|
+
"@salesforce/core" "^6.4.1"
|
|
1043
1062
|
"@salesforce/kit" "^3.0.15"
|
|
1044
|
-
"@salesforce/sf-plugins-core" "^5.0.
|
|
1063
|
+
"@salesforce/sf-plugins-core" "^5.0.13"
|
|
1045
1064
|
"@salesforce/ts-types" "^2.0.9"
|
|
1046
1065
|
chalk "^4"
|
|
1047
1066
|
handlebars "^4.7.8"
|
|
@@ -1057,7 +1076,7 @@
|
|
|
1057
1076
|
resolved "https://registry.yarnpkg.com/@salesforce/schemas/-/schemas-1.6.1.tgz#7d1c071e1e509ca9d2d8a6e48ac7447dd67a534d"
|
|
1058
1077
|
integrity sha512-eVy947ZMxCJReKJdgfddUIsBIbPTa/i8RwQGwxq4/ss38H5sLOAeSTaun9V7HpJ1hkpDznWKfgzYvjsst9K6ig==
|
|
1059
1078
|
|
|
1060
|
-
"@salesforce/sf-plugins-core@^5.0.13"
|
|
1079
|
+
"@salesforce/sf-plugins-core@^5.0.13":
|
|
1061
1080
|
version "5.0.13"
|
|
1062
1081
|
resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-5.0.13.tgz#f2941527d66ded5750a6646e146af047ab72acc9"
|
|
1063
1082
|
integrity sha512-b5R8krKeOIkW0hPxvfpm8T5tCSyWW7MDERnJwm/FXq4ueUJsC1/TCWSscyVKPSZ0VRcEFbzOWKJvpV/omB1D9w==
|
|
@@ -1070,6 +1089,19 @@
|
|
|
1070
1089
|
chalk "^4"
|
|
1071
1090
|
inquirer "^8.2.5"
|
|
1072
1091
|
|
|
1092
|
+
"@salesforce/sf-plugins-core@^7.1.1":
|
|
1093
|
+
version "7.1.1"
|
|
1094
|
+
resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.1.tgz#195b14d8bbb5ee2123872775110892c54c08c791"
|
|
1095
|
+
integrity sha512-stVcdLNaroS8UbcTQicr0aVH7K3yfpMFcPpTpLn2Z7OL66iEhBg4Vtr9+v0qKBjA5ZW7S0M1zzrgjY3ZNRJSxw==
|
|
1096
|
+
dependencies:
|
|
1097
|
+
"@inquirer/confirm" "^2.0.15"
|
|
1098
|
+
"@inquirer/password" "^1.1.14"
|
|
1099
|
+
"@oclif/core" "^3.16.0"
|
|
1100
|
+
"@salesforce/core" "^6.4.6"
|
|
1101
|
+
"@salesforce/kit" "^3.0.15"
|
|
1102
|
+
"@salesforce/ts-types" "^2.0.9"
|
|
1103
|
+
chalk "^5.3.0"
|
|
1104
|
+
|
|
1073
1105
|
"@salesforce/ts-types@^2.0.9":
|
|
1074
1106
|
version "2.0.9"
|
|
1075
1107
|
resolved "https://registry.yarnpkg.com/@salesforce/ts-types/-/ts-types-2.0.9.tgz#66bff7b41720065d6b01631b6f6a3ccca02857c5"
|
|
@@ -1211,13 +1243,6 @@
|
|
|
1211
1243
|
resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.11.tgz#e95050bf79a932cb7305dd130254ccdf9bde671c"
|
|
1212
1244
|
integrity sha512-qQR1dr2rGIHYlJulmr8Ioq3De0Le9E4MJ5AiaeAETJJpndT1uUNHsGFK3L/UIu+rbkQSdj8J/w2bCsBZc/Y5fQ==
|
|
1213
1245
|
|
|
1214
|
-
"@types/cli-progress@^3.11.0":
|
|
1215
|
-
version "3.11.5"
|
|
1216
|
-
resolved "https://registry.yarnpkg.com/@types/cli-progress/-/cli-progress-3.11.5.tgz#9518c745e78557efda057e3f96a5990c717268c3"
|
|
1217
|
-
integrity sha512-D4PbNRbviKyppS5ivBGyFO29POlySLmA2HyUFE4p5QGazAMM3CwkKWcvTl8gvElSuxRh6FPKL8XmidX873ou4g==
|
|
1218
|
-
dependencies:
|
|
1219
|
-
"@types/node" "*"
|
|
1220
|
-
|
|
1221
1246
|
"@types/expect@^1.20.4":
|
|
1222
1247
|
version "1.20.4"
|
|
1223
1248
|
resolved "https://registry.yarnpkg.com/@types/expect/-/expect-1.20.4.tgz#8288e51737bf7e3ab5d7c77bfa695883745264e5"
|
|
@@ -1293,10 +1318,17 @@
|
|
|
1293
1318
|
resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-10.0.6.tgz#818551d39113081048bdddbef96701b4e8bb9d1b"
|
|
1294
1319
|
integrity sha512-dJvrYWxP/UcXm36Qn36fxhUKu8A/xMRXVT2cliFF1Z7UA9liG5Psj3ezNSZw+5puH2czDXRLcXQxf8JbJt0ejg==
|
|
1295
1320
|
|
|
1296
|
-
"@types/
|
|
1297
|
-
version "
|
|
1298
|
-
resolved "https://registry.yarnpkg.com/@types/
|
|
1299
|
-
integrity sha512-
|
|
1321
|
+
"@types/mute-stream@^0.0.4":
|
|
1322
|
+
version "0.0.4"
|
|
1323
|
+
resolved "https://registry.yarnpkg.com/@types/mute-stream/-/mute-stream-0.0.4.tgz#77208e56a08767af6c5e1237be8888e2f255c478"
|
|
1324
|
+
integrity sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==
|
|
1325
|
+
dependencies:
|
|
1326
|
+
"@types/node" "*"
|
|
1327
|
+
|
|
1328
|
+
"@types/node@*", "@types/node@^20.9.0":
|
|
1329
|
+
version "20.10.6"
|
|
1330
|
+
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.10.6.tgz#a3ec84c22965802bf763da55b2394424f22bfbb5"
|
|
1331
|
+
integrity sha512-Vac8H+NlRNNlAmDfGUP7b5h/KA+AtWIzuXy0E6OyP8f1tCLYAtPvKRRDJjAPqhpCb0t6U2j7/xqAuLEebW2kiw==
|
|
1300
1332
|
dependencies:
|
|
1301
1333
|
undici-types "~5.26.4"
|
|
1302
1334
|
|
|
@@ -1379,6 +1411,11 @@
|
|
|
1379
1411
|
"@types/expect" "^1.20.4"
|
|
1380
1412
|
"@types/node" "*"
|
|
1381
1413
|
|
|
1414
|
+
"@types/wrap-ansi@^3.0.0":
|
|
1415
|
+
version "3.0.0"
|
|
1416
|
+
resolved "https://registry.yarnpkg.com/@types/wrap-ansi/-/wrap-ansi-3.0.0.tgz#18b97a972f94f60a679fd5c796d96421b9abb9fd"
|
|
1417
|
+
integrity sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==
|
|
1418
|
+
|
|
1382
1419
|
"@typescript-eslint/eslint-plugin@^6.10.0":
|
|
1383
1420
|
version "6.11.0"
|
|
1384
1421
|
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.11.0.tgz#52aae65174ff526576351f9ccd41cea01001463f"
|
|
@@ -1415,13 +1452,13 @@
|
|
|
1415
1452
|
"@typescript-eslint/types" "6.11.0"
|
|
1416
1453
|
"@typescript-eslint/visitor-keys" "6.11.0"
|
|
1417
1454
|
|
|
1418
|
-
"@typescript-eslint/scope-manager@6.
|
|
1419
|
-
version "6.
|
|
1420
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.
|
|
1421
|
-
integrity sha512-
|
|
1455
|
+
"@typescript-eslint/scope-manager@6.18.0":
|
|
1456
|
+
version "6.18.0"
|
|
1457
|
+
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.18.0.tgz#24ca6fc1f4a2afa71122dcfca9282878687d9997"
|
|
1458
|
+
integrity sha512-o/UoDT2NgOJ2VfHpfr+KBY2ErWvCySNUIX/X7O9g8Zzt/tXdpfEU43qbNk8LVuWUT2E0ptzTWXh79i74PP0twA==
|
|
1422
1459
|
dependencies:
|
|
1423
|
-
"@typescript-eslint/types" "6.
|
|
1424
|
-
"@typescript-eslint/visitor-keys" "6.
|
|
1460
|
+
"@typescript-eslint/types" "6.18.0"
|
|
1461
|
+
"@typescript-eslint/visitor-keys" "6.18.0"
|
|
1425
1462
|
|
|
1426
1463
|
"@typescript-eslint/type-utils@6.11.0":
|
|
1427
1464
|
version "6.11.0"
|
|
@@ -1438,10 +1475,10 @@
|
|
|
1438
1475
|
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.11.0.tgz#8ad3aa000cbf4bdc4dcceed96e9b577f15e0bf53"
|
|
1439
1476
|
integrity sha512-ZbEzuD4DwEJxwPqhv3QULlRj8KYTAnNsXxmfuUXFCxZmO6CF2gM/y+ugBSAQhrqaJL3M+oe4owdWunaHM6beqA==
|
|
1440
1477
|
|
|
1441
|
-
"@typescript-eslint/types@6.
|
|
1442
|
-
version "6.
|
|
1443
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.
|
|
1444
|
-
integrity sha512
|
|
1478
|
+
"@typescript-eslint/types@6.18.0":
|
|
1479
|
+
version "6.18.0"
|
|
1480
|
+
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.18.0.tgz#ffce610a1540c17cf7d8ecf2bb34b8b0e2e77101"
|
|
1481
|
+
integrity sha512-/RFVIccwkwSdW/1zeMx3hADShWbgBxBnV/qSrex6607isYjj05t36P6LyONgqdUrNLl5TYU8NIKdHUYpFvExkA==
|
|
1445
1482
|
|
|
1446
1483
|
"@typescript-eslint/typescript-estree@6.11.0":
|
|
1447
1484
|
version "6.11.0"
|
|
@@ -1456,13 +1493,13 @@
|
|
|
1456
1493
|
semver "^7.5.4"
|
|
1457
1494
|
ts-api-utils "^1.0.1"
|
|
1458
1495
|
|
|
1459
|
-
"@typescript-eslint/typescript-estree@6.
|
|
1460
|
-
version "6.
|
|
1461
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.
|
|
1462
|
-
integrity sha512-
|
|
1496
|
+
"@typescript-eslint/typescript-estree@6.18.0":
|
|
1497
|
+
version "6.18.0"
|
|
1498
|
+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.18.0.tgz#1c357c3ca435c3cfa2af6b9daf45ca0bc2bb059a"
|
|
1499
|
+
integrity sha512-klNvl+Ql4NsBNGB4W9TZ2Od03lm7aGvTbs0wYaFYsplVPhr+oeXjlPZCDI4U9jgJIDK38W1FKhacCFzCC+nbIg==
|
|
1463
1500
|
dependencies:
|
|
1464
|
-
"@typescript-eslint/types" "6.
|
|
1465
|
-
"@typescript-eslint/visitor-keys" "6.
|
|
1501
|
+
"@typescript-eslint/types" "6.18.0"
|
|
1502
|
+
"@typescript-eslint/visitor-keys" "6.18.0"
|
|
1466
1503
|
debug "^4.3.4"
|
|
1467
1504
|
globby "^11.1.0"
|
|
1468
1505
|
is-glob "^4.0.3"
|
|
@@ -1483,17 +1520,17 @@
|
|
|
1483
1520
|
"@typescript-eslint/typescript-estree" "6.11.0"
|
|
1484
1521
|
semver "^7.5.4"
|
|
1485
1522
|
|
|
1486
|
-
"@typescript-eslint/utils@^6.
|
|
1487
|
-
version "6.
|
|
1488
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.
|
|
1489
|
-
integrity sha512-
|
|
1523
|
+
"@typescript-eslint/utils@^6.17.0", "@typescript-eslint/utils@^6.7.5":
|
|
1524
|
+
version "6.18.0"
|
|
1525
|
+
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.18.0.tgz#4d07c9c08f84b9939a1aca7aef98c8f378936142"
|
|
1526
|
+
integrity sha512-wiKKCbUeDPGaYEYQh1S580dGxJ/V9HI7K5sbGAVklyf+o5g3O+adnS4UNJajplF4e7z2q0uVBaTdT/yLb4XAVA==
|
|
1490
1527
|
dependencies:
|
|
1491
1528
|
"@eslint-community/eslint-utils" "^4.4.0"
|
|
1492
1529
|
"@types/json-schema" "^7.0.12"
|
|
1493
1530
|
"@types/semver" "^7.5.0"
|
|
1494
|
-
"@typescript-eslint/scope-manager" "6.
|
|
1495
|
-
"@typescript-eslint/types" "6.
|
|
1496
|
-
"@typescript-eslint/typescript-estree" "6.
|
|
1531
|
+
"@typescript-eslint/scope-manager" "6.18.0"
|
|
1532
|
+
"@typescript-eslint/types" "6.18.0"
|
|
1533
|
+
"@typescript-eslint/typescript-estree" "6.18.0"
|
|
1497
1534
|
semver "^7.5.4"
|
|
1498
1535
|
|
|
1499
1536
|
"@typescript-eslint/visitor-keys@6.11.0":
|
|
@@ -1504,12 +1541,12 @@
|
|
|
1504
1541
|
"@typescript-eslint/types" "6.11.0"
|
|
1505
1542
|
eslint-visitor-keys "^3.4.1"
|
|
1506
1543
|
|
|
1507
|
-
"@typescript-eslint/visitor-keys@6.
|
|
1508
|
-
version "6.
|
|
1509
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.
|
|
1510
|
-
integrity sha512-
|
|
1544
|
+
"@typescript-eslint/visitor-keys@6.18.0":
|
|
1545
|
+
version "6.18.0"
|
|
1546
|
+
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.18.0.tgz#3c8733737786fa6c78a347b4fa306ae7155b560f"
|
|
1547
|
+
integrity sha512-1wetAlSZpewRDb2h9p/Q8kRjdGuqdTAQbkJIOUMLug2LBLG+QOjiWoSj6/3B/hA9/tVTFFdtiKvAYoYnSRW/RA==
|
|
1511
1548
|
dependencies:
|
|
1512
|
-
"@typescript-eslint/types" "6.
|
|
1549
|
+
"@typescript-eslint/types" "6.18.0"
|
|
1513
1550
|
eslint-visitor-keys "^3.4.1"
|
|
1514
1551
|
|
|
1515
1552
|
"@ungap/structured-clone@^1.2.0":
|
|
@@ -2301,10 +2338,10 @@ cli-progress@^3.12.0:
|
|
|
2301
2338
|
dependencies:
|
|
2302
2339
|
string-width "^4.2.3"
|
|
2303
2340
|
|
|
2304
|
-
cli-spinners@^2.5.0:
|
|
2305
|
-
version "2.9.
|
|
2306
|
-
resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.
|
|
2307
|
-
integrity sha512-
|
|
2341
|
+
cli-spinners@^2.5.0, cli-spinners@^2.9.1:
|
|
2342
|
+
version "2.9.2"
|
|
2343
|
+
resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz#1773a8f4b9c4d6ac31563df53b3fc1d79462fe41"
|
|
2344
|
+
integrity sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==
|
|
2308
2345
|
|
|
2309
2346
|
cli-table@^0.3.1:
|
|
2310
2347
|
version "0.3.11"
|
|
@@ -2318,6 +2355,11 @@ cli-width@^3.0.0:
|
|
|
2318
2355
|
resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6"
|
|
2319
2356
|
integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==
|
|
2320
2357
|
|
|
2358
|
+
cli-width@^4.1.0:
|
|
2359
|
+
version "4.1.0"
|
|
2360
|
+
resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-4.1.0.tgz#42daac41d3c254ef38ad8ac037672130173691c5"
|
|
2361
|
+
integrity sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==
|
|
2362
|
+
|
|
2321
2363
|
cliui@^6.0.0:
|
|
2322
2364
|
version "6.0.0"
|
|
2323
2365
|
resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1"
|
|
@@ -3104,13 +3146,13 @@ eslint-plugin-perfectionist@^2.1.0:
|
|
|
3104
3146
|
minimatch "^9.0.3"
|
|
3105
3147
|
natural-compare-lite "^1.4.0"
|
|
3106
3148
|
|
|
3107
|
-
eslint-plugin-sf-plugin@^1.17.
|
|
3108
|
-
version "1.17.
|
|
3109
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.17.
|
|
3110
|
-
integrity sha512-
|
|
3149
|
+
eslint-plugin-sf-plugin@^1.17.1:
|
|
3150
|
+
version "1.17.1"
|
|
3151
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.17.1.tgz#085119cb27d856170c0651c0d0abbd25493a22d6"
|
|
3152
|
+
integrity sha512-ZbIC0P5W7enSMNWZYTKKMzQ+yAU8FyWKazdOwk2rMrMEVk+LA23lfKcgCEvvuala718TEkqkPTwPYyn7qujPkA==
|
|
3111
3153
|
dependencies:
|
|
3112
|
-
"@salesforce/core" "^6.4.
|
|
3113
|
-
"@typescript-eslint/utils" "^6.
|
|
3154
|
+
"@salesforce/core" "^6.4.4"
|
|
3155
|
+
"@typescript-eslint/utils" "^6.17.0"
|
|
3114
3156
|
|
|
3115
3157
|
eslint-plugin-unicorn@^49.0.0:
|
|
3116
3158
|
version "49.0.0"
|
|
@@ -3375,7 +3417,7 @@ faye@^1.4.0:
|
|
|
3375
3417
|
tough-cookie "*"
|
|
3376
3418
|
tunnel-agent "*"
|
|
3377
3419
|
|
|
3378
|
-
figures@^3.0.0:
|
|
3420
|
+
figures@^3.0.0, figures@^3.2.0:
|
|
3379
3421
|
version "3.2.0"
|
|
3380
3422
|
resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af"
|
|
3381
3423
|
integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==
|
|
@@ -4794,10 +4836,10 @@ lines-and-columns@^1.1.6:
|
|
|
4794
4836
|
resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
|
|
4795
4837
|
integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
|
|
4796
4838
|
|
|
4797
|
-
linkinator@^6.0.
|
|
4798
|
-
version "6.0.
|
|
4799
|
-
resolved "https://registry.yarnpkg.com/linkinator/-/linkinator-6.0.
|
|
4800
|
-
integrity sha512-
|
|
4839
|
+
linkinator@^6.0.3:
|
|
4840
|
+
version "6.0.3"
|
|
4841
|
+
resolved "https://registry.yarnpkg.com/linkinator/-/linkinator-6.0.3.tgz#552965bafb37a8747858b2c02a70b3c148b68909"
|
|
4842
|
+
integrity sha512-QAcefOkkumXa5NciVhICPkSR5SMk6LFISe/FIX8vvPdLHLUqdXU06Dq/nuOPA5V89iv2gV9FDufYA7adxIcvOw==
|
|
4801
4843
|
dependencies:
|
|
4802
4844
|
chalk "^5.0.0"
|
|
4803
4845
|
escape-html "^1.0.3"
|
|
@@ -4805,7 +4847,7 @@ linkinator@^6.0.2:
|
|
|
4805
4847
|
glob "^10.3.10"
|
|
4806
4848
|
htmlparser2 "^9.0.0"
|
|
4807
4849
|
marked "^10.0.0"
|
|
4808
|
-
meow "^
|
|
4850
|
+
meow "^13.0.0"
|
|
4809
4851
|
mime "^3.0.0"
|
|
4810
4852
|
server-destroy "^1.0.1"
|
|
4811
4853
|
srcset "^5.0.0"
|
|
@@ -5145,10 +5187,10 @@ marked@^4.3.0:
|
|
|
5145
5187
|
vinyl "^2.0.1"
|
|
5146
5188
|
vinyl-file "^3.0.0"
|
|
5147
5189
|
|
|
5148
|
-
meow@^
|
|
5149
|
-
version "
|
|
5150
|
-
resolved "https://registry.yarnpkg.com/meow/-/meow-
|
|
5151
|
-
integrity sha512-
|
|
5190
|
+
meow@^13.0.0:
|
|
5191
|
+
version "13.1.0"
|
|
5192
|
+
resolved "https://registry.yarnpkg.com/meow/-/meow-13.1.0.tgz#62995b0e8c3951739fe6e0a4becdd4d0df23eb37"
|
|
5193
|
+
integrity sha512-o5R/R3Tzxq0PJ3v3qcQJtSvSE9nKOLSAaDuuoMzDVuGTwHdccMWcYomh9Xolng2tjT6O/Y83d+0coVGof6tqmA==
|
|
5152
5194
|
|
|
5153
5195
|
meow@^8.0.0, meow@^8.1.2:
|
|
5154
5196
|
version "8.1.2"
|
|
@@ -5456,6 +5498,11 @@ mute-stream@0.0.8:
|
|
|
5456
5498
|
resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d"
|
|
5457
5499
|
integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
|
|
5458
5500
|
|
|
5501
|
+
mute-stream@^1.0.0:
|
|
5502
|
+
version "1.0.0"
|
|
5503
|
+
resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-1.0.0.tgz#e31bd9fe62f0aed23520aa4324ea6671531e013e"
|
|
5504
|
+
integrity sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==
|
|
5505
|
+
|
|
5459
5506
|
nanoid@3.3.3:
|
|
5460
5507
|
version "3.3.3"
|
|
5461
5508
|
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.3.tgz#fd8e8b7aa761fe807dba2d1b98fb7241bb724a25"
|
|
@@ -5853,15 +5900,15 @@ object.values@^1.1.7:
|
|
|
5853
5900
|
define-properties "^1.2.0"
|
|
5854
5901
|
es-abstract "^1.22.1"
|
|
5855
5902
|
|
|
5856
|
-
oclif@^4.1.
|
|
5857
|
-
version "4.1.
|
|
5858
|
-
resolved "https://registry.yarnpkg.com/oclif/-/oclif-4.1.
|
|
5859
|
-
integrity sha512-
|
|
5903
|
+
oclif@^4.1.3:
|
|
5904
|
+
version "4.1.3"
|
|
5905
|
+
resolved "https://registry.yarnpkg.com/oclif/-/oclif-4.1.3.tgz#07d3a6b16ff7e2e7c3fd06117fd745655c44abce"
|
|
5906
|
+
integrity sha512-9OmzHaOmn58BZZt8S2USh1gW5RFfa69cDfOtXCWUyYrcRdO4wIJ3DPb0xZ3UxHHbPZKsDImuP/A54weFMH2izw==
|
|
5860
5907
|
dependencies:
|
|
5861
|
-
"@oclif/core" "^3.0
|
|
5862
|
-
"@oclif/plugin-help" "^
|
|
5863
|
-
"@oclif/plugin-not-found" "^
|
|
5864
|
-
"@oclif/plugin-warn-if-update-available" "^3.0.
|
|
5908
|
+
"@oclif/core" "^3.16.0"
|
|
5909
|
+
"@oclif/plugin-help" "^6.0.9"
|
|
5910
|
+
"@oclif/plugin-not-found" "^3.0.7"
|
|
5911
|
+
"@oclif/plugin-warn-if-update-available" "^3.0.8"
|
|
5865
5912
|
async-retry "^1.3.3"
|
|
5866
5913
|
aws-sdk "^2.1231.0"
|
|
5867
5914
|
change-case "^4"
|
|
@@ -6130,7 +6177,7 @@ pascal-case@^3.1.2:
|
|
|
6130
6177
|
no-case "^3.0.4"
|
|
6131
6178
|
tslib "^2.0.3"
|
|
6132
6179
|
|
|
6133
|
-
password-prompt@^1.1.
|
|
6180
|
+
password-prompt@^1.1.3:
|
|
6134
6181
|
version "1.1.3"
|
|
6135
6182
|
resolved "https://registry.yarnpkg.com/password-prompt/-/password-prompt-1.1.3.tgz#05e539f4e7ca4d6c865d479313f10eb9db63ee5f"
|
|
6136
6183
|
integrity sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==
|
|
@@ -6219,10 +6266,10 @@ pino-abstract-transport@^1.0.0, pino-abstract-transport@^1.1.0, pino-abstract-tr
|
|
|
6219
6266
|
readable-stream "^4.0.0"
|
|
6220
6267
|
split2 "^4.0.0"
|
|
6221
6268
|
|
|
6222
|
-
pino-pretty@^10.3.
|
|
6223
|
-
version "10.3.
|
|
6224
|
-
resolved "https://registry.yarnpkg.com/pino-pretty/-/pino-pretty-10.3.
|
|
6225
|
-
integrity sha512-
|
|
6269
|
+
pino-pretty@^10.3.1:
|
|
6270
|
+
version "10.3.1"
|
|
6271
|
+
resolved "https://registry.yarnpkg.com/pino-pretty/-/pino-pretty-10.3.1.tgz#e3285a5265211ac6c7cd5988f9e65bf3371a0ca9"
|
|
6272
|
+
integrity sha512-az8JbIYeN/1iLj2t0jR9DV48/LQ3RC6hZPpapKPkb84Q+yTidMCpgWxIT3N0flnBDilyBQ1luWNpOeJptjdp/g==
|
|
6226
6273
|
dependencies:
|
|
6227
6274
|
colorette "^2.0.7"
|
|
6228
6275
|
dateformat "^4.6.3"
|
|
@@ -6244,17 +6291,17 @@ pino-std-serializers@^6.0.0:
|
|
|
6244
6291
|
resolved "https://registry.yarnpkg.com/pino-std-serializers/-/pino-std-serializers-6.2.2.tgz#d9a9b5f2b9a402486a5fc4db0a737570a860aab3"
|
|
6245
6292
|
integrity sha512-cHjPPsE+vhj/tnhCy/wiMh3M3z3h/j15zHQX+S9GkTBgqJuTuJzYJ4gUyACLhDaJ7kk9ba9iRDmbH2tJU03OiA==
|
|
6246
6293
|
|
|
6247
|
-
pino@^8.
|
|
6248
|
-
version "8.
|
|
6249
|
-
resolved "https://registry.yarnpkg.com/pino/-/pino-8.
|
|
6250
|
-
integrity sha512-
|
|
6294
|
+
pino@^8.17.2:
|
|
6295
|
+
version "8.17.2"
|
|
6296
|
+
resolved "https://registry.yarnpkg.com/pino/-/pino-8.17.2.tgz#0ed20175623a69d31664a1e8a5f85476272224be"
|
|
6297
|
+
integrity sha512-LA6qKgeDMLr2ux2y/YiUt47EfgQ+S9LznBWOJdN3q1dx2sv0ziDLUBeVpyVv17TEcGCBuWf0zNtg3M5m1NhhWQ==
|
|
6251
6298
|
dependencies:
|
|
6252
6299
|
atomic-sleep "^1.0.0"
|
|
6253
6300
|
fast-redact "^3.1.1"
|
|
6254
6301
|
on-exit-leak-free "^2.1.0"
|
|
6255
6302
|
pino-abstract-transport v1.1.0
|
|
6256
6303
|
pino-std-serializers "^6.0.0"
|
|
6257
|
-
process-warning "^
|
|
6304
|
+
process-warning "^3.0.0"
|
|
6258
6305
|
quick-format-unescaped "^4.0.3"
|
|
6259
6306
|
real-require "^0.2.0"
|
|
6260
6307
|
safe-stable-stringify "^2.3.1"
|
|
@@ -6332,10 +6379,10 @@ process-on-spawn@^1.0.0:
|
|
|
6332
6379
|
dependencies:
|
|
6333
6380
|
fromentries "^1.2.0"
|
|
6334
6381
|
|
|
6335
|
-
process-warning@^
|
|
6336
|
-
version "
|
|
6337
|
-
resolved "https://registry.yarnpkg.com/process-warning/-/process-warning-
|
|
6338
|
-
integrity sha512-
|
|
6382
|
+
process-warning@^3.0.0:
|
|
6383
|
+
version "3.0.0"
|
|
6384
|
+
resolved "https://registry.yarnpkg.com/process-warning/-/process-warning-3.0.0.tgz#96e5b88884187a1dce6f5c3166d611132058710b"
|
|
6385
|
+
integrity sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ==
|
|
6339
6386
|
|
|
6340
6387
|
process@^0.11.10:
|
|
6341
6388
|
version "0.11.10"
|
|
@@ -6702,6 +6749,11 @@ run-async@^2.0.0, run-async@^2.4.0:
|
|
|
6702
6749
|
resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455"
|
|
6703
6750
|
integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==
|
|
6704
6751
|
|
|
6752
|
+
run-async@^3.0.0:
|
|
6753
|
+
version "3.0.0"
|
|
6754
|
+
resolved "https://registry.yarnpkg.com/run-async/-/run-async-3.0.0.tgz#42a432f6d76c689522058984384df28be379daad"
|
|
6755
|
+
integrity sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==
|
|
6756
|
+
|
|
6705
6757
|
run-parallel@^1.1.9:
|
|
6706
6758
|
version "1.2.0"
|
|
6707
6759
|
resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
|
|
@@ -6907,7 +6959,7 @@ signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7:
|
|
|
6907
6959
|
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
|
|
6908
6960
|
integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
|
|
6909
6961
|
|
|
6910
|
-
signal-exit@^4.0.1:
|
|
6962
|
+
signal-exit@^4.0.1, signal-exit@^4.1.0:
|
|
6911
6963
|
version "4.1.0"
|
|
6912
6964
|
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04"
|
|
6913
6965
|
integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==
|
|
@@ -7376,7 +7428,7 @@ ts-json-schema-generator@^1.5.0:
|
|
|
7376
7428
|
safe-stable-stringify "^2.4.3"
|
|
7377
7429
|
typescript "~5.3.2"
|
|
7378
7430
|
|
|
7379
|
-
ts-node@^10.8.1, ts-node@^10.9.
|
|
7431
|
+
ts-node@^10.8.1, ts-node@^10.9.2:
|
|
7380
7432
|
version "10.9.2"
|
|
7381
7433
|
resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.2.tgz#70f021c9e185bccdca820e26dc413805c101c71f"
|
|
7382
7434
|
integrity sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==
|
|
@@ -7420,7 +7472,7 @@ tslib@^1.9.0:
|
|
|
7420
7472
|
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
|
|
7421
7473
|
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
|
|
7422
7474
|
|
|
7423
|
-
tslib@^2, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.
|
|
7475
|
+
tslib@^2, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.6.2:
|
|
7424
7476
|
version "2.6.2"
|
|
7425
7477
|
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae"
|
|
7426
7478
|
integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
|
package/oclif.manifest.json
CHANGED
|
@@ -169,7 +169,6 @@
|
|
|
169
169
|
"strict": true,
|
|
170
170
|
"summary": "Execute a SOQL query.",
|
|
171
171
|
"enableJsonFlag": true,
|
|
172
|
-
"SF_ENV": "SF_ENV",
|
|
173
172
|
"isESM": true,
|
|
174
173
|
"relativePath": [
|
|
175
174
|
"lib",
|
|
@@ -300,7 +299,6 @@
|
|
|
300
299
|
"strict": true,
|
|
301
300
|
"summary": "View the status of a bulk data load job or batch.",
|
|
302
301
|
"enableJsonFlag": true,
|
|
303
|
-
"SF_ENV": "SF_ENV",
|
|
304
302
|
"isESM": true,
|
|
305
303
|
"relativePath": [
|
|
306
304
|
"lib",
|
|
@@ -433,7 +431,6 @@
|
|
|
433
431
|
"strict": true,
|
|
434
432
|
"summary": "Bulk delete records from an org using a CSV file. Uses Bulk API 2.0.",
|
|
435
433
|
"enableJsonFlag": true,
|
|
436
|
-
"SF_ENV": "SF_ENV",
|
|
437
434
|
"isESM": true,
|
|
438
435
|
"relativePath": [
|
|
439
436
|
"lib",
|
|
@@ -574,7 +571,6 @@
|
|
|
574
571
|
"strict": true,
|
|
575
572
|
"summary": "Deletes a single record from a Salesforce or Tooling API object.",
|
|
576
573
|
"enableJsonFlag": true,
|
|
577
|
-
"SF_ENV": "SF_ENV",
|
|
578
574
|
"isESM": true,
|
|
579
575
|
"relativePath": [
|
|
580
576
|
"lib",
|
|
@@ -708,7 +704,6 @@
|
|
|
708
704
|
"strict": true,
|
|
709
705
|
"summary": "Resume a bulk delete job that you previously started. Uses Bulk API 2.0.",
|
|
710
706
|
"enableJsonFlag": true,
|
|
711
|
-
"SF_ENV": "SF_ENV",
|
|
712
707
|
"isESM": true,
|
|
713
708
|
"relativePath": [
|
|
714
709
|
"lib",
|
|
@@ -837,7 +832,6 @@
|
|
|
837
832
|
"strict": true,
|
|
838
833
|
"summary": "Create and insert a record into a Salesforce or Tooling API object.",
|
|
839
834
|
"enableJsonFlag": true,
|
|
840
|
-
"SF_ENV": "SF_ENV",
|
|
841
835
|
"isESM": true,
|
|
842
836
|
"relativePath": [
|
|
843
837
|
"lib",
|
|
@@ -983,7 +977,6 @@
|
|
|
983
977
|
"strict": true,
|
|
984
978
|
"summary": "Export data from an org into one or more JSON files.",
|
|
985
979
|
"enableJsonFlag": true,
|
|
986
|
-
"SF_ENV": "SF_ENV",
|
|
987
980
|
"isESM": true,
|
|
988
981
|
"relativePath": [
|
|
989
982
|
"lib",
|
|
@@ -1149,7 +1142,6 @@
|
|
|
1149
1142
|
"strict": true,
|
|
1150
1143
|
"summary": "Retrieve and display a single record of a Salesforce or Tooling API object.",
|
|
1151
1144
|
"enableJsonFlag": true,
|
|
1152
|
-
"SF_ENV": "SF_ENV",
|
|
1153
1145
|
"isESM": true,
|
|
1154
1146
|
"relativePath": [
|
|
1155
1147
|
"lib",
|
|
@@ -1305,7 +1297,6 @@
|
|
|
1305
1297
|
"strict": true,
|
|
1306
1298
|
"summary": "Import data from one or more JSON files into an org.",
|
|
1307
1299
|
"enableJsonFlag": true,
|
|
1308
|
-
"SF_ENV": "SF_ENV",
|
|
1309
1300
|
"isESM": true,
|
|
1310
1301
|
"relativePath": [
|
|
1311
1302
|
"lib",
|
|
@@ -1451,7 +1442,6 @@
|
|
|
1451
1442
|
"strict": true,
|
|
1452
1443
|
"summary": "View the status of a bulk query.",
|
|
1453
1444
|
"enableJsonFlag": true,
|
|
1454
|
-
"SF_ENV": "SF_ENV",
|
|
1455
1445
|
"isESM": true,
|
|
1456
1446
|
"relativePath": [
|
|
1457
1447
|
"lib",
|
|
@@ -1721,7 +1711,6 @@
|
|
|
1721
1711
|
"strict": true,
|
|
1722
1712
|
"summary": "Updates a single record of a Salesforce or Tooling API object.",
|
|
1723
1713
|
"enableJsonFlag": true,
|
|
1724
|
-
"SF_ENV": "SF_ENV",
|
|
1725
1714
|
"isESM": true,
|
|
1726
1715
|
"relativePath": [
|
|
1727
1716
|
"lib",
|
|
@@ -1897,7 +1886,6 @@
|
|
|
1897
1886
|
"strict": true,
|
|
1898
1887
|
"summary": "Bulk upsert records to an org from a CSV file. Uses Bulk API 2.0.",
|
|
1899
1888
|
"enableJsonFlag": true,
|
|
1900
|
-
"SF_ENV": "SF_ENV",
|
|
1901
1889
|
"isESM": true,
|
|
1902
1890
|
"relativePath": [
|
|
1903
1891
|
"lib",
|
|
@@ -2005,7 +1993,6 @@
|
|
|
2005
1993
|
"strict": true,
|
|
2006
1994
|
"summary": "Resume a bulk upsert job that you previously started. Uses Bulk API 2.0.",
|
|
2007
1995
|
"enableJsonFlag": true,
|
|
2008
|
-
"SF_ENV": "SF_ENV",
|
|
2009
1996
|
"isESM": true,
|
|
2010
1997
|
"relativePath": [
|
|
2011
1998
|
"lib",
|
|
@@ -2124,7 +2111,6 @@
|
|
|
2124
2111
|
"strict": true,
|
|
2125
2112
|
"summary": "Bulk delete records from an org using a CSV file. Uses Bulk API 1.0.",
|
|
2126
2113
|
"enableJsonFlag": true,
|
|
2127
|
-
"SF_ENV": "SF_ENV",
|
|
2128
2114
|
"isESM": true,
|
|
2129
2115
|
"relativePath": [
|
|
2130
2116
|
"lib",
|
|
@@ -2249,7 +2235,6 @@
|
|
|
2249
2235
|
"strict": true,
|
|
2250
2236
|
"summary": "View the status of a bulk data load job or batch. Uses Bulk API 1.0.",
|
|
2251
2237
|
"enableJsonFlag": true,
|
|
2252
|
-
"SF_ENV": "SF_ENV",
|
|
2253
2238
|
"isESM": true,
|
|
2254
2239
|
"relativePath": [
|
|
2255
2240
|
"lib",
|
|
@@ -2407,7 +2392,6 @@
|
|
|
2407
2392
|
"strict": true,
|
|
2408
2393
|
"summary": "Bulk upsert records to an org from a CSV file. Uses Bulk API 1.0.",
|
|
2409
2394
|
"enableJsonFlag": true,
|
|
2410
|
-
"SF_ENV": "SF_ENV",
|
|
2411
2395
|
"isESM": true,
|
|
2412
2396
|
"relativePath": [
|
|
2413
2397
|
"lib",
|
|
@@ -2446,5 +2430,5 @@
|
|
|
2446
2430
|
]
|
|
2447
2431
|
}
|
|
2448
2432
|
},
|
|
2449
|
-
"version": "3.0.
|
|
2433
|
+
"version": "3.0.15"
|
|
2450
2434
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-data",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.15",
|
|
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.15.1",
|
|
112
112
|
"@salesforce/core": "^6.4.2",
|
|
113
113
|
"@salesforce/kit": "^3.0.15",
|
|
114
|
-
"@salesforce/sf-plugins-core": "^
|
|
114
|
+
"@salesforce/sf-plugins-core": "^7.1.1",
|
|
115
115
|
"@salesforce/ts-types": "^2.0.9",
|
|
116
116
|
"chalk": "^5.3.0",
|
|
117
117
|
"change-case": "^5.3.0",
|
|
@@ -121,13 +121,13 @@
|
|
|
121
121
|
},
|
|
122
122
|
"devDependencies": {
|
|
123
123
|
"@oclif/plugin-command-snapshot": "^5.0.5",
|
|
124
|
-
"@salesforce/cli-plugins-testkit": "^5.1.
|
|
125
|
-
"@salesforce/dev-scripts": "^8.
|
|
126
|
-
"@salesforce/plugin-command-reference": "^3.0.
|
|
124
|
+
"@salesforce/cli-plugins-testkit": "^5.1.4",
|
|
125
|
+
"@salesforce/dev-scripts": "^8.3.0",
|
|
126
|
+
"@salesforce/plugin-command-reference": "^3.0.59",
|
|
127
127
|
"@types/chai-as-promised": "^7.1.8",
|
|
128
128
|
"chai-as-promised": "^7.1.1",
|
|
129
|
-
"eslint-plugin-sf-plugin": "^1.17.
|
|
130
|
-
"oclif": "^4.1.
|
|
129
|
+
"eslint-plugin-sf-plugin": "^1.17.1",
|
|
130
|
+
"oclif": "^4.1.3",
|
|
131
131
|
"shx": "^0.3.3",
|
|
132
132
|
"ts-node": "^10.9.2",
|
|
133
133
|
"typescript": "^5.2.2"
|
|
@@ -238,7 +238,7 @@
|
|
|
238
238
|
"output": []
|
|
239
239
|
},
|
|
240
240
|
"link-check": {
|
|
241
|
-
"command": "node -e \"process.exit(process.env.CI ? 0 : 1)\" || linkinator \"**/*.md\" --skip \"CHANGELOG.md|node_modules|test/|confluence.internal.salesforce.com|%s\" --markdown --retry --directory-listing --verbosity error",
|
|
241
|
+
"command": "node -e \"process.exit(process.env.CI ? 0 : 1)\" || linkinator \"**/*.md\" --skip \"CHANGELOG.md|node_modules|test/|confluence.internal.salesforce.com|my.salesforce.com|%s\" --markdown --retry --directory-listing --verbosity error",
|
|
242
242
|
"files": [
|
|
243
243
|
"./*.md",
|
|
244
244
|
"./!(CHANGELOG).md",
|
|
@@ -250,7 +250,7 @@
|
|
|
250
250
|
"exports": "./lib/index.js",
|
|
251
251
|
"type": "module",
|
|
252
252
|
"sfdx": {
|
|
253
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/3.0.
|
|
254
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/3.0.
|
|
253
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/3.0.15.crt",
|
|
254
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/3.0.15.sig"
|
|
255
255
|
}
|
|
256
256
|
}
|