-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathyarn.lock
23758 lines (21535 loc) · 848 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
"@algolia/cache-browser-local-storage@npm:4.23.3":
version: 4.23.3
resolution: "@algolia/cache-browser-local-storage@npm:4.23.3"
dependencies:
"@algolia/cache-common": "npm:4.23.3"
checksum: 10/bbce762cc69952d8e02a228bbc1b9795bd076e637fd374a6e52c4f117f44de465231731f00562dbdda72aca9c150d53a0efb22d5d9e5b0d57674c8f853bc5a85
languageName: node
linkType: hard
"@algolia/cache-common@npm:4.23.3":
version: 4.23.3
resolution: "@algolia/cache-common@npm:4.23.3"
checksum: 10/c4502b9f188c451905d47c50e4706df3c188854615119b470a4d993d8c66d41ae1d9aec2464bc8a174c6ba2bfc939835b98cb7d4afddaa6c3ccb766231e1dbbc
languageName: node
linkType: hard
"@algolia/cache-in-memory@npm:4.23.3":
version: 4.23.3
resolution: "@algolia/cache-in-memory@npm:4.23.3"
dependencies:
"@algolia/cache-common": "npm:4.23.3"
checksum: 10/9a26f6213873ec99ab3fb1bc4ba3bb7c64fc433f46ac9365689921e7c1ddaae437ee78c42d85d4426fc18ef0410d8fc9b78824759000b16fc2da60aba490cb87
languageName: node
linkType: hard
"@algolia/client-account@npm:4.23.3":
version: 4.23.3
resolution: "@algolia/client-account@npm:4.23.3"
dependencies:
"@algolia/client-common": "npm:4.23.3"
"@algolia/client-search": "npm:4.23.3"
"@algolia/transporter": "npm:4.23.3"
checksum: 10/56404a43dfe53eb0168e9be568482fb4b8b00adb73b978f7f5c02627d179f51eb273ea4880428d26aa692253f11cdd1d6b62796571f6e3ada1397c64f28fc591
languageName: node
linkType: hard
"@algolia/client-analytics@npm:4.23.3":
version: 4.23.3
resolution: "@algolia/client-analytics@npm:4.23.3"
dependencies:
"@algolia/client-common": "npm:4.23.3"
"@algolia/client-search": "npm:4.23.3"
"@algolia/requester-common": "npm:4.23.3"
"@algolia/transporter": "npm:4.23.3"
checksum: 10/fa2a6878bb7df077558daa16c2f4ea432d430649d34621ffdf2ca1be1bdf858a810e7f1c8e97a107e342663f432df5d0b0244788d5cb97e921a0defdf7485451
languageName: node
linkType: hard
"@algolia/client-common@npm:4.23.3":
version: 4.23.3
resolution: "@algolia/client-common@npm:4.23.3"
dependencies:
"@algolia/requester-common": "npm:4.23.3"
"@algolia/transporter": "npm:4.23.3"
checksum: 10/b965c5ce75b8f42169a59aa993c16e77fb342430c30c30f8bde3e8bb1a934f657e086d2de88b75deae08e754c64942cb83fc49e8e5ca1acf7c63b6286b251a23
languageName: node
linkType: hard
"@algolia/client-personalization@npm:4.23.3":
version: 4.23.3
resolution: "@algolia/client-personalization@npm:4.23.3"
dependencies:
"@algolia/client-common": "npm:4.23.3"
"@algolia/requester-common": "npm:4.23.3"
"@algolia/transporter": "npm:4.23.3"
checksum: 10/dbba0d0f7b68a5938639896cc817d1ed0f66e2e569eed0043dee208ecc9312fbae8a5ee35e7f259c4b5f603ae03b3ecda18ba50ffbf2e0836dcdae23503e2d51
languageName: node
linkType: hard
"@algolia/client-search@npm:4.23.3":
version: 4.23.3
resolution: "@algolia/client-search@npm:4.23.3"
dependencies:
"@algolia/client-common": "npm:4.23.3"
"@algolia/requester-common": "npm:4.23.3"
"@algolia/transporter": "npm:4.23.3"
checksum: 10/41d0ccc1d9ac871b2a3556379dd2de644944071ac3ab7692ad1cb4b690ced478bdc74b09d824e60cf59c0acbdc556882221f505c5baf391e0487026b29ffa46a
languageName: node
linkType: hard
"@algolia/logger-common@npm:4.23.3":
version: 4.23.3
resolution: "@algolia/logger-common@npm:4.23.3"
checksum: 10/a6710ac3e790dc896d7f32eefc9e2967c765f0955fabd33291c14d61ad12d34259709370a18eb299518e36cc3b538c385ab1cc85b021b1acbf463315a61df67c
languageName: node
linkType: hard
"@algolia/logger-console@npm:4.23.3":
version: 4.23.3
resolution: "@algolia/logger-console@npm:4.23.3"
dependencies:
"@algolia/logger-common": "npm:4.23.3"
checksum: 10/881eab328986626deaa20f6b7e51b1a86b47678681869f20e89ec47cfdf4a0547081fa4315149ac8c5e2ed3cb16a9547e1265a48c14ed6b7d549ba7abc5a71e9
languageName: node
linkType: hard
"@algolia/recommend@npm:4.23.3":
version: 4.23.3
resolution: "@algolia/recommend@npm:4.23.3"
dependencies:
"@algolia/cache-browser-local-storage": "npm:4.23.3"
"@algolia/cache-common": "npm:4.23.3"
"@algolia/cache-in-memory": "npm:4.23.3"
"@algolia/client-common": "npm:4.23.3"
"@algolia/client-search": "npm:4.23.3"
"@algolia/logger-common": "npm:4.23.3"
"@algolia/logger-console": "npm:4.23.3"
"@algolia/requester-browser-xhr": "npm:4.23.3"
"@algolia/requester-common": "npm:4.23.3"
"@algolia/requester-node-http": "npm:4.23.3"
"@algolia/transporter": "npm:4.23.3"
checksum: 10/69be8a76c01053f732903e00a152fa17064de34f65949dedcdf0dcd31e3f855a462e9134de8a1059d378798d1b63e94bdc48dbe94745b0fb4cbec043a52bca04
languageName: node
linkType: hard
"@algolia/requester-browser-xhr@npm:4.23.3":
version: 4.23.3
resolution: "@algolia/requester-browser-xhr@npm:4.23.3"
dependencies:
"@algolia/requester-common": "npm:4.23.3"
checksum: 10/afe1f81915d2386aa25c91c6d41d00a3958516a3567f1ec95a7d95eb976f87676cfb0dcc39e3fe7646e150c6cb5a8e3526c23be706cb09e56e0928a96da8eb6b
languageName: node
linkType: hard
"@algolia/requester-common@npm:4.23.3":
version: 4.23.3
resolution: "@algolia/requester-common@npm:4.23.3"
checksum: 10/6c6cfe2680ea101d8953a465f8d69140880465209dfaeb9068d62b29ec46a4e1ec2e1b598c98ad6fd1b46e3e461c2716bf5f85b8d4838d90b8c8db70b4553dc1
languageName: node
linkType: hard
"@algolia/requester-node-http@npm:4.23.3":
version: 4.23.3
resolution: "@algolia/requester-node-http@npm:4.23.3"
dependencies:
"@algolia/requester-common": "npm:4.23.3"
checksum: 10/3d751c063e0f96e41a61d87a3428b2cb13b30aaa9e0ba3e70a3b92ad642afbb26c5095405dd1ed6dd16755d47faece0f42c5677f30673898658461ad51ec2235
languageName: node
linkType: hard
"@algolia/transporter@npm:4.23.3":
version: 4.23.3
resolution: "@algolia/transporter@npm:4.23.3"
dependencies:
"@algolia/cache-common": "npm:4.23.3"
"@algolia/logger-common": "npm:4.23.3"
"@algolia/requester-common": "npm:4.23.3"
checksum: 10/f2c5f89ff1afedad63ad77519185479a534af5882a13174267a9841a6a7de8b07f54614b4e5c806dfe83a20d2afd24c18559098f05654f89c9f5852418d285b4
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.1.0":
version: 2.1.2
resolution: "@ampproject/remapping@npm:2.1.2"
dependencies:
"@jridgewell/trace-mapping": "npm:^0.3.0"
checksum: 10/2151b1fd8149e9e288fa16c02699d74e6020baf3fe3154d2bd933e59db7a03076567e28493d1408ffa162d67880a2b9e0a9bbc64f3bb4af22a7cce2fdb4c345d
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.0":
version: 2.2.1
resolution: "@ampproject/remapping@npm:2.2.1"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 10/e15fecbf3b54c988c8b4fdea8ef514ab482537e8a080b2978cc4b47ccca7140577ca7b65ad3322dcce65bc73ee6e5b90cbfe0bbd8c766dad04d5c62ec9634c42
languageName: node
linkType: hard
"@apidevtools/json-schema-ref-parser@npm:9.0.6":
version: 9.0.6
resolution: "@apidevtools/json-schema-ref-parser@npm:9.0.6"
dependencies:
"@jsdevtools/ono": "npm:^7.1.3"
call-me-maybe: "npm:^1.0.1"
js-yaml: "npm:^3.13.1"
checksum: 10/bfdff3d3c54fac0e864322dfa62c018cbcf90f66df6cbe33868a0134bee5bc4d013f980aac0f3e83ffabf4b9c13ffedbf5bae3578ce7db7d4cb559e874b16950
languageName: node
linkType: hard
"@apidevtools/openapi-schemas@npm:^2.1.0":
version: 2.1.0
resolution: "@apidevtools/openapi-schemas@npm:2.1.0"
checksum: 10/4ca78f79ee2e5a162d16d140f939ca90d51265014ea2e500955286ad3acd11b75db4179b7b4bae245b09a981baeb8d80b81bc24c61d6c471a4a4707ed277ebf2
languageName: node
linkType: hard
"@apidevtools/swagger-methods@npm:^3.0.2":
version: 3.0.2
resolution: "@apidevtools/swagger-methods@npm:3.0.2"
checksum: 10/d06b1ac5c1956613c4c6be695612ef860cd4e962b93a509ca551735a328a856cae1e33399cac1dcbf8333ba22b231746f3586074769ef0e172cf549ec9e7eaae
languageName: node
linkType: hard
"@apidevtools/swagger-parser@npm:^10.1.0":
version: 10.1.0
resolution: "@apidevtools/swagger-parser@npm:10.1.0"
dependencies:
"@apidevtools/json-schema-ref-parser": "npm:9.0.6"
"@apidevtools/openapi-schemas": "npm:^2.1.0"
"@apidevtools/swagger-methods": "npm:^3.0.2"
"@jsdevtools/ono": "npm:^7.1.3"
ajv: "npm:^8.6.3"
ajv-draft-04: "npm:^1.0.0"
call-me-maybe: "npm:^1.0.1"
peerDependencies:
openapi-types: ">=7"
checksum: 10/24f7f6524334887ff3ef1c8c768698963f4a03e6824719fdbe98ba5444c9f1cdca9a11789e90362c882321dedec3e66f414e05035054084921fe1d2527724adb
languageName: node
linkType: hard
"@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-cloudfront@npm:^3.687.0":
version: 3.699.0
resolution: "@aws-sdk/client-cloudfront@npm:3.699.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.699.0"
"@aws-sdk/client-sts": "npm:3.699.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-node": "npm:3.699.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@aws-sdk/xml-builder": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-stream": "npm:^3.3.1"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.9"
tslib: "npm:^2.6.2"
checksum: 10/3107ec661bc5ce5fe83edbe53e6f52ec9f6930c22a33268a88584cfd373da5931d24a13ecfe88a0d287fcbd9f6987983a8d19c8d86e02a822ef02831b804275a
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.701.0":
version: 3.705.0
resolution: "@aws-sdk/client-s3@npm:3.705.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.699.0"
"@aws-sdk/client-sts": "npm:3.699.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-node": "npm:3.699.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.696.0"
"@aws-sdk/middleware-expect-continue": "npm:3.696.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.701.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-location-constraint": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.696.0"
"@aws-sdk/middleware-ssec": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@aws-sdk/xml-builder": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/eventstream-serde-browser": "npm:^3.0.13"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.10"
"@smithy/eventstream-serde-node": "npm:^3.0.12"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-blob-browser": "npm:^3.1.9"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/hash-stream-node": "npm:^3.1.9"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/md5-js": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-stream": "npm:^3.3.1"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.9"
tslib: "npm:^2.6.2"
checksum: 10/da5907a5f39288b89d547085d1566aca9f58effc95f0449921c8ac86bb4c17f771e11a6fd264807c46147a51e8bd45df410f0a76502d7767c5274ebc065dd35a
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.699.0":
version: 3.699.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.699.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-node": "npm:3.699.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.699.0
checksum: 10/196b4bd071b525eb516ceb02cbb8c43bbd492f999867c7f57d361a821243f20e4d9e72525832e1ca92edcc2163f09b5017df45aae47a7553710170171cbf8398
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/client-sso@npm:3.696.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/02666c5aeca2e8899c9d870978216c49cf75b6046eebcf04aeb9631c5904d3133898e1369b0f2b0d7a88ac0c31e7c818292417c4a513d3d35ca32339e503eaac
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.699.0":
version: 3.699.0
resolution: "@aws-sdk/client-sts@npm:3.699.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.699.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-node": "npm:3.699.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/9815310901eebc5be3d2cda157c0df57e818213f0dab0ecf932998fb41b5834b6dd3d35cfd78b8d34ecf44338e14d3f7831ab89c3541106ae5b79d2279b2d7c5
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/core@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@smithy/core": "npm:^2.5.3"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/signature-v4": "npm:^4.2.2"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/util-middleware": "npm:^3.0.10"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10/f6d21ed955086596155910bd00a5f80976dc1a7a9506d52d761f7ca81324b3c04e70097917e6bd22e720ea6094967dcf623525594b2a852b88d1e6ec7f708358
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/credential-provider-env@npm:3.696.0"
dependencies:
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10/40f8c6b93ff6456c7586c6164a58baf743adf77d138b42d4513ccf8ec38b93f7e915835b80e683101dadf0634a29fde1a43715569f952e7baf8cb5ffab97d8c7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/credential-provider-http@npm:3.696.0"
dependencies:
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/util-stream": "npm:^3.3.1"
tslib: "npm:^2.6.2"
checksum: 10/6d69d1603ca5c69790ae0eeee1c3de1ae79b6418f205eca84a5cde63040496d7633b622c4898843455c1455d052403f36220c8c868263e752db44f8a1b58ecfc
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.699.0":
version: 3.699.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.699.0"
dependencies:
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-env": "npm:3.696.0"
"@aws-sdk/credential-provider-http": "npm:3.696.0"
"@aws-sdk/credential-provider-process": "npm:3.696.0"
"@aws-sdk/credential-provider-sso": "npm:3.699.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/credential-provider-imds": "npm:^3.2.6"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/shared-ini-file-loader": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.699.0
checksum: 10/84571e887e61cc1a327c64819f3ad03f33c219560a0d3af44f21d7ee5d48d9e7f0f7fb20999357c588fc482a29126a252347c286ee7ef3f826fad8bd2dbcdad6
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.699.0":
version: 3.699.0
resolution: "@aws-sdk/credential-provider-node@npm:3.699.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.696.0"
"@aws-sdk/credential-provider-http": "npm:3.696.0"
"@aws-sdk/credential-provider-ini": "npm:3.699.0"
"@aws-sdk/credential-provider-process": "npm:3.696.0"
"@aws-sdk/credential-provider-sso": "npm:3.699.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/credential-provider-imds": "npm:^3.2.6"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/shared-ini-file-loader": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10/d9ede37d27e6ccb2eda5e7d148b11feae1b82981b22f5de58dd9ee6a2a97d0af320b428e677cdf5c87ea1c8dccc8d87f1ccf13f6619bcf61db4aef9924f21427
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/credential-provider-process@npm:3.696.0"
dependencies:
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/shared-ini-file-loader": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10/a9d2030d585cb02157224b38b613130c765adfd90e302562efd5286cf42b69d85aad86a10864797d552ec77b3700a15f80014dd069808e7bc6a2cd46251bf30e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.699.0":
version: 3.699.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.699.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.696.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/token-providers": "npm:3.699.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/shared-ini-file-loader": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10/1fe0f3f3dfacd0cec30c29b237ef60da252a0e2239fba41daa3ab4f831445d64456d6a3b94642f1395a33dcd944bd166af4a6cba86562620ef1c490e47afeddc
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.696.0"
dependencies:
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.696.0
checksum: 10/6272d0c1cbe71c190cbdde081376caf8e1a2a95179c66e60eb2690e40e4827cff94723067aeabc5e12d66ab40fd65a66855b8564d1c2339f06b4454f8f4b0d47
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-arn-parser": "npm:3.693.0"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/types": "npm:^3.7.1"
"@smithy/util-config-provider": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/1da23ddeebe57958f99fdda28e5354e32797c0d42782d72952c45dabc9765af0792bd3c373f32b7053ee110a0812c7925d81282cca6c6902bfa1d2b9590e6771
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10/215df49f4917bfc1d8985c0fd1b8f720b9c3f9f7a05ed76167d9b39075e5653e1fb312126755aa740bfe32e086e90b85d98864d697006f9dc45f752b746a74d6
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.701.0":
version: 3.701.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.701.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.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/is-array-buffer": "npm:^3.0.0"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/types": "npm:^3.7.1"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-stream": "npm:^3.3.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/70170ace49cff1c64facb4285e1202bedfcf16099e48023709dae9d88a4362ca4b196f3d7425d2b0d2bdf6ec95936e7d6cdb05fd91a624814b86ebb72b91ef0f
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/middleware-host-header@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10/d44ebce4e89924b0dbf223a2b27c5fbb7bd9db5c0483bf860c52bcbf4686cf3898c2460672ab3c79d9a0d3c0b4cc3a6fe1a0d38bec4ad61acc2b95d9e4d94032
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10/6183fc2c9ef4a4084eafe59d15ac239a3ef033f338863b5eec89a4152363b3424bfd0ae532882a0991d480be3baf9fe6687a9d0dd08b5af4db529e36d9b0edec
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/middleware-logger@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10/f129b74a585b71f4644600c9af94261e0baa257e3a7463753073cbb0cbfd7d941cb81776a7914b1c3f9fb1c7c27b67a551c044ef68c3c248d37dfef135db063a
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10/86c30499a5d414d941f8e0f40630b8e121c76dd91a584e767eb3f36c243e2b7681eb2a1437aa802cf86269522cb0ad340ee6d61de6e5fa928aea38afbd80dc4c
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.696.0"
dependencies:
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-arn-parser": "npm:3.693.0"
"@smithy/core": "npm:^2.5.3"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/signature-v4": "npm:^4.2.2"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-stream": "npm:^3.3.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/139cf4751d82570e7e140ef25f5ddd88c8c13802de691b5386d6c02d0a42fa102b8579639c528d57dba570b6672336e2ac04707201d623bcc80d107f5ff97ab5
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/middleware-ssec@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10/d13bcc66f4a2e1c4c8a6fc35541deffda4bc53975192fd6ebfa31145957a0bbc6ee3bfabc450168c657428ace77034db256767fbfa16eae9f3336452b399ea61
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.696.0"
dependencies:
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@smithy/core": "npm:^2.5.3"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10/3c94eb9afb11919df5fa854907b83c689d2423fb40f72dbae629681c0cf8def709108ab54ad7094c928767c3198d6cdc04648206a13098463f3b2edcb4b9a526
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/region-config-resolver@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/types": "npm:^3.7.1"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.10"
tslib: "npm:^2.6.2"
checksum: 10/aa9f796164e4ba70d8b1df24dbba42bd58ab6fd2f07f0f4e135f8156feac2903432b134ca3a8c5bfbfdae248cfa210695a16469ec328db14b0a28e2de3984cc5
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.696.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/signature-v4": "npm:^4.2.2"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10/bca74a301ce8614e2dfa81ba2ac5f65a0b3b5715f21dd4b44d19d8a7dec48cb1c400e9c1c6168e85a15aa81d78868b33b3b996d3af5e9b9eb4246b52b0512d1a
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.699.0":
version: 3.699.0
resolution: "@aws-sdk/token-providers@npm:3.699.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/shared-ini-file-loader": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sso-oidc": ^3.699.0
checksum: 10/96f0075efbe716baa9fbe254379a6f16186ae98ab8d5158fc1f674e7b5b054092781f077f552138dc4ff910c59b2156947541b56c72381d7ac05e50c6f6ecc5e
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/types@npm:3.696.0"
dependencies:
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10/3d8a2f43a4cf1972dbc9df85de6917def78de90e8f40e8a3d6129fc42ef52abcedeec5afde7299d52e29fca231b9372247cdb6dc3711ace2eded0503572154f9
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0":
version: 3.567.0
resolution: "@aws-sdk/types@npm:3.567.0"
dependencies:
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/a25846825fb22330ff5fa12b582aba25616293e5e3c94370de7bac80b30c8cfff6ba5d7f7219e2fa3d067ed4ba7e2e1da8efead5a1e24601088bf8c8683e6c56
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/util-arn-parser@npm:3.693.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/a8bddf13c04cb73a1f595935eb5cc737eea8f8ab775b3b12abd53238ab006c7fd306dea7e4f6c2958fdf5254ef03082a6f77d1d82c525f41b48d06108c68fefc
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/util-endpoints@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@smithy/types": "npm:^3.7.1"
"@smithy/util-endpoints": "npm:^2.1.6"
tslib: "npm:^2.6.2"
checksum: 10/c04106b220e3e56ad0ecd0337b04aae5df6bc47845388eb0c9667df6e97267cd00d960cd47e73e171b72ef5ea32a41c8b1bf2c408be89286dddc99df1d781e51
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.696.0":
version: 3.696.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@smithy/types": "npm:^3.7.1"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10/67c4d8c38a6a33567edc0569c410fd4496277caf7adf9d59320302f41f3af62351dcb8e410aad091b26634b1d39390ab39f7f58c1575e9cc9845b8f74205645a
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.696.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10/33142712ef75055e9ef72c612cff4c8698f34982a321248eff0c190bd25bdfc2c5ad6a3584d61d819e86138ef3a2e473fecde9224b2d3fa5ede802ee0493a72a
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/xml-builder@npm:3.696.0"
dependencies:
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10/07ff4c4af58ceaca2c8670588fad5b66af5aab82ccaa1c98a63211ffd36ac0ba010980f60bd712ecdc7e114bade68614cbec33f39d76076edeb4e4094745d936
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/code-frame@npm:7.16.7"
dependencies:
"@babel/highlight": "npm:^7.16.7"
checksum: 10/db2f7faa31bc2c9cf63197b481b30ea57147a5fc1a6fab60e5d6c02cdfbf6de8e17b5121f99917b3dabb5eeb572da078312e70697415940383efc140d4e0808b
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/code-frame@npm:7.10.4"
dependencies:
"@babel/highlight": "npm:^7.10.4"
checksum: 10/4ef9c679515be9cb8eab519fcded953f86226155a599cf7ea209e40e088bb9a51bb5893d3307eae510b07bb3e359d64f2620957a00c27825dbe26ac62aca81f5
languageName: node
linkType: hard