-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
11975 lines (10795 loc) · 427 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
"@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: 10/14ed60cb45750d386c64229ac7bab20e10eedc193503fa4decff764162d329d6d3363ed2cd3debec833186ee54affe4f824f6e8eff531295117fd1ebda200270
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, @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-codecommit@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/client-codecommit@npm:3.687.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.687.0"
"@aws-sdk/client-sts": "npm:3.687.0"
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/credential-provider-node": "npm:3.687.0"
"@aws-sdk/middleware-host-header": "npm:3.686.0"
"@aws-sdk/middleware-logger": "npm:3.686.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.686.0"
"@aws-sdk/middleware-user-agent": "npm:3.687.0"
"@aws-sdk/region-config-resolver": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@aws-sdk/util-endpoints": "npm:3.686.0"
"@aws-sdk/util-user-agent-browser": "npm:3.686.0"
"@aws-sdk/util-user-agent-node": "npm:3.687.0"
"@smithy/config-resolver": "npm:^3.0.10"
"@smithy/core": "npm:^2.5.1"
"@smithy/fetch-http-handler": "npm:^4.0.0"
"@smithy/hash-node": "npm:^3.0.8"
"@smithy/invalid-dependency": "npm:^3.0.8"
"@smithy/middleware-content-length": "npm:^3.0.10"
"@smithy/middleware-endpoint": "npm:^3.2.1"
"@smithy/middleware-retry": "npm:^3.0.25"
"@smithy/middleware-serde": "npm:^3.0.8"
"@smithy/middleware-stack": "npm:^3.0.8"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/node-http-handler": "npm:^3.2.5"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/smithy-client": "npm:^3.4.2"
"@smithy/types": "npm:^3.6.0"
"@smithy/url-parser": "npm:^3.0.8"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.25"
"@smithy/util-defaults-mode-node": "npm:^3.0.25"
"@smithy/util-endpoints": "npm:^2.1.4"
"@smithy/util-middleware": "npm:^3.0.8"
"@smithy/util-retry": "npm:^3.0.8"
"@smithy/util-utf8": "npm:^3.0.0"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10/a28384a3d2124355bc278584443a7f9a3ff3a9f2628e5a6ef5a261921578e604408126f9442cb1321577d1f09ed4cb726a012ed78863cd7940d98a0de50a7f7d
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.687.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.687.0"
"@aws-sdk/client-sts": "npm:3.687.0"
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/credential-provider-node": "npm:3.687.0"
"@aws-sdk/middleware-host-header": "npm:3.686.0"
"@aws-sdk/middleware-logger": "npm:3.686.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.686.0"
"@aws-sdk/middleware-user-agent": "npm:3.687.0"
"@aws-sdk/region-config-resolver": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@aws-sdk/util-endpoints": "npm:3.686.0"
"@aws-sdk/util-user-agent-browser": "npm:3.686.0"
"@aws-sdk/util-user-agent-node": "npm:3.687.0"
"@smithy/config-resolver": "npm:^3.0.10"
"@smithy/core": "npm:^2.5.1"
"@smithy/fetch-http-handler": "npm:^4.0.0"
"@smithy/hash-node": "npm:^3.0.8"
"@smithy/invalid-dependency": "npm:^3.0.8"
"@smithy/middleware-content-length": "npm:^3.0.10"
"@smithy/middleware-endpoint": "npm:^3.2.1"
"@smithy/middleware-retry": "npm:^3.0.25"
"@smithy/middleware-serde": "npm:^3.0.8"
"@smithy/middleware-stack": "npm:^3.0.8"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/node-http-handler": "npm:^3.2.5"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/smithy-client": "npm:^3.4.2"
"@smithy/types": "npm:^3.6.0"
"@smithy/url-parser": "npm:^3.0.8"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.25"
"@smithy/util-defaults-mode-node": "npm:^3.0.25"
"@smithy/util-endpoints": "npm:^2.1.4"
"@smithy/util-middleware": "npm:^3.0.8"
"@smithy/util-retry": "npm:^3.0.8"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/e25bb6dfe226456e7f1f229c0de956d9b002c0af4d204d8e67051e00d522abcbb67908282133ac10d5a47810d9dc5335ee18396ef8f7aa719015ae65539e3262
languageName: node
linkType: hard
"@aws-sdk/client-ec2@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/client-ec2@npm:3.687.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.687.0"
"@aws-sdk/client-sts": "npm:3.687.0"
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/credential-provider-node": "npm:3.687.0"
"@aws-sdk/middleware-host-header": "npm:3.686.0"
"@aws-sdk/middleware-logger": "npm:3.686.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.686.0"
"@aws-sdk/middleware-sdk-ec2": "npm:3.686.0"
"@aws-sdk/middleware-user-agent": "npm:3.687.0"
"@aws-sdk/region-config-resolver": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@aws-sdk/util-endpoints": "npm:3.686.0"
"@aws-sdk/util-user-agent-browser": "npm:3.686.0"
"@aws-sdk/util-user-agent-node": "npm:3.687.0"
"@smithy/config-resolver": "npm:^3.0.10"
"@smithy/core": "npm:^2.5.1"
"@smithy/fetch-http-handler": "npm:^4.0.0"
"@smithy/hash-node": "npm:^3.0.8"
"@smithy/invalid-dependency": "npm:^3.0.8"
"@smithy/middleware-content-length": "npm:^3.0.10"
"@smithy/middleware-endpoint": "npm:^3.2.1"
"@smithy/middleware-retry": "npm:^3.0.25"
"@smithy/middleware-serde": "npm:^3.0.8"
"@smithy/middleware-stack": "npm:^3.0.8"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/node-http-handler": "npm:^3.2.5"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/smithy-client": "npm:^3.4.2"
"@smithy/types": "npm:^3.6.0"
"@smithy/url-parser": "npm:^3.0.8"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.25"
"@smithy/util-defaults-mode-node": "npm:^3.0.25"
"@smithy/util-endpoints": "npm:^2.1.4"
"@smithy/util-middleware": "npm:^3.0.8"
"@smithy/util-retry": "npm:^3.0.8"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.7"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10/65f122a01e9b77b5c242e5a1229787d4192881b126bb642c0d13d8b9adaf9123f97cfbbd2e29037de67b49adf1fc5246383e12deba400470e2002093a2cb6ab0
languageName: node
linkType: hard
"@aws-sdk/client-ecr@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/client-ecr@npm:3.687.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.687.0"
"@aws-sdk/client-sts": "npm:3.687.0"
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/credential-provider-node": "npm:3.687.0"
"@aws-sdk/middleware-host-header": "npm:3.686.0"
"@aws-sdk/middleware-logger": "npm:3.686.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.686.0"
"@aws-sdk/middleware-user-agent": "npm:3.687.0"
"@aws-sdk/region-config-resolver": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@aws-sdk/util-endpoints": "npm:3.686.0"
"@aws-sdk/util-user-agent-browser": "npm:3.686.0"
"@aws-sdk/util-user-agent-node": "npm:3.687.0"
"@smithy/config-resolver": "npm:^3.0.10"
"@smithy/core": "npm:^2.5.1"
"@smithy/fetch-http-handler": "npm:^4.0.0"
"@smithy/hash-node": "npm:^3.0.8"
"@smithy/invalid-dependency": "npm:^3.0.8"
"@smithy/middleware-content-length": "npm:^3.0.10"
"@smithy/middleware-endpoint": "npm:^3.2.1"
"@smithy/middleware-retry": "npm:^3.0.25"
"@smithy/middleware-serde": "npm:^3.0.8"
"@smithy/middleware-stack": "npm:^3.0.8"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/node-http-handler": "npm:^3.2.5"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/smithy-client": "npm:^3.4.2"
"@smithy/types": "npm:^3.6.0"
"@smithy/url-parser": "npm:^3.0.8"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.25"
"@smithy/util-defaults-mode-node": "npm:^3.0.25"
"@smithy/util-endpoints": "npm:^2.1.4"
"@smithy/util-middleware": "npm:^3.0.8"
"@smithy/util-retry": "npm:^3.0.8"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.7"
tslib: "npm:^2.6.2"
checksum: 10/fab4c05b6544c3429a38cb856a6a2b7543042dac1fe364ecb9985f896068ffb4b7d859090d2cb3f66e072b274d875de37333993356eceee923d8f560c9ae7e64
languageName: node
linkType: hard
"@aws-sdk/client-rds@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/client-rds@npm:3.687.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.687.0"
"@aws-sdk/client-sts": "npm:3.687.0"
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/credential-provider-node": "npm:3.687.0"
"@aws-sdk/middleware-host-header": "npm:3.686.0"
"@aws-sdk/middleware-logger": "npm:3.686.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.686.0"
"@aws-sdk/middleware-sdk-rds": "npm:3.686.0"
"@aws-sdk/middleware-user-agent": "npm:3.687.0"
"@aws-sdk/region-config-resolver": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@aws-sdk/util-endpoints": "npm:3.686.0"
"@aws-sdk/util-user-agent-browser": "npm:3.686.0"
"@aws-sdk/util-user-agent-node": "npm:3.687.0"
"@smithy/config-resolver": "npm:^3.0.10"
"@smithy/core": "npm:^2.5.1"
"@smithy/fetch-http-handler": "npm:^4.0.0"
"@smithy/hash-node": "npm:^3.0.8"
"@smithy/invalid-dependency": "npm:^3.0.8"
"@smithy/middleware-content-length": "npm:^3.0.10"
"@smithy/middleware-endpoint": "npm:^3.2.1"
"@smithy/middleware-retry": "npm:^3.0.25"
"@smithy/middleware-serde": "npm:^3.0.8"
"@smithy/middleware-stack": "npm:^3.0.8"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/node-http-handler": "npm:^3.2.5"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/smithy-client": "npm:^3.4.2"
"@smithy/types": "npm:^3.6.0"
"@smithy/url-parser": "npm:^3.0.8"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.25"
"@smithy/util-defaults-mode-node": "npm:^3.0.25"
"@smithy/util-endpoints": "npm:^2.1.4"
"@smithy/util-middleware": "npm:^3.0.8"
"@smithy/util-retry": "npm:^3.0.8"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.7"
tslib: "npm:^2.6.2"
checksum: 10/075c2c352eb172d4edf49c593093a0500fc25b8cc440b584c80cf095a0fe4b38f2535864a5201010aedd38c0aae8953d55947ce1b377d0ce60544326b7850953
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:3.689.0":
version: 3.689.0
resolution: "@aws-sdk/client-s3@npm:3.689.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:5.2.0"
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.687.0"
"@aws-sdk/client-sts": "npm:3.687.0"
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/credential-provider-node": "npm:3.687.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.686.0"
"@aws-sdk/middleware-expect-continue": "npm:3.686.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.689.0"
"@aws-sdk/middleware-host-header": "npm:3.686.0"
"@aws-sdk/middleware-location-constraint": "npm:3.686.0"
"@aws-sdk/middleware-logger": "npm:3.686.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.686.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.687.0"
"@aws-sdk/middleware-ssec": "npm:3.686.0"
"@aws-sdk/middleware-user-agent": "npm:3.687.0"
"@aws-sdk/region-config-resolver": "npm:3.686.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.687.0"
"@aws-sdk/types": "npm:3.686.0"
"@aws-sdk/util-endpoints": "npm:3.686.0"
"@aws-sdk/util-user-agent-browser": "npm:3.686.0"
"@aws-sdk/util-user-agent-node": "npm:3.687.0"
"@aws-sdk/xml-builder": "npm:3.686.0"
"@smithy/config-resolver": "npm:^3.0.10"
"@smithy/core": "npm:^2.5.1"
"@smithy/eventstream-serde-browser": "npm:^3.0.11"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.8"
"@smithy/eventstream-serde-node": "npm:^3.0.10"
"@smithy/fetch-http-handler": "npm:^4.0.0"
"@smithy/hash-blob-browser": "npm:^3.1.7"
"@smithy/hash-node": "npm:^3.0.8"
"@smithy/hash-stream-node": "npm:^3.1.7"
"@smithy/invalid-dependency": "npm:^3.0.8"
"@smithy/md5-js": "npm:^3.0.8"
"@smithy/middleware-content-length": "npm:^3.0.10"
"@smithy/middleware-endpoint": "npm:^3.2.1"
"@smithy/middleware-retry": "npm:^3.0.25"
"@smithy/middleware-serde": "npm:^3.0.8"
"@smithy/middleware-stack": "npm:^3.0.8"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/node-http-handler": "npm:^3.2.5"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/smithy-client": "npm:^3.4.2"
"@smithy/types": "npm:^3.6.0"
"@smithy/url-parser": "npm:^3.0.8"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.25"
"@smithy/util-defaults-mode-node": "npm:^3.0.25"
"@smithy/util-endpoints": "npm:^2.1.4"
"@smithy/util-middleware": "npm:^3.0.8"
"@smithy/util-retry": "npm:^3.0.8"
"@smithy/util-stream": "npm:^3.2.1"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.7"
tslib: "npm:^2.6.2"
checksum: 10/b9cc98e20937229a81f961a888eef965bd3d7b5ba2e50b6ff068eee7300a9c6bd2a44a90c62db2363da68477bc2e66a7a86a8a45da5221fa8ef2e5f5c4ea54b4
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.687.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/credential-provider-node": "npm:3.687.0"
"@aws-sdk/middleware-host-header": "npm:3.686.0"
"@aws-sdk/middleware-logger": "npm:3.686.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.686.0"
"@aws-sdk/middleware-user-agent": "npm:3.687.0"
"@aws-sdk/region-config-resolver": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@aws-sdk/util-endpoints": "npm:3.686.0"
"@aws-sdk/util-user-agent-browser": "npm:3.686.0"
"@aws-sdk/util-user-agent-node": "npm:3.687.0"
"@smithy/config-resolver": "npm:^3.0.10"
"@smithy/core": "npm:^2.5.1"
"@smithy/fetch-http-handler": "npm:^4.0.0"
"@smithy/hash-node": "npm:^3.0.8"
"@smithy/invalid-dependency": "npm:^3.0.8"
"@smithy/middleware-content-length": "npm:^3.0.10"
"@smithy/middleware-endpoint": "npm:^3.2.1"
"@smithy/middleware-retry": "npm:^3.0.25"
"@smithy/middleware-serde": "npm:^3.0.8"
"@smithy/middleware-stack": "npm:^3.0.8"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/node-http-handler": "npm:^3.2.5"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/smithy-client": "npm:^3.4.2"
"@smithy/types": "npm:^3.6.0"
"@smithy/url-parser": "npm:^3.0.8"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.25"
"@smithy/util-defaults-mode-node": "npm:^3.0.25"
"@smithy/util-endpoints": "npm:^2.1.4"
"@smithy/util-middleware": "npm:^3.0.8"
"@smithy/util-retry": "npm:^3.0.8"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.687.0
checksum: 10/9afeb7b900ab1ab00a0b76aba2951c0569a63477a56518575d9073b37bf33055faa0592d6bb3e9c1bec5cb6cb8d2c36b4a711b5dd76934aef7502d1dec6b4be5
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/client-sso@npm:3.687.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/middleware-host-header": "npm:3.686.0"
"@aws-sdk/middleware-logger": "npm:3.686.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.686.0"
"@aws-sdk/middleware-user-agent": "npm:3.687.0"
"@aws-sdk/region-config-resolver": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@aws-sdk/util-endpoints": "npm:3.686.0"
"@aws-sdk/util-user-agent-browser": "npm:3.686.0"
"@aws-sdk/util-user-agent-node": "npm:3.687.0"
"@smithy/config-resolver": "npm:^3.0.10"
"@smithy/core": "npm:^2.5.1"
"@smithy/fetch-http-handler": "npm:^4.0.0"
"@smithy/hash-node": "npm:^3.0.8"
"@smithy/invalid-dependency": "npm:^3.0.8"
"@smithy/middleware-content-length": "npm:^3.0.10"
"@smithy/middleware-endpoint": "npm:^3.2.1"
"@smithy/middleware-retry": "npm:^3.0.25"
"@smithy/middleware-serde": "npm:^3.0.8"
"@smithy/middleware-stack": "npm:^3.0.8"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/node-http-handler": "npm:^3.2.5"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/smithy-client": "npm:^3.4.2"
"@smithy/types": "npm:^3.6.0"
"@smithy/url-parser": "npm:^3.0.8"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.25"
"@smithy/util-defaults-mode-node": "npm:^3.0.25"
"@smithy/util-endpoints": "npm:^2.1.4"
"@smithy/util-middleware": "npm:^3.0.8"
"@smithy/util-retry": "npm:^3.0.8"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/f2b616364067fef88c8c7dda11d8cd3cfb7891817d7ef666aca304adca3c71176147947f02e4afb64fba7d742fe7b926520187e09cc265dc99f02f36f80148b7
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/client-sts@npm:3.687.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.687.0"
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/credential-provider-node": "npm:3.687.0"
"@aws-sdk/middleware-host-header": "npm:3.686.0"
"@aws-sdk/middleware-logger": "npm:3.686.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.686.0"
"@aws-sdk/middleware-user-agent": "npm:3.687.0"
"@aws-sdk/region-config-resolver": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@aws-sdk/util-endpoints": "npm:3.686.0"
"@aws-sdk/util-user-agent-browser": "npm:3.686.0"
"@aws-sdk/util-user-agent-node": "npm:3.687.0"
"@smithy/config-resolver": "npm:^3.0.10"
"@smithy/core": "npm:^2.5.1"
"@smithy/fetch-http-handler": "npm:^4.0.0"
"@smithy/hash-node": "npm:^3.0.8"
"@smithy/invalid-dependency": "npm:^3.0.8"
"@smithy/middleware-content-length": "npm:^3.0.10"
"@smithy/middleware-endpoint": "npm:^3.2.1"
"@smithy/middleware-retry": "npm:^3.0.25"
"@smithy/middleware-serde": "npm:^3.0.8"
"@smithy/middleware-stack": "npm:^3.0.8"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/node-http-handler": "npm:^3.2.5"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/smithy-client": "npm:^3.4.2"
"@smithy/types": "npm:^3.6.0"
"@smithy/url-parser": "npm:^3.0.8"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.25"
"@smithy/util-defaults-mode-node": "npm:^3.0.25"
"@smithy/util-endpoints": "npm:^2.1.4"
"@smithy/util-middleware": "npm:^3.0.8"
"@smithy/util-retry": "npm:^3.0.8"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/c2ae4dcc99b3551b88f4403d6e5317d4d9a4c26cc69ab766aa9f2110ae0fc488a112ec114023ea5d605c23190b79123a6a8e9f60bc6ff4f1c40e82dec2e0f25f
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/core@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@smithy/core": "npm:^2.5.1"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/signature-v4": "npm:^4.2.0"
"@smithy/smithy-client": "npm:^3.4.2"
"@smithy/types": "npm:^3.6.0"
"@smithy/util-middleware": "npm:^3.0.8"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10/434a55b08d5dcbf9319a0133ff399176c81a6168dc4970416c20c1aedc10b45d69f5e8e858229fdc8dab3953f27c0c8421c37cec9094aa2b2e1fd582ac81e69c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-cognito-identity@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.687.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.687.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10/c0eff9a64d63642c2823e8340eed3dca97fef80115ca39c309cba213e4e24ed2a7dfced72188eb7c2f3ee296641f23025c7748364a3fa39ed8365c5236ae63a1
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/credential-provider-env@npm:3.686.0"
dependencies:
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10/973daa1ff562d723cef3034f2e2b4e48c89370544bc29c1c53b1beebfc838d3abb79985d3ef5760f837fae03c6d999fe596d5f20bd06d355a864207a5ede1ac7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/credential-provider-http@npm:3.686.0"
dependencies:
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/fetch-http-handler": "npm:^4.0.0"
"@smithy/node-http-handler": "npm:^3.2.5"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/smithy-client": "npm:^3.4.2"
"@smithy/types": "npm:^3.6.0"
"@smithy/util-stream": "npm:^3.2.1"
tslib: "npm:^2.6.2"
checksum: 10/512cefad4ef0dc17a5fdfde8c2b2f04cb8d6f6f0d5d3d1d97772f65d0ea39150768227c47c827bdbf1814d06f4c19a5d46ce04a56181d350900fdc7ec2e68d06
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.687.0"
dependencies:
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/credential-provider-env": "npm:3.686.0"
"@aws-sdk/credential-provider-http": "npm:3.686.0"
"@aws-sdk/credential-provider-process": "npm:3.686.0"
"@aws-sdk/credential-provider-sso": "npm:3.687.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/credential-provider-imds": "npm:^3.2.4"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.687.0
checksum: 10/0ce1edd004ab8604d20a33cfb6d1cc685a3968dc765b51cdd21732dc3b203444cc2f702b361c1986d7bf73383477dc22623d8a084ec3386a27dedf02df311868
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/credential-provider-node@npm:3.687.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.686.0"
"@aws-sdk/credential-provider-http": "npm:3.686.0"
"@aws-sdk/credential-provider-ini": "npm:3.687.0"
"@aws-sdk/credential-provider-process": "npm:3.686.0"
"@aws-sdk/credential-provider-sso": "npm:3.687.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/credential-provider-imds": "npm:^3.2.4"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10/6b29a4cd96afbf14cf78f655173c8ed9a3a00927dcd82efb651a63c2a1bc7f57ef43fb9d7c58b07835513024188a05ce9d6d2531a8354d4b51873a0b6363b074
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/credential-provider-process@npm:3.686.0"
dependencies:
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10/54f08376b4d1fa71b5ee402b450ab21beee3d3fd6c5a4de80d22cdc3aca3d883320f4ffbe54d5bdfeef914c89e0218863b5ae0891c9acbfe84e26802b646ae6e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.687.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.687.0"
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/token-providers": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10/b47e58f68b5c386e4a41fecee5b3abb749000824cf9f497ed518994fb10499cfa14dd933ef61e605e413c2f7619d8dc875d7d62b80bebc621f772f3aa71b69dc
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.686.0"
dependencies:
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.686.0
checksum: 10/856659f572645ae1d7ed2997f0a006aa8f226d7c299761357bf5a590be181add3a996b2cf6a37455c3dc68cc86b575731b9dc253e59c97a81a6c3f218b0eb649
languageName: node
linkType: hard
"@aws-sdk/credential-providers@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/credential-providers@npm:3.687.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.687.0"
"@aws-sdk/client-sso": "npm:3.687.0"
"@aws-sdk/client-sts": "npm:3.687.0"
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/credential-provider-cognito-identity": "npm:3.687.0"
"@aws-sdk/credential-provider-env": "npm:3.686.0"
"@aws-sdk/credential-provider-http": "npm:3.686.0"
"@aws-sdk/credential-provider-ini": "npm:3.687.0"
"@aws-sdk/credential-provider-node": "npm:3.687.0"
"@aws-sdk/credential-provider-process": "npm:3.686.0"
"@aws-sdk/credential-provider-sso": "npm:3.687.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/credential-provider-imds": "npm:^3.2.4"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10/96ff6a22b4dc96c17783fa37933e2306d805a8152a2effb6c35cfc1ad158eefb6caae8221aa1f8cd8abedc7f0e8cc2424d3b9622c9fafb9b61e03bdc80c11411
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@aws-sdk/util-arn-parser": "npm:3.679.0"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/types": "npm:^3.6.0"
"@smithy/util-config-provider": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/8389b9605d303366681b7351a43deef9a3ffb5c73a3df44aabcfa538448625f1823dbf1991a67ed3bc5764733c0c1d5e25d0be75ecff02298fa7df5440491083
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10/3fd11695deef50ad4ccca406886c889d1a3dadb51e3d33b9d49b496fd02704083653fb8be827b73f3eecd9fa5c19c57c2a6512c21cdd84ac4a04a1ce52fff273
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.689.0":
version: 3.689.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.689.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-crypto/util": "npm:5.2.0"
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/is-array-buffer": "npm:^3.0.0"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/types": "npm:^3.6.0"
"@smithy/util-middleware": "npm:^3.0.8"
"@smithy/util-stream": "npm:^3.2.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/5a4af72caa64f3bcfdbfe848f35825a06c17c3d80a3e2ba6191fe37a8e9e450b350c7218f2472d4920d0119547e000e5fd3d62b1cd8b1abf0ea066cef5c4ce0f
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/middleware-host-header@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10/cf2f859f85602562f591477c18fea9251d6f2284bbe742f3cfd0961bf2969b4d02d54c864719889d1703e74a8013a37d5aad6c63b3eaf66d59868e03f7e63839
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10/ec5b40186087b730448ac35fca839d3cb334f5e71c6af05dbf33d1f9d77b7d8afff9adaa5ac8780add016a95f534505154a1398b07cc93e611899eceacd0aa23
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/middleware-logger@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10/b1901d19ef6a8842807ae98b0b65d182d4c9fa87031747ad46e98e765e61f23a4019b674e8a00b71911cbda373d3443b333464c493f1b6e0331e16b2cf39a62f
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10/3165d3a91ad7b3776612a44a177157a27e437544afb3e36b701c5a9f37754164b752e55c6e7c810389c7f48971ad578d43513492b0115eb4f5ca612d55776254
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-ec2@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/middleware-sdk-ec2@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@aws-sdk/util-format-url": "npm:3.686.0"
"@smithy/middleware-endpoint": "npm:^3.2.1"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/signature-v4": "npm:^4.2.0"
"@smithy/smithy-client": "npm:^3.4.2"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10/29b4281d6bb16ed2f4a6342eda93cbacb4808c8c273846729a5d96de50d34524e71f37566f440ce43c2be1e6cc49775c2371adde57df3162db36abc45b9557d1
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-rds@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/middleware-sdk-rds@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@aws-sdk/util-format-url": "npm:3.686.0"
"@smithy/middleware-endpoint": "npm:^3.2.1"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/signature-v4": "npm:^4.2.0"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10/7ef9f05785c669aee9b4374d0b097e5487f402d7e6fa21bc8d191ba5f01037bc155749d4f1c3e7b6df2ce6e1ae629cdaf3ee9d4e1bcae56899924ab9e36a19ce
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.687.0"
dependencies:
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@aws-sdk/util-arn-parser": "npm:3.679.0"
"@smithy/core": "npm:^2.5.1"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/signature-v4": "npm:^4.2.0"
"@smithy/smithy-client": "npm:^3.4.2"
"@smithy/types": "npm:^3.6.0"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.8"
"@smithy/util-stream": "npm:^3.2.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/d7de0480580f4d5a899b4f38af333777bc1e6ca7c3a8b742debc27015926f5910b7f0324c1ddd4704a905f9f2ddc20262dede03ef83611e473e46f10b6d28fd7
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/middleware-ssec@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10/01ed19c7a9f9fefbe86982dfe5bc735db0c5063b4369664d9df424a1bb1b5e0b2b5858d8db98180c92f3917eb171b20f5a6de3ea89ac2a4b6271ba8600e2a88d
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.687.0"
dependencies:
"@aws-sdk/core": "npm:3.686.0"
"@aws-sdk/types": "npm:3.686.0"
"@aws-sdk/util-endpoints": "npm:3.686.0"
"@smithy/core": "npm:^2.5.1"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10/6d71da2cc8e1cdd3aea5b01110214b0d3da09981473ea4004d7dce61eaa99e0dc6cc75ea7da95c6ea4115f1f7c46066a8f8a4e0535146ab3ea96835904008e26
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/region-config-resolver@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@smithy/node-config-provider": "npm:^3.1.9"
"@smithy/types": "npm:^3.6.0"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.8"
tslib: "npm:^2.6.2"
checksum: 10/011c3bf4c8b49057329a6a4ebbb005bf2ffdefc1ccb52e6fade9800c840ffd1fbf2a92606b55a08db1da776a040545546280548a908693e2e601484600c4760d
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.687.0":
version: 3.687.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.687.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.687.0"
"@aws-sdk/types": "npm:3.686.0"
"@smithy/protocol-http": "npm:^4.1.5"
"@smithy/signature-v4": "npm:^4.2.0"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10/16a2dd1a1337e5938d773e096ed0ce9d1848bfe743521645c4f250a8ba22f4056315950510f93adacc8513b176a78bbb9504c9a138e980b4e81ee0a6c97af82c
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/token-providers@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sso-oidc": ^3.686.0
checksum: 10/4897f2115b03c077ffd7a416a45aac6646c675974830592c1f9e469526defaf77b93eee7b981e28e5c0397ce8d510ed39603671f20795078179a9bc90c891669
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/types@npm:3.686.0"
dependencies:
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10/687582a70357f319fb9ad42f4608372754ba9eb9efbe6bbd8c7e3dcdce983b887d8534a567bac8cf0a3f9330bcfe16f1e88e62d20f735d37dbe081fdf7c89691
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0":
version: 3.692.0
resolution: "@aws-sdk/types@npm:3.692.0"
dependencies:
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10/876c8b53c8ae7f118abeb2f39069059851bd23c6ce4f552f8d483b1d648edb62e5be684d08d5d3399615a0d07b34c33c1fd579cccfff10d11f7cee96eedb575b
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.679.0":
version: 3.679.0
resolution: "@aws-sdk/util-arn-parser@npm:3.679.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/afcb8f0af6cb3aed6984048532a7ad77110e76010420b53565a9d455181bbdddded54fa5ba069f8905ea2696661c33076962b785b67cbbc86ea140023532006c
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/util-endpoints@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@smithy/types": "npm:^3.6.0"
"@smithy/util-endpoints": "npm:^2.1.4"
tslib: "npm:^2.6.2"
checksum: 10/19d7d3832798bbe2c849aba949d7eed9713588065ef6bc1e43233c984b9facfce0552b7b648062e15ba83619a01e9cfb2b2c6a3af0928292bd5ff145c356bef7
languageName: node
linkType: hard
"@aws-sdk/util-format-url@npm:3.686.0":
version: 3.686.0
resolution: "@aws-sdk/util-format-url@npm:3.686.0"
dependencies:
"@aws-sdk/types": "npm:3.686.0"
"@smithy/querystring-builder": "npm:^3.0.8"
"@smithy/types": "npm:^3.6.0"