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