-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathyarn.lock
9940 lines (9017 loc) · 355 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
"@ampproject/remapping@npm:^2.2.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10c0/81d63cca5443e0f0c72ae18b544cc28c7c0ec2cea46e7cb888bb0e0f411a1191d0d6b7af798d54e30777d8d1488b2ec0732aac2be342d3d7d3ffd271c6f489ed
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":
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-s3@npm:^3.337.0":
version: 3.609.0
resolution: "@aws-sdk/client-s3@npm:3.609.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.609.0"
"@aws-sdk/client-sts": "npm:3.609.0"
"@aws-sdk/core": "npm:3.609.0"
"@aws-sdk/credential-provider-node": "npm:3.609.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.609.0"
"@aws-sdk/middleware-expect-continue": "npm:3.609.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.609.0"
"@aws-sdk/middleware-host-header": "npm:3.609.0"
"@aws-sdk/middleware-location-constraint": "npm:3.609.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.609.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.609.0"
"@aws-sdk/middleware-signing": "npm:3.609.0"
"@aws-sdk/middleware-ssec": "npm:3.609.0"
"@aws-sdk/middleware-user-agent": "npm:3.609.0"
"@aws-sdk/region-config-resolver": "npm:3.609.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.609.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.609.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.609.0"
"@aws-sdk/xml-builder": "npm:3.609.0"
"@smithy/config-resolver": "npm:^3.0.4"
"@smithy/core": "npm:^2.2.4"
"@smithy/eventstream-serde-browser": "npm:^3.0.4"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.3"
"@smithy/eventstream-serde-node": "npm:^3.0.4"
"@smithy/fetch-http-handler": "npm:^3.2.0"
"@smithy/hash-blob-browser": "npm:^3.1.2"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/hash-stream-node": "npm:^3.1.2"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/md5-js": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.3"
"@smithy/middleware-endpoint": "npm:^3.0.4"
"@smithy/middleware-retry": "npm:^3.0.7"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.3"
"@smithy/node-http-handler": "npm:^3.1.1"
"@smithy/protocol-http": "npm:^4.0.3"
"@smithy/smithy-client": "npm:^3.1.5"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@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.7"
"@smithy/util-defaults-mode-node": "npm:^3.0.7"
"@smithy/util-endpoints": "npm:^2.0.4"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-stream": "npm:^3.0.5"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.2"
tslib: "npm:^2.6.2"
checksum: 10c0/3674ea1256de99ab356b113ed8f6373123947c5895a531401f3c6b84a349840d254a4b1684bd863f70590a6ce76988321ae4697f52ff1fedfadc111f79c51434
languageName: node
linkType: hard
"@aws-sdk/client-sqs@npm:3.721.0":
version: 3.721.0
resolution: "@aws-sdk/client-sqs@npm:3.721.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.721.0"
"@aws-sdk/client-sts": "npm:3.721.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/credential-provider-node": "npm:3.721.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-sdk-sqs": "npm:3.716.0"
"@aws-sdk/middleware-user-agent": "npm:3.721.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.721.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/md5-js": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.6"
"@smithy/middleware-retry": "npm:^3.0.31"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@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.31"
"@smithy/util-defaults-mode-node": "npm:^3.0.31"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/cb6b26ea7c0b6ea0705cd509b008901831d2ab5eccf50ddf02e1342fa787f6f0c09cd0ccdf77de676549f84208404f5a5bd4bff97c15ad6d6bcdce455e2e382d
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.609.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.609.0"
"@aws-sdk/credential-provider-node": "npm:3.609.0"
"@aws-sdk/middleware-host-header": "npm:3.609.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.609.0"
"@aws-sdk/middleware-user-agent": "npm:3.609.0"
"@aws-sdk/region-config-resolver": "npm:3.609.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.609.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.609.0"
"@smithy/config-resolver": "npm:^3.0.4"
"@smithy/core": "npm:^2.2.4"
"@smithy/fetch-http-handler": "npm:^3.2.0"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.3"
"@smithy/middleware-endpoint": "npm:^3.0.4"
"@smithy/middleware-retry": "npm:^3.0.7"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.3"
"@smithy/node-http-handler": "npm:^3.1.1"
"@smithy/protocol-http": "npm:^4.0.3"
"@smithy/smithy-client": "npm:^3.1.5"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@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.7"
"@smithy/util-defaults-mode-node": "npm:^3.0.7"
"@smithy/util-endpoints": "npm:^2.0.4"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.609.0
checksum: 10c0/de99021c20fbc5d6bbbed52cd4b5bd4fceb05e7d304a8ea10fb1ac11250d46540fe39355dce36cf658aabb0848e6b373c670895be3c642e354b4c6bee3f30a1b
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.721.0":
version: 3.721.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.721.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/credential-provider-node": "npm:3.721.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-user-agent": "npm:3.721.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.721.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.6"
"@smithy/middleware-retry": "npm:^3.0.31"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@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.31"
"@smithy/util-defaults-mode-node": "npm:^3.0.31"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.721.0
checksum: 10c0/749299eba3e03ae2f93621049642958babb48f4067ce90074e2b6bf279898fd7a13831bfb503a2d1653adf1d4ceed14521b6f3d4b069168f34194cf744e719b4
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/client-sso@npm:3.609.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.609.0"
"@aws-sdk/middleware-host-header": "npm:3.609.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.609.0"
"@aws-sdk/middleware-user-agent": "npm:3.609.0"
"@aws-sdk/region-config-resolver": "npm:3.609.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.609.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.609.0"
"@smithy/config-resolver": "npm:^3.0.4"
"@smithy/core": "npm:^2.2.4"
"@smithy/fetch-http-handler": "npm:^3.2.0"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.3"
"@smithy/middleware-endpoint": "npm:^3.0.4"
"@smithy/middleware-retry": "npm:^3.0.7"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.3"
"@smithy/node-http-handler": "npm:^3.1.1"
"@smithy/protocol-http": "npm:^4.0.3"
"@smithy/smithy-client": "npm:^3.1.5"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@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.7"
"@smithy/util-defaults-mode-node": "npm:^3.0.7"
"@smithy/util-endpoints": "npm:^2.0.4"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a553484cb8e07feb33c5d6b983b3e6b73e59d5b9f6964a88244904c724371d075d03d8b938b9abbfcc198e45d1babab1e6a2c63cce922910a5ee1052ad83853d
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.721.0":
version: 3.721.0
resolution: "@aws-sdk/client-sso@npm:3.721.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-user-agent": "npm:3.721.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.721.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.6"
"@smithy/middleware-retry": "npm:^3.0.31"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@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.31"
"@smithy/util-defaults-mode-node": "npm:^3.0.31"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d0b4b3bead2707d8b327684ce93d45db9bcff6c8c7b2e334acbad5bce74a3dd77f63d6434f9a9de048977e81693dacd7691a847b8480dc03cb07f24163c7a7e1
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/client-sts@npm:3.609.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.609.0"
"@aws-sdk/core": "npm:3.609.0"
"@aws-sdk/credential-provider-node": "npm:3.609.0"
"@aws-sdk/middleware-host-header": "npm:3.609.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.609.0"
"@aws-sdk/middleware-user-agent": "npm:3.609.0"
"@aws-sdk/region-config-resolver": "npm:3.609.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.609.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.609.0"
"@smithy/config-resolver": "npm:^3.0.4"
"@smithy/core": "npm:^2.2.4"
"@smithy/fetch-http-handler": "npm:^3.2.0"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.3"
"@smithy/middleware-endpoint": "npm:^3.0.4"
"@smithy/middleware-retry": "npm:^3.0.7"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.3"
"@smithy/node-http-handler": "npm:^3.1.1"
"@smithy/protocol-http": "npm:^4.0.3"
"@smithy/smithy-client": "npm:^3.1.5"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@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.7"
"@smithy/util-defaults-mode-node": "npm:^3.0.7"
"@smithy/util-endpoints": "npm:^2.0.4"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/cbf31b05f1aa1494130bdcf7ba53f8f53d680aed8baa862573ef9f60bdab6afb79d26c97d363e7ed18ccf2e09f880e8dc66e2c3b28768f3e3891ec5a7f663c75
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.721.0":
version: 3.721.0
resolution: "@aws-sdk/client-sts@npm:3.721.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.721.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/credential-provider-node": "npm:3.721.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-user-agent": "npm:3.721.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.721.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.6"
"@smithy/middleware-retry": "npm:^3.0.31"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@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.31"
"@smithy/util-defaults-mode-node": "npm:^3.0.31"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/38ea61bd2a37f06debf6e97be7a59fd93eee68d5c1c210bed783609eff4df869d3f8e766e0d1e38d9235af84c27242bc110347a0b1ed1556f3aaa8e919065870
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/core@npm:3.609.0"
dependencies:
"@smithy/core": "npm:^2.2.4"
"@smithy/protocol-http": "npm:^4.0.3"
"@smithy/signature-v4": "npm:^3.1.2"
"@smithy/smithy-client": "npm:^3.1.5"
"@smithy/types": "npm:^3.3.0"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.6.2"
checksum: 10c0/1f31f6110c809cb877ff9df4e952d9a239d2076e9bc0bb877f1832f4591bea10b5d881081960009f9f367d3c2818f6361ae8b64bd91cce5a84be923277d6bcad
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/core@npm:3.716.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/core": "npm:^2.5.5"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/signature-v4": "npm:^4.2.4"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-middleware": "npm:^3.0.11"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10c0/d11deccbe6b33f91f951fa317793d56359e87a1871772e429519df2d488929a9d9c230aa6be501446980b8e9c01fc549970c28b6d1eeff23f53955e57b021db7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/credential-provider-env@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/83a07a89113d6c89cfe95a8b3ed2118b251e8d34459dccf5a0ab60dbd55c72021a812dbd8b6df5762f05e6a93ab0c9dee3c558efef76316413401b82849080bb
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-env@npm:3.716.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/00f197f9e5f49f596357b620415d85084150f794cd908838b36d9cb6e537832db530e7975c12a8d66a0e711f5c32c57453131ba1f463392e257ce6f0625a5c2a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/credential-provider-http@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/fetch-http-handler": "npm:^3.2.0"
"@smithy/node-http-handler": "npm:^3.1.1"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/protocol-http": "npm:^4.0.3"
"@smithy/smithy-client": "npm:^3.1.5"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-stream": "npm:^3.0.5"
tslib: "npm:^2.6.2"
checksum: 10c0/fb2eeca64a7f73d23c665c9db0f9895da51823446adb73ca2358b13ecb861432773f9ba3eb40568234e3d05047ecc812101195f162b1ef5e304d8cbc6a2f9c07
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-http@npm:3.716.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-stream": "npm:^3.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/ed342f61d1365b4511392b8eb897bea49b0f7c71ab92bb81748ca036409c1b59eef68cd507e7697e6df2d07f69b7a26bf57172ddde6bed10730152551ba8b603
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.609.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.609.0"
"@aws-sdk/credential-provider-http": "npm:3.609.0"
"@aws-sdk/credential-provider-process": "npm:3.609.0"
"@aws-sdk/credential-provider-sso": "npm:3.609.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.609.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/credential-provider-imds": "npm:^3.1.3"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/shared-ini-file-loader": "npm:^3.1.3"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.609.0
checksum: 10c0/26062403abf787e2b799cf91d25af67aa6a1020bc5f5925e0b428dc5496b29bcbbba1e9e02f63cf38bf05b4f4586cb4ea8f314b0aabcfaa1762510114219954c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.721.0":
version: 3.721.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.721.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/credential-provider-env": "npm:3.716.0"
"@aws-sdk/credential-provider-http": "npm:3.716.0"
"@aws-sdk/credential-provider-process": "npm:3.716.0"
"@aws-sdk/credential-provider-sso": "npm:3.721.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/credential-provider-imds": "npm:^3.2.8"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/shared-ini-file-loader": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.721.0
checksum: 10c0/f5a4d27afb709781f18b9691af4f2a296cc05b34663109a8fb67e7f8fdc314a5cd586b3ea21ea6f2eeb3a8942d59df1f834657446ef270b01505015df2a69360
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/credential-provider-node@npm:3.609.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.609.0"
"@aws-sdk/credential-provider-http": "npm:3.609.0"
"@aws-sdk/credential-provider-ini": "npm:3.609.0"
"@aws-sdk/credential-provider-process": "npm:3.609.0"
"@aws-sdk/credential-provider-sso": "npm:3.609.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.609.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/credential-provider-imds": "npm:^3.1.3"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/shared-ini-file-loader": "npm:^3.1.3"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ffa40d3e028c7470d67cecb724a6f573e2b339f091b44907e6ae700d8bd789e3e5684df4b293c6c1febd8b7bc8aa371758b82ec5631e078f34587d8c2f0c5ed6
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.721.0":
version: 3.721.0
resolution: "@aws-sdk/credential-provider-node@npm:3.721.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.716.0"
"@aws-sdk/credential-provider-http": "npm:3.716.0"
"@aws-sdk/credential-provider-ini": "npm:3.721.0"
"@aws-sdk/credential-provider-process": "npm:3.716.0"
"@aws-sdk/credential-provider-sso": "npm:3.721.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/credential-provider-imds": "npm:^3.2.8"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/shared-ini-file-loader": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/f00269dc2bc4f9defddeb7cd571f48f5abe3098af8765eb36974d351e6f3e87182d8ed05572b954038e596882eb026521646886e0756f8d09b3692d2d8f9e81f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/credential-provider-process@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/shared-ini-file-loader": "npm:^3.1.3"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/65a8dc9cc26ff496733168a86ee1fe94dc28896ad0faf5a6ad19c95c631ce09ebcea186f62016496e9fa39e79949897e5c00206373032384c4f71bf0c71f42e7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-process@npm:3.716.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/shared-ini-file-loader": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/cec748bc9ecf9c029b1e7cdec4722ecae6b4a4653f39c0be03e4901ec9a1745f8d341eb879b374119096490c93dd5746cfc3f1bd0af552462da57e2249646146
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.609.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.609.0"
"@aws-sdk/token-providers": "npm:3.609.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/shared-ini-file-loader": "npm:^3.1.3"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/51311d74f09fead4efefc37f6f24e7b2bb4c7d6b259140adf173624c572bfd52cc5c144f44184cef24c639aeb5a2236adfc4f733a359ab73bcfb7a0353a0dafc
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.721.0":
version: 3.721.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.721.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.721.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/token-providers": "npm:3.721.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/shared-ini-file-loader": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/f4d06ed581d792e412f3b2dc86cae405dff89ae85b7d656aad737c8b5f77731df9162817fafa0f7419fd868fbc2d8f2c299374de3bd4ddafe7b7392e0289a901
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.609.0
checksum: 10c0/d7d2b9a82b5fe2c0001088e8772fb703b67474da908469bbbfa46964c99c79969e3fa6ccb28b2837e0c74a2fac391d14d53c1082b302b38d2410cb5b841f6900
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.716.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.716.0
checksum: 10c0/28e5b97cb7ca314c1013a1af867e0853f9e542bd98105af09e58e824abc30f7cdf14a2cfa2b443d449a89a1d94f046db2014ec001d5a99c5df1d34944a1d5631
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-arn-parser": "npm:3.568.0"
"@smithy/node-config-provider": "npm:^3.1.3"
"@smithy/protocol-http": "npm:^4.0.3"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-config-provider": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/88f4f4472e8ca21e83c224d23d2444fba98300c6feef79e4bbc9aebdc32bd6a1abe0f8438894d132787ff5878830c1ae423eaafb4aa016091ba5e34c7575d55d
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/protocol-http": "npm:^4.0.3"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a3af73eef167f9b0246e47f1cdcc172e9079c1dc1e2d5165a0bb3ad8d494f9c5a1bed1fc0a142596f9198c3d02bd06a6628942105d7120c98dbf7ff6258ef722
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.609.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/is-array-buffer": "npm:^3.0.0"
"@smithy/protocol-http": "npm:^4.0.3"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d139df448139e6c60b036a90c4018751c1efab407108b65c4126ae3282fb232333665a5540c10fb111165d12a054db589e63a74273f846a64430b999a4aae509
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/middleware-host-header@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/protocol-http": "npm:^4.0.3"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/9a845dd2e55c49ef6acab4dfefcb48a3d0301c8508c1b030fd14dda4dcb4a24cfe6e8fdb122c33a0d14a9c5799e117b1a7d61ecfc421b558fc5f5ff476457135
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/middleware-host-header@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/c817ca326e9986fa135cfb94abc000477278fdac01d78e0d7d59cf2f02be89afe6e4c9aeb2c575f49dc29d08ed6593f0df634bd23a61f183a4cb09c50d76a1b9
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1eba2a3a1a003855a69e56f1c54fb2283b30db50bf14130cd042e25805497b7a19539144052c4fa710952d754d1a9e5d680fce09536509cf796a16816c8d506f
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/middleware-logger@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e8d110552fee03c5290f94be8da8bb6c07404c06c68971cf24c89a5a4e08b93f6039a2bf729b173855815dd13e382eda18c31e098e7a40db9c8163b74a7770e7
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/middleware-logger@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/c4ae1cdf3e8569fcab51f3a61cf8ee053e94a5b0efb0b3149178c18e44eb37b2be7f35a7e351fd9cfe21b8178f5a60d53012dc93779529b3d41a0f158a6d4ae4
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/protocol-http": "npm:^4.0.3"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/cd634340fd8dabf386241da5ccfbe381f67a8c5cbec483005310aa1e1a7a5c9aa91880732696a86f5f1b10bb1cdeffc5cc3deb4449deeefbddcb2e80f490a416
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/0a423e6fd930b98a6237849ef2d1d5c50217fb1a78a48e6e6eb73b077588ad295f3e64edc4836702dd8053bb1eac73d5007ff1dfc097f1b66b793cbd98f390cc
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-arn-parser": "npm:3.568.0"
"@smithy/node-config-provider": "npm:^3.1.3"
"@smithy/protocol-http": "npm:^4.0.3"
"@smithy/signature-v4": "npm:^3.1.2"
"@smithy/smithy-client": "npm:^3.1.5"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-config-provider": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a808b2d2c344f35f7122b9c090b0bc323720c866ef687d268b636431d623fde4b96d76b8ecee8a0c6dcbb4d3fe7764b431c71a11a3cb593b45ceecbaaad132c4
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-sqs@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/middleware-sdk-sqs@npm:3.716.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-hex-encoding": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/2faa0d41d37764e483cadca5868fa85a8aa8bc5089b924252b565d2f30cc7394bb0144a39c23b05397f55860a386e4f8d871e210d9646df272b06a11ba681e68
languageName: node
linkType: hard
"@aws-sdk/middleware-signing@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/middleware-signing@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/protocol-http": "npm:^4.0.3"
"@smithy/signature-v4": "npm:^3.1.2"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-middleware": "npm:^3.0.3"
tslib: "npm:^2.6.2"
checksum: 10c0/3480fa8fa8e59552621d8c3f02855b130c5e49d24e031029ac5d4c35a8fe97e8459a2ada9f08d7e505138083f45f43d506c2a66fd4e66732dbe78b0bf0697d34
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/middleware-ssec@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/7688628299c3d3352182634836d8a5ad89d69dfedd91d7386ffeaa8288160329eef7d399321b7841bb4c84c9741d7245ef218657a8df71248b5ce5f7273e303d
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.609.0"
"@smithy/protocol-http": "npm:^4.0.3"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a6ecf118d3329ccc4dd42c09662cb5aa03b0ec4618b49575c13f1a162d9869672160af481ba3a4e6f8771cd1e92c8c9e2dc13c9c006f475093e25a837f99ac2b
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.721.0":
version: 3.721.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.721.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@smithy/core": "npm:^2.5.5"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/9409a5130adfe74eda12c020e522621b3ac25a6e371daee400ffa840f72a28935670d6f5745ddfb9b808fe46f1469c01dcddd945ee7eb0a8c2fc383d71fe0c2b
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/region-config-resolver@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/node-config-provider": "npm:^3.1.3"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.3"
tslib: "npm:^2.6.2"
checksum: 10c0/5fe7e47ef2e8f2653cbee4b7d734d28797d5817adb4611cc2b0a646424ad3b5dc7044af8e840f51ab46faf266db6a1654b64f4de1e7e4602c32c63a7ec493e19
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/region-config-resolver@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.11"
tslib: "npm:^2.6.2"
checksum: 10c0/160e001b060ed2743c74856991207ac47cec1d7e96885d90468548c8ee7113e1de65143a1f417d8fa27f6c57679b89b56d1444ff87c05333d31f3379b55838b3