-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathyarn.lock
More file actions
8505 lines (7674 loc) · 313 KB
/
Copy pathyarn.lock
File metadata and controls
8505 lines (7674 loc) · 313 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: 9
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.1021.0":
version: 3.1021.0
resolution: "@aws-sdk/client-codecommit@npm:3.1021.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.26"
"@aws-sdk/credential-provider-node": "npm:^3.972.29"
"@aws-sdk/middleware-host-header": "npm:^3.972.8"
"@aws-sdk/middleware-logger": "npm:^3.972.8"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.9"
"@aws-sdk/middleware-user-agent": "npm:^3.972.28"
"@aws-sdk/region-config-resolver": "npm:^3.972.10"
"@aws-sdk/types": "npm:^3.973.6"
"@aws-sdk/util-endpoints": "npm:^3.996.5"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.8"
"@aws-sdk/util-user-agent-node": "npm:^3.973.14"
"@smithy/config-resolver": "npm:^4.4.13"
"@smithy/core": "npm:^3.23.13"
"@smithy/fetch-http-handler": "npm:^5.3.15"
"@smithy/hash-node": "npm:^4.2.12"
"@smithy/invalid-dependency": "npm:^4.2.12"
"@smithy/middleware-content-length": "npm:^4.2.12"
"@smithy/middleware-endpoint": "npm:^4.4.28"
"@smithy/middleware-retry": "npm:^4.4.46"
"@smithy/middleware-serde": "npm:^4.2.16"
"@smithy/middleware-stack": "npm:^4.2.12"
"@smithy/node-config-provider": "npm:^4.3.12"
"@smithy/node-http-handler": "npm:^4.5.1"
"@smithy/protocol-http": "npm:^5.3.12"
"@smithy/smithy-client": "npm:^4.12.8"
"@smithy/types": "npm:^4.13.1"
"@smithy/url-parser": "npm:^4.2.12"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.44"
"@smithy/util-defaults-mode-node": "npm:^4.2.48"
"@smithy/util-endpoints": "npm:^3.3.3"
"@smithy/util-middleware": "npm:^4.2.12"
"@smithy/util-retry": "npm:^4.2.13"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/820286c9185db2b0e015246d4c49474f91baa68807ba609299772525cde3be03136ad65f1d08866888c7d1942596967c57d662a067905f4a2d96c12db4aefd0e
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.1021.0":
version: 3.1021.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.1021.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.26"
"@aws-sdk/credential-provider-node": "npm:^3.972.29"
"@aws-sdk/middleware-host-header": "npm:^3.972.8"
"@aws-sdk/middleware-logger": "npm:^3.972.8"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.9"
"@aws-sdk/middleware-user-agent": "npm:^3.972.28"
"@aws-sdk/region-config-resolver": "npm:^3.972.10"
"@aws-sdk/types": "npm:^3.973.6"
"@aws-sdk/util-endpoints": "npm:^3.996.5"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.8"
"@aws-sdk/util-user-agent-node": "npm:^3.973.14"
"@smithy/config-resolver": "npm:^4.4.13"
"@smithy/core": "npm:^3.23.13"
"@smithy/fetch-http-handler": "npm:^5.3.15"
"@smithy/hash-node": "npm:^4.2.12"
"@smithy/invalid-dependency": "npm:^4.2.12"
"@smithy/middleware-content-length": "npm:^4.2.12"
"@smithy/middleware-endpoint": "npm:^4.4.28"
"@smithy/middleware-retry": "npm:^4.4.46"
"@smithy/middleware-serde": "npm:^4.2.16"
"@smithy/middleware-stack": "npm:^4.2.12"
"@smithy/node-config-provider": "npm:^4.3.12"
"@smithy/node-http-handler": "npm:^4.5.1"
"@smithy/protocol-http": "npm:^5.3.12"
"@smithy/smithy-client": "npm:^4.12.8"
"@smithy/types": "npm:^4.13.1"
"@smithy/url-parser": "npm:^4.2.12"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.44"
"@smithy/util-defaults-mode-node": "npm:^4.2.48"
"@smithy/util-endpoints": "npm:^3.3.3"
"@smithy/util-middleware": "npm:^4.2.12"
"@smithy/util-retry": "npm:^4.2.13"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/6155690fc60faa685f5bacd88417de0f4342798a14ed586be002ffe26a63acb8a52aecc4ee1f496621abc5e6109b19684342b9f5381d687ce791b4d72d9de5af
languageName: node
linkType: hard
"@aws-sdk/client-ec2@npm:3.1021.0":
version: 3.1021.0
resolution: "@aws-sdk/client-ec2@npm:3.1021.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.26"
"@aws-sdk/credential-provider-node": "npm:^3.972.29"
"@aws-sdk/middleware-host-header": "npm:^3.972.8"
"@aws-sdk/middleware-logger": "npm:^3.972.8"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.9"
"@aws-sdk/middleware-sdk-ec2": "npm:^3.972.18"
"@aws-sdk/middleware-user-agent": "npm:^3.972.28"
"@aws-sdk/region-config-resolver": "npm:^3.972.10"
"@aws-sdk/types": "npm:^3.973.6"
"@aws-sdk/util-endpoints": "npm:^3.996.5"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.8"
"@aws-sdk/util-user-agent-node": "npm:^3.973.14"
"@smithy/config-resolver": "npm:^4.4.13"
"@smithy/core": "npm:^3.23.13"
"@smithy/fetch-http-handler": "npm:^5.3.15"
"@smithy/hash-node": "npm:^4.2.12"
"@smithy/invalid-dependency": "npm:^4.2.12"
"@smithy/middleware-content-length": "npm:^4.2.12"
"@smithy/middleware-endpoint": "npm:^4.4.28"
"@smithy/middleware-retry": "npm:^4.4.46"
"@smithy/middleware-serde": "npm:^4.2.16"
"@smithy/middleware-stack": "npm:^4.2.12"
"@smithy/node-config-provider": "npm:^4.3.12"
"@smithy/node-http-handler": "npm:^4.5.1"
"@smithy/protocol-http": "npm:^5.3.12"
"@smithy/smithy-client": "npm:^4.12.8"
"@smithy/types": "npm:^4.13.1"
"@smithy/url-parser": "npm:^4.2.12"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.44"
"@smithy/util-defaults-mode-node": "npm:^4.2.48"
"@smithy/util-endpoints": "npm:^3.3.3"
"@smithy/util-middleware": "npm:^4.2.12"
"@smithy/util-retry": "npm:^4.2.13"
"@smithy/util-utf8": "npm:^4.2.2"
"@smithy/util-waiter": "npm:^4.2.14"
tslib: "npm:^2.6.2"
checksum: 10c0/303cfe0b7f04280cc5569e6a6d4a115ba098afa4da7954c2eea45221b88b50e6aec5a1c311686d430e9ca3f919e55f385c055fc696b536fcadf517224f0b3c58
languageName: node
linkType: hard
"@aws-sdk/client-ecr@npm:3.1021.0":
version: 3.1021.0
resolution: "@aws-sdk/client-ecr@npm:3.1021.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.26"
"@aws-sdk/credential-provider-node": "npm:^3.972.29"
"@aws-sdk/middleware-host-header": "npm:^3.972.8"
"@aws-sdk/middleware-logger": "npm:^3.972.8"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.9"
"@aws-sdk/middleware-user-agent": "npm:^3.972.28"
"@aws-sdk/region-config-resolver": "npm:^3.972.10"
"@aws-sdk/types": "npm:^3.973.6"
"@aws-sdk/util-endpoints": "npm:^3.996.5"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.8"
"@aws-sdk/util-user-agent-node": "npm:^3.973.14"
"@smithy/config-resolver": "npm:^4.4.13"
"@smithy/core": "npm:^3.23.13"
"@smithy/fetch-http-handler": "npm:^5.3.15"
"@smithy/hash-node": "npm:^4.2.12"
"@smithy/invalid-dependency": "npm:^4.2.12"
"@smithy/middleware-content-length": "npm:^4.2.12"
"@smithy/middleware-endpoint": "npm:^4.4.28"
"@smithy/middleware-retry": "npm:^4.4.46"
"@smithy/middleware-serde": "npm:^4.2.16"
"@smithy/middleware-stack": "npm:^4.2.12"
"@smithy/node-config-provider": "npm:^4.3.12"
"@smithy/node-http-handler": "npm:^4.5.1"
"@smithy/protocol-http": "npm:^5.3.12"
"@smithy/smithy-client": "npm:^4.12.8"
"@smithy/types": "npm:^4.13.1"
"@smithy/url-parser": "npm:^4.2.12"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.44"
"@smithy/util-defaults-mode-node": "npm:^4.2.48"
"@smithy/util-endpoints": "npm:^3.3.3"
"@smithy/util-middleware": "npm:^4.2.12"
"@smithy/util-retry": "npm:^4.2.13"
"@smithy/util-utf8": "npm:^4.2.2"
"@smithy/util-waiter": "npm:^4.2.14"
tslib: "npm:^2.6.2"
checksum: 10c0/eced104870ed9fc82529059175fdfd305e8b75b51aa6910286662231a15ceccac82e7d2f1ce935319b6761b0558651492094963c3fff9447cd5e5dae9014729b
languageName: node
linkType: hard
"@aws-sdk/client-eks@npm:3.1021.0":
version: 3.1021.0
resolution: "@aws-sdk/client-eks@npm:3.1021.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.26"
"@aws-sdk/credential-provider-node": "npm:^3.972.29"
"@aws-sdk/middleware-host-header": "npm:^3.972.8"
"@aws-sdk/middleware-logger": "npm:^3.972.8"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.9"
"@aws-sdk/middleware-user-agent": "npm:^3.972.28"
"@aws-sdk/region-config-resolver": "npm:^3.972.10"
"@aws-sdk/types": "npm:^3.973.6"
"@aws-sdk/util-endpoints": "npm:^3.996.5"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.8"
"@aws-sdk/util-user-agent-node": "npm:^3.973.14"
"@smithy/config-resolver": "npm:^4.4.13"
"@smithy/core": "npm:^3.23.13"
"@smithy/fetch-http-handler": "npm:^5.3.15"
"@smithy/hash-node": "npm:^4.2.12"
"@smithy/invalid-dependency": "npm:^4.2.12"
"@smithy/middleware-content-length": "npm:^4.2.12"
"@smithy/middleware-endpoint": "npm:^4.4.28"
"@smithy/middleware-retry": "npm:^4.4.46"
"@smithy/middleware-serde": "npm:^4.2.16"
"@smithy/middleware-stack": "npm:^4.2.12"
"@smithy/node-config-provider": "npm:^4.3.12"
"@smithy/node-http-handler": "npm:^4.5.1"
"@smithy/protocol-http": "npm:^5.3.12"
"@smithy/smithy-client": "npm:^4.12.8"
"@smithy/types": "npm:^4.13.1"
"@smithy/url-parser": "npm:^4.2.12"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.44"
"@smithy/util-defaults-mode-node": "npm:^4.2.48"
"@smithy/util-endpoints": "npm:^3.3.3"
"@smithy/util-middleware": "npm:^4.2.12"
"@smithy/util-retry": "npm:^4.2.13"
"@smithy/util-utf8": "npm:^4.2.2"
"@smithy/util-waiter": "npm:^4.2.14"
tslib: "npm:^2.6.2"
checksum: 10c0/2b4bb314f3132c23d2b5ede99f89475c214e4060de73cedc86f888a26cb90993627c83d055fffd94f3c425bbd09e9ca10ebc373dc4c0c30f2fc2169deecc99eb
languageName: node
linkType: hard
"@aws-sdk/client-rds@npm:3.1021.0":
version: 3.1021.0
resolution: "@aws-sdk/client-rds@npm:3.1021.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.973.26"
"@aws-sdk/credential-provider-node": "npm:^3.972.29"
"@aws-sdk/middleware-host-header": "npm:^3.972.8"
"@aws-sdk/middleware-logger": "npm:^3.972.8"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.9"
"@aws-sdk/middleware-sdk-rds": "npm:^3.972.18"
"@aws-sdk/middleware-user-agent": "npm:^3.972.28"
"@aws-sdk/region-config-resolver": "npm:^3.972.10"
"@aws-sdk/types": "npm:^3.973.6"
"@aws-sdk/util-endpoints": "npm:^3.996.5"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.8"
"@aws-sdk/util-user-agent-node": "npm:^3.973.14"
"@smithy/config-resolver": "npm:^4.4.13"
"@smithy/core": "npm:^3.23.13"
"@smithy/fetch-http-handler": "npm:^5.3.15"
"@smithy/hash-node": "npm:^4.2.12"
"@smithy/invalid-dependency": "npm:^4.2.12"
"@smithy/middleware-content-length": "npm:^4.2.12"
"@smithy/middleware-endpoint": "npm:^4.4.28"
"@smithy/middleware-retry": "npm:^4.4.46"
"@smithy/middleware-serde": "npm:^4.2.16"
"@smithy/middleware-stack": "npm:^4.2.12"
"@smithy/node-config-provider": "npm:^4.3.12"
"@smithy/node-http-handler": "npm:^4.5.1"
"@smithy/protocol-http": "npm:^5.3.12"
"@smithy/smithy-client": "npm:^4.12.8"
"@smithy/types": "npm:^4.13.1"
"@smithy/url-parser": "npm:^4.2.12"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.44"
"@smithy/util-defaults-mode-node": "npm:^4.2.48"
"@smithy/util-endpoints": "npm:^3.3.3"
"@smithy/util-middleware": "npm:^4.2.12"
"@smithy/util-retry": "npm:^4.2.13"
"@smithy/util-utf8": "npm:^4.2.2"
"@smithy/util-waiter": "npm:^4.2.14"
tslib: "npm:^2.6.2"
checksum: 10c0/9161ca8390a8061df0faebfbf4fe2b2ffb89dc3aa4333ab356eaf67ed474014ab49f2e79de12ab0ead90175d9937523c180a1dc0a9d0399b5ed3eae81ec9e76c
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:3.1021.0":
version: 3.1021.0
resolution: "@aws-sdk/client-s3@npm:3.1021.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.26"
"@aws-sdk/credential-provider-node": "npm:^3.972.29"
"@aws-sdk/middleware-bucket-endpoint": "npm:^3.972.8"
"@aws-sdk/middleware-expect-continue": "npm:^3.972.8"
"@aws-sdk/middleware-flexible-checksums": "npm:^3.974.6"
"@aws-sdk/middleware-host-header": "npm:^3.972.8"
"@aws-sdk/middleware-location-constraint": "npm:^3.972.8"
"@aws-sdk/middleware-logger": "npm:^3.972.8"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.9"
"@aws-sdk/middleware-sdk-s3": "npm:^3.972.27"
"@aws-sdk/middleware-ssec": "npm:^3.972.8"
"@aws-sdk/middleware-user-agent": "npm:^3.972.28"
"@aws-sdk/region-config-resolver": "npm:^3.972.10"
"@aws-sdk/signature-v4-multi-region": "npm:^3.996.15"
"@aws-sdk/types": "npm:^3.973.6"
"@aws-sdk/util-endpoints": "npm:^3.996.5"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.8"
"@aws-sdk/util-user-agent-node": "npm:^3.973.14"
"@smithy/config-resolver": "npm:^4.4.13"
"@smithy/core": "npm:^3.23.13"
"@smithy/eventstream-serde-browser": "npm:^4.2.12"
"@smithy/eventstream-serde-config-resolver": "npm:^4.3.12"
"@smithy/eventstream-serde-node": "npm:^4.2.12"
"@smithy/fetch-http-handler": "npm:^5.3.15"
"@smithy/hash-blob-browser": "npm:^4.2.13"
"@smithy/hash-node": "npm:^4.2.12"
"@smithy/hash-stream-node": "npm:^4.2.12"
"@smithy/invalid-dependency": "npm:^4.2.12"
"@smithy/md5-js": "npm:^4.2.12"
"@smithy/middleware-content-length": "npm:^4.2.12"
"@smithy/middleware-endpoint": "npm:^4.4.28"
"@smithy/middleware-retry": "npm:^4.4.46"
"@smithy/middleware-serde": "npm:^4.2.16"
"@smithy/middleware-stack": "npm:^4.2.12"
"@smithy/node-config-provider": "npm:^4.3.12"
"@smithy/node-http-handler": "npm:^4.5.1"
"@smithy/protocol-http": "npm:^5.3.12"
"@smithy/smithy-client": "npm:^4.12.8"
"@smithy/types": "npm:^4.13.1"
"@smithy/url-parser": "npm:^4.2.12"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.44"
"@smithy/util-defaults-mode-node": "npm:^4.2.48"
"@smithy/util-endpoints": "npm:^3.3.3"
"@smithy/util-middleware": "npm:^4.2.12"
"@smithy/util-retry": "npm:^4.2.13"
"@smithy/util-stream": "npm:^4.5.21"
"@smithy/util-utf8": "npm:^4.2.2"
"@smithy/util-waiter": "npm:^4.2.14"
tslib: "npm:^2.6.2"
checksum: 10c0/b3927e58964c5ab4a9bf0e8814cbc6fcef908f55408a8523be7bb8138156a26b2022a685d41f3aaabd943846c9d08de8e1162be1cf0f1cdd81efb41fadbbf10d
languageName: node
linkType: hard
"@aws-sdk/core@npm:^3.973.26, @aws-sdk/core@npm:^3.974.3":
version: 3.974.3
resolution: "@aws-sdk/core@npm:3.974.3"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/xml-builder": "npm:^3.972.18"
"@smithy/core": "npm:^3.23.16"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/signature-v4": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.12"
"@smithy/types": "npm:^4.14.1"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-retry": "npm:^4.3.3"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/c01b3bdfe6e84dea47b076b74ff151fa9b1fa54dfeedda439ffde205554aadcc60b43c7e8422204544431c44393b04eaa3bcb168ce3560ff77cdcfbef49edaa0
languageName: node
linkType: hard
"@aws-sdk/crc64-nvme@npm:^3.972.7":
version: 3.972.7
resolution: "@aws-sdk/crc64-nvme@npm:3.972.7"
dependencies:
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/c6f23e4e4c06b98009264b511567bb808d4c4f53c1da9b41f5c975f5f9f5e4b11af16e7add850e7bba29731b6efb145eb4dc0538d9639d6a5daaceadb4acf35d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-cognito-identity@npm:^3.972.21":
version: 3.972.26
resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.972.26"
dependencies:
"@aws-sdk/nested-clients": "npm:^3.997.1"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/a37840119d45ecc73f774829cd5198c6654636ae9877962179cdfecc066210370f19cdfd9f785b49af7847147a59eeeb85a1f102adc072a7dde749dc482301d8
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:^3.972.24, @aws-sdk/credential-provider-env@npm:^3.972.29":
version: 3.972.29
resolution: "@aws-sdk/credential-provider-env@npm:3.972.29"
dependencies:
"@aws-sdk/core": "npm:^3.974.3"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/3cac752e7485ab182aea4993e603c44f318d6b507f3609b6a3d9f19c5ec02c09204680e7308bf4eac51a7e48942c7abf6e0e9f8ba0bc3344b12701685e806412
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:^3.972.26, @aws-sdk/credential-provider-http@npm:^3.972.31":
version: 3.972.31
resolution: "@aws-sdk/credential-provider-http@npm:3.972.31"
dependencies:
"@aws-sdk/core": "npm:^3.974.3"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/fetch-http-handler": "npm:^5.3.17"
"@smithy/node-http-handler": "npm:^4.6.0"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.12"
"@smithy/types": "npm:^4.14.1"
"@smithy/util-stream": "npm:^4.5.24"
tslib: "npm:^2.6.2"
checksum: 10c0/c0931699b8889d44cc9c0beee888ff04b8a642e2dc2aa2e0f85c30cc9705b3c5bb2ce220a14438c82f66d6970fc919cee975a8c40524f9d37e7cba79582ef66f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:^3.972.28, @aws-sdk/credential-provider-ini@npm:^3.972.33":
version: 3.972.33
resolution: "@aws-sdk/credential-provider-ini@npm:3.972.33"
dependencies:
"@aws-sdk/core": "npm:^3.974.3"
"@aws-sdk/credential-provider-env": "npm:^3.972.29"
"@aws-sdk/credential-provider-http": "npm:^3.972.31"
"@aws-sdk/credential-provider-login": "npm:^3.972.33"
"@aws-sdk/credential-provider-process": "npm:^3.972.29"
"@aws-sdk/credential-provider-sso": "npm:^3.972.33"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.33"
"@aws-sdk/nested-clients": "npm:^3.997.1"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/credential-provider-imds": "npm:^4.2.14"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/shared-ini-file-loader": "npm:^4.4.9"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/538a5407f13f8071ee541d9ad2bfa311a38d4f1a15783104578f4d091bed8755784448ad780e6526f192e9a115e6a44e933f74575621d5c3b96bdc14b1a0d4bd
languageName: node
linkType: hard
"@aws-sdk/credential-provider-login@npm:^3.972.28, @aws-sdk/credential-provider-login@npm:^3.972.33":
version: 3.972.33
resolution: "@aws-sdk/credential-provider-login@npm:3.972.33"
dependencies:
"@aws-sdk/core": "npm:^3.974.3"
"@aws-sdk/nested-clients": "npm:^3.997.1"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/shared-ini-file-loader": "npm:^4.4.9"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/a1edbddcb2d8e6a6c62972f3f2ac8a16a8c50e37d743c55c408370146a4c6742dd5b7cb00cb4fb82ea272ad6698f9451eb75de796c26d09b5014b0d1d4a3d9ed
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:^3.972.29":
version: 3.972.34
resolution: "@aws-sdk/credential-provider-node@npm:3.972.34"
dependencies:
"@aws-sdk/credential-provider-env": "npm:^3.972.29"
"@aws-sdk/credential-provider-http": "npm:^3.972.31"
"@aws-sdk/credential-provider-ini": "npm:^3.972.33"
"@aws-sdk/credential-provider-process": "npm:^3.972.29"
"@aws-sdk/credential-provider-sso": "npm:^3.972.33"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.33"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/credential-provider-imds": "npm:^4.2.14"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/shared-ini-file-loader": "npm:^4.4.9"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/ed471fe5fb0150fcf3bd543ab93d6cfda2f419edc5bdefcea1e8e082bc03564bb2903994c2968e1344ee9783e93683711262ce936aa91c01dd8b60ac25fbb669
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:^3.972.24, @aws-sdk/credential-provider-process@npm:^3.972.29":
version: 3.972.29
resolution: "@aws-sdk/credential-provider-process@npm:3.972.29"
dependencies:
"@aws-sdk/core": "npm:^3.974.3"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/shared-ini-file-loader": "npm:^4.4.9"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/fe6e230ab2f290e409706430c4526c92e0379d73f80f94728e984c37c649e585b801aa0704e8b6fed49c2c26ae732c36c8c562a877cf0747e94e58406351c2c2
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:^3.972.28, @aws-sdk/credential-provider-sso@npm:^3.972.33":
version: 3.972.33
resolution: "@aws-sdk/credential-provider-sso@npm:3.972.33"
dependencies:
"@aws-sdk/core": "npm:^3.974.3"
"@aws-sdk/nested-clients": "npm:^3.997.1"
"@aws-sdk/token-providers": "npm:3.1034.0"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/shared-ini-file-loader": "npm:^4.4.9"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/52636a662ed894c6af49a2515d119127be3bc67a262d3a5b569b55d73f97f53ec409333db31baeaa3eb209ed998b59d35c479057f5d111399c08e531a4f4d1c7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:^3.972.28, @aws-sdk/credential-provider-web-identity@npm:^3.972.33":
version: 3.972.33
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.33"
dependencies:
"@aws-sdk/core": "npm:^3.974.3"
"@aws-sdk/nested-clients": "npm:^3.997.1"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/shared-ini-file-loader": "npm:^4.4.9"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/bc6404a1941b60d6fc6c18c1d4e2066ad9e4aa307c006891a58e44dd4283fc7e0092b85d0076ef80f7fa25f1d9b2c93502dcee1a092fc8d0f5537a04b723eab8
languageName: node
linkType: hard
"@aws-sdk/credential-providers@npm:3.1021.0":
version: 3.1021.0
resolution: "@aws-sdk/credential-providers@npm:3.1021.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.1021.0"
"@aws-sdk/core": "npm:^3.973.26"
"@aws-sdk/credential-provider-cognito-identity": "npm:^3.972.21"
"@aws-sdk/credential-provider-env": "npm:^3.972.24"
"@aws-sdk/credential-provider-http": "npm:^3.972.26"
"@aws-sdk/credential-provider-ini": "npm:^3.972.28"
"@aws-sdk/credential-provider-login": "npm:^3.972.28"
"@aws-sdk/credential-provider-node": "npm:^3.972.29"
"@aws-sdk/credential-provider-process": "npm:^3.972.24"
"@aws-sdk/credential-provider-sso": "npm:^3.972.28"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.28"
"@aws-sdk/nested-clients": "npm:^3.996.18"
"@aws-sdk/types": "npm:^3.973.6"
"@smithy/config-resolver": "npm:^4.4.13"
"@smithy/core": "npm:^3.23.13"
"@smithy/credential-provider-imds": "npm:^4.2.12"
"@smithy/node-config-provider": "npm:^4.3.12"
"@smithy/property-provider": "npm:^4.2.12"
"@smithy/types": "npm:^4.13.1"
tslib: "npm:^2.6.2"
checksum: 10c0/bfb0fe54d9272ef83e074758ca8b6061c6365a076f0e7d18981d580ecb6bc335ba9d854d5f524a2e3aebf7d0408102c89589fc25f6ce386bfb9998f946139a86
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:^3.972.8":
version: 3.972.10
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.972.10"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-arn-parser": "npm:^3.972.3"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/types": "npm:^4.14.1"
"@smithy/util-config-provider": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/5529288142e0ebfbd985a257dbbb0f3510981a6ef56ce449465458ca12f7bcbbb9bfba9e1788c925329443604d4a438275f30254ef1d47e7931da798fb6e6765
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:^3.972.8":
version: 3.972.10
resolution: "@aws-sdk/middleware-expect-continue@npm:3.972.10"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/c91588169621597bed09aa53f9bf858b83a0c8b8b84d6838ed3729c8222a7b7d5819595fd2617ca8f859e8471ca7e7132bb7d1694d5ada17039dea53cc707e4b
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:^3.974.6":
version: 3.974.11
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.974.11"
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.974.3"
"@aws-sdk/crc64-nvme": "npm:^3.972.7"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/is-array-buffer": "npm:^4.2.2"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/types": "npm:^4.14.1"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-stream": "npm:^4.5.24"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/31b41c97ebf3d56b28850358494b999f8bb30e96cbf2bdf2bcd815a7c4436623950a193ea7539b57b7d72835613c774af6ec6d50c5c2a7df6ae2b1f94910810e
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:^3.972.10, @aws-sdk/middleware-host-header@npm:^3.972.8":
version: 3.972.10
resolution: "@aws-sdk/middleware-host-header@npm:3.972.10"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/e631b48f8d8fd40f8977da8d1fc012208f953000dd5645dc0a700c7283af8fafb996c9c1c50e40b8392c402ad98d11e0ddddb949896db5163a7f06e2385e619a
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:^3.972.8":
version: 3.972.10
resolution: "@aws-sdk/middleware-location-constraint@npm:3.972.10"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/ef8ef1f3cf7d28e5b02edcc2b62cab07a380f7a02983bdfcaf24fbea35129c53ac5a1f5846ab28212b649d6c81f437e2a846f1f954fb374509ea174201bf09d4
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:^3.972.10, @aws-sdk/middleware-logger@npm:^3.972.8":
version: 3.972.10
resolution: "@aws-sdk/middleware-logger@npm:3.972.10"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/a24e0c98b3cf6c9b7960bf8979d2ab8f839fb89294ba8943136d99dbe7370cc45b010460ed7f5bf14ab6ad8e113ccec6387cf1bda655bcbdb58722df21d9b713
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:^3.972.11, @aws-sdk/middleware-recursion-detection@npm:^3.972.9":
version: 3.972.11
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.972.11"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@aws/lambda-invoke-store": "npm:^0.2.2"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/e52501b00e79e714218897ddec9edd40ecf33fdb43c19b00195c8ed71c8295d0d148f07465465d464f103a23aa535dc1daf60bbb5b95303e330767a5eba78f54
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-ec2@npm:^3.972.18":
version: 3.972.21
resolution: "@aws-sdk/middleware-sdk-ec2@npm:3.972.21"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-format-url": "npm:^3.972.10"
"@smithy/middleware-endpoint": "npm:^4.4.31"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/signature-v4": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.12"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/8a7698a62629498b95efcac83d11bf211bb7c42e424a237fe9228ca4203e3e00006c93b50c84d6ef538a5b858ee3a9b4d5682fd3d2ff2cbba8a82f8a661519a8
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-rds@npm:^3.972.18":
version: 3.972.21
resolution: "@aws-sdk/middleware-sdk-rds@npm:3.972.21"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-format-url": "npm:^3.972.10"
"@smithy/middleware-endpoint": "npm:^4.4.31"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/signature-v4": "npm:^5.3.14"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/29706561998a4459ee1be34c3e64bd878ed2f0e2516f1fd48a633388a7d877fa543d2a35333d9bf1c6882cf9d483050f58c73712206c9c508754176f6597c890
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:^3.972.27, @aws-sdk/middleware-sdk-s3@npm:^3.972.32":
version: 3.972.32
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.972.32"
dependencies:
"@aws-sdk/core": "npm:^3.974.3"
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-arn-parser": "npm:^3.972.3"
"@smithy/core": "npm:^3.23.16"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/signature-v4": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.12"
"@smithy/types": "npm:^4.14.1"
"@smithy/util-config-provider": "npm:^4.2.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-stream": "npm:^4.5.24"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/0248c7265c370ccb9326789a312e97cf126d433a649ce916cb05acd06b495222906cb8fb2a06756a521e1b3f2bcaa7fdc5257b6329e97354cee7436a42f84791
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:^3.972.8":
version: 3.972.10
resolution: "@aws-sdk/middleware-ssec@npm:3.972.10"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/13e11c485e63d6b3d8a5f14888c6b8aea1c0a96a99826e840840b6974b9605b5f528f8869b021036e8615995d9e5ecd33d6e67af1561ed673d37292d356ca441
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:^3.972.28, @aws-sdk/middleware-user-agent@npm:^3.972.33":
version: 3.972.33
resolution: "@aws-sdk/middleware-user-agent@npm:3.972.33"
dependencies:
"@aws-sdk/core": "npm:^3.974.3"
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-endpoints": "npm:^3.996.8"
"@smithy/core": "npm:^3.23.16"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/types": "npm:^4.14.1"
"@smithy/util-retry": "npm:^4.3.3"
tslib: "npm:^2.6.2"
checksum: 10c0/415c8a5fe027df490655376140a0da5d2441c976cdc11482b3add31a73f79e88d930cd9c58adf43026613845a41988791cd66077550c1401a938ecd632470687
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:^3.996.18, @aws-sdk/nested-clients@npm:^3.997.1":
version: 3.997.1
resolution: "@aws-sdk/nested-clients@npm:3.997.1"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.974.3"
"@aws-sdk/middleware-host-header": "npm:^3.972.10"
"@aws-sdk/middleware-logger": "npm:^3.972.10"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.11"
"@aws-sdk/middleware-user-agent": "npm:^3.972.33"
"@aws-sdk/region-config-resolver": "npm:^3.972.13"
"@aws-sdk/signature-v4-multi-region": "npm:^3.996.20"
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-endpoints": "npm:^3.996.8"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.10"
"@aws-sdk/util-user-agent-node": "npm:^3.973.19"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/core": "npm:^3.23.16"
"@smithy/fetch-http-handler": "npm:^5.3.17"
"@smithy/hash-node": "npm:^4.2.14"
"@smithy/invalid-dependency": "npm:^4.2.14"
"@smithy/middleware-content-length": "npm:^4.2.14"
"@smithy/middleware-endpoint": "npm:^4.4.31"
"@smithy/middleware-retry": "npm:^4.5.4"
"@smithy/middleware-serde": "npm:^4.2.19"
"@smithy/middleware-stack": "npm:^4.2.14"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/node-http-handler": "npm:^4.6.0"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.12"
"@smithy/types": "npm:^4.14.1"
"@smithy/url-parser": "npm:^4.2.14"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.48"
"@smithy/util-defaults-mode-node": "npm:^4.2.53"
"@smithy/util-endpoints": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-retry": "npm:^4.3.3"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/c502e568f0b2d380070c5042e63cadc0f1775b7857523d420392101be31ccb9ca6b031fa8cff37ee2d5b73cad68be22b059eccd6946e9e217dfd655ec041fcff
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:^3.972.10, @aws-sdk/region-config-resolver@npm:^3.972.13":
version: 3.972.13
resolution: "@aws-sdk/region-config-resolver@npm:3.972.13"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/8cc3e5433ccf9ec4efb6d12ccd924701cfd6fb018124c9e5106486da10402ea1b83b0855353dae5e0f31ad2c7b6d962ac832350a5cdbeda59a30231525fd1118
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:^3.996.15, @aws-sdk/signature-v4-multi-region@npm:^3.996.20":
version: 3.996.20
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.996.20"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:^3.972.32"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/signature-v4": "npm:^5.3.14"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/4c8e45e6280536c46e644c8a78b0f766cf607d7f39705fa855006f9d70cf5142f5d2b2ed4ed047a69e2016242fa789d8e292e2121a98a971ce2c4e58d895d845
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.1034.0":
version: 3.1034.0
resolution: "@aws-sdk/token-providers@npm:3.1034.0"
dependencies:
"@aws-sdk/core": "npm:^3.974.3"
"@aws-sdk/nested-clients": "npm:^3.997.1"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/shared-ini-file-loader": "npm:^4.4.9"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/3359faee749eccda7092bf4174b967e083ff1359730e6b7b66d18a998ddf5b662c5e7bb3836a2a061989ab245afa9ff4b8efc10334fa967bef1227ac724b9365
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0, @aws-sdk/types@npm:^3.973.6, @aws-sdk/types@npm:^3.973.8":
version: 3.973.8
resolution: "@aws-sdk/types@npm:3.973.8"
dependencies:
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/4823579e7dd0f6dcce9e9fea9630091eb46e3596bc468614a072f682b1eab6f048854ccf5e9398459ada175c13dfc636ffa8c1d3aa655cf6f22447f9c1a02f7f
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:^3.972.3":
version: 3.972.3
resolution: "@aws-sdk/util-arn-parser@npm:3.972.3"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/75c94dcd5d99a60375ce3474b0ee4f1ca17abdcd46ffbf34ce9d2e15238d77903c8993dddd46f1f328a7989c5aaec0c7dfef8b3eaa3e1125bea777399cfc46f2
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:^3.996.5, @aws-sdk/util-endpoints@npm:^3.996.8":
version: 3.996.8
resolution: "@aws-sdk/util-endpoints@npm:3.996.8"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/types": "npm:^4.14.1"
"@smithy/url-parser": "npm:^4.2.14"
"@smithy/util-endpoints": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/66f17e85357ab8e265ab7d1c9a69a064ad3bea99420c786be9ef1f92bc71dca22d328bbceeaf6c64b4a3c37161b78318a3e4a424bf247dcb211d7ae29344db2f
languageName: node
linkType: hard
"@aws-sdk/util-format-url@npm:^3.972.10":
version: 3.972.10
resolution: "@aws-sdk/util-format-url@npm:3.972.10"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/querystring-builder": "npm:^4.2.14"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/d97445228f8ae9f8b7b53659e57d68c28f406d025d2902c6d1ba9bbb386d990011951d77f5a3d82360dc7bc5fd39a12c5e8bc27975ede72e586466597857cd19
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.965.5
resolution: "@aws-sdk/util-locate-window@npm:3.965.5"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/f5e33a4d7cbfd832ce4bf35b0e532bcabb4084e9b17d45903bccd43f0e221366a423b6acdea8c705ec66b9776f1e624fd640ad716f7446d014e698249d091e83
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:^3.972.10, @aws-sdk/util-user-agent-browser@npm:^3.972.8":
version: 3.972.10
resolution: "@aws-sdk/util-user-agent-browser@npm:3.972.10"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/types": "npm:^4.14.1"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e139dda2cb51a0a3553c80ec6f89c39cb1292876c116f8449f21a7fdbe39bd7b545ef8ea69a447dd9fa2aa43c99f625ee6a55cbf6d8e6cf2094d0ef00ceb1e36
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:^3.973.14, @aws-sdk/util-user-agent-node@npm:^3.973.19":
version: 3.973.19
resolution: "@aws-sdk/util-user-agent-node@npm:3.973.19"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:^3.972.33"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/types": "npm:^4.14.1"
"@smithy/util-config-provider": "npm:^4.2.2"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt: