-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathyarn.lock
16707 lines (15134 loc) · 591 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
"2-thenable@npm:^1.0.0":
version: 1.0.0
resolution: "2-thenable@npm:1.0.0"
dependencies:
d: "npm:1"
es5-ext: "npm:^0.10.47"
checksum: 10/567cda6fb2fd8884b2a5efdfbec7476da9ec9e3bf84d8bcc637dcda09254c135b4fc91321c0d81a501a9bdafd2d8939f163c2a803c0bccd2f4b6631bbe2e4958
languageName: node
linkType: hard
"@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/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/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-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/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/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-sdk/client-apigatewaymanagementapi@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/client-apigatewaymanagementapi@npm:3.540.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.540.0"
"@aws-sdk/core": "npm:3.535.0"
"@aws-sdk/credential-provider-node": "npm:3.540.0"
"@aws-sdk/middleware-host-header": "npm:3.535.0"
"@aws-sdk/middleware-logger": "npm:3.535.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.535.0"
"@aws-sdk/middleware-user-agent": "npm:3.540.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@aws-sdk/util-user-agent-browser": "npm:3.535.0"
"@aws-sdk/util-user-agent-node": "npm:3.535.0"
"@smithy/config-resolver": "npm:^2.2.0"
"@smithy/core": "npm:^1.4.0"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/hash-node": "npm:^2.2.0"
"@smithy/invalid-dependency": "npm:^2.2.0"
"@smithy/middleware-content-length": "npm:^2.2.0"
"@smithy/middleware-endpoint": "npm:^2.5.0"
"@smithy/middleware-retry": "npm:^2.2.0"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/middleware-stack": "npm:^2.2.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
"@smithy/util-base64": "npm:^2.3.0"
"@smithy/util-body-length-browser": "npm:^2.2.0"
"@smithy/util-body-length-node": "npm:^2.3.0"
"@smithy/util-defaults-mode-browser": "npm:^2.2.0"
"@smithy/util-defaults-mode-node": "npm:^2.3.0"
"@smithy/util-endpoints": "npm:^1.2.0"
"@smithy/util-middleware": "npm:^2.2.0"
"@smithy/util-retry": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
tslib: "npm:^2.6.2"
checksum: 10/5ecfd8eb752cc9c7fa6d80044a2da143e5a55cb0e827588fe9d1042db148a9b4d8645e00e974cc44b940581d7065f8245b1070beafcad46e90a55c091103237c
languageName: node
linkType: hard
"@aws-sdk/client-cloudformation@npm:^3.410.0":
version: 3.423.0
resolution: "@aws-sdk/client-cloudformation@npm:3.423.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.423.0"
"@aws-sdk/credential-provider-node": "npm:3.423.0"
"@aws-sdk/middleware-host-header": "npm:3.418.0"
"@aws-sdk/middleware-logger": "npm:3.418.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.418.0"
"@aws-sdk/middleware-signing": "npm:3.418.0"
"@aws-sdk/middleware-user-agent": "npm:3.418.0"
"@aws-sdk/region-config-resolver": "npm:3.418.0"
"@aws-sdk/types": "npm:3.418.0"
"@aws-sdk/util-endpoints": "npm:3.418.0"
"@aws-sdk/util-user-agent-browser": "npm:3.418.0"
"@aws-sdk/util-user-agent-node": "npm:3.418.0"
"@smithy/config-resolver": "npm:^2.0.10"
"@smithy/fetch-http-handler": "npm:^2.1.5"
"@smithy/hash-node": "npm:^2.0.9"
"@smithy/invalid-dependency": "npm:^2.0.9"
"@smithy/middleware-content-length": "npm:^2.0.11"
"@smithy/middleware-endpoint": "npm:^2.0.9"
"@smithy/middleware-retry": "npm:^2.0.12"
"@smithy/middleware-serde": "npm:^2.0.9"
"@smithy/middleware-stack": "npm:^2.0.2"
"@smithy/node-config-provider": "npm:^2.0.12"
"@smithy/node-http-handler": "npm:^2.1.5"
"@smithy/protocol-http": "npm:^3.0.5"
"@smithy/smithy-client": "npm:^2.1.6"
"@smithy/types": "npm:^2.3.3"
"@smithy/url-parser": "npm:^2.0.9"
"@smithy/util-base64": "npm:^2.0.0"
"@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.10"
"@smithy/util-defaults-mode-node": "npm:^2.0.12"
"@smithy/util-retry": "npm:^2.0.2"
"@smithy/util-utf8": "npm:^2.0.0"
"@smithy/util-waiter": "npm:^2.0.9"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
uuid: "npm:^8.3.2"
checksum: 10/fcb054725918feb447db434502641da22cc434a21014904dd86a56e897322401b2e49343228a84a3200689a984cd8c5baab60a941e70cd8648c018665d1940b7
languageName: node
linkType: hard
"@aws-sdk/client-lambda@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/client-lambda@npm:3.540.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.540.0"
"@aws-sdk/core": "npm:3.535.0"
"@aws-sdk/credential-provider-node": "npm:3.540.0"
"@aws-sdk/middleware-host-header": "npm:3.535.0"
"@aws-sdk/middleware-logger": "npm:3.535.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.535.0"
"@aws-sdk/middleware-user-agent": "npm:3.540.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@aws-sdk/util-user-agent-browser": "npm:3.535.0"
"@aws-sdk/util-user-agent-node": "npm:3.535.0"
"@smithy/config-resolver": "npm:^2.2.0"
"@smithy/core": "npm:^1.4.0"
"@smithy/eventstream-serde-browser": "npm:^2.2.0"
"@smithy/eventstream-serde-config-resolver": "npm:^2.2.0"
"@smithy/eventstream-serde-node": "npm:^2.2.0"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/hash-node": "npm:^2.2.0"
"@smithy/invalid-dependency": "npm:^2.2.0"
"@smithy/middleware-content-length": "npm:^2.2.0"
"@smithy/middleware-endpoint": "npm:^2.5.0"
"@smithy/middleware-retry": "npm:^2.2.0"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/middleware-stack": "npm:^2.2.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
"@smithy/util-base64": "npm:^2.3.0"
"@smithy/util-body-length-browser": "npm:^2.2.0"
"@smithy/util-body-length-node": "npm:^2.3.0"
"@smithy/util-defaults-mode-browser": "npm:^2.2.0"
"@smithy/util-defaults-mode-node": "npm:^2.3.0"
"@smithy/util-endpoints": "npm:^1.2.0"
"@smithy/util-middleware": "npm:^2.2.0"
"@smithy/util-retry": "npm:^2.2.0"
"@smithy/util-stream": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
"@smithy/util-waiter": "npm:^2.2.0"
tslib: "npm:^2.6.2"
checksum: 10/d0871a578a81c99b679fdaf6d388e342f30af12a8392c4c7dcf389f10603cb7b541ac355caab999846688911465f070eba2167cb58583b813a6954dcbcf28e2e
languageName: node
linkType: hard
"@aws-sdk/client-lambda@npm:^3.421.0":
version: 3.423.0
resolution: "@aws-sdk/client-lambda@npm:3.423.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.423.0"
"@aws-sdk/credential-provider-node": "npm:3.423.0"
"@aws-sdk/middleware-host-header": "npm:3.418.0"
"@aws-sdk/middleware-logger": "npm:3.418.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.418.0"
"@aws-sdk/middleware-signing": "npm:3.418.0"
"@aws-sdk/middleware-user-agent": "npm:3.418.0"
"@aws-sdk/region-config-resolver": "npm:3.418.0"
"@aws-sdk/types": "npm:3.418.0"
"@aws-sdk/util-endpoints": "npm:3.418.0"
"@aws-sdk/util-user-agent-browser": "npm:3.418.0"
"@aws-sdk/util-user-agent-node": "npm:3.418.0"
"@smithy/config-resolver": "npm:^2.0.10"
"@smithy/eventstream-serde-browser": "npm:^2.0.9"
"@smithy/eventstream-serde-config-resolver": "npm:^2.0.9"
"@smithy/eventstream-serde-node": "npm:^2.0.9"
"@smithy/fetch-http-handler": "npm:^2.1.5"
"@smithy/hash-node": "npm:^2.0.9"
"@smithy/invalid-dependency": "npm:^2.0.9"
"@smithy/middleware-content-length": "npm:^2.0.11"
"@smithy/middleware-endpoint": "npm:^2.0.9"
"@smithy/middleware-retry": "npm:^2.0.12"
"@smithy/middleware-serde": "npm:^2.0.9"
"@smithy/middleware-stack": "npm:^2.0.2"
"@smithy/node-config-provider": "npm:^2.0.12"
"@smithy/node-http-handler": "npm:^2.1.5"
"@smithy/protocol-http": "npm:^3.0.5"
"@smithy/smithy-client": "npm:^2.1.6"
"@smithy/types": "npm:^2.3.3"
"@smithy/url-parser": "npm:^2.0.9"
"@smithy/util-base64": "npm:^2.0.0"
"@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.10"
"@smithy/util-defaults-mode-node": "npm:^2.0.12"
"@smithy/util-retry": "npm:^2.0.2"
"@smithy/util-stream": "npm:^2.0.12"
"@smithy/util-utf8": "npm:^2.0.0"
"@smithy/util-waiter": "npm:^2.0.9"
tslib: "npm:^2.5.0"
checksum: 10/796c3c36bacbaec44b9d66cb3b20cc73e391fa9b80775705679b8c24ea241c3dd1ddaf6a54dbddf2aa31d2b2a93b805693de26a40a52931dff6a03aaad33d3ab
languageName: node
linkType: hard
"@aws-sdk/client-sqs@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/client-sqs@npm:3.540.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.540.0"
"@aws-sdk/core": "npm:3.535.0"
"@aws-sdk/credential-provider-node": "npm:3.540.0"
"@aws-sdk/middleware-host-header": "npm:3.535.0"
"@aws-sdk/middleware-logger": "npm:3.535.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.535.0"
"@aws-sdk/middleware-sdk-sqs": "npm:3.535.0"
"@aws-sdk/middleware-user-agent": "npm:3.540.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@aws-sdk/util-user-agent-browser": "npm:3.535.0"
"@aws-sdk/util-user-agent-node": "npm:3.535.0"
"@smithy/config-resolver": "npm:^2.2.0"
"@smithy/core": "npm:^1.4.0"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/hash-node": "npm:^2.2.0"
"@smithy/invalid-dependency": "npm:^2.2.0"
"@smithy/md5-js": "npm:^2.2.0"
"@smithy/middleware-content-length": "npm:^2.2.0"
"@smithy/middleware-endpoint": "npm:^2.5.0"
"@smithy/middleware-retry": "npm:^2.2.0"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/middleware-stack": "npm:^2.2.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
"@smithy/util-base64": "npm:^2.3.0"
"@smithy/util-body-length-browser": "npm:^2.2.0"
"@smithy/util-body-length-node": "npm:^2.3.0"
"@smithy/util-defaults-mode-browser": "npm:^2.2.0"
"@smithy/util-defaults-mode-node": "npm:^2.3.0"
"@smithy/util-endpoints": "npm:^1.2.0"
"@smithy/util-middleware": "npm:^2.2.0"
"@smithy/util-retry": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
tslib: "npm:^2.6.2"
checksum: 10/2e98b2d31ee6986dbea1cb22b533a863e54302b832233995923304a3d6235b4a8407b5db5878e78ba40336e23ec3291ed40463cc928da8948b3c915bb5c79ac9
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.540.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.540.0"
"@aws-sdk/core": "npm:3.535.0"
"@aws-sdk/middleware-host-header": "npm:3.535.0"
"@aws-sdk/middleware-logger": "npm:3.535.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.535.0"
"@aws-sdk/middleware-user-agent": "npm:3.540.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@aws-sdk/util-user-agent-browser": "npm:3.535.0"
"@aws-sdk/util-user-agent-node": "npm:3.535.0"
"@smithy/config-resolver": "npm:^2.2.0"
"@smithy/core": "npm:^1.4.0"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/hash-node": "npm:^2.2.0"
"@smithy/invalid-dependency": "npm:^2.2.0"
"@smithy/middleware-content-length": "npm:^2.2.0"
"@smithy/middleware-endpoint": "npm:^2.5.0"
"@smithy/middleware-retry": "npm:^2.2.0"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/middleware-stack": "npm:^2.2.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
"@smithy/util-base64": "npm:^2.3.0"
"@smithy/util-body-length-browser": "npm:^2.2.0"
"@smithy/util-body-length-node": "npm:^2.3.0"
"@smithy/util-defaults-mode-browser": "npm:^2.2.0"
"@smithy/util-defaults-mode-node": "npm:^2.3.0"
"@smithy/util-endpoints": "npm:^1.2.0"
"@smithy/util-middleware": "npm:^2.2.0"
"@smithy/util-retry": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/credential-provider-node": ^3.540.0
checksum: 10/3d730be4c5031381f3c10b26243e26e5d50178f3aa511a38c0ad28b7f8e68897daead41da65dac98cfe81f6c0e37b074cf02bb63179ff112bdfd2472b70e1160
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.423.0":
version: 3.423.0
resolution: "@aws-sdk/client-sso@npm:3.423.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/middleware-host-header": "npm:3.418.0"
"@aws-sdk/middleware-logger": "npm:3.418.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.418.0"
"@aws-sdk/middleware-user-agent": "npm:3.418.0"
"@aws-sdk/region-config-resolver": "npm:3.418.0"
"@aws-sdk/types": "npm:3.418.0"
"@aws-sdk/util-endpoints": "npm:3.418.0"
"@aws-sdk/util-user-agent-browser": "npm:3.418.0"
"@aws-sdk/util-user-agent-node": "npm:3.418.0"
"@smithy/config-resolver": "npm:^2.0.10"
"@smithy/fetch-http-handler": "npm:^2.1.5"
"@smithy/hash-node": "npm:^2.0.9"
"@smithy/invalid-dependency": "npm:^2.0.9"
"@smithy/middleware-content-length": "npm:^2.0.11"
"@smithy/middleware-endpoint": "npm:^2.0.9"
"@smithy/middleware-retry": "npm:^2.0.12"
"@smithy/middleware-serde": "npm:^2.0.9"
"@smithy/middleware-stack": "npm:^2.0.2"
"@smithy/node-config-provider": "npm:^2.0.12"
"@smithy/node-http-handler": "npm:^2.1.5"
"@smithy/protocol-http": "npm:^3.0.5"
"@smithy/smithy-client": "npm:^2.1.6"
"@smithy/types": "npm:^2.3.3"
"@smithy/url-parser": "npm:^2.0.9"
"@smithy/util-base64": "npm:^2.0.0"
"@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.10"
"@smithy/util-defaults-mode-node": "npm:^2.0.12"
"@smithy/util-retry": "npm:^2.0.2"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10/1012d661052b04749643c32bc5d2dbfcd0d3a803cafc5c4b195f5a27851a16d9800a76447b15f885d93a93c120d8796d3feb3dc9859ace4ea4b6f36b65cda934
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/client-sso@npm:3.540.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.535.0"
"@aws-sdk/middleware-host-header": "npm:3.535.0"
"@aws-sdk/middleware-logger": "npm:3.535.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.535.0"
"@aws-sdk/middleware-user-agent": "npm:3.540.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@aws-sdk/util-user-agent-browser": "npm:3.535.0"
"@aws-sdk/util-user-agent-node": "npm:3.535.0"
"@smithy/config-resolver": "npm:^2.2.0"
"@smithy/core": "npm:^1.4.0"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/hash-node": "npm:^2.2.0"
"@smithy/invalid-dependency": "npm:^2.2.0"
"@smithy/middleware-content-length": "npm:^2.2.0"
"@smithy/middleware-endpoint": "npm:^2.5.0"
"@smithy/middleware-retry": "npm:^2.2.0"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/middleware-stack": "npm:^2.2.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
"@smithy/util-base64": "npm:^2.3.0"
"@smithy/util-body-length-browser": "npm:^2.2.0"
"@smithy/util-body-length-node": "npm:^2.3.0"
"@smithy/util-defaults-mode-browser": "npm:^2.2.0"
"@smithy/util-defaults-mode-node": "npm:^2.3.0"
"@smithy/util-endpoints": "npm:^1.2.0"
"@smithy/util-middleware": "npm:^2.2.0"
"@smithy/util-retry": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
tslib: "npm:^2.6.2"
checksum: 10/8e2a021624c102ab5a35216ecf1e42dc9d0b7bfb1213477783f64bcc227dcc6cc2363359678b702549d44332f3d2d71173374bd7bf56ea0093aa351a9cba2a90
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.423.0, @aws-sdk/client-sts@npm:^3.410.0":
version: 3.423.0
resolution: "@aws-sdk/client-sts@npm:3.423.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/credential-provider-node": "npm:3.423.0"
"@aws-sdk/middleware-host-header": "npm:3.418.0"
"@aws-sdk/middleware-logger": "npm:3.418.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.418.0"
"@aws-sdk/middleware-sdk-sts": "npm:3.418.0"
"@aws-sdk/middleware-signing": "npm:3.418.0"
"@aws-sdk/middleware-user-agent": "npm:3.418.0"
"@aws-sdk/region-config-resolver": "npm:3.418.0"
"@aws-sdk/types": "npm:3.418.0"
"@aws-sdk/util-endpoints": "npm:3.418.0"
"@aws-sdk/util-user-agent-browser": "npm:3.418.0"
"@aws-sdk/util-user-agent-node": "npm:3.418.0"
"@smithy/config-resolver": "npm:^2.0.10"
"@smithy/fetch-http-handler": "npm:^2.1.5"
"@smithy/hash-node": "npm:^2.0.9"
"@smithy/invalid-dependency": "npm:^2.0.9"
"@smithy/middleware-content-length": "npm:^2.0.11"
"@smithy/middleware-endpoint": "npm:^2.0.9"
"@smithy/middleware-retry": "npm:^2.0.12"
"@smithy/middleware-serde": "npm:^2.0.9"
"@smithy/middleware-stack": "npm:^2.0.2"
"@smithy/node-config-provider": "npm:^2.0.12"
"@smithy/node-http-handler": "npm:^2.1.5"
"@smithy/protocol-http": "npm:^3.0.5"
"@smithy/smithy-client": "npm:^2.1.6"
"@smithy/types": "npm:^2.3.3"
"@smithy/url-parser": "npm:^2.0.9"
"@smithy/util-base64": "npm:^2.0.0"
"@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.10"
"@smithy/util-defaults-mode-node": "npm:^2.0.12"
"@smithy/util-retry": "npm:^2.0.2"
"@smithy/util-utf8": "npm:^2.0.0"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
checksum: 10/48a71cc9e82947e1a720b05e3a3261210fcb5526bdb30c11da933f287d4bb1221ec0a3a75a7b025a6458569c8ae43a8238939b07d00f566428bd9217105418ac
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/client-sts@npm:3.540.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.535.0"
"@aws-sdk/middleware-host-header": "npm:3.535.0"
"@aws-sdk/middleware-logger": "npm:3.535.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.535.0"
"@aws-sdk/middleware-user-agent": "npm:3.540.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@aws-sdk/util-user-agent-browser": "npm:3.535.0"
"@aws-sdk/util-user-agent-node": "npm:3.535.0"
"@smithy/config-resolver": "npm:^2.2.0"
"@smithy/core": "npm:^1.4.0"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/hash-node": "npm:^2.2.0"
"@smithy/invalid-dependency": "npm:^2.2.0"
"@smithy/middleware-content-length": "npm:^2.2.0"
"@smithy/middleware-endpoint": "npm:^2.5.0"
"@smithy/middleware-retry": "npm:^2.2.0"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/middleware-stack": "npm:^2.2.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
"@smithy/util-base64": "npm:^2.3.0"
"@smithy/util-body-length-browser": "npm:^2.2.0"
"@smithy/util-body-length-node": "npm:^2.3.0"
"@smithy/util-defaults-mode-browser": "npm:^2.2.0"
"@smithy/util-defaults-mode-node": "npm:^2.3.0"
"@smithy/util-endpoints": "npm:^1.2.0"
"@smithy/util-middleware": "npm:^2.2.0"
"@smithy/util-retry": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/credential-provider-node": ^3.540.0
checksum: 10/1344fe3d8ecd0e399859b50034d7b3400ab7f67b3734180bd6ecdef464a1069cdd1135dfc39864fd97033be8c3c9551f28b65e07d658307963836d3f548b4e69
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/core@npm:3.535.0"
dependencies:
"@smithy/core": "npm:^1.4.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/signature-v4": "npm:^2.2.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.6.2"
checksum: 10/f80dd5f6293dbfa11fdfdaed6dc56142c86eaf074231be990ce127ebd9fd92e2b574d751d5b15c397b885ad60ef0550b5d80bc516979d0b0289605c9eacdfdb0
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.418.0":
version: 3.418.0
resolution: "@aws-sdk/credential-provider-env@npm:3.418.0"
dependencies:
"@aws-sdk/types": "npm:3.418.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/types": "npm:^2.3.3"
tslib: "npm:^2.5.0"
checksum: 10/84e0a2395d8d551f2c3bf2e79db8fa75f019ddd27af9de6b99e5e705e46b37a3f27542957910c097adc55727d4419ee0c8f0a92324e37a0a6417f996080f8529
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/credential-provider-env@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/a9ab16146a2ba6d5d4af901ebacbd4576effd42c90debc274a9e827bd0a958072b068dfab54e8c6735cc96de40196d84c90c2543692336cca0decef2a16f2fd2
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/credential-provider-http@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-stream": "npm:^2.2.0"
tslib: "npm:^2.6.2"
checksum: 10/989d97be76e7c93801c216e18974741df14d66c5a1069bc01d80b26a73bae714a4070d1469db8a00db51d8914167e2c8d17eee565fb9fba29527895b0b165e85
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.423.0":
version: 3.423.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.423.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.418.0"
"@aws-sdk/credential-provider-process": "npm:3.418.0"
"@aws-sdk/credential-provider-sso": "npm:3.423.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.418.0"
"@aws-sdk/types": "npm:3.418.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.3.3"
tslib: "npm:^2.5.0"
checksum: 10/2a46df73c139cd574e53291380bcf03331b3a1fca0a6cf01b9f5ed398dada79e277f1580438388da7646bfd94537e3d06e507dfb23683525f16a140624f1fd19
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.540.0"
dependencies:
"@aws-sdk/client-sts": "npm:3.540.0"
"@aws-sdk/credential-provider-env": "npm:3.535.0"
"@aws-sdk/credential-provider-process": "npm:3.535.0"
"@aws-sdk/credential-provider-sso": "npm:3.540.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.540.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/credential-provider-imds": "npm:^2.3.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/shared-ini-file-loader": "npm:^2.4.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/71d6a3eda7ec07e2c516e149f75f33d35217c8ea54cf705fde06173d35fd118f2c1569e56ddd89f229049ef8edcfec26cbebbd51d84c0781f131df1537bab222
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.423.0":
version: 3.423.0
resolution: "@aws-sdk/credential-provider-node@npm:3.423.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.418.0"
"@aws-sdk/credential-provider-ini": "npm:3.423.0"
"@aws-sdk/credential-provider-process": "npm:3.418.0"
"@aws-sdk/credential-provider-sso": "npm:3.423.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.418.0"
"@aws-sdk/types": "npm:3.418.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.3.3"
tslib: "npm:^2.5.0"
checksum: 10/dbe003a4a03c16bab9a9308329778040c17e36ce137c9343fa64a9e5545c184e492581773401754de30d185a7ea5523008ea69944fc1883699fae601bc042f1a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/credential-provider-node@npm:3.540.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.535.0"
"@aws-sdk/credential-provider-http": "npm:3.535.0"
"@aws-sdk/credential-provider-ini": "npm:3.540.0"
"@aws-sdk/credential-provider-process": "npm:3.535.0"
"@aws-sdk/credential-provider-sso": "npm:3.540.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.540.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/credential-provider-imds": "npm:^2.3.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/shared-ini-file-loader": "npm:^2.4.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/78fde961d1b0b9b5e19b7a8e3ccae2daf35c3cb1dd4fee58e8960e7f7d97a0f42a470caab5c62aa5568f1b2d39171992164f22eb32e5cc231db34a9be4743bc9
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.418.0":
version: 3.418.0
resolution: "@aws-sdk/credential-provider-process@npm:3.418.0"
dependencies:
"@aws-sdk/types": "npm:3.418.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.6"
"@smithy/types": "npm:^2.3.3"
tslib: "npm:^2.5.0"
checksum: 10/d9aa1d88650072f5ef6501acf3fc4505f10747084f8d47db6976dd243b4ac9c8b67423dc012b0528006a064e2e824ff9995a6dd7485b6d2c683f27cc14b6a194
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/credential-provider-process@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/shared-ini-file-loader": "npm:^2.4.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/59260bcd5d42ee61269a3a3d9b2c6c9ab0b6af2b1d48826018e56d44014c3a85fceaf175f3855a24a5f3093ee367afea49a72a559bc7ceb30e7cc9be049c4b0a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.423.0":
version: 3.423.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.423.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.423.0"
"@aws-sdk/token-providers": "npm:3.418.0"
"@aws-sdk/types": "npm:3.418.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.6"
"@smithy/types": "npm:^2.3.3"
tslib: "npm:^2.5.0"
checksum: 10/3fe1c8433206cde932f5cddfa96395bd4d4438c39955d42e701a086be0fa9ffd0107ff7dc5f1b5624cdfe6473f265859aa4f30ae512cf6fc177252e6cf7bb122
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.540.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.540.0"
"@aws-sdk/token-providers": "npm:3.540.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/shared-ini-file-loader": "npm:^2.4.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/9aa974a56a2effb2254df63bc5ec08595d6ca9bd5d724d8fc463e798131bfab0c15a47c32f2b359765ef44241dd737ebd09202a09690214f6e52060eba2f0dcd
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.418.0":
version: 3.418.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.418.0"
dependencies:
"@aws-sdk/types": "npm:3.418.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/types": "npm:^2.3.3"
tslib: "npm:^2.5.0"
checksum: 10/cc53d6c2dab188d8d378282aa60a7e2f97bfb8b9913d06770339ac9bf449ce524895b577ba225ba61f97cb789b81ebaa2d6f1c507a43c5436a1bf1e9c9b5cfe9
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.540.0"
dependencies:
"@aws-sdk/client-sts": "npm:3.540.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/889dac368f27fde4a47428dd9ba23ba8352bb01a6c9674b36b3972feef5acc68ff5ba37b8932413bff34c7ed128d1a840369e663ac0291eb8ebd8a6fe48e5ce0
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.418.0":
version: 3.418.0
resolution: "@aws-sdk/middleware-host-header@npm:3.418.0"
dependencies:
"@aws-sdk/types": "npm:3.418.0"
"@smithy/protocol-http": "npm:^3.0.5"
"@smithy/types": "npm:^2.3.3"
tslib: "npm:^2.5.0"
checksum: 10/5cdfa1d7254362bec676053f143a6b24b152275de855be9e788e91e2cf45b2c6b0628bdd98abc935e67f20e29776d2702698cfde08fdee4a29e4fe539155e8af
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-host-header@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/a32cb45c88c8e2361ca4cfca8cd7dc84e743e39e3a161ac4d9aa6c0916b3f259f32c2c8d84cfb60971c4da69fe17b387df75d21903aab8c2c56586cbe025c91c
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.418.0":
version: 3.418.0
resolution: "@aws-sdk/middleware-logger@npm:3.418.0"
dependencies:
"@aws-sdk/types": "npm:3.418.0"
"@smithy/types": "npm:^2.3.3"
tslib: "npm:^2.5.0"
checksum: 10/5733dc9b960456b677fab926b85857249eed6af1b9358bb3fd8cf22a15250c8285d1a208cef1a79e2ca96798ae53968ab7a7b41139d244d93972131e418a5380
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-logger@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/1edb993a1e020848be08904e07e7f8bc4925cece85c74d5d67f787e4fe3dcc80da558dd71c530e0910fb86313b9c3955cb4585d1ddbf47fcb85bf8024c735e3a
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.418.0":
version: 3.418.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.418.0"
dependencies:
"@aws-sdk/types": "npm:3.418.0"
"@smithy/protocol-http": "npm:^3.0.5"
"@smithy/types": "npm:^2.3.3"
tslib: "npm:^2.5.0"
checksum: 10/cb497658121607e84b1cb6732c67d6147406a3e30dc2d1a1b20668fbab75c198c7677eb4e098de93b1cabc7e4d2347cde4b45efb5fcfa4a08e38f52abadfb682
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/cf231a98e8f85c4592ccdc8c3d6bff10951fea96c06978068ce6667c6d4c99f95f14b836996dac27c31848030f662f1600629cc63554c5c0d8b4242bba4c5bea
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-sqs@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-sdk-sqs@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-hex-encoding": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
tslib: "npm:^2.6.2"
checksum: 10/614fc1d6875d1aaf4f2f43869f62fd0e6cf8099624eea98cd766e84449a87c5ee3ac45fb93e178bdf6b366e2891155d0e8d5e071409cbe822a475d6b0c6804ea
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-sts@npm:3.418.0":
version: 3.418.0
resolution: "@aws-sdk/middleware-sdk-sts@npm:3.418.0"
dependencies:
"@aws-sdk/middleware-signing": "npm:3.418.0"
"@aws-sdk/types": "npm:3.418.0"
"@smithy/types": "npm:^2.3.3"
tslib: "npm:^2.5.0"
checksum: 10/6b571248202a50440e3422be7b3c5151547aef526c8d9a1250313212e3574a9c7e01e7f255fac408b1f6641dfddbdd62f78819bca7a3029fd851e1b3b1a2cf20
languageName: node
linkType: hard
"@aws-sdk/middleware-signing@npm:3.418.0":
version: 3.418.0
resolution: "@aws-sdk/middleware-signing@npm:3.418.0"
dependencies:
"@aws-sdk/types": "npm:3.418.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/protocol-http": "npm:^3.0.5"
"@smithy/signature-v4": "npm:^2.0.0"
"@smithy/types": "npm:^2.3.3"
"@smithy/util-middleware": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10/bbfcac0f93388ed07d3cc3c5156a11716622790f347b1f0178c7acf6d44dfd43b59b0e13287e334b8d92a8856304684bbe04c23cbdcaa1dbf4a606890d6af8fd
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.418.0":
version: 3.418.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.418.0"
dependencies:
"@aws-sdk/types": "npm:3.418.0"
"@aws-sdk/util-endpoints": "npm:3.418.0"
"@smithy/protocol-http": "npm:^3.0.5"
"@smithy/types": "npm:^2.3.3"
tslib: "npm:^2.5.0"
checksum: 10/992229cfb793b06df3872e42be6a6ad3ac520b8989af7187a5844978761799e7b91b9d61bd211b346f5c7af0c079f982222285a85f8f4c0bf353e952c0a411f5
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.540.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/032a37e91682a7330e7553c1728c84528a16a1e4efb0d3a0823db49a5c56b64d0cf1a84b4863a5314fc4954d824a77786493f0d305b72305fabd75c4badd7697
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.418.0":
version: 3.418.0
resolution: "@aws-sdk/region-config-resolver@npm:3.418.0"
dependencies:
"@smithy/node-config-provider": "npm:^2.0.12"
"@smithy/types": "npm:^2.3.3"
"@smithy/util-config-provider": "npm:^2.0.0"
"@smithy/util-middleware": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10/48e033415845ce817171de8fe22ff29c750ee29206b2f9aa07a135d6858289eb69673d3c33283967174f49ed3f5cb89f5d09319858ad8d5b4a494af62a9d6d67
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/region-config-resolver@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-config-provider": "npm:^2.3.0"
"@smithy/util-middleware": "npm:^2.2.0"
tslib: "npm:^2.6.2"
checksum: 10/a7a1ef6f85f1d05a03d8a132bd4a822c51ac0ba88799d3c3b340118b40c958dc412ed9c97a8945fce8b35ec1f31192003e638e419345054bc514943a9962eb72
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.418.0":
version: 3.418.0
resolution: "@aws-sdk/token-providers@npm:3.418.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/middleware-host-header": "npm:3.418.0"
"@aws-sdk/middleware-logger": "npm:3.418.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.418.0"
"@aws-sdk/middleware-user-agent": "npm:3.418.0"
"@aws-sdk/types": "npm:3.418.0"
"@aws-sdk/util-endpoints": "npm:3.418.0"
"@aws-sdk/util-user-agent-browser": "npm:3.418.0"
"@aws-sdk/util-user-agent-node": "npm:3.418.0"
"@smithy/config-resolver": "npm:^2.0.10"
"@smithy/fetch-http-handler": "npm:^2.1.5"
"@smithy/hash-node": "npm:^2.0.9"
"@smithy/invalid-dependency": "npm:^2.0.9"
"@smithy/middleware-content-length": "npm:^2.0.11"
"@smithy/middleware-endpoint": "npm:^2.0.9"
"@smithy/middleware-retry": "npm:^2.0.12"
"@smithy/middleware-serde": "npm:^2.0.9"
"@smithy/middleware-stack": "npm:^2.0.2"
"@smithy/node-config-provider": "npm:^2.0.12"
"@smithy/node-http-handler": "npm:^2.1.5"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/protocol-http": "npm:^3.0.5"
"@smithy/shared-ini-file-loader": "npm:^2.0.6"
"@smithy/smithy-client": "npm:^2.1.6"
"@smithy/types": "npm:^2.3.3"
"@smithy/url-parser": "npm:^2.0.9"
"@smithy/util-base64": "npm:^2.0.0"
"@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.10"
"@smithy/util-defaults-mode-node": "npm:^2.0.12"
"@smithy/util-retry": "npm:^2.0.2"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10/08a33eae8c3d4e253c19c58fec5c54fc8f6212011270627c7c1380d7642a73e4875d23553619d3857be1bcbaa3795892f9a812de73dcc68b20a624c54338bead
languageName: node
linkType: hard