-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
21094 lines (19105 loc) · 753 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
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 10/6eebd12a5cd03cee38fcb915ef9f4ea557df6a06f642dfc7fe8eb4839eb5c9ca55a382f3604d52c14200b0c214c12af5e1f23d2a6d8e23ef2d016b105a9d6c0a
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: 10/e15fecbf3b54c988c8b4fdea8ef514ab482537e8a080b2978cc4b47ccca7140577ca7b65ad3322dcce65bc73ee6e5b90cbfe0bbd8c766dad04d5c62ec9634c42
languageName: node
linkType: hard
"@aws-crypto/crc32@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/crc32@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10/672d593fd98a88709a1b488db92aabf584b6dad3e8099e04b6d2870e34a2ee668cbbe0e5406e60c0d776b9c34a91cfc427999230ad959518fed56a3db037704c
languageName: node
linkType: hard
"@aws-crypto/crc32c@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/crc32c@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10/3e604ad7a8d3fb10e5fe11597d593d0ae8e1d6dc06a06b8d882d5732a6e181f6a77fd4f92fb3ae9002a2007121d49e40bc6b78d83af62d36deb1b457b7f1d977
languageName: node
linkType: hard
"@aws-crypto/ie11-detection@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/ie11-detection@npm:3.0.0"
dependencies:
tslib: "npm:^1.11.1"
checksum: 10/f5aee4a11a113ab9640474e75d398c99538aa30775f484cd519f0de0096ae0d4a6b68d2f0c685f24bd6f2425067c565bc20592c36c0dc1f4d28c1b4751a40734
languageName: node
linkType: hard
"@aws-crypto/sha1-browser@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha1-browser@npm:3.0.0"
dependencies:
"@aws-crypto/ie11-detection": "npm:^3.0.0"
"@aws-crypto/supports-web-crypto": "npm:^3.0.0"
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10/8c30fa1e427bf2c295077b007835b0dd9af6beb6250e0aa775cecd42a1f517ef211751e7e12c2423f39d9b1c6748b99eb7b73207eb69165abc696cc470d8659e
languageName: node
linkType: hard
"@aws-crypto/sha256-browser@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha256-browser@npm:3.0.0"
dependencies:
"@aws-crypto/ie11-detection": "npm:^3.0.0"
"@aws-crypto/sha256-js": "npm:^3.0.0"
"@aws-crypto/supports-web-crypto": "npm:^3.0.0"
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10/4e075906c48a46bbb8babb60db3e6b280db405a88c68b77c1496c26218292d5ea509beae3ccc19366ca6bc944c6d37fe347d0917909900dbac86f054a19c71c7
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:3.0.0, @aws-crypto/sha256-js@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha256-js@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10/f9fc2d51631950434d0f91f51c2ce17845d4e8e75971806e21604987e3186ee1e54de8a89e5349585b91cb36e56d5f058d6a45004e1bfbce1351dbb40f479152
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:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/supports-web-crypto@npm:3.0.0"
dependencies:
tslib: "npm:^1.11.1"
checksum: 10/8a48788d2866e391354f256aa79b577b2ba1474b50184cbe690467de7e64a79928afece95007ab69a1556f99da97ea129487db091d94489847e14decdc7c9a6f
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:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/util@npm:3.0.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10/92c835b83d7a888b37b2f2a37c82e58bb8fabb617e371173c488d2a71b916c69ee566f0ea0b3f7f4e16296226c49793f95b3d59fc07a7ca00af91f8f9f29e6c4
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: 10/f80a174c404e1ad4364741c942f440e75f834c08278fa754349fe23a6edc679d480ea9ced5820774aee58091ed270067022d8059ecf1a7ef452d58134ac7e9e1
languageName: node
linkType: hard
"@aws-sdk/abort-controller@npm:^3.347.0":
version: 3.374.0
resolution: "@aws-sdk/abort-controller@npm:3.374.0"
dependencies:
"@smithy/abort-controller": "npm:^1.0.1"
tslib: "npm:^2.5.0"
checksum: 10/8909302d7703fcde42f272eae6ea6936fa35a673a477328c9d4278a04e9f7ab18f3b82ddbf6b76ac47a172891322c0ec91da7471b5b1e3ab052b64730898677c
languageName: node
linkType: hard
"@aws-sdk/client-codecommit@npm:^3.350.0":
version: 3.600.0
resolution: "@aws-sdk/client-codecommit@npm:3.600.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.600.0"
"@aws-sdk/client-sts": "npm:3.600.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/credential-provider-node": "npm:3.600.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@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.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^3.0.1"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10/9a938c938036089c793eeb7e901a540a2200a481bcc556c3dd2a1c0d699d7136c7448e48198429f82dcd826c02df54979843bde8694099393294dd7ac731343f
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.454.0":
version: 3.454.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.454.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.454.0"
"@aws-sdk/core": "npm:3.451.0"
"@aws-sdk/credential-provider-node": "npm:3.451.0"
"@aws-sdk/middleware-host-header": "npm:3.451.0"
"@aws-sdk/middleware-logger": "npm:3.451.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.451.0"
"@aws-sdk/middleware-signing": "npm:3.451.0"
"@aws-sdk/middleware-user-agent": "npm:3.451.0"
"@aws-sdk/region-config-resolver": "npm:3.451.0"
"@aws-sdk/types": "npm:3.451.0"
"@aws-sdk/util-endpoints": "npm:3.451.0"
"@aws-sdk/util-user-agent-browser": "npm:3.451.0"
"@aws-sdk/util-user-agent-node": "npm:3.451.0"
"@smithy/config-resolver": "npm:^2.0.18"
"@smithy/fetch-http-handler": "npm:^2.2.6"
"@smithy/hash-node": "npm:^2.0.15"
"@smithy/invalid-dependency": "npm:^2.0.13"
"@smithy/middleware-content-length": "npm:^2.0.15"
"@smithy/middleware-endpoint": "npm:^2.2.0"
"@smithy/middleware-retry": "npm:^2.0.20"
"@smithy/middleware-serde": "npm:^2.0.13"
"@smithy/middleware-stack": "npm:^2.0.7"
"@smithy/node-config-provider": "npm:^2.1.5"
"@smithy/node-http-handler": "npm:^2.1.9"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/smithy-client": "npm:^2.1.15"
"@smithy/types": "npm:^2.5.0"
"@smithy/url-parser": "npm:^2.0.13"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.19"
"@smithy/util-defaults-mode-node": "npm:^2.0.25"
"@smithy/util-endpoints": "npm:^1.0.4"
"@smithy/util-retry": "npm:^2.0.6"
"@smithy/util-utf8": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10/658f39a223ace057a2e7808a432736600ac08a4f7d4929b83243e26cd60b5a9487570e794604a402808689b93bff7a355f201b46c9d07520d55280adc1c7aa14
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.350.0":
version: 3.454.0
resolution: "@aws-sdk/client-s3@npm:3.454.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:3.0.0"
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.454.0"
"@aws-sdk/core": "npm:3.451.0"
"@aws-sdk/credential-provider-node": "npm:3.451.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.451.0"
"@aws-sdk/middleware-expect-continue": "npm:3.451.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.451.0"
"@aws-sdk/middleware-host-header": "npm:3.451.0"
"@aws-sdk/middleware-location-constraint": "npm:3.451.0"
"@aws-sdk/middleware-logger": "npm:3.451.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.451.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.451.0"
"@aws-sdk/middleware-signing": "npm:3.451.0"
"@aws-sdk/middleware-ssec": "npm:3.451.0"
"@aws-sdk/middleware-user-agent": "npm:3.451.0"
"@aws-sdk/region-config-resolver": "npm:3.451.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.451.0"
"@aws-sdk/types": "npm:3.451.0"
"@aws-sdk/util-endpoints": "npm:3.451.0"
"@aws-sdk/util-user-agent-browser": "npm:3.451.0"
"@aws-sdk/util-user-agent-node": "npm:3.451.0"
"@aws-sdk/xml-builder": "npm:3.310.0"
"@smithy/config-resolver": "npm:^2.0.18"
"@smithy/eventstream-serde-browser": "npm:^2.0.13"
"@smithy/eventstream-serde-config-resolver": "npm:^2.0.13"
"@smithy/eventstream-serde-node": "npm:^2.0.13"
"@smithy/fetch-http-handler": "npm:^2.2.6"
"@smithy/hash-blob-browser": "npm:^2.0.14"
"@smithy/hash-node": "npm:^2.0.15"
"@smithy/hash-stream-node": "npm:^2.0.15"
"@smithy/invalid-dependency": "npm:^2.0.13"
"@smithy/md5-js": "npm:^2.0.15"
"@smithy/middleware-content-length": "npm:^2.0.15"
"@smithy/middleware-endpoint": "npm:^2.2.0"
"@smithy/middleware-retry": "npm:^2.0.20"
"@smithy/middleware-serde": "npm:^2.0.13"
"@smithy/middleware-stack": "npm:^2.0.7"
"@smithy/node-config-provider": "npm:^2.1.5"
"@smithy/node-http-handler": "npm:^2.1.9"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/smithy-client": "npm:^2.1.15"
"@smithy/types": "npm:^2.5.0"
"@smithy/url-parser": "npm:^2.0.13"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.19"
"@smithy/util-defaults-mode-node": "npm:^2.0.25"
"@smithy/util-endpoints": "npm:^1.0.4"
"@smithy/util-retry": "npm:^2.0.6"
"@smithy/util-stream": "npm:^2.0.20"
"@smithy/util-utf8": "npm:^2.0.2"
"@smithy/util-waiter": "npm:^2.0.13"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
checksum: 10/71986db492c6860bbbb27c5cc71b1df6bedc3846570cf1150e13fd87523973e0070122b8bc35945b8a5a70a8fed05ee6975bcf8c3286d67477c01b73fb8020b0
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.600.0":
version: 3.600.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.600.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sts": "npm:3.600.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/credential-provider-node": "npm:3.600.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@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.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^3.0.1"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/66343fc13ffd5d412ca2232a91dce14ee287ed611fb27cd1fe887bb36bf380d585c74473251bd9d688fab51b4f9bd4375bf7d8583effb3d07c6ac5f7cb85c597
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.451.0":
version: 3.451.0
resolution: "@aws-sdk/client-sso@npm:3.451.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.451.0"
"@aws-sdk/middleware-host-header": "npm:3.451.0"
"@aws-sdk/middleware-logger": "npm:3.451.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.451.0"
"@aws-sdk/middleware-user-agent": "npm:3.451.0"
"@aws-sdk/region-config-resolver": "npm:3.451.0"
"@aws-sdk/types": "npm:3.451.0"
"@aws-sdk/util-endpoints": "npm:3.451.0"
"@aws-sdk/util-user-agent-browser": "npm:3.451.0"
"@aws-sdk/util-user-agent-node": "npm:3.451.0"
"@smithy/config-resolver": "npm:^2.0.18"
"@smithy/fetch-http-handler": "npm:^2.2.6"
"@smithy/hash-node": "npm:^2.0.15"
"@smithy/invalid-dependency": "npm:^2.0.13"
"@smithy/middleware-content-length": "npm:^2.0.15"
"@smithy/middleware-endpoint": "npm:^2.2.0"
"@smithy/middleware-retry": "npm:^2.0.20"
"@smithy/middleware-serde": "npm:^2.0.13"
"@smithy/middleware-stack": "npm:^2.0.7"
"@smithy/node-config-provider": "npm:^2.1.5"
"@smithy/node-http-handler": "npm:^2.1.9"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/smithy-client": "npm:^2.1.15"
"@smithy/types": "npm:^2.5.0"
"@smithy/url-parser": "npm:^2.0.13"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.19"
"@smithy/util-defaults-mode-node": "npm:^2.0.25"
"@smithy/util-endpoints": "npm:^1.0.4"
"@smithy/util-retry": "npm:^2.0.6"
"@smithy/util-utf8": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10/ffd9f848aade06c3aa15dccb499bf76754a58cafe1d40b41b254588ad8f280a681fb1e38b74d35b3cdc166e58dcec37873c1008d52bee7d71e09491580cf5f30
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/client-sso@npm:3.598.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@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.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^3.0.1"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/6571a678ae4e0c42c245a2e7b969d5d2e4713dc5fe7604e5edc883a6f729362d1256f1c144094f8146e0fd85da675533c0e460c5217b1d17aecb2042201e169e
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.454.0, @aws-sdk/client-sts@npm:^3.350.0":
version: 3.454.0
resolution: "@aws-sdk/client-sts@npm:3.454.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.451.0"
"@aws-sdk/credential-provider-node": "npm:3.451.0"
"@aws-sdk/middleware-host-header": "npm:3.451.0"
"@aws-sdk/middleware-logger": "npm:3.451.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.451.0"
"@aws-sdk/middleware-sdk-sts": "npm:3.451.0"
"@aws-sdk/middleware-signing": "npm:3.451.0"
"@aws-sdk/middleware-user-agent": "npm:3.451.0"
"@aws-sdk/region-config-resolver": "npm:3.451.0"
"@aws-sdk/types": "npm:3.451.0"
"@aws-sdk/util-endpoints": "npm:3.451.0"
"@aws-sdk/util-user-agent-browser": "npm:3.451.0"
"@aws-sdk/util-user-agent-node": "npm:3.451.0"
"@smithy/config-resolver": "npm:^2.0.18"
"@smithy/fetch-http-handler": "npm:^2.2.6"
"@smithy/hash-node": "npm:^2.0.15"
"@smithy/invalid-dependency": "npm:^2.0.13"
"@smithy/middleware-content-length": "npm:^2.0.15"
"@smithy/middleware-endpoint": "npm:^2.2.0"
"@smithy/middleware-retry": "npm:^2.0.20"
"@smithy/middleware-serde": "npm:^2.0.13"
"@smithy/middleware-stack": "npm:^2.0.7"
"@smithy/node-config-provider": "npm:^2.1.5"
"@smithy/node-http-handler": "npm:^2.1.9"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/smithy-client": "npm:^2.1.15"
"@smithy/types": "npm:^2.5.0"
"@smithy/url-parser": "npm:^2.0.13"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.19"
"@smithy/util-defaults-mode-node": "npm:^2.0.25"
"@smithy/util-endpoints": "npm:^1.0.4"
"@smithy/util-retry": "npm:^2.0.6"
"@smithy/util-utf8": "npm:^2.0.2"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
checksum: 10/bc6e9fd7f2938bd042a686d9106231731280951fb70efba6b231d7996fcc56fba72f4c259a78d36c7e6f3ee9a2281927c5afc88344c7d0dab342d61096f3b55d
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.600.0":
version: 3.600.0
resolution: "@aws-sdk/client-sts@npm:3.600.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.600.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/credential-provider-node": "npm:3.600.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@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.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^3.0.1"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/1b955f0ceacdb7e0a0a15ce588aa7b0a796eae8591c195a9a1db601d6efeec504d7ad07189c4baedba0e8e888e4cbab770d6d9e54de9d07d166247f6f0df7c9a
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.451.0":
version: 3.451.0
resolution: "@aws-sdk/core@npm:3.451.0"
dependencies:
"@smithy/smithy-client": "npm:^2.1.15"
tslib: "npm:^2.5.0"
checksum: 10/6f1fd70ef3889729e987d2f9065c6b128b2886060a0babd5ab3f3e7fc835d4c5a304f8f72f270d7286dbc91fa5ff01c4e9640846a1c23d2ed32331a9e211aead
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/core@npm:3.598.0"
dependencies:
"@smithy/core": "npm:^2.2.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/signature-v4": "npm:^3.1.0"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.6.2"
checksum: 10/6c27302636d6e4c9382590be9d39e1ff2023c92a7aaa78117428d8af9be614ded56c7db2e9a016452144f4f6d81e6b09c81e29ad53df5fa9d506aa0548211f7c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-cognito-identity@npm:3.454.0":
version: 3.454.0
resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.454.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.454.0"
"@aws-sdk/types": "npm:3.451.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 10/c1de2f8a8762d5190cb521122b0f54aae059082fefc4a31f44c6769aa1046371c4772a3574b1cdac361acad34aed3fc1aa17dbfd4c541f42001aecb82a06bb15
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.451.0":
version: 3.451.0
resolution: "@aws-sdk/credential-provider-env@npm:3.451.0"
dependencies:
"@aws-sdk/types": "npm:3.451.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 10/cfb635f3737fb63d61516395ac768abcbdf0e900b02a850af4d820b46d6625bb062627a678a1d1af6d6353d4cb93e92997c7925c94f61b1ddb222e3618802e55
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/credential-provider-env@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/property-provider": "npm:^3.1.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10/79c6391aad109d9749b60516dcc425e923a730bf6239d5b41192612fc2658d6fdbcd48b48277076ca7c6db61103164fe305fdc4271994713128d4ec27d32236a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.451.0":
version: 3.451.0
resolution: "@aws-sdk/credential-provider-http@npm:3.451.0"
dependencies:
"@aws-sdk/types": "npm:3.451.0"
"@smithy/fetch-http-handler": "npm:^2.2.6"
"@smithy/node-http-handler": "npm:^2.1.9"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/smithy-client": "npm:^2.1.15"
"@smithy/types": "npm:^2.5.0"
"@smithy/util-stream": "npm:^2.0.20"
tslib: "npm:^2.5.0"
checksum: 10/10e4b10482803174014aaa1feddf91b1b8b7255b8e89d83bb3256f84fa4a34a3f491b6f7e1ed4e41241a1ad48845e556965f6d762be3f45c1da39c69c4a65a7d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/credential-provider-http@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/property-provider": "npm:^3.1.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/util-stream": "npm:^3.0.2"
tslib: "npm:^2.6.2"
checksum: 10/e8411e33faec1798a2e50166cd1777b4becd2ff07ec97d044424faf1db3a2e97d8b4ee8c43d0b4e763d94dfb8971f0542b160e69a94ca38b175c8227e4f71904
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.451.0":
version: 3.451.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.451.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.451.0"
"@aws-sdk/credential-provider-process": "npm:3.451.0"
"@aws-sdk/credential-provider-sso": "npm:3.451.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.451.0"
"@aws-sdk/types": "npm:3.451.0"
"@smithy/credential-provider-imds": "npm:^2.0.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.6"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 10/1d1baab78ad4a68ddfac9fcd09cadd243b7ceb46bd34c6751322bf50e66a62aa7c9a1cd2701a8b56c30bb435fb48499e6af7212aebd1acd93572b5b904cd8ad2
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.598.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.598.0"
"@aws-sdk/credential-provider-http": "npm:3.598.0"
"@aws-sdk/credential-provider-process": "npm:3.598.0"
"@aws-sdk/credential-provider-sso": "npm:3.598.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@smithy/credential-provider-imds": "npm:^3.1.1"
"@smithy/property-provider": "npm:^3.1.1"
"@smithy/shared-ini-file-loader": "npm:^3.1.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.598.0
checksum: 10/2f3aa54850dc1da4732d1dbc5a8e6ec095107ff08c46af4bffec41e1535a9c9a320586386f67358dd0acec83069dbb2b420bbd09412aa56993d088eb08ffef2b
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.451.0, @aws-sdk/credential-provider-node@npm:^3.350.0":
version: 3.451.0
resolution: "@aws-sdk/credential-provider-node@npm:3.451.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.451.0"
"@aws-sdk/credential-provider-ini": "npm:3.451.0"
"@aws-sdk/credential-provider-process": "npm:3.451.0"
"@aws-sdk/credential-provider-sso": "npm:3.451.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.451.0"
"@aws-sdk/types": "npm:3.451.0"
"@smithy/credential-provider-imds": "npm:^2.0.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.6"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 10/c3cece4ab9e02a1ef1b3dbd927014f3efe678b03bcf9e173917ee46b67954d39c680b4574bf4345aa6fe00f9d6cfdcefe84309e7ae25f7a3058888fabff2176c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.600.0":
version: 3.600.0
resolution: "@aws-sdk/credential-provider-node@npm:3.600.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.598.0"
"@aws-sdk/credential-provider-http": "npm:3.598.0"
"@aws-sdk/credential-provider-ini": "npm:3.598.0"
"@aws-sdk/credential-provider-process": "npm:3.598.0"
"@aws-sdk/credential-provider-sso": "npm:3.598.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@smithy/credential-provider-imds": "npm:^3.1.1"
"@smithy/property-provider": "npm:^3.1.1"
"@smithy/shared-ini-file-loader": "npm:^3.1.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10/b5ab56a5c8acd566f41ba834214718a0ab8825090fe71b0ecc4ebec5e76de3afa47387ab99d061f3ac6ecd5ead9af621d7311ffa0a6b16df312f3c9de311747d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.451.0":
version: 3.451.0
resolution: "@aws-sdk/credential-provider-process@npm:3.451.0"
dependencies:
"@aws-sdk/types": "npm:3.451.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.6"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 10/cd98edf0040e7602866b77edeb7b6acb6487dd8144b732321fb82f5e53d9387dfe39bb2c37260cfe24b3ab313652f3ef05513b7685e0236a01c20f3d6b3cca57
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/credential-provider-process@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/property-provider": "npm:^3.1.1"
"@smithy/shared-ini-file-loader": "npm:^3.1.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10/c0f9aa2304e273460b93efa7a09664d69e3dcdf6983d789a83bbc77a7975dddc7db915caaccf922f459eaad7b0ed546d1d79bcf0354898bca7c141fc49f5809b
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.451.0":
version: 3.451.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.451.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.451.0"
"@aws-sdk/token-providers": "npm:3.451.0"
"@aws-sdk/types": "npm:3.451.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.6"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 10/0d9395c7196a399bced597c377702217ebc521d55416f0ad6534090ca9f1af4c10abea16e6123a25e7b418e140282de83af12fdc12dd17c463fc53735e80ccd6
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.598.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.598.0"
"@aws-sdk/token-providers": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@smithy/property-provider": "npm:^3.1.1"
"@smithy/shared-ini-file-loader": "npm:^3.1.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10/19e6d8390a7824f921ee63105563857171404a09b7e7df1e9ad99a2ef334cc05cd1ae6d95f5a975fb328f5b53713cb1cb228d92b4966a7a8e9afc15637de66de
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.451.0":
version: 3.451.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.451.0"
dependencies:
"@aws-sdk/types": "npm:3.451.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 10/53dca09c49279c4ffa5bf56e22873c2413c5db7b3c04bb7eab762def8451febecebe815238b82de3d448c1dc61ab252c883858357f9ee8b7e2e8a827fd84f38d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/property-provider": "npm:^3.1.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.598.0
checksum: 10/76cf4e389dc565402f1ba0b9c65983590e98435a17ed291d6b15412dac27aea7e35f23036675f76f2a267f8375de616550be759136bf2ff7d63211a22535bbf2
languageName: node
linkType: hard
"@aws-sdk/credential-providers@npm:^3.350.0":
version: 3.454.0
resolution: "@aws-sdk/credential-providers@npm:3.454.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.454.0"
"@aws-sdk/client-sso": "npm:3.451.0"
"@aws-sdk/client-sts": "npm:3.454.0"
"@aws-sdk/credential-provider-cognito-identity": "npm:3.454.0"
"@aws-sdk/credential-provider-env": "npm:3.451.0"
"@aws-sdk/credential-provider-http": "npm:3.451.0"
"@aws-sdk/credential-provider-ini": "npm:3.451.0"
"@aws-sdk/credential-provider-node": "npm:3.451.0"
"@aws-sdk/credential-provider-process": "npm:3.451.0"
"@aws-sdk/credential-provider-sso": "npm:3.451.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.451.0"
"@aws-sdk/types": "npm:3.451.0"
"@smithy/credential-provider-imds": "npm:^2.0.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 10/4b3bb2b47e5d495bc9632c4f00609c0bd2b17ae0fa45fc7dd8a7469ec640d8c00b4f4b4109deff71feda78dc273f305c0400ac19f68f437ef69b09b79a729b71
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.451.0":
version: 3.451.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.451.0"
dependencies:
"@aws-sdk/types": "npm:3.451.0"
"@aws-sdk/util-arn-parser": "npm:3.310.0"
"@smithy/node-config-provider": "npm:^2.1.5"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/types": "npm:^2.5.0"
"@smithy/util-config-provider": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10/3ca97b5b6c988614ed02bd98099445b46a8f50cfb3722325842b0570f26685f5e10d257486bd3a2e22eb3529434f5b1807284f452d05a578fd3c153e158f279f
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.451.0":
version: 3.451.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.451.0"
dependencies:
"@aws-sdk/types": "npm:3.451.0"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 10/c0571a41d1c4dd7f04fd40ac6a346eba7c2a8c0f8093d5b4aec6847222d413b13d875e58d41fb206e3c8f656469fc0a483a9b27aa8308ec6a88c22c3e1dd2d95
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.451.0":
version: 3.451.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.451.0"
dependencies:
"@aws-crypto/crc32": "npm:3.0.0"
"@aws-crypto/crc32c": "npm:3.0.0"
"@aws-sdk/types": "npm:3.451.0"
"@smithy/is-array-buffer": "npm:^2.0.0"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/types": "npm:^2.5.0"
"@smithy/util-utf8": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10/1275ede70928ecd7b7857b705e006198c4ba01ba1094f16da4621e896096120c53d82f93adb5b5caab7d14f177c82189181ad45da98a71a9f22dcffe8918f845
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.451.0":
version: 3.451.0
resolution: "@aws-sdk/middleware-host-header@npm:3.451.0"
dependencies:
"@aws-sdk/types": "npm:3.451.0"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 10/af87e605a138b16fb2444c8b7d7e918bb8cc3bb3802dd43644dba047f63e1580c981c4a977d3aaced71c7d4bb976f7e3670d3cd6aff17e42a5398004fbd9b08e
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/middleware-host-header@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10/53498c94fd769dbee727ba4148d67578d2073fd83217695106e9dd3b572e56aa0362c329da4c13e39a0aaef45597cc7988b8951f2df4d28dc7c29461fa3791cc
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.451.0":
version: 3.451.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.451.0"
dependencies:
"@aws-sdk/types": "npm:3.451.0"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 10/a767c48835dc428dc36781ad6f8586dc49d532d9e243379e53b6982c069623a4810180812638ad799c77276087bcbaff500eeb1021e7c87530b4efdaf8a146a9
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.451.0":
version: 3.451.0
resolution: "@aws-sdk/middleware-logger@npm:3.451.0"
dependencies:
"@aws-sdk/types": "npm:3.451.0"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 10/411d8849a60de0071b7ab9d2d9f31bbdc8ddc69facbcc899942ae578b4495febbaa25ac54133644e4a579f5ac0e2518c11e4feb47f31bc93316ab8d024853ed5
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/middleware-logger@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10/e6db8b4e861cc8cc85f4e1b83fd73dc902beece1210fcfa6f2ebd7e78f9ee88f9a1584cdb584358b81c22c5c23b5b3bc58a6a57de2bfc33fb07684d9b9f8dad5
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.451.0":
version: 3.451.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.451.0"
dependencies:
"@aws-sdk/types": "npm:3.451.0"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 10/27ea17559a1e03702c035cf05e39c43c6c8a7dd420fabc30d90e7c86d2b009c6813e82d127b10e8c47954770a0171a30fbf7d9e91bdb8b57c1db694edfe46820
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10/2bc64666c08ee7f46a2918ac70773d7244f5c7866d0e3521c8734286c0b1bd5e4e64ea2bb4ec656e683dfecb7d44d43cd15283c4ec4cfe16b7aa7f4e19a586b8
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.451.0":
version: 3.451.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.451.0"
dependencies:
"@aws-sdk/types": "npm:3.451.0"
"@aws-sdk/util-arn-parser": "npm:3.310.0"
"@smithy/protocol-http": "npm:^3.0.9"
"@smithy/smithy-client": "npm:^2.1.15"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 10/f6b7c86d534eb99b3c60d62143927375e9bf6b6e3467f8647965e7a515fd61c4e5ef1c96ee77289bbf68bf3266af29729c873f92746c734b0c627fd04348301c
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-sts@npm:3.451.0":
version: 3.451.0
resolution: "@aws-sdk/middleware-sdk-sts@npm:3.451.0"
dependencies:
"@aws-sdk/middleware-signing": "npm:3.451.0"
"@aws-sdk/types": "npm:3.451.0"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: 10/9931d3b1c4467e134498cedac82b7bf5939565d482052dbeec5c98de293bada3f46ceef38a08dd17dcce319bd29eb3c85c2276bec1b2c0eceb554dcef5f9c0fd
languageName: node
linkType: hard
"@aws-sdk/middleware-signing@npm:3.451.0":