-
Notifications
You must be signed in to change notification settings - Fork 62
/
yarn.lock
15512 lines (14115 loc) · 558 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
"@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: 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: 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: 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: 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: 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: 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: 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: 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: 92c835b83d7a888b37b2f2a37c82e58bb8fabb617e371173c488d2a71b916c69ee566f0ea0b3f7f4e16296226c49793f95b3d59fc07a7ca00af91f8f9f29e6c4
languageName: node
linkType: hard
"@aws-sdk/client-apigatewaymanagementapi@npm:^3.484.0":
version: 3.484.0
resolution: "@aws-sdk/client-apigatewaymanagementapi@npm:3.484.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.484.0"
"@aws-sdk/core": "npm:3.481.0"
"@aws-sdk/credential-provider-node": "npm:3.484.0"
"@aws-sdk/middleware-host-header": "npm:3.468.0"
"@aws-sdk/middleware-logger": "npm:3.468.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.468.0"
"@aws-sdk/middleware-signing": "npm:3.468.0"
"@aws-sdk/middleware-user-agent": "npm:3.478.0"
"@aws-sdk/region-config-resolver": "npm:3.484.0"
"@aws-sdk/types": "npm:3.468.0"
"@aws-sdk/util-endpoints": "npm:3.478.0"
"@aws-sdk/util-user-agent-browser": "npm:3.468.0"
"@aws-sdk/util-user-agent-node": "npm:3.470.0"
"@smithy/config-resolver": "npm:^2.0.22"
"@smithy/core": "npm:^1.2.1"
"@smithy/fetch-http-handler": "npm:^2.3.1"
"@smithy/hash-node": "npm:^2.0.17"
"@smithy/invalid-dependency": "npm:^2.0.15"
"@smithy/middleware-content-length": "npm:^2.0.17"
"@smithy/middleware-endpoint": "npm:^2.2.3"
"@smithy/middleware-retry": "npm:^2.0.25"
"@smithy/middleware-serde": "npm:^2.0.15"
"@smithy/middleware-stack": "npm:^2.0.9"
"@smithy/node-config-provider": "npm:^2.1.8"
"@smithy/node-http-handler": "npm:^2.2.1"
"@smithy/protocol-http": "npm:^3.0.11"
"@smithy/smithy-client": "npm:^2.2.0"
"@smithy/types": "npm:^2.7.0"
"@smithy/url-parser": "npm:^2.0.15"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.1"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.23"
"@smithy/util-defaults-mode-node": "npm:^2.0.31"
"@smithy/util-endpoints": "npm:^1.0.7"
"@smithy/util-retry": "npm:^2.0.8"
"@smithy/util-utf8": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 98de54d6183e1a6eee5425e23e122ab444cf18bab19e279e7a7a6592f0e0676a3e51484e56ce751e5e4d38c40e388b251fbd82b941e78311329f94522f591209
languageName: node
linkType: hard
"@aws-sdk/client-cloudwatch@npm:^3.485.0":
version: 3.485.0
resolution: "@aws-sdk/client-cloudwatch@npm:3.485.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.485.0"
"@aws-sdk/core": "npm:3.485.0"
"@aws-sdk/credential-provider-node": "npm:3.485.0"
"@aws-sdk/middleware-host-header": "npm:3.485.0"
"@aws-sdk/middleware-logger": "npm:3.485.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.485.0"
"@aws-sdk/middleware-signing": "npm:3.485.0"
"@aws-sdk/middleware-user-agent": "npm:3.485.0"
"@aws-sdk/region-config-resolver": "npm:3.485.0"
"@aws-sdk/types": "npm:3.485.0"
"@aws-sdk/util-endpoints": "npm:3.485.0"
"@aws-sdk/util-user-agent-browser": "npm:3.485.0"
"@aws-sdk/util-user-agent-node": "npm:3.485.0"
"@smithy/config-resolver": "npm:^2.0.23"
"@smithy/core": "npm:^1.2.2"
"@smithy/fetch-http-handler": "npm:^2.3.2"
"@smithy/hash-node": "npm:^2.0.18"
"@smithy/invalid-dependency": "npm:^2.0.16"
"@smithy/middleware-content-length": "npm:^2.0.18"
"@smithy/middleware-endpoint": "npm:^2.3.0"
"@smithy/middleware-retry": "npm:^2.0.26"
"@smithy/middleware-serde": "npm:^2.0.16"
"@smithy/middleware-stack": "npm:^2.0.10"
"@smithy/node-config-provider": "npm:^2.1.9"
"@smithy/node-http-handler": "npm:^2.2.2"
"@smithy/protocol-http": "npm:^3.0.12"
"@smithy/smithy-client": "npm:^2.2.1"
"@smithy/types": "npm:^2.8.0"
"@smithy/url-parser": "npm:^2.0.16"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.1"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.24"
"@smithy/util-defaults-mode-node": "npm:^2.0.32"
"@smithy/util-endpoints": "npm:^1.0.8"
"@smithy/util-retry": "npm:^2.0.9"
"@smithy/util-utf8": "npm:^2.0.2"
"@smithy/util-waiter": "npm:^2.0.16"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
checksum: 0e02739ef17b46381eb9640a8b1e444a0dc45525567b6dbc3a3ae88949423dd74688c38af9e8369d2e0793e1b1be7078557c1951ce60f97d7be01ede3f6d693b
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.484.0":
version: 3.484.0
resolution: "@aws-sdk/client-s3@npm:3.484.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.484.0"
"@aws-sdk/core": "npm:3.481.0"
"@aws-sdk/credential-provider-node": "npm:3.484.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.484.0"
"@aws-sdk/middleware-expect-continue": "npm:3.468.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.468.0"
"@aws-sdk/middleware-host-header": "npm:3.468.0"
"@aws-sdk/middleware-location-constraint": "npm:3.468.0"
"@aws-sdk/middleware-logger": "npm:3.468.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.468.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.484.0"
"@aws-sdk/middleware-signing": "npm:3.468.0"
"@aws-sdk/middleware-ssec": "npm:3.468.0"
"@aws-sdk/middleware-user-agent": "npm:3.478.0"
"@aws-sdk/region-config-resolver": "npm:3.484.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.484.0"
"@aws-sdk/types": "npm:3.468.0"
"@aws-sdk/util-endpoints": "npm:3.478.0"
"@aws-sdk/util-user-agent-browser": "npm:3.468.0"
"@aws-sdk/util-user-agent-node": "npm:3.470.0"
"@aws-sdk/xml-builder": "npm:3.472.0"
"@smithy/config-resolver": "npm:^2.0.22"
"@smithy/core": "npm:^1.2.1"
"@smithy/eventstream-serde-browser": "npm:^2.0.15"
"@smithy/eventstream-serde-config-resolver": "npm:^2.0.15"
"@smithy/eventstream-serde-node": "npm:^2.0.15"
"@smithy/fetch-http-handler": "npm:^2.3.1"
"@smithy/hash-blob-browser": "npm:^2.0.16"
"@smithy/hash-node": "npm:^2.0.17"
"@smithy/hash-stream-node": "npm:^2.0.17"
"@smithy/invalid-dependency": "npm:^2.0.15"
"@smithy/md5-js": "npm:^2.0.17"
"@smithy/middleware-content-length": "npm:^2.0.17"
"@smithy/middleware-endpoint": "npm:^2.2.3"
"@smithy/middleware-retry": "npm:^2.0.25"
"@smithy/middleware-serde": "npm:^2.0.15"
"@smithy/middleware-stack": "npm:^2.0.9"
"@smithy/node-config-provider": "npm:^2.1.8"
"@smithy/node-http-handler": "npm:^2.2.1"
"@smithy/protocol-http": "npm:^3.0.11"
"@smithy/smithy-client": "npm:^2.2.0"
"@smithy/types": "npm:^2.7.0"
"@smithy/url-parser": "npm:^2.0.15"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.1"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.23"
"@smithy/util-defaults-mode-node": "npm:^2.0.31"
"@smithy/util-endpoints": "npm:^1.0.7"
"@smithy/util-retry": "npm:^2.0.8"
"@smithy/util-stream": "npm:^2.0.23"
"@smithy/util-utf8": "npm:^2.0.2"
"@smithy/util-waiter": "npm:^2.0.15"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
checksum: 701523f3b3e4d43ee1678d817b3971017abe75c852a1546d785bdc2f0938d0e723bafec746797e0c64475be439b799e0852ed625c7a99f4e939f1a57327faea3
languageName: node
linkType: hard
"@aws-sdk/client-sns@npm:^3.484.0":
version: 3.484.0
resolution: "@aws-sdk/client-sns@npm:3.484.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.484.0"
"@aws-sdk/core": "npm:3.481.0"
"@aws-sdk/credential-provider-node": "npm:3.484.0"
"@aws-sdk/middleware-host-header": "npm:3.468.0"
"@aws-sdk/middleware-logger": "npm:3.468.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.468.0"
"@aws-sdk/middleware-signing": "npm:3.468.0"
"@aws-sdk/middleware-user-agent": "npm:3.478.0"
"@aws-sdk/region-config-resolver": "npm:3.484.0"
"@aws-sdk/types": "npm:3.468.0"
"@aws-sdk/util-endpoints": "npm:3.478.0"
"@aws-sdk/util-user-agent-browser": "npm:3.468.0"
"@aws-sdk/util-user-agent-node": "npm:3.470.0"
"@smithy/config-resolver": "npm:^2.0.22"
"@smithy/core": "npm:^1.2.1"
"@smithy/fetch-http-handler": "npm:^2.3.1"
"@smithy/hash-node": "npm:^2.0.17"
"@smithy/invalid-dependency": "npm:^2.0.15"
"@smithy/middleware-content-length": "npm:^2.0.17"
"@smithy/middleware-endpoint": "npm:^2.2.3"
"@smithy/middleware-retry": "npm:^2.0.25"
"@smithy/middleware-serde": "npm:^2.0.15"
"@smithy/middleware-stack": "npm:^2.0.9"
"@smithy/node-config-provider": "npm:^2.1.8"
"@smithy/node-http-handler": "npm:^2.2.1"
"@smithy/protocol-http": "npm:^3.0.11"
"@smithy/smithy-client": "npm:^2.2.0"
"@smithy/types": "npm:^2.7.0"
"@smithy/url-parser": "npm:^2.0.15"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.1"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.23"
"@smithy/util-defaults-mode-node": "npm:^2.0.31"
"@smithy/util-endpoints": "npm:^1.0.7"
"@smithy/util-retry": "npm:^2.0.8"
"@smithy/util-utf8": "npm:^2.0.2"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
checksum: 22085f40870f9ddfbcea2000c592f9accbc0a23000a8c0393214b6c6d9a0da17f2d6a9422aa1876fdcc21ea6cbdee7853d1d73d0ac6808f9b5bc65663e3287c0
languageName: node
linkType: hard
"@aws-sdk/client-sns@npm:^3.490.0":
version: 3.490.0
resolution: "@aws-sdk/client-sns@npm:3.490.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.490.0"
"@aws-sdk/core": "npm:3.490.0"
"@aws-sdk/credential-provider-node": "npm:3.490.0"
"@aws-sdk/middleware-host-header": "npm:3.489.0"
"@aws-sdk/middleware-logger": "npm:3.489.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.489.0"
"@aws-sdk/middleware-signing": "npm:3.489.0"
"@aws-sdk/middleware-user-agent": "npm:3.489.0"
"@aws-sdk/region-config-resolver": "npm:3.489.0"
"@aws-sdk/types": "npm:3.489.0"
"@aws-sdk/util-endpoints": "npm:3.489.0"
"@aws-sdk/util-user-agent-browser": "npm:3.489.0"
"@aws-sdk/util-user-agent-node": "npm:3.489.0"
"@smithy/config-resolver": "npm:^2.0.23"
"@smithy/core": "npm:^1.2.2"
"@smithy/fetch-http-handler": "npm:^2.3.2"
"@smithy/hash-node": "npm:^2.0.18"
"@smithy/invalid-dependency": "npm:^2.0.16"
"@smithy/middleware-content-length": "npm:^2.0.18"
"@smithy/middleware-endpoint": "npm:^2.3.0"
"@smithy/middleware-retry": "npm:^2.0.26"
"@smithy/middleware-serde": "npm:^2.0.16"
"@smithy/middleware-stack": "npm:^2.0.10"
"@smithy/node-config-provider": "npm:^2.1.9"
"@smithy/node-http-handler": "npm:^2.2.2"
"@smithy/protocol-http": "npm:^3.0.12"
"@smithy/smithy-client": "npm:^2.2.1"
"@smithy/types": "npm:^2.8.0"
"@smithy/url-parser": "npm:^2.0.16"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.1"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.24"
"@smithy/util-defaults-mode-node": "npm:^2.0.32"
"@smithy/util-endpoints": "npm:^1.0.8"
"@smithy/util-retry": "npm:^2.0.9"
"@smithy/util-utf8": "npm:^2.0.2"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
checksum: 4d8875521c6c8b9577c2917283c75c418d6e8d32d1ebd5d4d049d1f0a834ae49996a34ccb7071d4e1f02d5ffa3e8b27d9f71595435c6d9b1c95b0e4b30c8cab8
languageName: node
linkType: hard
"@aws-sdk/client-sqs@npm:^3.447.0":
version: 3.462.0
resolution: "@aws-sdk/client-sqs@npm:3.462.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.462.0"
"@aws-sdk/core": "npm:3.451.0"
"@aws-sdk/credential-provider-node": "npm:3.460.0"
"@aws-sdk/middleware-host-header": "npm:3.460.0"
"@aws-sdk/middleware-logger": "npm:3.460.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.460.0"
"@aws-sdk/middleware-sdk-sqs": "npm:3.460.0"
"@aws-sdk/middleware-signing": "npm:3.461.0"
"@aws-sdk/middleware-user-agent": "npm:3.460.0"
"@aws-sdk/region-config-resolver": "npm:3.451.0"
"@aws-sdk/types": "npm:3.460.0"
"@aws-sdk/util-endpoints": "npm:3.460.0"
"@aws-sdk/util-user-agent-browser": "npm:3.460.0"
"@aws-sdk/util-user-agent-node": "npm:3.460.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/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-utf8": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 2d09272c5e790016a4946f0f5e9ac3a79423a30f6589fd542f736d55f910768d1cd96dc166fe60192a37ce0a758d3eb8f35a18d0907c37ce83a11c14065b7020
languageName: node
linkType: hard
"@aws-sdk/client-sqs@npm:^3.484.0":
version: 3.484.0
resolution: "@aws-sdk/client-sqs@npm:3.484.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.484.0"
"@aws-sdk/core": "npm:3.481.0"
"@aws-sdk/credential-provider-node": "npm:3.484.0"
"@aws-sdk/middleware-host-header": "npm:3.468.0"
"@aws-sdk/middleware-logger": "npm:3.468.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.468.0"
"@aws-sdk/middleware-sdk-sqs": "npm:3.468.0"
"@aws-sdk/middleware-user-agent": "npm:3.478.0"
"@aws-sdk/region-config-resolver": "npm:3.484.0"
"@aws-sdk/types": "npm:3.468.0"
"@aws-sdk/util-endpoints": "npm:3.478.0"
"@aws-sdk/util-user-agent-browser": "npm:3.468.0"
"@aws-sdk/util-user-agent-node": "npm:3.470.0"
"@smithy/config-resolver": "npm:^2.0.22"
"@smithy/core": "npm:^1.2.1"
"@smithy/fetch-http-handler": "npm:^2.3.1"
"@smithy/hash-node": "npm:^2.0.17"
"@smithy/invalid-dependency": "npm:^2.0.15"
"@smithy/md5-js": "npm:^2.0.17"
"@smithy/middleware-content-length": "npm:^2.0.17"
"@smithy/middleware-endpoint": "npm:^2.2.3"
"@smithy/middleware-retry": "npm:^2.0.25"
"@smithy/middleware-serde": "npm:^2.0.15"
"@smithy/middleware-stack": "npm:^2.0.9"
"@smithy/node-config-provider": "npm:^2.1.8"
"@smithy/node-http-handler": "npm:^2.2.1"
"@smithy/protocol-http": "npm:^3.0.11"
"@smithy/smithy-client": "npm:^2.2.0"
"@smithy/types": "npm:^2.7.0"
"@smithy/url-parser": "npm:^2.0.15"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.1"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.23"
"@smithy/util-defaults-mode-node": "npm:^2.0.31"
"@smithy/util-endpoints": "npm:^1.0.7"
"@smithy/util-middleware": "npm:^2.0.8"
"@smithy/util-retry": "npm:^2.0.8"
"@smithy/util-utf8": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 1fe91d60c4637351ab48787882a1099817735a692aaebfbf0f755e8891c103cd7f85d055179e3542f7a9ec90a425ec341388429b5cf4eafa7908556befcd3e64
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/client-sso@npm:3.460.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.460.0"
"@aws-sdk/middleware-logger": "npm:3.460.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.460.0"
"@aws-sdk/middleware-user-agent": "npm:3.460.0"
"@aws-sdk/region-config-resolver": "npm:3.451.0"
"@aws-sdk/types": "npm:3.460.0"
"@aws-sdk/util-endpoints": "npm:3.460.0"
"@aws-sdk/util-user-agent-browser": "npm:3.460.0"
"@aws-sdk/util-user-agent-node": "npm:3.460.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: 88506ab10de899808f6f1e56bb48133c4c8f3d57b175f590dc31ad85ef8714cc86028227b1aa4f7dc23a05470cd842b586c8cf8659d5210c5a7724c529e54b14
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.484.0":
version: 3.484.0
resolution: "@aws-sdk/client-sso@npm:3.484.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.481.0"
"@aws-sdk/middleware-host-header": "npm:3.468.0"
"@aws-sdk/middleware-logger": "npm:3.468.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.468.0"
"@aws-sdk/middleware-user-agent": "npm:3.478.0"
"@aws-sdk/region-config-resolver": "npm:3.484.0"
"@aws-sdk/types": "npm:3.468.0"
"@aws-sdk/util-endpoints": "npm:3.478.0"
"@aws-sdk/util-user-agent-browser": "npm:3.468.0"
"@aws-sdk/util-user-agent-node": "npm:3.470.0"
"@smithy/config-resolver": "npm:^2.0.22"
"@smithy/core": "npm:^1.2.1"
"@smithy/fetch-http-handler": "npm:^2.3.1"
"@smithy/hash-node": "npm:^2.0.17"
"@smithy/invalid-dependency": "npm:^2.0.15"
"@smithy/middleware-content-length": "npm:^2.0.17"
"@smithy/middleware-endpoint": "npm:^2.2.3"
"@smithy/middleware-retry": "npm:^2.0.25"
"@smithy/middleware-serde": "npm:^2.0.15"
"@smithy/middleware-stack": "npm:^2.0.9"
"@smithy/node-config-provider": "npm:^2.1.8"
"@smithy/node-http-handler": "npm:^2.2.1"
"@smithy/protocol-http": "npm:^3.0.11"
"@smithy/smithy-client": "npm:^2.2.0"
"@smithy/types": "npm:^2.7.0"
"@smithy/url-parser": "npm:^2.0.15"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.1"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.23"
"@smithy/util-defaults-mode-node": "npm:^2.0.31"
"@smithy/util-endpoints": "npm:^1.0.7"
"@smithy/util-retry": "npm:^2.0.8"
"@smithy/util-utf8": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 2a63f49f74ad41bb7097f793e64b0d9b4b03f57606a99a1f8c6427fad6872668c80c8924099704a9a85ded9b537dbbc1ce5234bf0e8da2c6fb7a85038ba629ae
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.485.0":
version: 3.485.0
resolution: "@aws-sdk/client-sso@npm:3.485.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.485.0"
"@aws-sdk/middleware-host-header": "npm:3.485.0"
"@aws-sdk/middleware-logger": "npm:3.485.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.485.0"
"@aws-sdk/middleware-user-agent": "npm:3.485.0"
"@aws-sdk/region-config-resolver": "npm:3.485.0"
"@aws-sdk/types": "npm:3.485.0"
"@aws-sdk/util-endpoints": "npm:3.485.0"
"@aws-sdk/util-user-agent-browser": "npm:3.485.0"
"@aws-sdk/util-user-agent-node": "npm:3.485.0"
"@smithy/config-resolver": "npm:^2.0.23"
"@smithy/core": "npm:^1.2.2"
"@smithy/fetch-http-handler": "npm:^2.3.2"
"@smithy/hash-node": "npm:^2.0.18"
"@smithy/invalid-dependency": "npm:^2.0.16"
"@smithy/middleware-content-length": "npm:^2.0.18"
"@smithy/middleware-endpoint": "npm:^2.3.0"
"@smithy/middleware-retry": "npm:^2.0.26"
"@smithy/middleware-serde": "npm:^2.0.16"
"@smithy/middleware-stack": "npm:^2.0.10"
"@smithy/node-config-provider": "npm:^2.1.9"
"@smithy/node-http-handler": "npm:^2.2.2"
"@smithy/protocol-http": "npm:^3.0.12"
"@smithy/smithy-client": "npm:^2.2.1"
"@smithy/types": "npm:^2.8.0"
"@smithy/url-parser": "npm:^2.0.16"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.1"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.24"
"@smithy/util-defaults-mode-node": "npm:^2.0.32"
"@smithy/util-endpoints": "npm:^1.0.8"
"@smithy/util-retry": "npm:^2.0.9"
"@smithy/util-utf8": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 635de0e310c3608bd94d90766ac36b56663ae39df0164122236f5d4e5a3447ba7dd2f66d7f3481380e74f1d508053d218bd0c2872df679f11225dc46f52dba11
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.490.0":
version: 3.490.0
resolution: "@aws-sdk/client-sso@npm:3.490.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.490.0"
"@aws-sdk/middleware-host-header": "npm:3.489.0"
"@aws-sdk/middleware-logger": "npm:3.489.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.489.0"
"@aws-sdk/middleware-user-agent": "npm:3.489.0"
"@aws-sdk/region-config-resolver": "npm:3.489.0"
"@aws-sdk/types": "npm:3.489.0"
"@aws-sdk/util-endpoints": "npm:3.489.0"
"@aws-sdk/util-user-agent-browser": "npm:3.489.0"
"@aws-sdk/util-user-agent-node": "npm:3.489.0"
"@smithy/config-resolver": "npm:^2.0.23"
"@smithy/core": "npm:^1.2.2"
"@smithy/fetch-http-handler": "npm:^2.3.2"
"@smithy/hash-node": "npm:^2.0.18"
"@smithy/invalid-dependency": "npm:^2.0.16"
"@smithy/middleware-content-length": "npm:^2.0.18"
"@smithy/middleware-endpoint": "npm:^2.3.0"
"@smithy/middleware-retry": "npm:^2.0.26"
"@smithy/middleware-serde": "npm:^2.0.16"
"@smithy/middleware-stack": "npm:^2.0.10"
"@smithy/node-config-provider": "npm:^2.1.9"
"@smithy/node-http-handler": "npm:^2.2.2"
"@smithy/protocol-http": "npm:^3.0.12"
"@smithy/smithy-client": "npm:^2.2.1"
"@smithy/types": "npm:^2.8.0"
"@smithy/url-parser": "npm:^2.0.16"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.1"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.24"
"@smithy/util-defaults-mode-node": "npm:^2.0.32"
"@smithy/util-endpoints": "npm:^1.0.8"
"@smithy/util-retry": "npm:^2.0.9"
"@smithy/util-utf8": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 785147e3c255897345ac5b06daacdefd6f53952bef74d22b8a48906d5e320481eb2f52235db5364e194b3632360056b3a37124974398abcd7374f21ce9fea3a9
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.462.0":
version: 3.462.0
resolution: "@aws-sdk/client-sts@npm:3.462.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.460.0"
"@aws-sdk/middleware-host-header": "npm:3.460.0"
"@aws-sdk/middleware-logger": "npm:3.460.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.460.0"
"@aws-sdk/middleware-sdk-sts": "npm:3.461.0"
"@aws-sdk/middleware-signing": "npm:3.461.0"
"@aws-sdk/middleware-user-agent": "npm:3.460.0"
"@aws-sdk/region-config-resolver": "npm:3.451.0"
"@aws-sdk/types": "npm:3.460.0"
"@aws-sdk/util-endpoints": "npm:3.460.0"
"@aws-sdk/util-user-agent-browser": "npm:3.460.0"
"@aws-sdk/util-user-agent-node": "npm:3.460.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: 066fe4913ab23e4917e1cc3f564000ed82e22fe16f695c3e7e059a387681bb161ee508e58ef7f4586e04f1c4885389438ac6d2dcf6e18c08c79e2d8440b65225
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.484.0":
version: 3.484.0
resolution: "@aws-sdk/client-sts@npm:3.484.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.481.0"
"@aws-sdk/credential-provider-node": "npm:3.484.0"
"@aws-sdk/middleware-host-header": "npm:3.468.0"
"@aws-sdk/middleware-logger": "npm:3.468.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.468.0"
"@aws-sdk/middleware-user-agent": "npm:3.478.0"
"@aws-sdk/region-config-resolver": "npm:3.484.0"
"@aws-sdk/types": "npm:3.468.0"
"@aws-sdk/util-endpoints": "npm:3.478.0"
"@aws-sdk/util-user-agent-browser": "npm:3.468.0"
"@aws-sdk/util-user-agent-node": "npm:3.470.0"
"@smithy/config-resolver": "npm:^2.0.22"
"@smithy/core": "npm:^1.2.1"
"@smithy/fetch-http-handler": "npm:^2.3.1"
"@smithy/hash-node": "npm:^2.0.17"
"@smithy/invalid-dependency": "npm:^2.0.15"
"@smithy/middleware-content-length": "npm:^2.0.17"
"@smithy/middleware-endpoint": "npm:^2.2.3"
"@smithy/middleware-retry": "npm:^2.0.25"
"@smithy/middleware-serde": "npm:^2.0.15"
"@smithy/middleware-stack": "npm:^2.0.9"
"@smithy/node-config-provider": "npm:^2.1.8"
"@smithy/node-http-handler": "npm:^2.2.1"
"@smithy/protocol-http": "npm:^3.0.11"
"@smithy/smithy-client": "npm:^2.2.0"
"@smithy/types": "npm:^2.7.0"
"@smithy/url-parser": "npm:^2.0.15"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.1"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.23"
"@smithy/util-defaults-mode-node": "npm:^2.0.31"
"@smithy/util-endpoints": "npm:^1.0.7"
"@smithy/util-middleware": "npm:^2.0.8"
"@smithy/util-retry": "npm:^2.0.8"
"@smithy/util-utf8": "npm:^2.0.2"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
checksum: 3d81f5b9cc775db55ee0c389470ba05a07b8b9db2f0e38a3e3986f988c46c69786497c86c2fe1e1dcbc07f1ac3f16535ccb6489c4ad039d20a72a4fb3afe6054
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.485.0":
version: 3.485.0
resolution: "@aws-sdk/client-sts@npm:3.485.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.485.0"
"@aws-sdk/credential-provider-node": "npm:3.485.0"
"@aws-sdk/middleware-host-header": "npm:3.485.0"
"@aws-sdk/middleware-logger": "npm:3.485.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.485.0"
"@aws-sdk/middleware-user-agent": "npm:3.485.0"
"@aws-sdk/region-config-resolver": "npm:3.485.0"
"@aws-sdk/types": "npm:3.485.0"
"@aws-sdk/util-endpoints": "npm:3.485.0"
"@aws-sdk/util-user-agent-browser": "npm:3.485.0"
"@aws-sdk/util-user-agent-node": "npm:3.485.0"
"@smithy/config-resolver": "npm:^2.0.23"
"@smithy/core": "npm:^1.2.2"
"@smithy/fetch-http-handler": "npm:^2.3.2"
"@smithy/hash-node": "npm:^2.0.18"
"@smithy/invalid-dependency": "npm:^2.0.16"
"@smithy/middleware-content-length": "npm:^2.0.18"
"@smithy/middleware-endpoint": "npm:^2.3.0"
"@smithy/middleware-retry": "npm:^2.0.26"
"@smithy/middleware-serde": "npm:^2.0.16"
"@smithy/middleware-stack": "npm:^2.0.10"
"@smithy/node-config-provider": "npm:^2.1.9"
"@smithy/node-http-handler": "npm:^2.2.2"
"@smithy/protocol-http": "npm:^3.0.12"
"@smithy/smithy-client": "npm:^2.2.1"
"@smithy/types": "npm:^2.8.0"
"@smithy/url-parser": "npm:^2.0.16"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.1"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.24"
"@smithy/util-defaults-mode-node": "npm:^2.0.32"
"@smithy/util-endpoints": "npm:^1.0.8"
"@smithy/util-middleware": "npm:^2.0.9"
"@smithy/util-retry": "npm:^2.0.9"
"@smithy/util-utf8": "npm:^2.0.2"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
checksum: 98c7f4d7223cd32a1e8ded3f4d8f2fdb228c3a717a42859fbbf8afbadec56826f1e41a33d126ef2855e1e7b6d411abf25d83cd6baf9afcd65b682436570e81bd
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.490.0":
version: 3.490.0
resolution: "@aws-sdk/client-sts@npm:3.490.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.490.0"
"@aws-sdk/credential-provider-node": "npm:3.490.0"
"@aws-sdk/middleware-host-header": "npm:3.489.0"
"@aws-sdk/middleware-logger": "npm:3.489.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.489.0"
"@aws-sdk/middleware-user-agent": "npm:3.489.0"
"@aws-sdk/region-config-resolver": "npm:3.489.0"
"@aws-sdk/types": "npm:3.489.0"
"@aws-sdk/util-endpoints": "npm:3.489.0"
"@aws-sdk/util-user-agent-browser": "npm:3.489.0"
"@aws-sdk/util-user-agent-node": "npm:3.489.0"
"@smithy/config-resolver": "npm:^2.0.23"
"@smithy/core": "npm:^1.2.2"
"@smithy/fetch-http-handler": "npm:^2.3.2"
"@smithy/hash-node": "npm:^2.0.18"
"@smithy/invalid-dependency": "npm:^2.0.16"
"@smithy/middleware-content-length": "npm:^2.0.18"
"@smithy/middleware-endpoint": "npm:^2.3.0"
"@smithy/middleware-retry": "npm:^2.0.26"
"@smithy/middleware-serde": "npm:^2.0.16"
"@smithy/middleware-stack": "npm:^2.0.10"
"@smithy/node-config-provider": "npm:^2.1.9"
"@smithy/node-http-handler": "npm:^2.2.2"
"@smithy/protocol-http": "npm:^3.0.12"
"@smithy/smithy-client": "npm:^2.2.1"
"@smithy/types": "npm:^2.8.0"
"@smithy/url-parser": "npm:^2.0.16"
"@smithy/util-base64": "npm:^2.0.1"
"@smithy/util-body-length-browser": "npm:^2.0.1"
"@smithy/util-body-length-node": "npm:^2.1.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.24"
"@smithy/util-defaults-mode-node": "npm:^2.0.32"
"@smithy/util-endpoints": "npm:^1.0.8"
"@smithy/util-middleware": "npm:^2.0.9"
"@smithy/util-retry": "npm:^2.0.9"
"@smithy/util-utf8": "npm:^2.0.2"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
checksum: 19d1b98694d600cac8a5518a2c05ab8d008c8eaaa25253397462d3d70e1a7c2ae7ab792b6814312536e0a2d140690d38ba166c1c28e82dd02daaa1173675f75c
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: 6f1fd70ef3889729e987d2f9065c6b128b2886060a0babd5ab3f3e7fc835d4c5a304f8f72f270d7286dbc91fa5ff01c4e9640846a1c23d2ed32331a9e211aead
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.481.0":
version: 3.481.0
resolution: "@aws-sdk/core@npm:3.481.0"
dependencies:
"@smithy/core": "npm:^1.2.1"
"@smithy/protocol-http": "npm:^3.0.11"
"@smithy/signature-v4": "npm:^2.0.0"
"@smithy/smithy-client": "npm:^2.2.0"
"@smithy/types": "npm:^2.7.0"
tslib: "npm:^2.5.0"
checksum: 0bc324627f14c07ed650da26f53677114d9c78df3eca6c67411578eedac45e7c93b9ff55a29e74af05e2d7f8ae425d7052628cc0a0e881846eb3395cc771ec38
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.485.0":
version: 3.485.0
resolution: "@aws-sdk/core@npm:3.485.0"
dependencies:
"@smithy/core": "npm:^1.2.2"
"@smithy/protocol-http": "npm:^3.0.12"
"@smithy/signature-v4": "npm:^2.0.0"
"@smithy/smithy-client": "npm:^2.2.1"
"@smithy/types": "npm:^2.8.0"
tslib: "npm:^2.5.0"
checksum: b84dafb213d97ebbab5d03b473e032c0e7f85872a8745fdb3274b628aa5c6e300c87a4df0747ebd29ac812c14566c295994642525210bfc81ded083d7559dbc9
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.490.0":
version: 3.490.0
resolution: "@aws-sdk/core@npm:3.490.0"
dependencies:
"@smithy/core": "npm:^1.2.2"
"@smithy/protocol-http": "npm:^3.0.12"
"@smithy/signature-v4": "npm:^2.0.0"
"@smithy/smithy-client": "npm:^2.2.1"
"@smithy/types": "npm:^2.8.0"
tslib: "npm:^2.5.0"
checksum: 3e81f378253be05efda42bd4c8d6d3a4969826f42ed48b904d760a4450f8affefe4f9c389bbdd975949831b0569e522db16d0bdfd829e9a6ddf98f08bc593f38
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/credential-provider-env@npm:3.460.0"
dependencies:
"@aws-sdk/types": "npm:3.460.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/types": "npm:^2.5.0"
tslib: "npm:^2.5.0"
checksum: b2a2e84046e0d53996f2c175fdc602550926792cf0b0ff096f16720cae9dcba2beeeccac38ed3cfed5783ecf3ea22a3c3b6ee198e574836b8293183d377aa9ec
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.468.0":
version: 3.468.0
resolution: "@aws-sdk/credential-provider-env@npm:3.468.0"
dependencies:
"@aws-sdk/types": "npm:3.468.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/types": "npm:^2.7.0"
tslib: "npm:^2.5.0"
checksum: 5e8fe5c7a94534d0570e5767a224dfd92f3b039336263ad3121c74aef4ecdac111f24b17be7c78d8a04ed09b2b3d89b65a3bc020180d23d6c5bb4fe98d85f89f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.485.0":
version: 3.485.0
resolution: "@aws-sdk/credential-provider-env@npm:3.485.0"
dependencies:
"@aws-sdk/types": "npm:3.485.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/types": "npm:^2.8.0"
tslib: "npm:^2.5.0"
checksum: b8346ea6f54cdce2302d266e76cff3569151ef9d5cf31364e99b9b0808f5f62cb45ffacb48cb68ccc85bd5774443231056a648fe9db45ac9c9f6d83e47a0c2d7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.489.0":
version: 3.489.0
resolution: "@aws-sdk/credential-provider-env@npm:3.489.0"
dependencies:
"@aws-sdk/types": "npm:3.489.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/types": "npm:^2.8.0"
tslib: "npm:^2.5.0"
checksum: 95ab96ee49a3ebf7957feb97987c2863c280c0daa67dcb5168874b8da3d807909e6b494405d5e42c33871a474db8f252ccd0d5eb2af55430a03d023eb9525c5c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.460.0":
version: 3.460.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.460.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.460.0"
"@aws-sdk/credential-provider-process": "npm:3.460.0"
"@aws-sdk/credential-provider-sso": "npm:3.460.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.460.0"
"@aws-sdk/types": "npm:3.460.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: 7ab592ef92a48ae1e6b6289cc498dad7f3ea14b0ab0b7a7fb6c81ea746422d0386495b5f8169e6f98234a5488b9ef3fdc1d5573b3d6cd81e24254ef8105f161f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.484.0":
version: 3.484.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.484.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.468.0"
"@aws-sdk/credential-provider-process": "npm:3.468.0"
"@aws-sdk/credential-provider-sso": "npm:3.484.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.468.0"
"@aws-sdk/types": "npm:3.468.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.7.0"
tslib: "npm:^2.5.0"
checksum: 0c5440bc8ffbaa5be2613d2c998d41fc0f2c31ea5240b545df4fd044627d0a2f18743da58c00eee0d1e95b085f06c73ba6aef354301ae680c7605e6e6874326f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.485.0":
version: 3.485.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.485.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.485.0"
"@aws-sdk/credential-provider-process": "npm:3.485.0"
"@aws-sdk/credential-provider-sso": "npm:3.485.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.485.0"
"@aws-sdk/types": "npm:3.485.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.8.0"
tslib: "npm:^2.5.0"
checksum: 3176b03ee14ae1b84340a235161e1812f16da95115330917c22b0bbcc7fa86a051e53d493d589a537466cb5bbd4866897a8088d43d7d337c36aa9bb5b12b8525
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.490.0":
version: 3.490.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.490.0"
dependencies: