-
Notifications
You must be signed in to change notification settings - Fork 72
/
yarn.lock
20484 lines (18545 loc) · 731 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: 10c0
"@adraffy/ens-normalize@npm:1.10.0":
version: 1.10.0
resolution: "@adraffy/ens-normalize@npm:1.10.0"
checksum: 78ae700847a2516d5a0ae12c4e23d09392a40c67e73b137eb7189f51afb1601c8d18784aeda2ed288a278997824dc924d1f398852c21d41ee2c4c564f2fb4d26
languageName: node
linkType: hard
"@algolia/autocomplete-core@npm:1.9.3":
version: 1.9.3
resolution: "@algolia/autocomplete-core@npm:1.9.3"
dependencies:
"@algolia/autocomplete-plugin-algolia-insights": "npm:1.9.3"
"@algolia/autocomplete-shared": "npm:1.9.3"
checksum: a751b20f15c9a30b8b2d5a4f1f62fb4dbd012fb7ffec1b12308d6e7388b5a4dc83af52176634f17facb57a7727204843c5aa2f6e80efafaaf244275f44af11d9
languageName: node
linkType: hard
"@algolia/autocomplete-plugin-algolia-insights@npm:1.9.3":
version: 1.9.3
resolution: "@algolia/autocomplete-plugin-algolia-insights@npm:1.9.3"
dependencies:
"@algolia/autocomplete-shared": "npm:1.9.3"
peerDependencies:
search-insights: ">= 1 < 3"
checksum: 574196f66fe828be1029439032376685020524d6c729dea99caef336cc7be244d2539fa91b3fe80db80efe3420c2c05063cab3534514be6c637bf1914b17a6f6
languageName: node
linkType: hard
"@algolia/autocomplete-preset-algolia@npm:1.9.3":
version: 1.9.3
resolution: "@algolia/autocomplete-preset-algolia@npm:1.9.3"
dependencies:
"@algolia/autocomplete-shared": "npm:1.9.3"
peerDependencies:
"@algolia/client-search": ">= 4.9.1 < 6"
algoliasearch: ">= 4.9.1 < 6"
checksum: 38c1872db4dae69b4eec622db940c7a992d8530e33fbac7df593473ef404312076d9933b4a7ea25c2d401ea5b62ebd64b56aa25b5cdd8e8ba3fd309a39d9d816
languageName: node
linkType: hard
"@algolia/autocomplete-shared@npm:1.9.3":
version: 1.9.3
resolution: "@algolia/autocomplete-shared@npm:1.9.3"
peerDependencies:
"@algolia/client-search": ">= 4.9.1 < 6"
algoliasearch: ">= 4.9.1 < 6"
checksum: 1aa926532c32be6bb5384c8c0ae51a312c9d79ed7486371218dfcb61c8ea1ed46171bdc9f9b596a266aece104a0ef76d6aac2f9a378a5a6eb4460e638d59f6ae
languageName: node
linkType: hard
"@algolia/cache-browser-local-storage@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/cache-browser-local-storage@npm:4.20.0"
dependencies:
"@algolia/cache-common": "npm:4.20.0"
checksum: efab9b8535d9cf2fc9d1e382541e87797946da0953dc02809aab181161b40ce419b4fa71bc35883e02eb34176185200e0ce1e887109a24233c0e9e6ef5f2a340
languageName: node
linkType: hard
"@algolia/cache-common@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/cache-common@npm:4.20.0"
checksum: e2e55945dc9d3cafaace828afe28cb944a14efa645d588968e8bf88360efd7dc35f95f2b2392fc84dc697d115ada2a253b34f384ec5d82a191df77eb2125e43e
languageName: node
linkType: hard
"@algolia/cache-in-memory@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/cache-in-memory@npm:4.20.0"
dependencies:
"@algolia/cache-common": "npm:4.20.0"
checksum: 9dd67c93fb97d0055ec6d487bae922a5ccbf2adcdf2692c737b85d50b5aa2b57f3fb21ead0202a570e7feb1096fb48ea56a2309259998c17d7c82bc8ae170818
languageName: node
linkType: hard
"@algolia/client-account@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/client-account@npm:4.20.0"
dependencies:
"@algolia/client-common": "npm:4.20.0"
"@algolia/client-search": "npm:4.20.0"
"@algolia/transporter": "npm:4.20.0"
checksum: 6ff0cd7834d48988ec748ed504a28e4de8842526881c7d0f875f9702e037f51c9ec70195489e5d189995d0901212f844b0555d6df0b423d0b846b300a321b6a2
languageName: node
linkType: hard
"@algolia/client-analytics@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/client-analytics@npm:4.20.0"
dependencies:
"@algolia/client-common": "npm:4.20.0"
"@algolia/client-search": "npm:4.20.0"
"@algolia/requester-common": "npm:4.20.0"
"@algolia/transporter": "npm:4.20.0"
checksum: ebc20c90461a05c1bfbdf152953904afde749d70fe7008857c4f5a96510f0bb1895420a400decfcb3dce3137be880b4360e8ac09a8249b4fe8426dd0a3042a09
languageName: node
linkType: hard
"@algolia/client-common@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/client-common@npm:4.20.0"
dependencies:
"@algolia/requester-common": "npm:4.20.0"
"@algolia/transporter": "npm:4.20.0"
checksum: b0cf4d127dd5712867e3e7dbb10465d960d5ad2ca491321c0d1908c3b4d2f485bc54926c1b3de2b9d5b5f3438a1e91d50f02318fc164770d4e78bd7828a3e2f6
languageName: node
linkType: hard
"@algolia/client-personalization@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/client-personalization@npm:4.20.0"
dependencies:
"@algolia/client-common": "npm:4.20.0"
"@algolia/requester-common": "npm:4.20.0"
"@algolia/transporter": "npm:4.20.0"
checksum: a4ffff168daee0495192c7aa1b155827d10ba408d352d01e112552e048a18244a2a446df47706639dc67a6b4061bdc084f35e47b5a75b0f1a722427abe131fe8
languageName: node
linkType: hard
"@algolia/client-search@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/client-search@npm:4.20.0"
dependencies:
"@algolia/client-common": "npm:4.20.0"
"@algolia/requester-common": "npm:4.20.0"
"@algolia/transporter": "npm:4.20.0"
checksum: 79b75fbfddf41bd65d1d028236b249e81672a5a5aea9e84fa5586ee5d1f0d78966dacdc464109e14a46f6c78c8d68d5a8a50ad7b571247ac64fc2d1399072332
languageName: node
linkType: hard
"@algolia/events@npm:^4.0.1":
version: 4.0.1
resolution: "@algolia/events@npm:4.0.1"
checksum: f398d815c6ed21ac08f6caadf1e9155add74ac05d99430191c3b1f1335fd91deaf468c6b304e6225c9885d3d44c06037c53def101e33d9c22daff175b2a65ca9
languageName: node
linkType: hard
"@algolia/logger-common@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/logger-common@npm:4.20.0"
checksum: 03fffc0e021097836d4588f130fc22b3fd6ca55e286e8fc59f0525330754bc49edcf7c5d2f0016fd1c4aa3ad3432005ba3a17b5c41880c16258e98bcf4746b4d
languageName: node
linkType: hard
"@algolia/logger-console@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/logger-console@npm:4.20.0"
dependencies:
"@algolia/logger-common": "npm:4.20.0"
checksum: 2b1f32f3344613de3ae949df57ef5b794ec247572dfbdd04b2c5d1b250b224fef2ce7292c9ce56f45ef491afe90a7505ec21ad3b00f645ef07516c8cbe200fae
languageName: node
linkType: hard
"@algolia/requester-browser-xhr@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/requester-browser-xhr@npm:4.20.0"
dependencies:
"@algolia/requester-common": "npm:4.20.0"
checksum: 0e3fba53b05805bb9801b3b0e8cc4c95b8f55c6e23f43f4c5f1cd01ce277aa71fb08d935be97f921af0d60d83d23b83e2bbdd35f79bd2657c9aaa8604a838d62
languageName: node
linkType: hard
"@algolia/requester-common@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/requester-common@npm:4.20.0"
checksum: 3d69d781549a58784fdf34d79c46e15a9010185757112953e58f987a814e9645b47a2d7202148fb644edfacc73df783041b274eac58de06936dfc9c6f1ac88e5
languageName: node
linkType: hard
"@algolia/requester-node-http@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/requester-node-http@npm:4.20.0"
dependencies:
"@algolia/requester-common": "npm:4.20.0"
checksum: b774593ad9a4f04215481ed3e18a4870275c0586a9106280137e53fd6278a6e4eea9fed15fb086e5989c436097552b4884c35a2f2ec49999105ab697b20831a2
languageName: node
linkType: hard
"@algolia/transporter@npm:4.20.0":
version: 4.20.0
resolution: "@algolia/transporter@npm:4.20.0"
dependencies:
"@algolia/cache-common": "npm:4.20.0"
"@algolia/logger-common": "npm:4.20.0"
"@algolia/requester-common": "npm:4.20.0"
checksum: 769c5d61a280283e2dc4c4a49fcd92e6489bc0267a290438f56311dacc213c0ff4979d063fb8dd5b7bcc888d819ec00eef5d24eb2768946696f4297b757ff527
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.0":
version: 2.2.1
resolution: "@ampproject/remapping@npm:2.2.1"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 92ce5915f8901d8c7cd4f4e6e2fe7b9fd335a29955b400caa52e0e5b12ca3796ada7c2f10e78c9c5b0f9c2539dff0ffea7b19850a56e1487aa083531e1e46d43
languageName: node
linkType: hard
"@arbitrum/nitro-contracts@npm:^1.2.1":
version: 1.3.0
resolution: "@arbitrum/nitro-contracts@npm:1.3.0"
dependencies:
"@offchainlabs/upgrade-executor": "npm:1.1.0-beta.0"
"@openzeppelin/contracts": "npm:4.5.0"
"@openzeppelin/contracts-upgradeable": "npm:4.5.2"
patch-package: "npm:^6.4.7"
checksum: 6d0c6eea1890be235324b2c69f69522c02d9309c51579d5baf9acaef46e531eb434d1d341c965b2cea4d8cb2c55c8d02e8161b55124aee445d78ec1b5f9b39cf
languageName: node
linkType: hard
"@arbitrum/sdk@npm:^4.0.0":
version: 4.0.1
resolution: "@arbitrum/sdk@npm:4.0.1"
dependencies:
"@ethersproject/address": "npm:^5.0.8"
"@ethersproject/bignumber": "npm:^5.1.1"
"@ethersproject/bytes": "npm:^5.0.8"
async-mutex: "npm:^0.4.0"
ethers: "npm:^5.1.0"
checksum: 6a48d2780d722f74e213d727d43cecf88f75efe4da4432418229f9bb737977e531e6b7a5fbf77c60f8674be6460adca8a2119cb63b4f3247f1f142aac3abc862
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: eab9581d3363af5ea498ae0e72de792f54d8890360e14a9d8261b7b5c55ebe080279fb2556e07994d785341cdaa99ab0b1ccf137832b53b5904cd6928f2b094b
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: 223efac396cdebaf5645568fa9a38cd0c322c960ae1f4276bedfe2e1031d0112e49d7d39225d386354680ecefae29f39af469a84b2ddfa77cb6692036188af77
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: 51fed0bf078c10322d910af179871b7d299dde5b5897873ffbeeb036f427e5d11d23db9794439226544b73901920fd19f4d86bbc103ed73cc0cfdea47a83c6ac
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: 05f6d256794df800fe9aef5f52f2ac7415f7f3117d461f85a6aecaa4e29e91527b6fd503681a17136fa89e9dd3d916e9c7e4cfb5eba222875cb6c077bdc1d00d
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: 6c48701f8336341bb104dfde3d0050c89c288051f6b5e9bdfeb8091cf3ffc86efcd5c9e6ff2a4a134406b019c07aca9db608128f8d9267c952578a3108db9fd1
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: 4d2118e29d68ca3f5947f1e37ce1fbb3239a0c569cc938cdc8ab8390d595609b5caf51a07c9e0535105b17bf5c52ea256fed705a07e9681118120ab64ee73af2
languageName: node
linkType: hard
"@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: 0362d4c197b1fd64b423966945130207d1fe23e1bb2878a18e361f7743c8d339dad3f8729895a29aa34fff6a86c65f281cf5167c4bf253f21627ae80b6dd2951
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.74.0":
version: 3.637.0
resolution: "@aws-sdk/client-s3@npm:3.637.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/client-sso-oidc": "npm:3.637.0"
"@aws-sdk/client-sts": "npm:3.637.0"
"@aws-sdk/core": "npm:3.635.0"
"@aws-sdk/credential-provider-node": "npm:3.637.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.620.0"
"@aws-sdk/middleware-expect-continue": "npm:3.620.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.620.0"
"@aws-sdk/middleware-host-header": "npm:3.620.0"
"@aws-sdk/middleware-location-constraint": "npm:3.609.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.635.0"
"@aws-sdk/middleware-ssec": "npm:3.609.0"
"@aws-sdk/middleware-user-agent": "npm:3.637.0"
"@aws-sdk/region-config-resolver": "npm:3.614.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.635.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.637.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.614.0"
"@aws-sdk/xml-builder": "npm:3.609.0"
"@smithy/config-resolver": "npm:^3.0.5"
"@smithy/core": "npm:^2.4.0"
"@smithy/eventstream-serde-browser": "npm:^3.0.6"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.3"
"@smithy/eventstream-serde-node": "npm:^3.0.5"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/hash-blob-browser": "npm:^3.1.2"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/hash-stream-node": "npm:^3.1.2"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/md5-js": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.5"
"@smithy/middleware-endpoint": "npm:^3.1.0"
"@smithy/middleware-retry": "npm:^3.0.15"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.2.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.15"
"@smithy/util-defaults-mode-node": "npm:^3.0.15"
"@smithy/util-endpoints": "npm:^2.0.5"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-stream": "npm:^3.1.3"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.2"
tslib: "npm:^2.6.2"
checksum: 3cce8334727a673b84633d1f01a1064d289a33ea9c7a5a5c55361f48224cc83bb90c0a27587af5c3fc07d7ee2ee31a79e0573d46239e655c2786fb0a8d3d0c64
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.637.0":
version: 3.637.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.637.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.635.0"
"@aws-sdk/credential-provider-node": "npm:3.637.0"
"@aws-sdk/middleware-host-header": "npm:3.620.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
"@aws-sdk/middleware-user-agent": "npm:3.637.0"
"@aws-sdk/region-config-resolver": "npm:3.614.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.637.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.614.0"
"@smithy/config-resolver": "npm:^3.0.5"
"@smithy/core": "npm:^2.4.0"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.5"
"@smithy/middleware-endpoint": "npm:^3.1.0"
"@smithy/middleware-retry": "npm:^3.0.15"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.2.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.15"
"@smithy/util-defaults-mode-node": "npm:^3.0.15"
"@smithy/util-endpoints": "npm:^2.0.5"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.637.0
checksum: eb3af482e6eb9b44549343da62dd761259afc71a8a4c7c6883f2cafadf96da2e54ac97cc1c9757ba43ea9258b4af50d114f20fb186f52109a10642178fa127a1
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.637.0":
version: 3.637.0
resolution: "@aws-sdk/client-sso@npm:3.637.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.635.0"
"@aws-sdk/middleware-host-header": "npm:3.620.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
"@aws-sdk/middleware-user-agent": "npm:3.637.0"
"@aws-sdk/region-config-resolver": "npm:3.614.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.637.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.614.0"
"@smithy/config-resolver": "npm:^3.0.5"
"@smithy/core": "npm:^2.4.0"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.5"
"@smithy/middleware-endpoint": "npm:^3.1.0"
"@smithy/middleware-retry": "npm:^3.0.15"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.2.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.15"
"@smithy/util-defaults-mode-node": "npm:^3.0.15"
"@smithy/util-endpoints": "npm:^2.0.5"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: fff543452d559d92cc9caf45b62ef5114e0929d23a680016a25cce6f4f17cda40bee5535f9b877a76d8563de87ad582788c13e49559cff9264c90540fd5ae32a
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.637.0":
version: 3.637.0
resolution: "@aws-sdk/client-sts@npm:3.637.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.637.0"
"@aws-sdk/core": "npm:3.635.0"
"@aws-sdk/credential-provider-node": "npm:3.637.0"
"@aws-sdk/middleware-host-header": "npm:3.620.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
"@aws-sdk/middleware-user-agent": "npm:3.637.0"
"@aws-sdk/region-config-resolver": "npm:3.614.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.637.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.614.0"
"@smithy/config-resolver": "npm:^3.0.5"
"@smithy/core": "npm:^2.4.0"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.5"
"@smithy/middleware-endpoint": "npm:^3.1.0"
"@smithy/middleware-retry": "npm:^3.0.15"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.2.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.15"
"@smithy/util-defaults-mode-node": "npm:^3.0.15"
"@smithy/util-endpoints": "npm:^2.0.5"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: e3d7497ed65fa8617116c65926eb864ddb826267ef7db378c75d1288b4e6454909ed2dcd5eb8e1dad274359a5e9114c2e95bb9269d0dca7fc71a617c94a50075
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.635.0":
version: 3.635.0
resolution: "@aws-sdk/core@npm:3.635.0"
dependencies:
"@smithy/core": "npm:^2.4.0"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/signature-v4": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.2.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-middleware": "npm:^3.0.3"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 6f9a9a7dba32279a4f3970fee52845ef06509ffd414a1405c5d1a81e9b68d39dff8fe17c8f88d0e5516683c33f7a1d2b56432ebd8c540f86abfff782218e6f35
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.620.1":
version: 3.620.1
resolution: "@aws-sdk/credential-provider-env@npm:3.620.1"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 25156df7c0e9a1423f261276506fc5766c9f43c41e811adaa0f9a6199b03ff4fd299e9dd94fd73942ab99283b30d8e127692ae371c16917f6709f655de401874
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.635.0":
version: 3.635.0
resolution: "@aws-sdk/credential-provider-http@npm:3.635.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.2.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-stream": "npm:^3.1.3"
tslib: "npm:^2.6.2"
checksum: 3a232fdece1cbe7e9ec740287702dfaa640392e827d31b5c8a23d59ab9dcf2424408a43a6ef2cf3c94e72ec5612f61651cb7cac92458c5b2c93754f6b7989daf
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.637.0":
version: 3.637.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.637.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.620.1"
"@aws-sdk/credential-provider-http": "npm:3.635.0"
"@aws-sdk/credential-provider-process": "npm:3.620.1"
"@aws-sdk/credential-provider-sso": "npm:3.637.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.621.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/credential-provider-imds": "npm:^3.2.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/shared-ini-file-loader": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.637.0
checksum: ecabf423d448c0e0d668887b01008c99959a7e51e19a494eb1b9e8198aaffa634df063f4f9436d3f43c74e998090139de7f048946eb465d2c8188ae84838d3a2
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.637.0":
version: 3.637.0
resolution: "@aws-sdk/credential-provider-node@npm:3.637.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.620.1"
"@aws-sdk/credential-provider-http": "npm:3.635.0"
"@aws-sdk/credential-provider-ini": "npm:3.637.0"
"@aws-sdk/credential-provider-process": "npm:3.620.1"
"@aws-sdk/credential-provider-sso": "npm:3.637.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.621.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/credential-provider-imds": "npm:^3.2.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/shared-ini-file-loader": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: ec61181866ca024c31d6316689d1df2192713b23f4b1f8aa4c8479ecc6d0ea5d025edb595d2311d328637073b2557b240be418259766cfb8da9db0acd647bb03
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.620.1":
version: 3.620.1
resolution: "@aws-sdk/credential-provider-process@npm:3.620.1"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/shared-ini-file-loader": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: d33bf3e5e73f16c8e58dc71a738cdcbcf48b54610e464affc69c73f9bdcc2b287b6cb281c9a719f67298fb0cd795e67201e5d6704dcc24933e71e58653607992
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.637.0":
version: 3.637.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.637.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.637.0"
"@aws-sdk/token-providers": "npm:3.614.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/shared-ini-file-loader": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 7381f31ca6f2518c45467cd4ca036c5efc59f31905ebfed52b91ff151406972fc7968e360aa19c7978631ecf301841368f9807037b52322a7c0e7143c93d58ba
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.621.0":
version: 3.621.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.621.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.621.0
checksum: c699a60e242cc3895b3536a0a4818560f167b6c0cc3e8858cf75cd0438020a070b2e5c84e59280ee81679d865516dcde5b31cf6af1ee35b0d28c94b68c63f742
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.620.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-arn-parser": "npm:3.568.0"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-config-provider": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 5fec190026bac88554a2299d81565bb4f067600336045af5d4ec1e06a1a884386e324922f1de8d8d87954bd8dbdae279bf4e37401aaf8311db5fe70c1c44b483
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.620.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 1204171772b3f141a19e68ede28b412c5bca68e4f5c493c38f41d278cbbaae0488d95e1161ed5b44aefcfbbb66f795f2aacfb24434d7fdd71695a1a3885c59bb
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.620.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/is-array-buffer": "npm:^3.0.0"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: b6990776c98a19c57850ad623a61d45946741f75913cd71901d693ff71a840ea6fdbb7811d8849db6d149090bd2b61a6f3c706084a2d2b366c8e55c5f62e3186
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/middleware-host-header@npm:3.620.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 221e8e440fc156bc0ef8d2186bc3b9c18c7874cb275ae714c3c7eeb934b846e1291c3cb9a3631c486a86189a4c446e61c64e8e7d737f209fe63808ad313bd779
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 1eba2a3a1a003855a69e56f1c54fb2283b30db50bf14130cd042e25805497b7a19539144052c4fa710952d754d1a9e5d680fce09536509cf796a16816c8d506f
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/middleware-logger@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: e8d110552fee03c5290f94be8da8bb6c07404c06c68971cf24c89a5a4e08b93f6039a2bf729b173855815dd13e382eda18c31e098e7a40db9c8163b74a7770e7
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.620.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: f859a777eb0441e8ec78054b478bb75c2debcf53680deb6731830a62ec2a45a5a9b1462028214c49bbc67acff2ca1a78cb35913f826ccc4118fa45b51220bcd4
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.635.0":
version: 3.635.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.635.0"
dependencies:
"@aws-sdk/core": "npm:3.635.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-arn-parser": "npm:3.568.0"
"@smithy/core": "npm:^2.4.0"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/signature-v4": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.2.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-stream": "npm:^3.1.3"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 81dd57dcb9214c1bc311546f71391132f42a9d35e857781fb1466940802a069337109cd1ff93cc64044f91f092e9e810ec6c2f140284a62ef6bda9e5b9164b6a
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/middleware-ssec@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 7688628299c3d3352182634836d8a5ad89d69dfedd91d7386ffeaa8288160329eef7d399321b7841bb4c84c9741d7245ef218657a8df71248b5ce5f7273e303d
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.637.0":
version: 3.637.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.637.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.637.0"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 799d5e8cedb18c4a0695fe63675f7faa493b84b1f481055218c069cfacd208f61ecb4bad811fd701c0708c33e95cc98032d17a3684bb585ad698cb7b632a3196
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.614.0":
version: 3.614.0
resolution: "@aws-sdk/region-config-resolver@npm:3.614.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.3"
tslib: "npm:^2.6.2"
checksum: 555842b34c26398741fa3a1f629d27d210270516b453b0a7237672a4472ff8e204c5979fe1823baddf4d695d4d95a631fadfa78d1d27089d9e9cba28e736346e
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.635.0":
version: 3.635.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.635.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.635.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/signature-v4": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 85c43b96d803e6fa503bbac3c07334f31b65be42f2c863e9c37411acfb6d484f464a70409585fab2c32be59b1e65ad735e2e64235f2ee33501b7d2c8f85647e9
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.614.0":
version: 3.614.0
resolution: "@aws-sdk/token-providers@npm:3.614.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/shared-ini-file-loader": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sso-oidc": ^3.614.0
checksum: b794bcb9ad05f57bfc415e9290d3ea177701bb3221a9c5e1d4529deb946bd418acb7ac7407adb8d2f3da7d3793a62c7c1b43a8c1a8fe7999e38485208811f59a
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.609.0, @aws-sdk/types@npm:^3.222.0":
version: 3.609.0
resolution: "@aws-sdk/types@npm:3.609.0"
dependencies:
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 293249118c2fc3cdc79ff9712e3a9f757a2f38e7d5d770507b3bb31d22b8c67ed6f9bdd83c1b6319236b8257d5cc7e2882c15e076200021e8bbf41e4780d430c
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.568.0":
version: 3.568.0
resolution: "@aws-sdk/util-arn-parser@npm:3.568.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 4e6168b86a1ff4509f25b56e473c95bdcc0ecbaedcded29cbbd500eb7c156de63f2426282cd50489ac7f321a990056349974730f9e27ac3fe872ba3573b09fb6
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.637.0":
version: 3.637.0
resolution: "@aws-sdk/util-endpoints@npm:3.637.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-endpoints": "npm:^2.0.5"
tslib: "npm:^2.6.2"
checksum: 8ffdcea45fa38c00c980596f1a5a60706c1d5b61fb0f24f8aa536f66b1f50492a754757fe639076412b5bbdc90ed19ae1ca72f7d0b6df8c813e3a474acef77c7
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.568.0
resolution: "@aws-sdk/util-locate-window@npm:3.568.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: cb1d0919498206fe266542a635cd05909456a06f007a6a550ff897a01390b239e51c2a50e47509e23c179f8df8001bd5fecd900045da5ec989c3f934c3fd3d56
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/types": "npm:^3.3.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: ca2f2863d753521fd63e0c924ed6f9602cc9f5bb65f7d0111be140d037962cf6897f49929dde21e4d8e613895486d9053abd8965d34a9a6ecc4a81de401f0f16
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.614.0":
version: 3.614.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.614.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 1e7b4d572a2915d921db814efbf771603b605aea114399aa357208433746f4b2990c927bdedd8616a6e50c98588032449b8994ce9ffae1cce7976986dc40adc1
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/xml-builder@npm:3.609.0"
dependencies:
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 1d75f2dc7ff35557a1c437f108656574c737f0a9f9d0c91773cbdadbf3c42892e9305e1e1fd5b0c8b73520a902b1513d1a7d07864b964d6a369540ee23ad0ddb
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.16.0, @babel/code-frame@npm:^7.18.6, @babel/code-frame@npm:^7.8.3":
version: 7.18.6
resolution: "@babel/code-frame@npm:7.18.6"
dependencies:
"@babel/highlight": "npm:^7.18.6"
checksum: e3966f2717b7ebd9610524730e10b75ee74154f62617e5e115c97dbbbabc5351845c9aa850788012cb4d9aee85c3dc59fe6bef36690f244e8dcfca34bd35e9c9
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.22.13":
version: 7.22.13
resolution: "@babel/code-frame@npm:7.22.13"
dependencies:
"@babel/highlight": "npm:^7.22.13"
chalk: "npm:^2.4.2"
checksum: f4cc8ae1000265677daf4845083b72f88d00d311adb1a93c94eb4b07bf0ed6828a81ae4ac43ee7d476775000b93a28a9cddec18fbdc5796212d8dcccd5de72bd
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.23.5":
version: 7.23.5
resolution: "@babel/code-frame@npm:7.23.5"
dependencies:
"@babel/highlight": "npm:^7.23.4"
chalk: "npm:^2.4.2"
checksum: a10e843595ddd9f97faa99917414813c06214f4d9205294013e20c70fbdf4f943760da37dec1d998bf3e6fc20fa2918a47c0e987a7e458663feb7698063ad7c6
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.22.9, @babel/compat-data@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/compat-data@npm:7.23.3"
checksum: c6af331753c34ee8a5678bc94404320826cb56b1dda3efc1311ec8fb0774e78225132f3c1acc988440ace667f14a838e297a822692b95758aa63da406e1f97a1
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.23.5":
version: 7.23.5
resolution: "@babel/compat-data@npm:7.23.5"
checksum: 081278ed46131a890ad566a59c61600a5f9557bd8ee5e535890c8548192532ea92590742fd74bd9db83d74c669ef8a04a7e1c85cdea27f960233e3b83c3a957c
languageName: node
linkType: hard
"@babel/core@npm:^7.19.6, @babel/core@npm:^7.22.9":
version: 7.23.3
resolution: "@babel/core@npm:7.23.3"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.22.13"
"@babel/generator": "npm:^7.23.3"
"@babel/helper-compilation-targets": "npm:^7.22.15"
"@babel/helper-module-transforms": "npm:^7.23.3"
"@babel/helpers": "npm:^7.23.2"
"@babel/parser": "npm:^7.23.3"
"@babel/template": "npm:^7.22.15"
"@babel/traverse": "npm:^7.23.3"
"@babel/types": "npm:^7.23.3"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: 08d43b749e24052d12713a7fb1f0c0d1275d4fb056d00846faeb8da79ecf6d0ba91a11b6afec407b8b0f9388d00e2c2f485f282bef0ade4d6d0a17de191a4287
languageName: node
linkType: hard
"@babel/core@npm:^7.23.3":
version: 7.23.7
resolution: "@babel/core@npm:7.23.7"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.23.5"
"@babel/generator": "npm:^7.23.6"
"@babel/helper-compilation-targets": "npm:^7.23.6"
"@babel/helper-module-transforms": "npm:^7.23.3"
"@babel/helpers": "npm:^7.23.7"
"@babel/parser": "npm:^7.23.6"
"@babel/template": "npm:^7.22.15"
"@babel/traverse": "npm:^7.23.7"
"@babel/types": "npm:^7.23.6"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: 38c9934973d384ed83369712978453eac91dc3f22167404dbdb272b64f602e74728a6f37012c53ee57e521b8ae2da60097f050497d9b6a212d28b59cdfb2cd1d
languageName: node
linkType: hard
"@babel/generator@npm:^7.18.9":
version: 7.18.9