-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
10065 lines (9113 loc) · 360 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 10c0/53c2b231a61a46792b39a0d43bc4f4f776bb4542aa57ee04930676802e5501282c2fc8aac14e4cd1f1120ff8b52616b6ff5ab539ad30aa2277d726444b71619f
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.1.0":
version: 2.2.0
resolution: "@ampproject/remapping@npm:2.2.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.1.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 10c0/d267d8def81d75976bed4f1f81418a234a75338963ed0b8565342ef3918b07e9043806eb3a1736df7ac0774edb98e2890f880bba42817f800495e4ae3fac995e
languageName: node
linkType: hard
"@aws-crypto/crc32@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10c0/eab9581d3363af5ea498ae0e72de792f54d8890360e14a9d8261b7b5c55ebe080279fb2556e07994d785341cdaa99ab0b1ccf137832b53b5904cd6928f2b094b
languageName: node
linkType: hard
"@aws-crypto/crc32c@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32c@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10c0/223efac396cdebaf5645568fa9a38cd0c322c960ae1f4276bedfe2e1031d0112e49d7d39225d386354680ecefae29f39af469a84b2ddfa77cb6692036188af77
languageName: node
linkType: hard
"@aws-crypto/sha1-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha1-browser@npm:5.2.0"
dependencies:
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/51fed0bf078c10322d910af179871b7d299dde5b5897873ffbeeb036f427e5d11d23db9794439226544b73901920fd19f4d86bbc103ed73cc0cfdea47a83c6ac
languageName: node
linkType: hard
"@aws-crypto/sha256-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-browser@npm:5.2.0"
dependencies:
"@aws-crypto/sha256-js": "npm:^5.2.0"
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/05f6d256794df800fe9aef5f52f2ac7415f7f3117d461f85a6aecaa4e29e91527b6fd503681a17136fa89e9dd3d916e9c7e4cfb5eba222875cb6c077bdc1d00d
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:5.2.0, @aws-crypto/sha256-js@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-js@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6c48701f8336341bb104dfde3d0050c89c288051f6b5e9bdfeb8091cf3ffc86efcd5c9e6ff2a4a134406b019c07aca9db608128f8d9267c952578a3108db9fd1
languageName: node
linkType: hard
"@aws-crypto/supports-web-crypto@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/supports-web-crypto@npm:5.2.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/4d2118e29d68ca3f5947f1e37ce1fbb3239a0c569cc938cdc8ab8390d595609b5caf51a07c9e0535105b17bf5c52ea256fed705a07e9681118120ab64ee73af2
languageName: node
linkType: hard
"@aws-crypto/util@npm:5.2.0, @aws-crypto/util@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/util@npm:5.2.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0362d4c197b1fd64b423966945130207d1fe23e1bb2878a18e361f7743c8d339dad3f8729895a29aa34fff6a86c65f281cf5167c4bf253f21627ae80b6dd2951
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.687.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.687.0"
"@aws-sdk/client-sts": "npm:3.687.0"
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/credential-provider-node": "npm:3.687.0"
"@aws-sdk/middleware-host-header": "npm:3.686.0"
"@aws-sdk/middleware-logger": "npm:3.686.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.686.0"
"@aws-sdk/middleware-user-agent": "npm:3.687.0"
"@aws-sdk/region-config-resolver": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@aws-sdk/util-endpoints": "npm:3.686.0"
"@aws-sdk/util-user-agent-browser": "npm:3.686.0"
"@aws-sdk/util-user-agent-node": "npm:3.687.0"
"@smithy/config-resolver": "npm:^3.0.10"
"@smithy/core": "npm:^2.5.1"
"@smithy/fetch-http-handler": "npm:^4.0.0"
"@smithy/hash-node": "npm:^3.0.8"
"@smithy/invalid-dependency": "npm:^3.0.8"
"@smithy/middleware-content-length": "npm:^3.0.10"
"@smithy/middleware-endpoint": "npm:^3.2.1"
"@smithy/middleware-retry": "npm:^3.0.25"
"@smithy/middleware-serde": "npm:^3.0.8"
"@smithy/middleware-stack": "npm:^3.0.8"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/node-http-handler": "npm:^3.2.5"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/smithy-client": "npm:^3.4.2"
"@smithy/types": "npm:^3.6.0"
"@smithy/url-parser": "npm:^3.0.8"
"@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.25"
"@smithy/util-defaults-mode-node": "npm:^3.0.25"
"@smithy/util-endpoints": "npm:^2.1.4"
"@smithy/util-middleware": "npm:^3.0.8"
"@smithy/util-retry": "npm:^3.0.8"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/090c1d7dddb34489d6133da3749f52833b81c82222dda82226bbb93b71dfc72cadaff6c51ab3cd6d83ece4d4a86506a9fd2faf265c25fa889cd358f124a08d9b
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.292.0":
version: 3.689.0
resolution: "@aws-sdk/client-s3@npm:3.689.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:5.2.0"
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.687.0"
"@aws-sdk/client-sts": "npm:3.687.0"
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/credential-provider-node": "npm:3.687.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.686.0"
"@aws-sdk/middleware-expect-continue": "npm:3.686.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.689.0"
"@aws-sdk/middleware-host-header": "npm:3.686.0"
"@aws-sdk/middleware-location-constraint": "npm:3.686.0"
"@aws-sdk/middleware-logger": "npm:3.686.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.686.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.687.0"
"@aws-sdk/middleware-ssec": "npm:3.686.0"
"@aws-sdk/middleware-user-agent": "npm:3.687.0"
"@aws-sdk/region-config-resolver": "npm:3.686.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.687.0"
"@aws-sdk/types": "npm:3.686.0"
"@aws-sdk/util-endpoints": "npm:3.686.0"
"@aws-sdk/util-user-agent-browser": "npm:3.686.0"
"@aws-sdk/util-user-agent-node": "npm:3.687.0"
"@aws-sdk/xml-builder": "npm:3.686.0"
"@smithy/config-resolver": "npm:^3.0.10"
"@smithy/core": "npm:^2.5.1"
"@smithy/eventstream-serde-browser": "npm:^3.0.11"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.8"
"@smithy/eventstream-serde-node": "npm:^3.0.10"
"@smithy/fetch-http-handler": "npm:^4.0.0"
"@smithy/hash-blob-browser": "npm:^3.1.7"
"@smithy/hash-node": "npm:^3.0.8"
"@smithy/hash-stream-node": "npm:^3.1.7"
"@smithy/invalid-dependency": "npm:^3.0.8"
"@smithy/md5-js": "npm:^3.0.8"
"@smithy/middleware-content-length": "npm:^3.0.10"
"@smithy/middleware-endpoint": "npm:^3.2.1"
"@smithy/middleware-retry": "npm:^3.0.25"
"@smithy/middleware-serde": "npm:^3.0.8"
"@smithy/middleware-stack": "npm:^3.0.8"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/node-http-handler": "npm:^3.2.5"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/smithy-client": "npm:^3.4.2"
"@smithy/types": "npm:^3.6.0"
"@smithy/url-parser": "npm:^3.0.8"
"@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.25"
"@smithy/util-defaults-mode-node": "npm:^3.0.25"
"@smithy/util-endpoints": "npm:^2.1.4"
"@smithy/util-middleware": "npm:^3.0.8"
"@smithy/util-retry": "npm:^3.0.8"
"@smithy/util-stream": "npm:^3.2.1"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.7"
tslib: "npm:^2.6.2"
checksum: 10c0/002bd6285b33f2a78789aa83443712be3362b24db4ec592d5f15172186a69e5687a4450fda38c80f5fc7d2b7042515fca0bae60085e30848cc9c76aa418fa165
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.687.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/credential-provider-node": "npm:3.687.0"
"@aws-sdk/middleware-host-header": "npm:3.686.0"
"@aws-sdk/middleware-logger": "npm:3.686.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.686.0"
"@aws-sdk/middleware-user-agent": "npm:3.687.0"
"@aws-sdk/region-config-resolver": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@aws-sdk/util-endpoints": "npm:3.686.0"
"@aws-sdk/util-user-agent-browser": "npm:3.686.0"
"@aws-sdk/util-user-agent-node": "npm:3.687.0"
"@smithy/config-resolver": "npm:^3.0.10"
"@smithy/core": "npm:^2.5.1"
"@smithy/fetch-http-handler": "npm:^4.0.0"
"@smithy/hash-node": "npm:^3.0.8"
"@smithy/invalid-dependency": "npm:^3.0.8"
"@smithy/middleware-content-length": "npm:^3.0.10"
"@smithy/middleware-endpoint": "npm:^3.2.1"
"@smithy/middleware-retry": "npm:^3.0.25"
"@smithy/middleware-serde": "npm:^3.0.8"
"@smithy/middleware-stack": "npm:^3.0.8"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/node-http-handler": "npm:^3.2.5"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/smithy-client": "npm:^3.4.2"
"@smithy/types": "npm:^3.6.0"
"@smithy/url-parser": "npm:^3.0.8"
"@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.25"
"@smithy/util-defaults-mode-node": "npm:^3.0.25"
"@smithy/util-endpoints": "npm:^2.1.4"
"@smithy/util-middleware": "npm:^3.0.8"
"@smithy/util-retry": "npm:^3.0.8"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.687.0
checksum: 10c0/6ade5a931ea7336d85334f10d1897f65e62e1f3af13201036b4022d59639a9bb6a223ad5ca5323b05fc6dca1b22935d31a4ca8fc6b09ab12d56623d496741c80
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/client-sso@npm:3.687.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/middleware-host-header": "npm:3.686.0"
"@aws-sdk/middleware-logger": "npm:3.686.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.686.0"
"@aws-sdk/middleware-user-agent": "npm:3.687.0"
"@aws-sdk/region-config-resolver": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@aws-sdk/util-endpoints": "npm:3.686.0"
"@aws-sdk/util-user-agent-browser": "npm:3.686.0"
"@aws-sdk/util-user-agent-node": "npm:3.687.0"
"@smithy/config-resolver": "npm:^3.0.10"
"@smithy/core": "npm:^2.5.1"
"@smithy/fetch-http-handler": "npm:^4.0.0"
"@smithy/hash-node": "npm:^3.0.8"
"@smithy/invalid-dependency": "npm:^3.0.8"
"@smithy/middleware-content-length": "npm:^3.0.10"
"@smithy/middleware-endpoint": "npm:^3.2.1"
"@smithy/middleware-retry": "npm:^3.0.25"
"@smithy/middleware-serde": "npm:^3.0.8"
"@smithy/middleware-stack": "npm:^3.0.8"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/node-http-handler": "npm:^3.2.5"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/smithy-client": "npm:^3.4.2"
"@smithy/types": "npm:^3.6.0"
"@smithy/url-parser": "npm:^3.0.8"
"@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.25"
"@smithy/util-defaults-mode-node": "npm:^3.0.25"
"@smithy/util-endpoints": "npm:^2.1.4"
"@smithy/util-middleware": "npm:^3.0.8"
"@smithy/util-retry": "npm:^3.0.8"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/038e81cfcd320b5d4d165b94cb33f1dcee1338fd3b96bf6795168312eb9aae743c77d36765ff17ef66e659975c257aa8f9f15c4ce084fe712402e76c7f396e75
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/client-sts@npm:3.687.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.687.0"
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/credential-provider-node": "npm:3.687.0"
"@aws-sdk/middleware-host-header": "npm:3.686.0"
"@aws-sdk/middleware-logger": "npm:3.686.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.686.0"
"@aws-sdk/middleware-user-agent": "npm:3.687.0"
"@aws-sdk/region-config-resolver": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@aws-sdk/util-endpoints": "npm:3.686.0"
"@aws-sdk/util-user-agent-browser": "npm:3.686.0"
"@aws-sdk/util-user-agent-node": "npm:3.687.0"
"@smithy/config-resolver": "npm:^3.0.10"
"@smithy/core": "npm:^2.5.1"
"@smithy/fetch-http-handler": "npm:^4.0.0"
"@smithy/hash-node": "npm:^3.0.8"
"@smithy/invalid-dependency": "npm:^3.0.8"
"@smithy/middleware-content-length": "npm:^3.0.10"
"@smithy/middleware-endpoint": "npm:^3.2.1"
"@smithy/middleware-retry": "npm:^3.0.25"
"@smithy/middleware-serde": "npm:^3.0.8"
"@smithy/middleware-stack": "npm:^3.0.8"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/node-http-handler": "npm:^3.2.5"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/smithy-client": "npm:^3.4.2"
"@smithy/types": "npm:^3.6.0"
"@smithy/url-parser": "npm:^3.0.8"
"@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.25"
"@smithy/util-defaults-mode-node": "npm:^3.0.25"
"@smithy/util-endpoints": "npm:^2.1.4"
"@smithy/util-middleware": "npm:^3.0.8"
"@smithy/util-retry": "npm:^3.0.8"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0ab5005043d2e194cdcdb070b78a9357f155772a9a42f1d0df90d7ec7935f9dce34ec4032974ea07f6fbf11026a1e32d38a496e6234056a298e751a363e7a719
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/core@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@smithy/core": "npm:^2.5.1"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/signature-v4": "npm:^4.2.0"
"@smithy/smithy-client": "npm:^3.4.2"
"@smithy/types": "npm:^3.6.0"
"@smithy/util-middleware": "npm:^3.0.8"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10c0/989e1cb11e1402c34ce2ce193de4b9100b3b1ffc4c4ff944f933595de8145afba6c7e65ba3c8c53599986d86591512084abd9c1dd636b0225384655c2f97c845
languageName: node
linkType: hard
"@aws-sdk/credential-provider-cognito-identity@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.687.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.687.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/75496f6cec5b07e30fa608458a49a6444c8b0920e1f2c064ae70f41f7a1c9de7b74df480292f2aad51bc46abb7d0219d694bbac52e1b88a5b9301437f4d2bbb5
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/credential-provider-env@npm:3.686.0"
dependencies:
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/39487ac057dfebd4cd8f87a5ef2a05ab1e6d220e32724019c31be9542cff0b7aa50a771af038e72b24c5184dfe450f314cc38a724682e6ec6e95a6c3dc3af5c9
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/credential-provider-http@npm:3.686.0"
dependencies:
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/fetch-http-handler": "npm:^4.0.0"
"@smithy/node-http-handler": "npm:^3.2.5"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/smithy-client": "npm:^3.4.2"
"@smithy/types": "npm:^3.6.0"
"@smithy/util-stream": "npm:^3.2.1"
tslib: "npm:^2.6.2"
checksum: 10c0/b849af22a819753e292b21d22f7751e5f01ea0ebc1bc27630bcb018fc7583184487fe8ffbc32fccf0b53f1e34751b6a1516e4ece14192da887de662300b2a51a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.687.0"
dependencies:
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/credential-provider-env": "npm:3.686.0"
"@aws-sdk/credential-provider-http": "npm:3.686.0"
"@aws-sdk/credential-provider-process": "npm:3.686.0"
"@aws-sdk/credential-provider-sso": "npm:3.687.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/credential-provider-imds": "npm:^3.2.4"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.687.0
checksum: 10c0/4909d432dec9f290a1fe96cf6295f8b5786011245f19d3ea1f2b8cb2d736cc020285f34ac32e3c5f9691d86acbe0aa823ff8e73f3613262f51286679697bacf8
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/credential-provider-node@npm:3.687.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.686.0"
"@aws-sdk/credential-provider-http": "npm:3.686.0"
"@aws-sdk/credential-provider-ini": "npm:3.687.0"
"@aws-sdk/credential-provider-process": "npm:3.686.0"
"@aws-sdk/credential-provider-sso": "npm:3.687.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/credential-provider-imds": "npm:^3.2.4"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a55fc666b49ec24a8441b2a7de5a335f1f15b6fa8330230a829a133e17befa02afbb3c56a1d40e763f4f4d2b42d1bf203b1de875af8cc5f552ccf0cbcb7618e0
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/credential-provider-process@npm:3.686.0"
dependencies:
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d4e9de75628b6ea50d1a04f035cc3238fb9650de03e73f5d5560866f86255b4d7c9249d913750ed5f3964b6b36c99943ee6f320e5e6a8c2730e5f15239c3c683
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.687.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.687.0"
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/token-providers": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d4d83d8da367997b06d413e560bb2bade9e48f1c7c166669b849ee6343c8fb175b181a90d81206596416a9a9cd05c2303134e721873d12c9e5433442dcf7f36c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.686.0"
dependencies:
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.686.0
checksum: 10c0/92e6b5b1ae9f290bcf811f245bbfe7fbbe241b701565f2f910992759d2d521119ef5a7bd1718880f1e8054146ae871b60fec8de387dc4d1444e479d565fe71b3
languageName: node
linkType: hard
"@aws-sdk/credential-providers@npm:^3.292.0":
version: 3.687.0
resolution: "@aws-sdk/credential-providers@npm:3.687.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.687.0"
"@aws-sdk/client-sso": "npm:3.687.0"
"@aws-sdk/client-sts": "npm:3.687.0"
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/credential-provider-cognito-identity": "npm:3.687.0"
"@aws-sdk/credential-provider-env": "npm:3.686.0"
"@aws-sdk/credential-provider-http": "npm:3.686.0"
"@aws-sdk/credential-provider-ini": "npm:3.687.0"
"@aws-sdk/credential-provider-node": "npm:3.687.0"
"@aws-sdk/credential-provider-process": "npm:3.686.0"
"@aws-sdk/credential-provider-sso": "npm:3.687.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/credential-provider-imds": "npm:^3.2.4"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/fc10833d5fbaa3e116ae63e5228eef92c0c2f44087856696b465832dcdae553ca5a02edf5ad318fee615ae12fd6554b2955d688f9dd364a097218382aad8f9d1
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@aws-sdk/util-arn-parser": "npm:3.679.0"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/types": "npm:^3.6.0"
"@smithy/util-config-provider": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a443b0ad0aa7dd05927c6f20ab03bb0c2a4b97706c030ad476b234b891be67238b95cdcd04d255515667b46052ab33ef8047744ed25463b1e7d5b134ec1c3101
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/153260b268faa8564d2c33737620af8770b857c8d1dcb7184da535d693bceec1314d89021032614c7ee4760710a6e69eb380b7af6a2f4dedcfb6641e3509b892
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.689.0":
version: 3.689.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.689.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-crypto/util": "npm:5.2.0"
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/is-array-buffer": "npm:^3.0.0"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/types": "npm:^3.6.0"
"@smithy/util-middleware": "npm:^3.0.8"
"@smithy/util-stream": "npm:^3.2.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5bca4640456ede98f0a07f8cae6b00f27f531ab193277f4b88e2ede427ea71a448f55668cf76c70e3d1385420017ff14e458e9b3d9043979621881ba0aae767c
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/middleware-host-header@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/afc4151bf2425b3b0172f39fd9f29e48bd87038ec7f4e3389da4426f7fbfc394c8298eac30497a96f005b7dd3809ac49fff375f53969163e259587d15dd40d59
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d093e18ebc54be70d6eb945fac15a7c1617cdc96e51c9afa037d6fb479ad2345592bc7b078d594246e71ab9a716415efb18bb993f240f02f9c4bd6ed9650baa3
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/middleware-logger@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/17edfe0781035c2678ae878db56652c4de0d3a719d7912b7ce1d6e3dccc2848543152cc617ebdacd6ac46c6cc5d1ead4e65e2606bf5fd7431c4606b0fac72adc
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0038b452d683b81ece9cbffdc5191a2eeef908bfefc41e87f61f96e177488255a5a03451e3c0f7b7afa319662d931b246fd319b46fee82b51b427f51228f1a8c
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.687.0"
dependencies:
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@aws-sdk/util-arn-parser": "npm:3.679.0"
"@smithy/core": "npm:^2.5.1"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/signature-v4": "npm:^4.2.0"
"@smithy/smithy-client": "npm:^3.4.2"
"@smithy/types": "npm:^3.6.0"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.8"
"@smithy/util-stream": "npm:^3.2.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f3f8c7f473210a63e58b7a371bd06534b74a93af4a11fe58230ca757dc41d251baffb42e863c0f979133e5625e113b5627604eb7e1e814c942fe13ea649c3c22
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/middleware-ssec@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/96851ec461ee6dc5c2e73612a0ab200f360d5c971d01c9e5ca045c53b2deeb9f3c184016f89cd94cf8db5785d4ab46543227b8e5953014ae0b2bc405347cf945
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.687.0"
dependencies:
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@aws-sdk/util-endpoints": "npm:3.686.0"
"@smithy/core": "npm:^2.5.1"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/4c84af62eb3a8fdcdd5f2a2139fdae8b95dea7caf46f48f118ba3fa6071ff120c6421b152abf8c2eb205ceed9126b366b8e4e98a35f949d918c35d3d0f17f743
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/region-config-resolver@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/types": "npm:^3.6.0"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.8"
tslib: "npm:^2.6.2"
checksum: 10c0/0657085699a61cac3d84a1660e4b8396e928d2bb2e73c0968d1e924759be605383c4f5d12262ca1f28f28bdcd37900eee161a9b91225a3f98a13c8551f7a6cbc
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.687.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.687.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/signature-v4": "npm:^4.2.0"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/641da5046f393f87c0a16d1258ebc8011b13873a6e877ce23cbad760f99868b114455096dfeab6deade4c895a46de2c015d4325cbba53f775cdcfcb2e1402dc3
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/token-providers@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sso-oidc": ^3.686.0
checksum: 10c0/daf2fbc88980c9576ed2affde3bb1bc2450ad0de1d3ab796f2be2620dfa1b365515b2502af87e70f8ce68b8e6f5a5e94eb45ea2740339698fa7a144bad42d878
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.686.0, @aws-sdk/types@npm:^3.222.0, @aws-sdk/types@npm:^3.292.0":
version: 3.686.0
resolution: "@aws-sdk/types@npm:3.686.0"
dependencies:
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/926809c4ed1ca9948a4c4135b3b96ac30fe39438c130c8b1bd2ec47361fa81a094663eb9aa8df4db7841cd77bb5be8070bacddf21819404bcb9cd048d1eacec8
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.679.0":
version: 3.679.0
resolution: "@aws-sdk/util-arn-parser@npm:3.679.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/401dc101c8c0c5057f8dc59d4a0acc06c6d81e35c4f37258c34d10be7148f5b6334c8dd6021224b897c7447f2a6650fa955e0c697bfb6f86dcfd55415b158544
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/util-endpoints@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@smithy/types": "npm:^3.6.0"
"@smithy/util-endpoints": "npm:^2.1.4"
tslib: "npm:^2.6.2"
checksum: 10c0/e9939316bc7555ea57b940d4e4a62f13bf774c1496dea9171cc7cabcd75449d2169a54f6cedfd7f8ef29e3bf047b9fce6df7f09c4092d3c9eee902865bfa45e3
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.208.0
resolution: "@aws-sdk/util-locate-window@npm:3.208.0"
dependencies:
tslib: "npm:^2.3.1"
checksum: 10c0/7ed278b7b1acae0c2dacc27ac7955b848b34fb3df0ac7c901f60286b6a0ea2d513a5baddbc8aa66b5138dc6b0caafa9f9de8277bf9e14eaf89ad125b1170c6c1
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@smithy/types": "npm:^3.6.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e358e3a6e833985d8baa53f08718578337aa1635744bb6ea3976a8fb67d78d427985f95e873f7806db4c54f21a1fdfec5a019922dbe389b7a0cdd804fda51d3a
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.687.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.687.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/1086dc84414702d6c0721db3db68c6be966614de8679556e134719a926d28a230c9ecd924a686b20a19cfaae314b2b5f5354ca56ae20b7cf14f97e5631ac1386
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/xml-builder@npm:3.686.0"
dependencies:
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/79e6af4cd4a464a792ac083a036c1bc2aa8e5799a646087bd5a06f68b35d8c58f6067fc135fc3cf3554e01bf89ae2ae0137798dcd1c872a2cb5e2ca2738731de
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/code-frame@npm:7.16.7"
dependencies:
"@babel/highlight": "npm:^7.16.7"
checksum: 10c0/bed53eab44e67480e67b353b94ab9bef7bce6cdea799dde591c296cfb47d872348f20cf9a3b82b0dbf8530bf67ca438b5bed3d80622ea76c7227cea3e6f04aa6
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/code-frame@npm:7.18.6"
dependencies:
"@babel/highlight": "npm:^7.18.6"
checksum: 10c0/e3966f2717b7ebd9610524730e10b75ee74154f62617e5e115c97dbbbabc5351845c9aa850788012cb4d9aee85c3dc59fe6bef36690f244e8dcfca34bd35e9c9
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.22.13, @babel/code-frame@npm:^7.23.5":
version: 7.23.5
resolution: "@babel/code-frame@npm:7.23.5"
dependencies:
"@babel/highlight": "npm:^7.23.4"
chalk: "npm:^2.4.2"
checksum: 10c0/a10e843595ddd9f97faa99917414813c06214f4d9205294013e20c70fbdf4f943760da37dec1d998bf3e6fc20fa2918a47c0e987a7e458663feb7698063ad7c6
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.17.10":
version: 7.17.10
resolution: "@babel/compat-data@npm:7.17.10"
checksum: 10c0/3bac51ceeaa2b5a8da10d7ba11d0ef58cad17ddc8b7d172d10f4be9dab6b0848699097091b06e1914e504fc2735606835a2f89050f82a475203995743999d89a
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.18.8":
version: 7.18.8
resolution: "@babel/compat-data@npm:7.18.8"
checksum: 10c0/b82a9f61e194bd6e5267899a2697902a9bb965a042a7b3986fe30ea234d3217b702c6a6aa4ddb2d1bfad337208170b5b1f816881a46d4eece6c1806bdbba3978
languageName: node
linkType: hard
"@babel/core@npm:^7.11.6":
version: 7.18.10
resolution: "@babel/core@npm:7.18.10"
dependencies:
"@ampproject/remapping": "npm:^2.1.0"
"@babel/code-frame": "npm:^7.18.6"
"@babel/generator": "npm:^7.18.10"
"@babel/helper-compilation-targets": "npm:^7.18.9"
"@babel/helper-module-transforms": "npm:^7.18.9"
"@babel/helpers": "npm:^7.18.9"
"@babel/parser": "npm:^7.18.10"
"@babel/template": "npm:^7.18.10"
"@babel/traverse": "npm:^7.18.10"
"@babel/types": "npm:^7.18.10"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.1"
semver: "npm:^6.3.0"
checksum: 10c0/94f749fb8bb844f5c5324513cac23edf781e24c15645a513eb54afc0e2f71d8c15c02e61f216a79f0f997deafc062b7c54bf2ebf31a2f62d0dd12bcbbc15dc97
languageName: node
linkType: hard
"@babel/core@npm:^7.12.3":
version: 7.18.2
resolution: "@babel/core@npm:7.18.2"
dependencies:
"@ampproject/remapping": "npm:^2.1.0"
"@babel/code-frame": "npm:^7.16.7"
"@babel/generator": "npm:^7.18.2"
"@babel/helper-compilation-targets": "npm:^7.18.2"
"@babel/helper-module-transforms": "npm:^7.18.0"
"@babel/helpers": "npm:^7.18.2"
"@babel/parser": "npm:^7.18.0"
"@babel/template": "npm:^7.16.7"
"@babel/traverse": "npm:^7.18.2"
"@babel/types": "npm:^7.18.2"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.1"
semver: "npm:^6.3.0"
checksum: 10c0/f6c74b7376cce1d490271c77d1dd5c8e03e7b528b1f3ea8a9ad23946c72fa807e1710290806e9175ab8f3166bb14fdcbfe31f256954feb03482e88444b2a9ea6
languageName: node
linkType: hard
"@babel/generator@npm:^7.18.10":
version: 7.18.12
resolution: "@babel/generator@npm:7.18.12"
dependencies:
"@babel/types": "npm:^7.18.10"
"@jridgewell/gen-mapping": "npm:^0.3.2"
jsesc: "npm:^2.5.1"
checksum: 10c0/0a81453f3d6f458b6eeac046cb47b897674ea12ac7c72068faed1762aedade2290fbd139fcb605c4ea8386014aa87a0c96e609d8c469b434ab5923189e075ad1
languageName: node
linkType: hard
"@babel/generator@npm:^7.18.2, @babel/generator@npm:^7.7.2":
version: 7.18.2
resolution: "@babel/generator@npm:7.18.2"
dependencies:
"@babel/types": "npm:^7.18.2"
"@jridgewell/gen-mapping": "npm:^0.3.0"
jsesc: "npm:^2.5.1"
checksum: 10c0/96d8ddf60091ca7cb43df251451c8a56383f32ce02bcb26503d9b2c703922ccd8a993936a9d6798dede4f5e2a0c939f383abb888d27d6c5dca27afd323dc85f8
languageName: node
linkType: hard
"@babel/generator@npm:^7.23.6":
version: 7.23.6
resolution: "@babel/generator@npm:7.23.6"
dependencies:
"@babel/types": "npm:^7.23.6"
"@jridgewell/gen-mapping": "npm:^0.3.2"
"@jridgewell/trace-mapping": "npm:^0.3.17"
jsesc: "npm:^2.5.1"
checksum: 10c0/53540e905cd10db05d9aee0a5304e36927f455ce66f95d1253bb8a179f286b88fa7062ea0db354c566fe27f8bb96567566084ffd259f8feaae1de5eccc8afbda
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.18.2":
version: 7.18.2
resolution: "@babel/helper-compilation-targets@npm:7.18.2"
dependencies:
"@babel/compat-data": "npm:^7.17.10"
"@babel/helper-validator-option": "npm:^7.16.7"
browserslist: "npm:^4.20.2"
semver: "npm:^6.3.0"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/a770cd43713725949113cd0e07fefb2f40432a3e00d147c538e3fe0b999465461de8e2f1b9494829d95b6a6f47b914c15c5537bf3eff4d0d2941a363602df3ba
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/helper-compilation-targets@npm:7.18.9"
dependencies:
"@babel/compat-data": "npm:^7.18.8"
"@babel/helper-validator-option": "npm:^7.18.6"
browserslist: "npm:^4.20.2"
semver: "npm:^6.3.0"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/f4c851a7301288028bec5650bf3fa4e60c467015cd07a2ce2cde4df4bdbf97537c787727dbfd142fa24222bf214cdd0106408543af6ec73639064b886bc0b381
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.16.7":
version: 7.18.2
resolution: "@babel/helper-environment-visitor@npm:7.18.2"
checksum: 10c0/2896c92ecd5a5e920f282dc23b52ebfd98a348d19f0535ee639c1686443369741744d667ef8d6154db6a8f6a80d945fdf88528fa1c8528571854eab812fb83dd
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/helper-environment-visitor@npm:7.18.9"
checksum: 10c0/a69dd50ea91d8143b899a40ca7a387fa84dbaa02e606d8692188c7c59bd4007bcd632c189f7b7dab72cb7a016e159557a6fccf7093ab9b584d87cf2ea8cf36b7
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-environment-visitor@npm:7.22.20"
checksum: 10c0/e762c2d8f5d423af89bd7ae9abe35bd4836d2eb401af868a63bbb63220c513c783e25ef001019418560b3fdc6d9a6fb67e6c0b650bcdeb3a2ac44b5c3d2bdd94
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.23.0":
version: 7.23.0
resolution: "@babel/helper-function-name@npm:7.23.0"
dependencies:
"@babel/template": "npm:^7.22.15"
"@babel/types": "npm:^7.23.0"
checksum: 10c0/d771dd1f3222b120518176733c52b7cadac1c256ff49b1889dbbe5e3fed81db855b8cc4e40d949c9d3eae0e795e8229c1c8c24c0e83f27cfa6ee3766696c6428
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-hoist-variables@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 10c0/60a3077f756a1cd9f14eb89f0037f487d81ede2b7cfe652ea6869cd4ec4c782b0fb1de01b8494b9a2d2050e3d154d7d5ad3be24806790acfb8cbe2073bf1e208
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-module-imports@npm:7.16.7"
dependencies:
"@babel/types": "npm:^7.16.7"
checksum: 10c0/134e3979d822ddd6871285ead2b7eed7fb4cd8862fec64692c98bb5bd401199a149b510394d75ca39a9dad6d3ecd6f2f14b61ff1f7b8b59781cba5efeb881d04