-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathyarn.lock
More file actions
9385 lines (8463 loc) · 344 KB
/
yarn.lock
File metadata and controls
9385 lines (8463 loc) · 344 KB
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
"@arcanis/slice-ansi@npm:^1.1.1":
version: 1.1.1
resolution: "@arcanis/slice-ansi@npm:1.1.1"
dependencies:
grapheme-splitter: "npm:^1.0.4"
checksum: 10c0/2f222b121b8aaf67e8495e27d60ebfc34e2472033445c3380e93fb06aba9bfef6ab3096aca190a181b3dd505ed4c07f4dc7243fc9cb5369008b649cd1e39e8d8
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-codecommit@npm:3.992.0":
version: 3.992.0
resolution: "@aws-sdk/client-codecommit@npm:3.992.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.10"
"@aws-sdk/credential-provider-node": "npm:^3.972.9"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.10"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.992.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.8"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.23.0"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.14"
"@smithy/middleware-retry": "npm:^4.4.31"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.10"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.3"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.30"
"@smithy/util-defaults-mode-node": "npm:^4.2.33"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/4e543233cfa69f3a1f562720620414d0df59a033bebff0f3011725f495461075c303f13d5c4a6a3770211fbd83981036347b9d11e38e865d0e7ee0b8dc25b3bf
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.992.0":
version: 3.992.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.992.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.10"
"@aws-sdk/credential-provider-node": "npm:^3.972.9"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.10"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.992.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.8"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.23.0"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.14"
"@smithy/middleware-retry": "npm:^4.4.31"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.10"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.3"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.30"
"@smithy/util-defaults-mode-node": "npm:^4.2.33"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/89ae34ffa3daaae4bd89df2f328f3dc45a37b67c1adf5b3df294a1eb9ed53ef651cb200ce3a962d2f33dfe8c6d2d12a000ed1357005c76b7fa335e3326887502
languageName: node
linkType: hard
"@aws-sdk/client-ec2@npm:3.992.0":
version: 3.992.0
resolution: "@aws-sdk/client-ec2@npm:3.992.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.10"
"@aws-sdk/credential-provider-node": "npm:^3.972.9"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-sdk-ec2": "npm:^3.972.7"
"@aws-sdk/middleware-user-agent": "npm:^3.972.10"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.992.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.8"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.23.0"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.14"
"@smithy/middleware-retry": "npm:^4.4.31"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.10"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.3"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.30"
"@smithy/util-defaults-mode-node": "npm:^4.2.33"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.8"
tslib: "npm:^2.6.2"
checksum: 10c0/d8ec47233904337f226e853845da5bb333b71245778af5bceb4fd03a14e17c86c8e0c04d7949d24bc33d1f52d1085909e955304d336ae0948d2608d92df3b39e
languageName: node
linkType: hard
"@aws-sdk/client-ecr@npm:3.992.0":
version: 3.992.0
resolution: "@aws-sdk/client-ecr@npm:3.992.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.10"
"@aws-sdk/credential-provider-node": "npm:^3.972.9"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.10"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.992.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.8"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.23.0"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.14"
"@smithy/middleware-retry": "npm:^4.4.31"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.10"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.3"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.30"
"@smithy/util-defaults-mode-node": "npm:^4.2.33"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.8"
tslib: "npm:^2.6.2"
checksum: 10c0/19c3d0d52913596e7f9e578e2e99ef8d2bde03870436ef5fa0cfd9fd4a738341a92caac5fd9d64472d7e290511a1e5066eba4c238e887c29c4fbfbadfe1169f3
languageName: node
linkType: hard
"@aws-sdk/client-eks@npm:3.992.0":
version: 3.992.0
resolution: "@aws-sdk/client-eks@npm:3.992.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.10"
"@aws-sdk/credential-provider-node": "npm:^3.972.9"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.10"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.992.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.8"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.23.0"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.14"
"@smithy/middleware-retry": "npm:^4.4.31"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.10"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.3"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.30"
"@smithy/util-defaults-mode-node": "npm:^4.2.33"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.8"
tslib: "npm:^2.6.2"
checksum: 10c0/6ba6df40a9577cce51dae08143a6fafd9a3a901ab13945ea381eb119f159ffa1b8edc3f4aae517c8052e1ed9dcbe1b7a434af1b3bc74793ae61afb9430295e2a
languageName: node
linkType: hard
"@aws-sdk/client-rds@npm:3.992.0":
version: 3.992.0
resolution: "@aws-sdk/client-rds@npm:3.992.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.10"
"@aws-sdk/credential-provider-node": "npm:^3.972.9"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-sdk-rds": "npm:^3.972.7"
"@aws-sdk/middleware-user-agent": "npm:^3.972.10"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.992.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.8"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.23.0"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.14"
"@smithy/middleware-retry": "npm:^4.4.31"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.10"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.3"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.30"
"@smithy/util-defaults-mode-node": "npm:^4.2.33"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.8"
tslib: "npm:^2.6.2"
checksum: 10c0/4dfc10adef01cdffd365655e49cb4b6ce9c355ff3a92a314fd9305764fbf7b119f5354c98f796a9919d8dc3436e266c8ce3e0526b8fc58b41f60b1a85706186f
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:3.992.0":
version: 3.992.0
resolution: "@aws-sdk/client-s3@npm:3.992.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/core": "npm:^3.973.10"
"@aws-sdk/credential-provider-node": "npm:^3.972.9"
"@aws-sdk/middleware-bucket-endpoint": "npm:^3.972.3"
"@aws-sdk/middleware-expect-continue": "npm:^3.972.3"
"@aws-sdk/middleware-flexible-checksums": "npm:^3.972.8"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-location-constraint": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-sdk-s3": "npm:^3.972.10"
"@aws-sdk/middleware-ssec": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.10"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/signature-v4-multi-region": "npm:3.992.0"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.992.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.8"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.23.0"
"@smithy/eventstream-serde-browser": "npm:^4.2.8"
"@smithy/eventstream-serde-config-resolver": "npm:^4.3.8"
"@smithy/eventstream-serde-node": "npm:^4.2.8"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-blob-browser": "npm:^4.2.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/hash-stream-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/md5-js": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.14"
"@smithy/middleware-retry": "npm:^4.4.31"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.10"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.3"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.30"
"@smithy/util-defaults-mode-node": "npm:^4.2.33"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-stream": "npm:^4.5.12"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.8"
tslib: "npm:^2.6.2"
checksum: 10c0/b8efdc28ef465a5217e5c2f1bf582aa196a8dabbac09d9620b17db11a5af6d4d9523eab091c9ffda42704e7e123a2049ddbb5286c4bab8605ea14152f8615607
languageName: node
linkType: hard
"@aws-sdk/core@npm:^3.973.10, @aws-sdk/core@npm:^3.973.15":
version: 3.973.15
resolution: "@aws-sdk/core@npm:3.973.15"
dependencies:
"@aws-sdk/types": "npm:^3.973.4"
"@aws-sdk/xml-builder": "npm:^3.972.8"
"@smithy/core": "npm:^3.23.6"
"@smithy/node-config-provider": "npm:^4.3.10"
"@smithy/property-provider": "npm:^4.2.10"
"@smithy/protocol-http": "npm:^5.3.10"
"@smithy/signature-v4": "npm:^5.3.10"
"@smithy/smithy-client": "npm:^4.12.0"
"@smithy/types": "npm:^4.13.0"
"@smithy/util-base64": "npm:^4.3.1"
"@smithy/util-middleware": "npm:^4.2.10"
"@smithy/util-utf8": "npm:^4.2.1"
tslib: "npm:^2.6.2"
checksum: 10c0/214af21b8bca436d3b55aa2f4802d8b187716f6169269587f4976d4c42baac7ad1f97e7decf081089bf9168fbbea361ac782785ff0d8956826d40b59118910f2
languageName: node
linkType: hard
"@aws-sdk/crc64-nvme@npm:^3.972.3":
version: 3.972.3
resolution: "@aws-sdk/crc64-nvme@npm:3.972.3"
dependencies:
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/9390ce9e5b9e444022e5acadeee2c8bf2a9ef726527d5cd37dd4dde76fc4b51abee66558f8cb5d6c50cc58645a9006898d83688120dbaf2e90465437459cf813
languageName: node
linkType: hard
"@aws-sdk/credential-provider-cognito-identity@npm:^3.972.3":
version: 3.972.6
resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.972.6"
dependencies:
"@aws-sdk/nested-clients": "npm:^3.996.3"
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/property-provider": "npm:^4.2.10"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/50dd8700f732a4cf362437cb232391db6feb18f0a85b7d27caf21208a5bebdec50a0f940db36802b436afb55e9ca42c1237c3347159605f421f8ecc6d79fe1f7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:^3.972.13, @aws-sdk/credential-provider-env@npm:^3.972.8":
version: 3.972.13
resolution: "@aws-sdk/credential-provider-env@npm:3.972.13"
dependencies:
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/property-provider": "npm:^4.2.10"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5e5f6e7680ec5f3b0160ef648228e5270f570d8478b318d7fb3a4363fa0a246c535e1382d77eadceb2c10aafd9013ba8d6b70d91b0fc90a118865e408ddd9b4c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:^3.972.10, @aws-sdk/credential-provider-http@npm:^3.972.15":
version: 3.972.15
resolution: "@aws-sdk/credential-provider-http@npm:3.972.15"
dependencies:
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/fetch-http-handler": "npm:^5.3.11"
"@smithy/node-http-handler": "npm:^4.4.12"
"@smithy/property-provider": "npm:^4.2.10"
"@smithy/protocol-http": "npm:^5.3.10"
"@smithy/smithy-client": "npm:^4.12.0"
"@smithy/types": "npm:^4.13.0"
"@smithy/util-stream": "npm:^4.5.15"
tslib: "npm:^2.6.2"
checksum: 10c0/48f1c95b51180e249755a59dcc839e5f118be5b57a16395f7c79435853a8cb62b21998bcef355653531a14e39be7a7503b13bdfc81f7c474f663fddf8770e318
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:^3.972.13, @aws-sdk/credential-provider-ini@npm:^3.972.8":
version: 3.972.13
resolution: "@aws-sdk/credential-provider-ini@npm:3.972.13"
dependencies:
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/credential-provider-env": "npm:^3.972.13"
"@aws-sdk/credential-provider-http": "npm:^3.972.15"
"@aws-sdk/credential-provider-login": "npm:^3.972.13"
"@aws-sdk/credential-provider-process": "npm:^3.972.13"
"@aws-sdk/credential-provider-sso": "npm:^3.972.13"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.13"
"@aws-sdk/nested-clients": "npm:^3.996.3"
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/credential-provider-imds": "npm:^4.2.10"
"@smithy/property-provider": "npm:^4.2.10"
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/7f7e85bda8c970955bc8afc3720736d7254fff20c11d5431aca1c0cf286e3621d19037dd3fc7a48062fff2966693987d0f83988183ec852fbe10a2e8ac21f533
languageName: node
linkType: hard
"@aws-sdk/credential-provider-login@npm:^3.972.13, @aws-sdk/credential-provider-login@npm:^3.972.8":
version: 3.972.13
resolution: "@aws-sdk/credential-provider-login@npm:3.972.13"
dependencies:
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/nested-clients": "npm:^3.996.3"
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/property-provider": "npm:^4.2.10"
"@smithy/protocol-http": "npm:^5.3.10"
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ecea88131e1edb591f7b65651e07090fb9f426cc6f52a7a3806447506a8b9ebdafedcfff27c3d799b9c099f3898bac3fe50e91055ad7beaeb7317a3836de6b95
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:^3.972.9":
version: 3.972.14
resolution: "@aws-sdk/credential-provider-node@npm:3.972.14"
dependencies:
"@aws-sdk/credential-provider-env": "npm:^3.972.13"
"@aws-sdk/credential-provider-http": "npm:^3.972.15"
"@aws-sdk/credential-provider-ini": "npm:^3.972.13"
"@aws-sdk/credential-provider-process": "npm:^3.972.13"
"@aws-sdk/credential-provider-sso": "npm:^3.972.13"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.13"
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/credential-provider-imds": "npm:^4.2.10"
"@smithy/property-provider": "npm:^4.2.10"
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a0e83837a18674791d7bf8c9b31e60a0eb74bd7a254d59034679a82a2f406086e74ebd88fdd251a6d72b956d44c755c0f3383b4cce94f212dc50aa4891c40795
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:^3.972.13, @aws-sdk/credential-provider-process@npm:^3.972.8":
version: 3.972.13
resolution: "@aws-sdk/credential-provider-process@npm:3.972.13"
dependencies:
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/property-provider": "npm:^4.2.10"
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/eac541e75099a50187f99ef4cbb26344deb7d76fa16a101561347d7596114ba0d928815b1d58f7e6a52f539bcb5101f23385b0b78863bbbb0f6063ed1a4a4b7a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:^3.972.13, @aws-sdk/credential-provider-sso@npm:^3.972.8":
version: 3.972.13
resolution: "@aws-sdk/credential-provider-sso@npm:3.972.13"
dependencies:
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/nested-clients": "npm:^3.996.3"
"@aws-sdk/token-providers": "npm:3.999.0"
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/property-provider": "npm:^4.2.10"
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/17f5e9b83f2222fdf94719f973374880660a11d901260903034caf8f757bab56a463c6a982c09a375d7f6b5930eb13d3e296eee30cad9c064ec1179d2b26d6d6
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:^3.972.13, @aws-sdk/credential-provider-web-identity@npm:^3.972.8":
version: 3.972.13
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.13"
dependencies:
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/nested-clients": "npm:^3.996.3"
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/property-provider": "npm:^4.2.10"
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a5e56193198bdf9be33da37b13aac081efed0b0c46719bd41f426104294cbb5250e5a309265e7347b63b8a891467a8a0c418cbc9bc2158d4587ade466d3304ff
languageName: node
linkType: hard
"@aws-sdk/credential-providers@npm:3.992.0":
version: 3.992.0
resolution: "@aws-sdk/credential-providers@npm:3.992.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.992.0"
"@aws-sdk/core": "npm:^3.973.10"
"@aws-sdk/credential-provider-cognito-identity": "npm:^3.972.3"
"@aws-sdk/credential-provider-env": "npm:^3.972.8"
"@aws-sdk/credential-provider-http": "npm:^3.972.10"
"@aws-sdk/credential-provider-ini": "npm:^3.972.8"
"@aws-sdk/credential-provider-login": "npm:^3.972.8"
"@aws-sdk/credential-provider-node": "npm:^3.972.9"
"@aws-sdk/credential-provider-process": "npm:^3.972.8"
"@aws-sdk/credential-provider-sso": "npm:^3.972.8"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.8"
"@aws-sdk/nested-clients": "npm:3.992.0"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.23.0"
"@smithy/credential-provider-imds": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b7e9f061fa1e13e63c38415272c01515971705b92b9dc3891cc368bf03dc2bc4f04b6eb4e8f954d99567565da811ca3ac55a928b8f412832dc19fd46409a1c19
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:^3.972.3":
version: 3.972.6
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.972.6"
dependencies:
"@aws-sdk/types": "npm:^3.973.4"
"@aws-sdk/util-arn-parser": "npm:^3.972.2"
"@smithy/node-config-provider": "npm:^4.3.10"
"@smithy/protocol-http": "npm:^5.3.10"
"@smithy/types": "npm:^4.13.0"
"@smithy/util-config-provider": "npm:^4.2.1"
tslib: "npm:^2.6.2"
checksum: 10c0/c0ac2400ffc62744fbcfd3a99170f2218e9bd3294a3375bbef8a1bbe06168014415e6010fb43052dccb18fbde4e66a705ba0ea11462c8aad94e663b68aba4168
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:^3.972.3":
version: 3.972.6
resolution: "@aws-sdk/middleware-expect-continue@npm:3.972.6"
dependencies:
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/protocol-http": "npm:^5.3.10"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/98878b37ee46911194807c5ee7d277994cd038f0e18456bec9b8396b90bd21bcf244465b343b9f6c7dce408a5f6189d9509e2346307769ee9f4471e520089eb9
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:^3.972.8":
version: 3.973.1
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.973.1"
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.973.15"
"@aws-sdk/crc64-nvme": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/is-array-buffer": "npm:^4.2.1"
"@smithy/node-config-provider": "npm:^4.3.10"
"@smithy/protocol-http": "npm:^5.3.10"
"@smithy/types": "npm:^4.13.0"
"@smithy/util-middleware": "npm:^4.2.10"
"@smithy/util-stream": "npm:^4.5.15"
"@smithy/util-utf8": "npm:^4.2.1"
tslib: "npm:^2.6.2"
checksum: 10c0/5dfcca0de1e8942596e550dc442f2253895ba51bada0557fa84d21f128509c7868896690dabf35be0f08e711b3ba3f39a2426c5b542b96861f1b3dd8ff6e9763
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:^3.972.3, @aws-sdk/middleware-host-header@npm:^3.972.6":
version: 3.972.6
resolution: "@aws-sdk/middleware-host-header@npm:3.972.6"
dependencies:
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/protocol-http": "npm:^5.3.10"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/53ee2ee8eeb5cf37080562312c05ee811f2185cf058b4ee0e39c7826e3823d5bf46b77db4fc272a32029a0e770c74f256edfed589ae74346af38fe1d2ca27685
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:^3.972.3":
version: 3.972.6
resolution: "@aws-sdk/middleware-location-constraint@npm:3.972.6"
dependencies:
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/391d425ad97b8d838ed51338f25409db282268f9f04e3ef289342e321b5cb07a48ef366d23b44a7004cb70edbd913d25dca4f1f27a43c871f096d182b15a835e
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:^3.972.3, @aws-sdk/middleware-logger@npm:^3.972.6":
version: 3.972.6
resolution: "@aws-sdk/middleware-logger@npm:3.972.6"
dependencies:
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5f8e7a681ab7cecb531f844b67c52a377d3fe472fd5526177eb28b49882c89474e7fd219f62c6ffaaec197fabc9beed5595cb52d8b93fe4109b98a4c289a76f9
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:^3.972.3, @aws-sdk/middleware-recursion-detection@npm:^3.972.6":
version: 3.972.6
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.972.6"
dependencies:
"@aws-sdk/types": "npm:^3.973.4"
"@aws/lambda-invoke-store": "npm:^0.2.2"
"@smithy/protocol-http": "npm:^5.3.10"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/27105c07565e2866ef677f4ed40eab818ecafdc41fe2b9e7c846839131c8e8d77ae0d3f95440bf35d8262408c329b354b1510ebf5d1f93478ece21c1c009fa5b
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-ec2@npm:^3.972.7":
version: 3.972.11
resolution: "@aws-sdk/middleware-sdk-ec2@npm:3.972.11"
dependencies:
"@aws-sdk/types": "npm:^3.973.4"
"@aws-sdk/util-format-url": "npm:^3.972.6"
"@smithy/middleware-endpoint": "npm:^4.4.20"
"@smithy/protocol-http": "npm:^5.3.10"
"@smithy/signature-v4": "npm:^5.3.10"
"@smithy/smithy-client": "npm:^4.12.0"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c1c48723b36884ddbc12c814e396174c2118a2cc6143581c2662457d6e8f22c684dac725bb8c80de970a889df98bd8596fdc7875051c2f371c6417fccb8569de
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-rds@npm:^3.972.7":
version: 3.972.11
resolution: "@aws-sdk/middleware-sdk-rds@npm:3.972.11"
dependencies:
"@aws-sdk/types": "npm:^3.973.4"
"@aws-sdk/util-format-url": "npm:^3.972.6"
"@smithy/middleware-endpoint": "npm:^4.4.20"
"@smithy/protocol-http": "npm:^5.3.10"
"@smithy/signature-v4": "npm:^5.3.10"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1f972c6312f823ca1ffc5d6dd52610b1ee1a4f0a219363486b51d32cd36b2480e6afba095f5a4a74665f16ed729352760cdaa4000fd354ec6182687292998f6a
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:^3.972.10":
version: 3.972.15
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.972.15"
dependencies:
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/types": "npm:^3.973.4"
"@aws-sdk/util-arn-parser": "npm:^3.972.2"
"@smithy/core": "npm:^3.23.6"
"@smithy/node-config-provider": "npm:^4.3.10"
"@smithy/protocol-http": "npm:^5.3.10"
"@smithy/signature-v4": "npm:^5.3.10"
"@smithy/smithy-client": "npm:^4.12.0"
"@smithy/types": "npm:^4.13.0"
"@smithy/util-config-provider": "npm:^4.2.1"
"@smithy/util-middleware": "npm:^4.2.10"
"@smithy/util-stream": "npm:^4.5.15"
"@smithy/util-utf8": "npm:^4.2.1"
tslib: "npm:^2.6.2"
checksum: 10c0/9895a46be6ea8035460dbb7190b2ba67d1ccb143f5edd8502129e795d3d73afafcb3a0b9aea8966293903d09f50b28f1da4402c9d75120fd6a5641ce440db278
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:^3.972.3":
version: 3.972.6
resolution: "@aws-sdk/middleware-ssec@npm:3.972.6"
dependencies:
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/13af32722f45374e7aa04295331b49d9d894476f82afa832c892e3f85a5d70d3806b36975200e8b279a5b706b5c1eb4864eaa528a8da4b62dc3754e8fc71c123
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:^3.972.10, @aws-sdk/middleware-user-agent@npm:^3.972.15":
version: 3.972.15
resolution: "@aws-sdk/middleware-user-agent@npm:3.972.15"
dependencies:
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/types": "npm:^3.973.4"
"@aws-sdk/util-endpoints": "npm:^3.996.3"
"@smithy/core": "npm:^3.23.6"
"@smithy/protocol-http": "npm:^5.3.10"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/bc9b57bc70cf949a51d728ae433bb6e2cc5d8a428144e0791ca6e8f810645093b3f2cd7f5361d99ff2ee846642920bbde8e9aba27fe2c5efd6e5835430b46246
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.992.0":
version: 3.992.0
resolution: "@aws-sdk/nested-clients@npm:3.992.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.10"
"@aws-sdk/middleware-host-header": "npm:^3.972.3"
"@aws-sdk/middleware-logger": "npm:^3.972.3"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.3"
"@aws-sdk/middleware-user-agent": "npm:^3.972.10"
"@aws-sdk/region-config-resolver": "npm:^3.972.3"
"@aws-sdk/types": "npm:^3.973.1"
"@aws-sdk/util-endpoints": "npm:3.992.0"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.3"
"@aws-sdk/util-user-agent-node": "npm:^3.972.8"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.23.0"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.14"
"@smithy/middleware-retry": "npm:^4.4.31"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.10"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.11.3"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.30"
"@smithy/util-defaults-mode-node": "npm:^4.2.33"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a4001b4ce88ee11e8b2ba652f3c97c6c5a5dce0d17320eacf92dfcf65f878799eee9a7b9ca956b2ea5d4d5c2b58b0cd0d1628dc77158b2af213711627c55614b
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:^3.996.3":
version: 3.996.3
resolution: "@aws-sdk/nested-clients@npm:3.996.3"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/middleware-host-header": "npm:^3.972.6"
"@aws-sdk/middleware-logger": "npm:^3.972.6"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.6"
"@aws-sdk/middleware-user-agent": "npm:^3.972.15"
"@aws-sdk/region-config-resolver": "npm:^3.972.6"
"@aws-sdk/types": "npm:^3.973.4"
"@aws-sdk/util-endpoints": "npm:^3.996.3"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.6"
"@aws-sdk/util-user-agent-node": "npm:^3.973.0"
"@smithy/config-resolver": "npm:^4.4.9"
"@smithy/core": "npm:^3.23.6"
"@smithy/fetch-http-handler": "npm:^5.3.11"
"@smithy/hash-node": "npm:^4.2.10"
"@smithy/invalid-dependency": "npm:^4.2.10"
"@smithy/middleware-content-length": "npm:^4.2.10"
"@smithy/middleware-endpoint": "npm:^4.4.20"
"@smithy/middleware-retry": "npm:^4.4.37"
"@smithy/middleware-serde": "npm:^4.2.11"
"@smithy/middleware-stack": "npm:^4.2.10"
"@smithy/node-config-provider": "npm:^4.3.10"
"@smithy/node-http-handler": "npm:^4.4.12"
"@smithy/protocol-http": "npm:^5.3.10"
"@smithy/smithy-client": "npm:^4.12.0"
"@smithy/types": "npm:^4.13.0"
"@smithy/url-parser": "npm:^4.2.10"
"@smithy/util-base64": "npm:^4.3.1"
"@smithy/util-body-length-browser": "npm:^4.2.1"
"@smithy/util-body-length-node": "npm:^4.2.2"
"@smithy/util-defaults-mode-browser": "npm:^4.3.36"
"@smithy/util-defaults-mode-node": "npm:^4.2.39"
"@smithy/util-endpoints": "npm:^3.3.1"
"@smithy/util-middleware": "npm:^4.2.10"
"@smithy/util-retry": "npm:^4.2.10"
"@smithy/util-utf8": "npm:^4.2.1"
tslib: "npm:^2.6.2"
checksum: 10c0/fbb4633467d82635ed19508788cffa422d5bf55f5336114529e037db8ea8d0e428ee46793613243e86540cbf58317bf6a444bd81902de84be84522190e7790ca
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:^3.972.3, @aws-sdk/region-config-resolver@npm:^3.972.6":
version: 3.972.6
resolution: "@aws-sdk/region-config-resolver@npm:3.972.6"
dependencies:
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/config-resolver": "npm:^4.4.9"
"@smithy/node-config-provider": "npm:^4.3.10"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/01da247b934cb4bc4bb5e213a450d8c07b5a59faeee453c22cf909b0492e6ba4afe9082e169a9382a3587a2cd82bbf0bfd9288f8892da04c7ccb5bde43853eeb
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.992.0":
version: 3.992.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.992.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:^3.972.10"
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/signature-v4": "npm:^5.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/94f7a52bfcbf8c19fa3abf70d2c0a88c04901467e75164bc8fca18b19fe60f1b1826a367b0b6d1f831d0096d0cd7a818d4b3908530d5db618dd9777dfeaca5cb
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.999.0":
version: 3.999.0
resolution: "@aws-sdk/token-providers@npm:3.999.0"
dependencies:
"@aws-sdk/core": "npm:^3.973.15"
"@aws-sdk/nested-clients": "npm:^3.996.3"
"@aws-sdk/types": "npm:^3.973.4"
"@smithy/property-provider": "npm:^4.2.10"
"@smithy/shared-ini-file-loader": "npm:^4.4.5"
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d51bb9e46a92846e9361a2cd29036422f5b0ff7207388e1bfb12d17e22e32541be3bdd43ce3f0ac29a0cd2cc65ab87b1bd787cf466a54800c1ed2b9cdb2e40c0
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0, @aws-sdk/types@npm:^3.973.1, @aws-sdk/types@npm:^3.973.4":
version: 3.973.4
resolution: "@aws-sdk/types@npm:3.973.4"
dependencies:
"@smithy/types": "npm:^4.13.0"
tslib: "npm:^2.6.2"
checksum: 10c0/7b6b3646842a43f5eaef29f2975b3c28f8357fd44b2f7f939fb5209db460289b7ebbbe26eb0845a6d87f5692f0466378d97c0ec1f795a4aa8b43b68327235229
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:^3.972.2":
version: 3.972.2
resolution: "@aws-sdk/util-arn-parser@npm:3.972.2"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/94aec6e0217da6add9d2334e8ec1c0c23955d279478e0161d00f66fd3527baf8a483e6fc41ecc2fb44e0b4116b52e85847a525ee7bdf43ff07d206f1e4ef03c9
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.992.0":
version: 3.992.0
resolution: "@aws-sdk/util-endpoints@npm:3.992.0"
dependencies:
"@aws-sdk/types": "npm:^3.973.1"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-endpoints": "npm:^3.2.8"
tslib: "npm:^2.6.2"
checksum: 10c0/6474ee79b24b1ff0eed5ab9382299713df4b6cb6ed7716423a1d3b2667d0e9198bb7c4dbb37266e5a46fc70ba363b2a23ff8af964ba539c9fd0172284dd13cb5
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:^3.996.3":
version: 3.996.3
resolution: "@aws-sdk/util-endpoints@npm:3.996.3"
dependencies: