-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathyarn.lock
13668 lines (12338 loc) · 474 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10
"@0x/contract-addresses@npm:8.13.0":
version: 8.13.0
resolution: "@0x/contract-addresses@npm:8.13.0"
checksum: 10/19993928bd7d86b553f6677f2960675eac870b54bf0b994f9b272e71725432f578d35e7a80d1d1a026be3cbc91432fca29642771fc29285acab39f21be20a62f
languageName: node
linkType: hard
"@0x/swap-ts-sdk@npm:^2.1.1":
version: 2.1.1
resolution: "@0x/swap-ts-sdk@npm:2.1.1"
dependencies:
"@0x/contract-addresses": "npm:8.13.0"
"@0x/utils": "npm:7.0.0"
"@trpc/client": "npm:10.40.0"
"@trpc/server": "npm:10.40.0"
trpc-openapi: "npm:1.2.0"
zod: "npm:3.22.4"
checksum: 10/ebf860bcf2db15106ed0d9f3f4edfd5a1c9a19c7b04a2fe58a42616e40ff3be60e0994694a67ba36cf8ffe090b6797b215d4b6fd8dc7fffaca637f2e5008b581
languageName: node
linkType: hard
"@0x/types@npm:^3.3.7":
version: 3.3.7
resolution: "@0x/types@npm:3.3.7"
dependencies:
"@types/node": "npm:12.12.54"
bignumber.js: "npm:~9.0.2"
ethereum-types: "npm:^3.7.1"
checksum: 10/2c09e9d6d3766fd33a8860e61e1b950e95eaf15abbeecb7bed64a56e3363edc5e2ba0baa1527efd7ed79fea22b3cec3ad60ff70f695b328a6052190787720f32
languageName: node
linkType: hard
"@0x/typescript-typings@npm:^5.3.2":
version: 5.3.2
resolution: "@0x/typescript-typings@npm:5.3.2"
dependencies:
"@types/bn.js": "npm:^4.11.0"
"@types/node": "npm:12.12.54"
"@types/react": "npm:*"
bignumber.js: "npm:~9.0.2"
ethereum-types: "npm:^3.7.1"
popper.js: "npm:1.14.3"
checksum: 10/7f26ca107cbd7f5c5d7e1f85d7cc3548c8d01fa674578bf163aaf11ea7f45501d9d8d13b157bfc01381431b3ccded26d5c5b257a87b3cb925a47ece1d31db2af
languageName: node
linkType: hard
"@0x/utils@npm:7.0.0":
version: 7.0.0
resolution: "@0x/utils@npm:7.0.0"
dependencies:
"@0x/types": "npm:^3.3.7"
"@0x/typescript-typings": "npm:^5.3.2"
"@types/mocha": "npm:^5.2.7"
"@types/node": "npm:12.12.54"
abortcontroller-polyfill: "npm:^1.1.9"
bignumber.js: "npm:~9.0.2"
chalk: "npm:^2.3.0"
detect-node: "npm:2.0.3"
ethereum-types: "npm:^3.7.1"
ethereumjs-util: "npm:^7.1.5"
ethers: "npm:~4.0.4"
isomorphic-fetch: "npm:^3.0.0"
js-sha3: "npm:^0.7.0"
lodash: "npm:^4.17.21"
checksum: 10/bf203928417c44b3c6891e9959975b925c4e3a7da7997e8d720f55032bce586983918a079d2c8f57f5c7965d426bf91ca42ab0399a25c53de1b1fae2c67b0666
languageName: node
linkType: hard
"@adraffy/ens-normalize@npm:^1.10.1":
version: 1.11.0
resolution: "@adraffy/ens-normalize@npm:1.11.0"
checksum: 10/abef75f21470ea43dd6071168e092d2d13e38067e349e76186c78838ae174a46c3e18ca50921d05bea6ec3203074147c9e271f8cb6531d1c2c0e146f3199ddcb
languageName: node
linkType: hard
"@amplitude/analytics-browser@npm:^2.11.13":
version: 2.11.13
resolution: "@amplitude/analytics-browser@npm:2.11.13"
dependencies:
"@amplitude/analytics-client-common": "npm:^2.3.8"
"@amplitude/analytics-core": "npm:^2.5.6"
"@amplitude/analytics-remote-config": "npm:^0.4.0"
"@amplitude/analytics-types": "npm:^2.9.0"
"@amplitude/plugin-autocapture-browser": "npm:^1.0.5"
"@amplitude/plugin-page-view-tracking-browser": "npm:^2.3.9"
tslib: "npm:^2.4.1"
checksum: 10/ad1f85f47b9feefab60c9e1a68af7c3f3ff1b5232f0646a10c13ec449ea93a089e71c33b0bc92506144d3b1541fa8f285d1fcac0bec5327fed3ebd5571c34dbe
languageName: node
linkType: hard
"@amplitude/analytics-client-common@npm:>=1 <3":
version: 2.3.5
resolution: "@amplitude/analytics-client-common@npm:2.3.5"
dependencies:
"@amplitude/analytics-connector": "npm:^1.4.8"
"@amplitude/analytics-core": "npm:^2.5.4"
"@amplitude/analytics-types": "npm:^2.8.4"
tslib: "npm:^2.4.1"
checksum: 10/df6a85f4623899d2b051514bb899c1e8f59bc4a0d7004b6c0e23f0cdf8aa676820fb6b0a069f535c90947d223a4d45dff440bd9ea36e4421046e085d6b550716
languageName: node
linkType: hard
"@amplitude/analytics-client-common@npm:^2.3.8":
version: 2.3.8
resolution: "@amplitude/analytics-client-common@npm:2.3.8"
dependencies:
"@amplitude/analytics-connector": "npm:^1.4.8"
"@amplitude/analytics-core": "npm:^2.5.6"
"@amplitude/analytics-types": "npm:^2.9.0"
tslib: "npm:^2.4.1"
checksum: 10/25676355776f9288d910acd4d1e42672805fce2e6e6ada2c100d6cc1de3b184d577aec6d99314a1f5653e1da230c7c6e387caf5c0bd2b4972454ab9a33c89236
languageName: node
linkType: hard
"@amplitude/analytics-connector@npm:^1.4.8":
version: 1.6.2
resolution: "@amplitude/analytics-connector@npm:1.6.2"
dependencies:
"@amplitude/experiment-core": "npm:^0.10.1"
checksum: 10/b9653ce55bb18983b2434720e61be24cd8374fd3e9fb4d33b8e0ff3f9bfd25edbf2637672c77861a14133a3b9dbad807fc4e43dffa937f89c192559292962ef0
languageName: node
linkType: hard
"@amplitude/analytics-core@npm:>=1 <3, @amplitude/analytics-core@npm:^2.5.4":
version: 2.5.4
resolution: "@amplitude/analytics-core@npm:2.5.4"
dependencies:
"@amplitude/analytics-types": "npm:^2.8.4"
tslib: "npm:^2.4.1"
checksum: 10/0e0ed63f3b59937bc4729607fb1a034b8f9dee48b42b4e9e18b4abf5be8a7d39bb8af6b803dd823d5aa4a49f4adb1b718f1cf6e64ab5a00f2838a730bc285500
languageName: node
linkType: hard
"@amplitude/analytics-core@npm:^2.5.6":
version: 2.5.6
resolution: "@amplitude/analytics-core@npm:2.5.6"
dependencies:
"@amplitude/analytics-types": "npm:^2.9.0"
tslib: "npm:^2.4.1"
checksum: 10/deee2e464c1ef04f483ae01f00293234fc6e8078b959874b2a333f895157ab434be55dc02673939b8d2f234bd4dc11a3965cb499dd584755205d48a66a9653a0
languageName: node
linkType: hard
"@amplitude/analytics-remote-config@npm:^0.4.0":
version: 0.4.1
resolution: "@amplitude/analytics-remote-config@npm:0.4.1"
dependencies:
"@amplitude/analytics-client-common": "npm:>=1 <3"
"@amplitude/analytics-core": "npm:>=1 <3"
"@amplitude/analytics-types": "npm:>=1 <3"
tslib: "npm:^2.4.1"
checksum: 10/b48564fe1830c390b8463e1fc55438f4e07d552ce1a1f8deecac59f365c5fa41ff6ea649ddb17a23b366d64971dbd0e5a489e0c837531fc6d9351bc62888fd1c
languageName: node
linkType: hard
"@amplitude/analytics-types@npm:>=1 <3, @amplitude/analytics-types@npm:^2.8.4":
version: 2.8.4
resolution: "@amplitude/analytics-types@npm:2.8.4"
checksum: 10/ad9cb6b8a758149d870641209f166ab9fe6dd4572e5a46df6c94d5a9dbfbaddcde7935c64d7d0f09b7fa9a5ca955b2dbccff65b4208e9ca19d93a24c50d04959
languageName: node
linkType: hard
"@amplitude/analytics-types@npm:^2.9.0":
version: 2.9.0
resolution: "@amplitude/analytics-types@npm:2.9.0"
checksum: 10/2d9e84ada7fd65fb733cdfd056c469e63c10d666d6b7fd4b5d147e65d7d2a580bce512f258e5278ad17d7aeeb0e92bfdc14e582ece3fa3f19c54feac49ded296
languageName: node
linkType: hard
"@amplitude/experiment-core@npm:^0.10.1":
version: 0.10.1
resolution: "@amplitude/experiment-core@npm:0.10.1"
dependencies:
js-base64: "npm:^3.7.5"
checksum: 10/39ddf992b2c522827450c1c5ab363fb1344806b392c980332d79143f04536d0ec8c6e3c3fa392cf9a937a87b30e7e479431e0aaa9979518c45449d6a01973379
languageName: node
linkType: hard
"@amplitude/plugin-autocapture-browser@npm:^1.0.5":
version: 1.0.5
resolution: "@amplitude/plugin-autocapture-browser@npm:1.0.5"
dependencies:
"@amplitude/analytics-client-common": "npm:>=1 <3"
"@amplitude/analytics-types": "npm:^2.9.0"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.4.1"
checksum: 10/f7e31801f82b9276f8e7981ff79f655519070baf10f8f7b3206f5d835f905aa43f9153d09da65e1b65519f90664b1eb8e9d1c674c0a7aff0db08d9c86bf97407
languageName: node
linkType: hard
"@amplitude/plugin-page-view-tracking-browser@npm:^2.3.9":
version: 2.3.9
resolution: "@amplitude/plugin-page-view-tracking-browser@npm:2.3.9"
dependencies:
"@amplitude/analytics-client-common": "npm:^2.3.8"
"@amplitude/analytics-types": "npm:^2.9.0"
tslib: "npm:^2.4.1"
checksum: 10/f96a537875e5bb4bb7c4945b2b3d759a8780a0ef447521488dd822a9b3f58847f274c8cbc61cd424a071d61681108ad1b24473672636879337d5b759e9ff58c2
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10/f3451525379c68a73eb0a1e65247fbf28c0cccd126d93af21c75fceff77773d43c0d4a2d51978fb131aff25b5f2cb41a9fe48cc296e61ae65e679c4f6918b0ab
languageName: node
linkType: hard
"@as-integrations/aws-lambda@npm:^3.1.0":
version: 3.1.0
resolution: "@as-integrations/aws-lambda@npm:3.1.0"
dependencies:
"@types/aws-lambda": "npm:^8.10.106"
peerDependencies:
"@apollo/server": ^4.0.0
checksum: 10/6654572e6a4f0911b20414daa35e4c69598f5001ef102f7d6ab3fcc93718efa0b0921c7bb898d5abc926d4e6a98ab1655130f85b6314cc2c5865faf9d4721985
languageName: node
linkType: hard
"@aws-crypto/crc32@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10/1b0a56ad4cb44c9512d8b1668dcf9306ab541d3a73829f435ca97abaec8d56f3db953db03ad0d0698754fea16fcd803d11fa42e0889bc7b803c6a030b04c63de
languageName: node
linkType: hard
"@aws-crypto/crc32c@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32c@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10/08bd1db17d7c772fa6e34b38a360ce77ad041164743113eefa8343c2af917a419697daf090c5854129ef19f3a9673ed1fd8446e03eb32c8ed52d2cc409b0dee7
languageName: node
linkType: hard
"@aws-crypto/sha1-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha1-browser@npm:5.2.0"
dependencies:
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10/239f4c59cce9abd33c01117b10553fbef868a063e74faf17edb798c250d759a2578841efa2837e5e51854f52ef57dbc40780b073cae20f89ebed6a8cc7fa06f1
languageName: node
linkType: hard
"@aws-crypto/sha256-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-browser@npm:5.2.0"
dependencies:
"@aws-crypto/sha256-js": "npm:^5.2.0"
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10/2b1b701ca6caa876333b4eb2b96e5187d71ebb51ebf8e2d632690dbcdedeff038202d23adcc97e023437ed42bb1963b7b463e343687edf0635fd4b98b2edad1a
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:5.2.0, @aws-crypto/sha256-js@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-js@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10/f46aace7b873c615be4e787ab0efd0148ef7de48f9f12c7d043e05c52e52b75bb0bf6dbcb9b2852d940d7724fab7b6d5ff1469160a3dd024efe7a68b5f70df8c
languageName: node
linkType: hard
"@aws-crypto/supports-web-crypto@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/supports-web-crypto@npm:5.2.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/6ed0c7e17f4f6663d057630805c45edb35d5693380c24ab52d4c453ece303c6c8a6ade9ee93c97dda77d9f6cae376ffbb44467057161c513dffa3422250edaf5
languageName: node
linkType: hard
"@aws-crypto/util@npm:5.2.0, @aws-crypto/util@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/util@npm:5.2.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10/f80a174c404e1ad4364741c942f440e75f834c08278fa754349fe23a6edc679d480ea9ced5820774aee58091ed270067022d8059ecf1a7ef452d58134ac7e9e1
languageName: node
linkType: hard
"@aws-sdk/client-dynamodb@npm:^3.758.0":
version: 3.758.0
resolution: "@aws-sdk/client-dynamodb@npm:3.758.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.758.0"
"@aws-sdk/credential-provider-node": "npm:3.758.0"
"@aws-sdk/middleware-endpoint-discovery": "npm:3.734.0"
"@aws-sdk/middleware-host-header": "npm:3.734.0"
"@aws-sdk/middleware-logger": "npm:3.734.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.734.0"
"@aws-sdk/middleware-user-agent": "npm:3.758.0"
"@aws-sdk/region-config-resolver": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-endpoints": "npm:3.743.0"
"@aws-sdk/util-user-agent-browser": "npm:3.734.0"
"@aws-sdk/util-user-agent-node": "npm:3.758.0"
"@smithy/config-resolver": "npm:^4.0.1"
"@smithy/core": "npm:^3.1.5"
"@smithy/fetch-http-handler": "npm:^5.0.1"
"@smithy/hash-node": "npm:^4.0.1"
"@smithy/invalid-dependency": "npm:^4.0.1"
"@smithy/middleware-content-length": "npm:^4.0.1"
"@smithy/middleware-endpoint": "npm:^4.0.6"
"@smithy/middleware-retry": "npm:^4.0.7"
"@smithy/middleware-serde": "npm:^4.0.2"
"@smithy/middleware-stack": "npm:^4.0.1"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/node-http-handler": "npm:^4.0.3"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/smithy-client": "npm:^4.1.6"
"@smithy/types": "npm:^4.1.0"
"@smithy/url-parser": "npm:^4.0.1"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.7"
"@smithy/util-defaults-mode-node": "npm:^4.0.7"
"@smithy/util-endpoints": "npm:^3.0.1"
"@smithy/util-middleware": "npm:^4.0.1"
"@smithy/util-retry": "npm:^4.0.1"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.2"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10/e44b8aaf72db6a4e3c75100032ac4603130c0c54a077fb56744d3792fd5d7258b8046ddcccfba96511002bf5bfc0bc36ee8c5880a9873b52dfa8e50dc8d4fe40
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.758.0":
version: 3.758.0
resolution: "@aws-sdk/client-s3@npm:3.758.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:5.2.0"
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.758.0"
"@aws-sdk/credential-provider-node": "npm:3.758.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.734.0"
"@aws-sdk/middleware-expect-continue": "npm:3.734.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.758.0"
"@aws-sdk/middleware-host-header": "npm:3.734.0"
"@aws-sdk/middleware-location-constraint": "npm:3.734.0"
"@aws-sdk/middleware-logger": "npm:3.734.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.734.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.758.0"
"@aws-sdk/middleware-ssec": "npm:3.734.0"
"@aws-sdk/middleware-user-agent": "npm:3.758.0"
"@aws-sdk/region-config-resolver": "npm:3.734.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.758.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-endpoints": "npm:3.743.0"
"@aws-sdk/util-user-agent-browser": "npm:3.734.0"
"@aws-sdk/util-user-agent-node": "npm:3.758.0"
"@aws-sdk/xml-builder": "npm:3.734.0"
"@smithy/config-resolver": "npm:^4.0.1"
"@smithy/core": "npm:^3.1.5"
"@smithy/eventstream-serde-browser": "npm:^4.0.1"
"@smithy/eventstream-serde-config-resolver": "npm:^4.0.1"
"@smithy/eventstream-serde-node": "npm:^4.0.1"
"@smithy/fetch-http-handler": "npm:^5.0.1"
"@smithy/hash-blob-browser": "npm:^4.0.1"
"@smithy/hash-node": "npm:^4.0.1"
"@smithy/hash-stream-node": "npm:^4.0.1"
"@smithy/invalid-dependency": "npm:^4.0.1"
"@smithy/md5-js": "npm:^4.0.1"
"@smithy/middleware-content-length": "npm:^4.0.1"
"@smithy/middleware-endpoint": "npm:^4.0.6"
"@smithy/middleware-retry": "npm:^4.0.7"
"@smithy/middleware-serde": "npm:^4.0.2"
"@smithy/middleware-stack": "npm:^4.0.1"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/node-http-handler": "npm:^4.0.3"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/smithy-client": "npm:^4.1.6"
"@smithy/types": "npm:^4.1.0"
"@smithy/url-parser": "npm:^4.0.1"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.7"
"@smithy/util-defaults-mode-node": "npm:^4.0.7"
"@smithy/util-endpoints": "npm:^3.0.1"
"@smithy/util-middleware": "npm:^4.0.1"
"@smithy/util-retry": "npm:^4.0.1"
"@smithy/util-stream": "npm:^4.1.2"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.2"
tslib: "npm:^2.6.2"
checksum: 10/d99d3897fbfcc1d83ae1cc635b8b028a79f79622a169259d0b3ee193e3644e3a2730e4c9d5f7de1cb478dfec2b53d3d798d1477c85de276e80d4fe642a446cce
languageName: node
linkType: hard
"@aws-sdk/client-sesv2@npm:^3.758.0":
version: 3.758.0
resolution: "@aws-sdk/client-sesv2@npm:3.758.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.758.0"
"@aws-sdk/credential-provider-node": "npm:3.758.0"
"@aws-sdk/middleware-host-header": "npm:3.734.0"
"@aws-sdk/middleware-logger": "npm:3.734.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.734.0"
"@aws-sdk/middleware-user-agent": "npm:3.758.0"
"@aws-sdk/region-config-resolver": "npm:3.734.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.758.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-endpoints": "npm:3.743.0"
"@aws-sdk/util-user-agent-browser": "npm:3.734.0"
"@aws-sdk/util-user-agent-node": "npm:3.758.0"
"@smithy/config-resolver": "npm:^4.0.1"
"@smithy/core": "npm:^3.1.5"
"@smithy/fetch-http-handler": "npm:^5.0.1"
"@smithy/hash-node": "npm:^4.0.1"
"@smithy/invalid-dependency": "npm:^4.0.1"
"@smithy/middleware-content-length": "npm:^4.0.1"
"@smithy/middleware-endpoint": "npm:^4.0.6"
"@smithy/middleware-retry": "npm:^4.0.7"
"@smithy/middleware-serde": "npm:^4.0.2"
"@smithy/middleware-stack": "npm:^4.0.1"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/node-http-handler": "npm:^4.0.3"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/smithy-client": "npm:^4.1.6"
"@smithy/types": "npm:^4.1.0"
"@smithy/url-parser": "npm:^4.0.1"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.7"
"@smithy/util-defaults-mode-node": "npm:^4.0.7"
"@smithy/util-endpoints": "npm:^3.0.1"
"@smithy/util-middleware": "npm:^4.0.1"
"@smithy/util-retry": "npm:^4.0.1"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/6da904495d89875b1f4b22654c110cf17a99fad31f626ed6b5717f3160c51b33b6327300af9d6988026e04bfd5e3ab53def0c06fb23f2a921f9309037caee939
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.758.0":
version: 3.758.0
resolution: "@aws-sdk/client-sso@npm:3.758.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.758.0"
"@aws-sdk/middleware-host-header": "npm:3.734.0"
"@aws-sdk/middleware-logger": "npm:3.734.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.734.0"
"@aws-sdk/middleware-user-agent": "npm:3.758.0"
"@aws-sdk/region-config-resolver": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-endpoints": "npm:3.743.0"
"@aws-sdk/util-user-agent-browser": "npm:3.734.0"
"@aws-sdk/util-user-agent-node": "npm:3.758.0"
"@smithy/config-resolver": "npm:^4.0.1"
"@smithy/core": "npm:^3.1.5"
"@smithy/fetch-http-handler": "npm:^5.0.1"
"@smithy/hash-node": "npm:^4.0.1"
"@smithy/invalid-dependency": "npm:^4.0.1"
"@smithy/middleware-content-length": "npm:^4.0.1"
"@smithy/middleware-endpoint": "npm:^4.0.6"
"@smithy/middleware-retry": "npm:^4.0.7"
"@smithy/middleware-serde": "npm:^4.0.2"
"@smithy/middleware-stack": "npm:^4.0.1"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/node-http-handler": "npm:^4.0.3"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/smithy-client": "npm:^4.1.6"
"@smithy/types": "npm:^4.1.0"
"@smithy/url-parser": "npm:^4.0.1"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.7"
"@smithy/util-defaults-mode-node": "npm:^4.0.7"
"@smithy/util-endpoints": "npm:^3.0.1"
"@smithy/util-middleware": "npm:^4.0.1"
"@smithy/util-retry": "npm:^4.0.1"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/986793a9a130732e27808322ff631517cb1e3ef12c0e1f8691b5371877fbc055be2a32a9b230a307a7e8c2672a6246928ed6f9e0a068b329a328ecb70d98a84c
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.758.0":
version: 3.758.0
resolution: "@aws-sdk/core@npm:3.758.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/core": "npm:^3.1.5"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/signature-v4": "npm:^5.0.1"
"@smithy/smithy-client": "npm:^4.1.6"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-middleware": "npm:^4.0.1"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10/66a9cfa55d813051c254c62e456cc3dcf5e1b93eb8971f78e2f52dc3ad58b5152645bed017a88426cff4ca4f6c6b88b675b1a551d30fb89a1bed287a0ebef855
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.758.0":
version: 3.758.0
resolution: "@aws-sdk/credential-provider-env@npm:3.758.0"
dependencies:
"@aws-sdk/core": "npm:3.758.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/00953e2cd2f7656099aae289e00cd4d8d90c0bc46d8dc19c86957f3edd1b7be79ffa8ff572b278e696d6f808499a7ee50c1067978273015f4a0e6c7d33e54234
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.758.0":
version: 3.758.0
resolution: "@aws-sdk/credential-provider-http@npm:3.758.0"
dependencies:
"@aws-sdk/core": "npm:3.758.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/fetch-http-handler": "npm:^5.0.1"
"@smithy/node-http-handler": "npm:^4.0.3"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/smithy-client": "npm:^4.1.6"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-stream": "npm:^4.1.2"
tslib: "npm:^2.6.2"
checksum: 10/74e80bd0f49904630c603586cb982ddcc95b6d050aa5137fef6284d707280c15aa01b10930ea80e850e7b7deb5487b7f967060cc97a0cf96d1acc50f615a842b
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.758.0":
version: 3.758.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.758.0"
dependencies:
"@aws-sdk/core": "npm:3.758.0"
"@aws-sdk/credential-provider-env": "npm:3.758.0"
"@aws-sdk/credential-provider-http": "npm:3.758.0"
"@aws-sdk/credential-provider-process": "npm:3.758.0"
"@aws-sdk/credential-provider-sso": "npm:3.758.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.758.0"
"@aws-sdk/nested-clients": "npm:3.758.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/credential-provider-imds": "npm:^4.0.1"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/shared-ini-file-loader": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/5a2eda2e67c9c0b7ca5d5e28e32e111980f7cb3070a0129a966f6c51e06b287561346e551bcd41e85d1b1260bff017d5e192b67441f4b0154cc18b0ae64e512f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.758.0":
version: 3.758.0
resolution: "@aws-sdk/credential-provider-node@npm:3.758.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.758.0"
"@aws-sdk/credential-provider-http": "npm:3.758.0"
"@aws-sdk/credential-provider-ini": "npm:3.758.0"
"@aws-sdk/credential-provider-process": "npm:3.758.0"
"@aws-sdk/credential-provider-sso": "npm:3.758.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.758.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/credential-provider-imds": "npm:^4.0.1"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/shared-ini-file-loader": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/b99f3bddb52be9d7892d0c440be7f729423aefa64f5e41a1a4e55a721b470e89ea31dbd118bcad3b52fc3661ef5f5a636971f4968af8eea20afdc38c451be2e2
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.758.0":
version: 3.758.0
resolution: "@aws-sdk/credential-provider-process@npm:3.758.0"
dependencies:
"@aws-sdk/core": "npm:3.758.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/shared-ini-file-loader": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/98a29f4535a40cdf0f846d69da10a612a02c2d299207772e2e91b2a34ffe39789f91d6a2000baee5e40932c16b2b23e78f4faf269fc9036eb6fe10f1a7dc8da4
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.758.0":
version: 3.758.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.758.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.758.0"
"@aws-sdk/core": "npm:3.758.0"
"@aws-sdk/token-providers": "npm:3.758.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/shared-ini-file-loader": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/64ce426b791d7c4ccbc2b97075febebb11ef02f1e8078eb7225ebe5f819902733c17e21943ff93f98821be0c42479689c228f17f81480f02d9bc6766bf56f193
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.758.0":
version: 3.758.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.758.0"
dependencies:
"@aws-sdk/core": "npm:3.758.0"
"@aws-sdk/nested-clients": "npm:3.758.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/cf9d67c9ea8e44026bbc5d9aa3dc3f91ca5e1d3a41a9651eae753a7a58829eef128eaa86797294f2f89d7d76292b92f6d0b59b916f167044c9d184801ed80dbb
languageName: node
linkType: hard
"@aws-sdk/endpoint-cache@npm:3.723.0":
version: 3.723.0
resolution: "@aws-sdk/endpoint-cache@npm:3.723.0"
dependencies:
mnemonist: "npm:0.38.3"
tslib: "npm:^2.6.2"
checksum: 10/782d366d7f53a6dc9b253e7838681b3523448a92caeca386df8f8feb9c29a1a9e3fcd54f6760fc4e5ef3d994e0db1bd40ee2bf4bf677fc74553c2ce14562f66d
languageName: node
linkType: hard
"@aws-sdk/lib-dynamodb@npm:^3.758.0":
version: 3.758.0
resolution: "@aws-sdk/lib-dynamodb@npm:3.758.0"
dependencies:
"@aws-sdk/core": "npm:3.758.0"
"@aws-sdk/util-dynamodb": "npm:3.758.0"
"@smithy/core": "npm:^3.1.5"
"@smithy/smithy-client": "npm:^4.1.6"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-dynamodb": ^3.758.0
checksum: 10/2100094572d7e2068389f2af6b907057fcca99d83bac8552c588d83276250f114b5483c59166aefd30239c43210b6da9a7c79e4d5bd55db0ca341d8c3274167f
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-arn-parser": "npm:3.723.0"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-config-provider": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/be45d671a44df8848f542770fd7131c0f97cc20f387413d9cb28d1285531bbf566f073de575e8590db8c033e52bbce3805be0497f0170811d773c8ccc80355a7
languageName: node
linkType: hard
"@aws-sdk/middleware-endpoint-discovery@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-endpoint-discovery@npm:3.734.0"
dependencies:
"@aws-sdk/endpoint-cache": "npm:3.723.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/c1b7eedc3bba784fe2592c43f209803194ddc6419229743b5d5a4daad34d8cf3e1bc44e47401edc9a4bc7a6ed4e618e1fa1f4d98df3c1034a4ac0f13f7aea78a
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/6f5e1a381164c92987b9ea0f5de7ab4317a7bc142380b1d35a6d90c50d0b879e873df9d1574ad13b7c8fc34099d1394ef977e0bf986eed83d3876f8f5b77dd34
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.758.0":
version: 3.758.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.758.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-crypto/util": "npm:5.2.0"
"@aws-sdk/core": "npm:3.758.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/is-array-buffer": "npm:^4.0.0"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-middleware": "npm:^4.0.1"
"@smithy/util-stream": "npm:^4.1.2"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/48218524097e7d2c1561c1cebe8bd7e74e084e594e9bfb5ebbfe813ffba844071234116521693c47efe42a00cb069d71a17bbeea88ad2c8a6e048a3d62905b90
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-host-header@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/56da2b7e487fa18445cf4876660297d3c61b1a7b8fceb40860da21ab9581b47e1abf5a2f6204862289f7fb534aaf5f19842c0ed0cf46e6178f59f6c3053464bf
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/ca7517b1c0a510d24c5541db3c36bcf9fd75418aa9e6a29ae7288d6c90942909f3ce65a51f08b6126d7a84e158798c96513dde6151223f58e93d1ac3a6ada40b
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-logger@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/e259fe49ecb2c51424a96c7bc834d061eb6e55fce2686637ae0ada3612db582e2261895d2cffcf9f018436bb7fd8c600634df1b4012c276655595f543e30e426
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/93ca23bcb5b7cec82cab2b9fa87b84ea249440ca702bf387634311c8bb0aa66a96defd7b77bd8408d0f91ea3971e43648e1adb9a09ef0b1bba4cd63e4d6616b7
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.758.0":
version: 3.758.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.758.0"
dependencies:
"@aws-sdk/core": "npm:3.758.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-arn-parser": "npm:3.723.0"
"@smithy/core": "npm:^3.1.5"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/signature-v4": "npm:^5.0.1"
"@smithy/smithy-client": "npm:^4.1.6"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-config-provider": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.1"
"@smithy/util-stream": "npm:^4.1.2"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/1405852c30872bf73122b8cbe41b02f7e771d64e11780329a4579f2115160d4856b8db9a6899c891b5f8703daa9284242c88103fb38c01722605bfbf0214addb
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/middleware-ssec@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/90c5bab066750d8ff64595050e72797022bc657c1dfef3348484922ba31f26ddea5dc675c6eff5cfcc3e51bcd230307e4ebc520c0ceb2076341b58ef4273baf1
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.758.0":
version: 3.758.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.758.0"
dependencies:
"@aws-sdk/core": "npm:3.758.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-endpoints": "npm:3.743.0"
"@smithy/core": "npm:^3.1.5"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/e6c86e47b467ca4fe0bb2dbf352271c8c73bc86f35b377ff6a765f4c0d2633c8167486a383f52d20d4d6f4e1c0ded87c9e690d90cc96d7db4f7d038c8881b565
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.758.0":
version: 3.758.0
resolution: "@aws-sdk/nested-clients@npm:3.758.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.758.0"
"@aws-sdk/middleware-host-header": "npm:3.734.0"
"@aws-sdk/middleware-logger": "npm:3.734.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.734.0"
"@aws-sdk/middleware-user-agent": "npm:3.758.0"
"@aws-sdk/region-config-resolver": "npm:3.734.0"
"@aws-sdk/types": "npm:3.734.0"
"@aws-sdk/util-endpoints": "npm:3.743.0"
"@aws-sdk/util-user-agent-browser": "npm:3.734.0"
"@aws-sdk/util-user-agent-node": "npm:3.758.0"
"@smithy/config-resolver": "npm:^4.0.1"
"@smithy/core": "npm:^3.1.5"
"@smithy/fetch-http-handler": "npm:^5.0.1"
"@smithy/hash-node": "npm:^4.0.1"
"@smithy/invalid-dependency": "npm:^4.0.1"
"@smithy/middleware-content-length": "npm:^4.0.1"
"@smithy/middleware-endpoint": "npm:^4.0.6"
"@smithy/middleware-retry": "npm:^4.0.7"
"@smithy/middleware-serde": "npm:^4.0.2"
"@smithy/middleware-stack": "npm:^4.0.1"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/node-http-handler": "npm:^4.0.3"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/smithy-client": "npm:^4.1.6"
"@smithy/types": "npm:^4.1.0"
"@smithy/url-parser": "npm:^4.0.1"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.7"
"@smithy/util-defaults-mode-node": "npm:^4.0.7"
"@smithy/util-endpoints": "npm:^3.0.1"
"@smithy/util-middleware": "npm:^4.0.1"
"@smithy/util-retry": "npm:^4.0.1"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/ec6f424848a253d31ad994ba6a9963531e5aeefcfe53faf4796b91d3385499ee8c173022504a009c23a1f5ec916dab26c45fc1c56961b7b5ee501a9c20e3cc83
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/region-config-resolver@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/node-config-provider": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-config-provider": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.1"
tslib: "npm:^2.6.2"
checksum: 10/e0385529263384d3ad14529d581692028879e7b3ae2d4233b44acd1d97b8a13b7007ff4088b1e87bf33e10034584072ead0c9721559d556bd60fe67087cd02e3
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.758.0":
version: 3.758.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.758.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.758.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/protocol-http": "npm:^5.0.1"
"@smithy/signature-v4": "npm:^5.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/4ab11c5ebc153012dcbc8ae607f92b30c77cb2885730d1032d6c4366b5db36ced890a8d7ad73b4ab2c08085a4946b7afacade5ee24fbcae1eb4b8b6658bc3d7c
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.758.0":
version: 3.758.0
resolution: "@aws-sdk/token-providers@npm:3.758.0"
dependencies:
"@aws-sdk/nested-clients": "npm:3.758.0"
"@aws-sdk/types": "npm:3.734.0"
"@smithy/property-provider": "npm:^4.0.1"
"@smithy/shared-ini-file-loader": "npm:^4.0.1"
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/beb2d5c0b2613b6bd77aeafd8a947722f7519cdca3310844d6f67570690d63974290a852eb1c7372412dfb3c8b17bd2aacc7cb526422c6a3d338394126e3abce
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/types@npm:3.734.0"
dependencies:
"@smithy/types": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/3a1a06ec927cda29d0b70d1fa44c3dc5fb33bdf8d2a045e5cf597fe54b1ff5d6d3527c159269c8ba7f1fceb414e9a272a718af1360466b82cd6d16d1048112ff
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0":
version: 3.696.0
resolution: "@aws-sdk/types@npm:3.696.0"
dependencies:
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10/3d8a2f43a4cf1972dbc9df85de6917def78de90e8f40e8a3d6129fc42ef52abcedeec5afde7299d52e29fca231b9372247cdb6dc3711ace2eded0503572154f9
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.723.0":
version: 3.723.0
resolution: "@aws-sdk/util-arn-parser@npm:3.723.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/558c187aff2af3c58e830468969f936103770d8830a37b56eea06f7964a2a80f3cd5cc4bfb71af3470ca2ef37e85f6b21318d61a68129c293eb47b337c5bfa9d
languageName: node
linkType: hard
"@aws-sdk/util-dynamodb@npm:3.758.0, @aws-sdk/util-dynamodb@npm:^3.758.0":
version: 3.758.0
resolution: "@aws-sdk/util-dynamodb@npm:3.758.0"
dependencies:
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-dynamodb": ^3.758.0
checksum: 10/a9f4dcde404991026e8cb7860fd1c16356af9502711867f0dc6122ed1d1b6308ea4d111348f7941dc09e6c74c8aaa5d781d720e08fdc4cda4683179f03d34130
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.743.0":
version: 3.743.0
resolution: "@aws-sdk/util-endpoints@npm:3.743.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/types": "npm:^4.1.0"
"@smithy/util-endpoints": "npm:^3.0.1"
tslib: "npm:^2.6.2"
checksum: 10/54526aa78a344d9c62c5e5d33264063f4e4b093d3e5223948b66ff3cdebcdcb9757c2be5b5e08adb8052013b931c079fae8a9ddc19095a09fbc034e615c107a5
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.693.0
resolution: "@aws-sdk/util-locate-window@npm:3.693.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/78fe124a6085550acfd39f9996ee06cd2725727b823db19c82485284a61a98435a24989740f421bcefda8eb09f94f022b646ce3ccdc6723336bf3c251a9b69a8
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.734.0":
version: 3.734.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.734.0"
dependencies:
"@aws-sdk/types": "npm:3.734.0"
"@smithy/types": "npm:^4.1.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10/40fc914b5fe26983ede06c4157f72b64bb26c779627bcec1eea8a302ad0d4bb3f16813f75cd5038fbc31c8ea1e9603f5a795d902d584de3fa5eda557805f64ad
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.758.0":
version: 3.758.0