-
Notifications
You must be signed in to change notification settings - Fork 10
/
yarn.lock
15971 lines (14421 loc) · 561 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
"@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:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/crc32@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10/672d593fd98a88709a1b488db92aabf584b6dad3e8099e04b6d2870e34a2ee668cbbe0e5406e60c0d776b9c34a91cfc427999230ad959518fed56a3db037704c
languageName: node
linkType: hard
"@aws-crypto/crc32c@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/crc32c@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10/3e604ad7a8d3fb10e5fe11597d593d0ae8e1d6dc06a06b8d882d5732a6e181f6a77fd4f92fb3ae9002a2007121d49e40bc6b78d83af62d36deb1b457b7f1d977
languageName: node
linkType: hard
"@aws-crypto/ie11-detection@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/ie11-detection@npm:3.0.0"
dependencies:
tslib: "npm:^1.11.1"
checksum: 10/f5aee4a11a113ab9640474e75d398c99538aa30775f484cd519f0de0096ae0d4a6b68d2f0c685f24bd6f2425067c565bc20592c36c0dc1f4d28c1b4751a40734
languageName: node
linkType: hard
"@aws-crypto/sha1-browser@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha1-browser@npm:3.0.0"
dependencies:
"@aws-crypto/ie11-detection": "npm:^3.0.0"
"@aws-crypto/supports-web-crypto": "npm:^3.0.0"
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10/8c30fa1e427bf2c295077b007835b0dd9af6beb6250e0aa775cecd42a1f517ef211751e7e12c2423f39d9b1c6748b99eb7b73207eb69165abc696cc470d8659e
languageName: node
linkType: hard
"@aws-crypto/sha256-browser@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha256-browser@npm:3.0.0"
dependencies:
"@aws-crypto/ie11-detection": "npm:^3.0.0"
"@aws-crypto/sha256-js": "npm:^3.0.0"
"@aws-crypto/supports-web-crypto": "npm:^3.0.0"
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10/4e075906c48a46bbb8babb60db3e6b280db405a88c68b77c1496c26218292d5ea509beae3ccc19366ca6bc944c6d37fe347d0917909900dbac86f054a19c71c7
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:3.0.0, @aws-crypto/sha256-js@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha256-js@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10/f9fc2d51631950434d0f91f51c2ce17845d4e8e75971806e21604987e3186ee1e54de8a89e5349585b91cb36e56d5f058d6a45004e1bfbce1351dbb40f479152
languageName: node
linkType: hard
"@aws-crypto/supports-web-crypto@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/supports-web-crypto@npm:3.0.0"
dependencies:
tslib: "npm:^1.11.1"
checksum: 10/8a48788d2866e391354f256aa79b577b2ba1474b50184cbe690467de7e64a79928afece95007ab69a1556f99da97ea129487db091d94489847e14decdc7c9a6f
languageName: node
linkType: hard
"@aws-crypto/util@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/util@npm:3.0.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10/92c835b83d7a888b37b2f2a37c82e58bb8fabb617e371173c488d2a71b916c69ee566f0ea0b3f7f4e16296226c49793f95b3d59fc07a7ca00af91f8f9f29e6c4
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.521.0":
version: 3.540.0
resolution: "@aws-sdk/client-s3@npm:3.540.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:3.0.0"
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.540.0"
"@aws-sdk/core": "npm:3.535.0"
"@aws-sdk/credential-provider-node": "npm:3.540.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.535.0"
"@aws-sdk/middleware-expect-continue": "npm:3.535.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.535.0"
"@aws-sdk/middleware-host-header": "npm:3.535.0"
"@aws-sdk/middleware-location-constraint": "npm:3.535.0"
"@aws-sdk/middleware-logger": "npm:3.535.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.535.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.535.0"
"@aws-sdk/middleware-signing": "npm:3.535.0"
"@aws-sdk/middleware-ssec": "npm:3.537.0"
"@aws-sdk/middleware-user-agent": "npm:3.540.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@aws-sdk/util-user-agent-browser": "npm:3.535.0"
"@aws-sdk/util-user-agent-node": "npm:3.535.0"
"@aws-sdk/xml-builder": "npm:3.535.0"
"@smithy/config-resolver": "npm:^2.2.0"
"@smithy/core": "npm:^1.4.0"
"@smithy/eventstream-serde-browser": "npm:^2.2.0"
"@smithy/eventstream-serde-config-resolver": "npm:^2.2.0"
"@smithy/eventstream-serde-node": "npm:^2.2.0"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/hash-blob-browser": "npm:^2.2.0"
"@smithy/hash-node": "npm:^2.2.0"
"@smithy/hash-stream-node": "npm:^2.2.0"
"@smithy/invalid-dependency": "npm:^2.2.0"
"@smithy/md5-js": "npm:^2.2.0"
"@smithy/middleware-content-length": "npm:^2.2.0"
"@smithy/middleware-endpoint": "npm:^2.5.0"
"@smithy/middleware-retry": "npm:^2.2.0"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/middleware-stack": "npm:^2.2.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
"@smithy/util-base64": "npm:^2.3.0"
"@smithy/util-body-length-browser": "npm:^2.2.0"
"@smithy/util-body-length-node": "npm:^2.3.0"
"@smithy/util-defaults-mode-browser": "npm:^2.2.0"
"@smithy/util-defaults-mode-node": "npm:^2.3.0"
"@smithy/util-endpoints": "npm:^1.2.0"
"@smithy/util-retry": "npm:^2.2.0"
"@smithy/util-stream": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
"@smithy/util-waiter": "npm:^2.2.0"
tslib: "npm:^2.6.2"
checksum: 10/083902842f94614bad792beae8c2596fa36a6f00a1642dd6dfa0f3dc1424f20d14bbb13c9413e7de4ae3bd91107373707eff7b6407ba5da7f89b7ceafa4ccf76
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.540.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.540.0"
"@aws-sdk/core": "npm:3.535.0"
"@aws-sdk/middleware-host-header": "npm:3.535.0"
"@aws-sdk/middleware-logger": "npm:3.535.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.535.0"
"@aws-sdk/middleware-user-agent": "npm:3.540.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@aws-sdk/util-user-agent-browser": "npm:3.535.0"
"@aws-sdk/util-user-agent-node": "npm:3.535.0"
"@smithy/config-resolver": "npm:^2.2.0"
"@smithy/core": "npm:^1.4.0"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/hash-node": "npm:^2.2.0"
"@smithy/invalid-dependency": "npm:^2.2.0"
"@smithy/middleware-content-length": "npm:^2.2.0"
"@smithy/middleware-endpoint": "npm:^2.5.0"
"@smithy/middleware-retry": "npm:^2.2.0"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/middleware-stack": "npm:^2.2.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
"@smithy/util-base64": "npm:^2.3.0"
"@smithy/util-body-length-browser": "npm:^2.2.0"
"@smithy/util-body-length-node": "npm:^2.3.0"
"@smithy/util-defaults-mode-browser": "npm:^2.2.0"
"@smithy/util-defaults-mode-node": "npm:^2.3.0"
"@smithy/util-endpoints": "npm:^1.2.0"
"@smithy/util-middleware": "npm:^2.2.0"
"@smithy/util-retry": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/credential-provider-node": ^3.540.0
checksum: 10/3d730be4c5031381f3c10b26243e26e5d50178f3aa511a38c0ad28b7f8e68897daead41da65dac98cfe81f6c0e37b074cf02bb63179ff112bdfd2472b70e1160
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/client-sso@npm:3.540.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.535.0"
"@aws-sdk/middleware-host-header": "npm:3.535.0"
"@aws-sdk/middleware-logger": "npm:3.535.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.535.0"
"@aws-sdk/middleware-user-agent": "npm:3.540.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@aws-sdk/util-user-agent-browser": "npm:3.535.0"
"@aws-sdk/util-user-agent-node": "npm:3.535.0"
"@smithy/config-resolver": "npm:^2.2.0"
"@smithy/core": "npm:^1.4.0"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/hash-node": "npm:^2.2.0"
"@smithy/invalid-dependency": "npm:^2.2.0"
"@smithy/middleware-content-length": "npm:^2.2.0"
"@smithy/middleware-endpoint": "npm:^2.5.0"
"@smithy/middleware-retry": "npm:^2.2.0"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/middleware-stack": "npm:^2.2.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
"@smithy/util-base64": "npm:^2.3.0"
"@smithy/util-body-length-browser": "npm:^2.2.0"
"@smithy/util-body-length-node": "npm:^2.3.0"
"@smithy/util-defaults-mode-browser": "npm:^2.2.0"
"@smithy/util-defaults-mode-node": "npm:^2.3.0"
"@smithy/util-endpoints": "npm:^1.2.0"
"@smithy/util-middleware": "npm:^2.2.0"
"@smithy/util-retry": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
tslib: "npm:^2.6.2"
checksum: 10/8e2a021624c102ab5a35216ecf1e42dc9d0b7bfb1213477783f64bcc227dcc6cc2363359678b702549d44332f3d2d71173374bd7bf56ea0093aa351a9cba2a90
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/client-sts@npm:3.540.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.535.0"
"@aws-sdk/middleware-host-header": "npm:3.535.0"
"@aws-sdk/middleware-logger": "npm:3.535.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.535.0"
"@aws-sdk/middleware-user-agent": "npm:3.540.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@aws-sdk/util-user-agent-browser": "npm:3.535.0"
"@aws-sdk/util-user-agent-node": "npm:3.535.0"
"@smithy/config-resolver": "npm:^2.2.0"
"@smithy/core": "npm:^1.4.0"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/hash-node": "npm:^2.2.0"
"@smithy/invalid-dependency": "npm:^2.2.0"
"@smithy/middleware-content-length": "npm:^2.2.0"
"@smithy/middleware-endpoint": "npm:^2.5.0"
"@smithy/middleware-retry": "npm:^2.2.0"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/middleware-stack": "npm:^2.2.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
"@smithy/util-base64": "npm:^2.3.0"
"@smithy/util-body-length-browser": "npm:^2.2.0"
"@smithy/util-body-length-node": "npm:^2.3.0"
"@smithy/util-defaults-mode-browser": "npm:^2.2.0"
"@smithy/util-defaults-mode-node": "npm:^2.3.0"
"@smithy/util-endpoints": "npm:^1.2.0"
"@smithy/util-middleware": "npm:^2.2.0"
"@smithy/util-retry": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/credential-provider-node": ^3.540.0
checksum: 10/1344fe3d8ecd0e399859b50034d7b3400ab7f67b3734180bd6ecdef464a1069cdd1135dfc39864fd97033be8c3c9551f28b65e07d658307963836d3f548b4e69
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/core@npm:3.535.0"
dependencies:
"@smithy/core": "npm:^1.4.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/signature-v4": "npm:^2.2.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.6.2"
checksum: 10/f80dd5f6293dbfa11fdfdaed6dc56142c86eaf074231be990ce127ebd9fd92e2b574d751d5b15c397b885ad60ef0550b5d80bc516979d0b0289605c9eacdfdb0
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/credential-provider-env@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/a9ab16146a2ba6d5d4af901ebacbd4576effd42c90debc274a9e827bd0a958072b068dfab54e8c6735cc96de40196d84c90c2543692336cca0decef2a16f2fd2
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/credential-provider-http@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-stream": "npm:^2.2.0"
tslib: "npm:^2.6.2"
checksum: 10/989d97be76e7c93801c216e18974741df14d66c5a1069bc01d80b26a73bae714a4070d1469db8a00db51d8914167e2c8d17eee565fb9fba29527895b0b165e85
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.540.0"
dependencies:
"@aws-sdk/client-sts": "npm:3.540.0"
"@aws-sdk/credential-provider-env": "npm:3.535.0"
"@aws-sdk/credential-provider-process": "npm:3.535.0"
"@aws-sdk/credential-provider-sso": "npm:3.540.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.540.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/credential-provider-imds": "npm:^2.3.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/shared-ini-file-loader": "npm:^2.4.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/71d6a3eda7ec07e2c516e149f75f33d35217c8ea54cf705fde06173d35fd118f2c1569e56ddd89f229049ef8edcfec26cbebbd51d84c0781f131df1537bab222
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/credential-provider-node@npm:3.540.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.535.0"
"@aws-sdk/credential-provider-http": "npm:3.535.0"
"@aws-sdk/credential-provider-ini": "npm:3.540.0"
"@aws-sdk/credential-provider-process": "npm:3.535.0"
"@aws-sdk/credential-provider-sso": "npm:3.540.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.540.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/credential-provider-imds": "npm:^2.3.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/shared-ini-file-loader": "npm:^2.4.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/78fde961d1b0b9b5e19b7a8e3ccae2daf35c3cb1dd4fee58e8960e7f7d97a0f42a470caab5c62aa5568f1b2d39171992164f22eb32e5cc231db34a9be4743bc9
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/credential-provider-process@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/shared-ini-file-loader": "npm:^2.4.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/59260bcd5d42ee61269a3a3d9b2c6c9ab0b6af2b1d48826018e56d44014c3a85fceaf175f3855a24a5f3093ee367afea49a72a559bc7ceb30e7cc9be049c4b0a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.540.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.540.0"
"@aws-sdk/token-providers": "npm:3.540.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/shared-ini-file-loader": "npm:^2.4.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/9aa974a56a2effb2254df63bc5ec08595d6ca9bd5d724d8fc463e798131bfab0c15a47c32f2b359765ef44241dd737ebd09202a09690214f6e52060eba2f0dcd
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.540.0"
dependencies:
"@aws-sdk/client-sts": "npm:3.540.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/889dac368f27fde4a47428dd9ba23ba8352bb01a6c9674b36b3972feef5acc68ff5ba37b8932413bff34c7ed128d1a840369e663ac0291eb8ebd8a6fe48e5ce0
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-arn-parser": "npm:3.535.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-config-provider": "npm:^2.3.0"
tslib: "npm:^2.6.2"
checksum: 10/5a83cd69cce1c47ab3e02d1895fcd5e40e34fbde406f0f655e1901a0dac36b2f62dd7303350e49273bc313bf228400312d374376b193f048bde64d52be7476da
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/c7e5015459a55832d9e03eabe77c3546d62fa76e1369a67c612e6e7a82c37decd1ed66891005aebfb9240c99f7803fbfcd6e4926342aad8a435feaec11a5c422
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.535.0"
dependencies:
"@aws-crypto/crc32": "npm:3.0.0"
"@aws-crypto/crc32c": "npm:3.0.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/is-array-buffer": "npm:^2.2.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-utf8": "npm:^2.3.0"
tslib: "npm:^2.6.2"
checksum: 10/a0b9cc3fd13c75f38643ea2530b0c62a90a85c0b1c174c009c569f138e7330de00b9af4aca5cc5e72b828b22a13f62eb030aed7e1fa55f06622c1d55687d5415
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-host-header@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/a32cb45c88c8e2361ca4cfca8cd7dc84e743e39e3a161ac4d9aa6c0916b3f259f32c2c8d84cfb60971c4da69fe17b387df75d21903aab8c2c56586cbe025c91c
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/991aaa73a6c134816550722f3a2fc76504d29f78615425399e6feedac9e38a30757a6561f310bee49aa53bb8d73a26578270f6f21b4ecbdb2efddd9b4514bde1
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-logger@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/1edb993a1e020848be08904e07e7f8bc4925cece85c74d5d67f787e4fe3dcc80da558dd71c530e0910fb86313b9c3955cb4585d1ddbf47fcb85bf8024c735e3a
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/cf231a98e8f85c4592ccdc8c3d6bff10951fea96c06978068ce6667c6d4c99f95f14b836996dac27c31848030f662f1600629cc63554c5c0d8b4242bba4c5bea
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-arn-parser": "npm:3.535.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/signature-v4": "npm:^2.2.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-config-provider": "npm:^2.3.0"
tslib: "npm:^2.6.2"
checksum: 10/effcd878a305953128dd5e12babbc94181a4a442845164abfc3b84b2ca986330a76c7641f372bd8f872d6b855616d59a2bbfa4105c87258de4c5a5cf01a7eedc
languageName: node
linkType: hard
"@aws-sdk/middleware-signing@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-signing@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/signature-v4": "npm:^2.2.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-middleware": "npm:^2.2.0"
tslib: "npm:^2.6.2"
checksum: 10/c61a230082f37f444d6041d045913e7b72d676a801b4908493ed0cca4e19bf0cdfd568d71929e49cc6173882f5fcf0a730e20e954435c62f4154af1a7fa4f524
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.537.0":
version: 3.537.0
resolution: "@aws-sdk/middleware-ssec@npm:3.537.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/ac2f3a436f5ca541041d18dbd908ce3b0cd68f7e899bbc84aa8559cb8ef12ba6003668cbddec988f57af61d5f02b4692f4986504670590e8b8c1ad944a3b8cd7
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.540.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/032a37e91682a7330e7553c1728c84528a16a1e4efb0d3a0823db49a5c56b64d0cf1a84b4863a5314fc4954d824a77786493f0d305b72305fabd75c4badd7697
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/region-config-resolver@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-config-provider": "npm:^2.3.0"
"@smithy/util-middleware": "npm:^2.2.0"
tslib: "npm:^2.6.2"
checksum: 10/a7a1ef6f85f1d05a03d8a132bd4a822c51ac0ba88799d3c3b340118b40c958dc412ed9c97a8945fce8b35ec1f31192003e638e419345054bc514943a9962eb72
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.535.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/signature-v4": "npm:^2.2.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/b2302cd39e45feecb921bcd7fdda619b3e23fdf0175cfd23d75db6157f524401b210dec719e901332b6846eeb5c26f12d0d4822498b23908b8ee157ee13df6f7
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/token-providers@npm:3.540.0"
dependencies:
"@aws-sdk/client-sso-oidc": "npm:3.540.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/shared-ini-file-loader": "npm:^2.4.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/137e43d2257ac87302033bf59731a7c5d21f1fab047c673d90f1adb036cde889debe159f2a59aec70c9daefe0d76528eae51d821f178c0de20b1e328efc25c14
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.535.0, @aws-sdk/types@npm:^3.222.0":
version: 3.535.0
resolution: "@aws-sdk/types@npm:3.535.0"
dependencies:
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/29c2def0ef0a10c0cc44d45b18e149ed6884a6417ddef7a23a58d50ad83f71cf0b00dd774fcc57fcdf85e1e21a8849d9e25999943435a1487ee8ac127a668c6d
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/util-arn-parser@npm:3.535.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/c82d8f0514c82dc86f5754be8cdadf7cd8a22774744190f32446462d82bd4d03d3b07b247e92c81e7ceb76d3af2d35f070438b9f0b3432e344db849cdce0c394
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/util-endpoints@npm:3.540.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-endpoints": "npm:^1.2.0"
tslib: "npm:^2.6.2"
checksum: 10/0adf6ef1007e5f059059d926b6ac68a1ae2b70093a8d8af1c5cc15cf62a6291f436f065fc31b6a1950200d4c97cf7ce3e7e8e554b2657b9e11570749a224a5da
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.535.0
resolution: "@aws-sdk/util-locate-window@npm:3.535.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/6405c0abd75900367c59cdd07db0a2da45ad94640293a6d5baa03ec42c71737f215df0a70c939b20ba3f5bd7068242a0e2d58c091e432cfa4aa034ea3ef7f874
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/types": "npm:^2.12.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10/76edb3cb012af16777988c8c63d74504431af33d8ebbcb891abbb972498e49d02ee43e61cf09facf22909d69df645d53480640884d2e76de581016851cafa6d3
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10/29f8f4e580ebf738e4bc4ea28e942c990ca5146739e424dd33f754359354101e9239cf4e1b3329fe0f776c261075a2248ddc0feabaeaac322cfd57894c731ecb
languageName: node
linkType: hard
"@aws-sdk/util-utf8-browser@npm:^3.0.0":
version: 3.259.0
resolution: "@aws-sdk/util-utf8-browser@npm:3.259.0"
dependencies:
tslib: "npm:^2.3.1"
checksum: 10/bdcf29a92a9a1010b44bf8bade3f1224cb6577a6550b39df97cc053d353f2868d355c25589d61e1da54691d65350d8578a496840ad770ed916a6c3af0971f657
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/xml-builder@npm:3.535.0"
dependencies:
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10/9e358993bb5e5b9348af1a4a68b1f17fd7faf4f3f4b736e9be2c17d1f0aff50ae61e3e0fa91ccec7fa747bea9d5eea31774387006eb45514c810cafa67c0657f
languageName: node
linkType: hard
"@azure/abort-controller@npm:^1.0.0":
version: 1.1.0
resolution: "@azure/abort-controller@npm:1.1.0"
dependencies:
tslib: "npm:^2.2.0"
checksum: 10/1efe8735cfe6411f42ab9dda86be627073e0e3345a89bd5d0560175523ab3939db2c82fd17965a49fc70513377866539c91a5c73c871b5a0d771329ffae87dda
languageName: node
linkType: hard
"@azure/abort-controller@npm:^2.0.0":
version: 2.1.1
resolution: "@azure/abort-controller@npm:2.1.1"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/dca36e5036c25f034e186cb8deef2e2609b1a5be980d1659d35b790967c12152778e4bb97623fba2cc74326d86c086c23d6c58f8f32b43bf6367c57abebeb142
languageName: node
linkType: hard
"@azure/core-auth@npm:^1.3.0":
version: 1.7.1
resolution: "@azure/core-auth@npm:1.7.1"
dependencies:
"@azure/abort-controller": "npm:^2.0.0"
"@azure/core-util": "npm:^1.1.0"
tslib: "npm:^2.6.2"
checksum: 10/2c79df7e5730900ef1e9452c14dea37e2c9e8e1774631f6f3559c6172348275661bfb2cc61e2d3f8f7b1f3f3a42d2a7bd69f30a8d6b7bdfee17a79c136c38c80
languageName: node
linkType: hard
"@azure/core-http@npm:^3.0.0":
version: 3.0.4
resolution: "@azure/core-http@npm:3.0.4"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-auth": "npm:^1.3.0"
"@azure/core-tracing": "npm:1.0.0-preview.13"
"@azure/core-util": "npm:^1.1.1"
"@azure/logger": "npm:^1.0.0"
"@types/node-fetch": "npm:^2.5.0"
"@types/tunnel": "npm:^0.0.3"
form-data: "npm:^4.0.0"
node-fetch: "npm:^2.6.7"
process: "npm:^0.11.10"
tslib: "npm:^2.2.0"
tunnel: "npm:^0.0.6"
uuid: "npm:^8.3.0"
xml2js: "npm:^0.5.0"
checksum: 10/0429c422f59feb18a91486263acdca5ab8bf37b83271cb3088a6d14c1e7580130037e66ad060945520de093b3b92bf4c882d1102d340b816f2616c6bc9925e68
languageName: node
linkType: hard
"@azure/core-lro@npm:^2.2.0":
version: 2.7.1
resolution: "@azure/core-lro@npm:2.7.1"
dependencies:
"@azure/abort-controller": "npm:^2.0.0"
"@azure/core-util": "npm:^1.2.0"
"@azure/logger": "npm:^1.0.0"
tslib: "npm:^2.6.2"
checksum: 10/12b183799bca6fb11d90c10b0dde5b888c0ff487b79dcd9dd10ba7f2e092c158dbc45605f19148d759b0d43ac0bb699899905413f6f57f3c20ba937c08fd4ae6
languageName: node
linkType: hard
"@azure/core-paging@npm:^1.1.1":
version: 1.6.1
resolution: "@azure/core-paging@npm:1.6.1"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/0bdae02e6e9d24a4800d7e6fb4135dbe23eef687094e464c05cb41ec36a5f0d8b94877691ffd8b7b2851ff670ec1e5a73fde530dce5288774c9ecd8e072ae612
languageName: node
linkType: hard
"@azure/core-tracing@npm:1.0.0-preview.13":
version: 1.0.0-preview.13
resolution: "@azure/core-tracing@npm:1.0.0-preview.13"
dependencies:
"@opentelemetry/api": "npm:^1.0.1"
tslib: "npm:^2.2.0"
checksum: 10/7a1832fdc7e3a6330a7714b68dcfc210258e52e1f003aaeb8174e0d6675466caf9bb11d977891d0445808119df4ab9045fb6d2888be4a4b6efa1404f02af5a9d
languageName: node
linkType: hard
"@azure/core-util@npm:^1.1.0, @azure/core-util@npm:^1.1.1, @azure/core-util@npm:^1.2.0":
version: 1.8.1
resolution: "@azure/core-util@npm:1.8.1"
dependencies:
"@azure/abort-controller": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10/fb9083e94d97da05a5cc87294d4095be4055a470e5262db46d57bd0c4174ad86df6517ddbff27d0f693c4ec9f701c01c6c7b145ddb496fa654ea7a26a29ab97b
languageName: node
linkType: hard
"@azure/logger@npm:^1.0.0":
version: 1.1.1
resolution: "@azure/logger@npm:1.1.1"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/516f036806c37688afe140be105bf8c7d06c9a0d408f800614a6fb5f894aee772c7b3dcd3a8b928899949ce5e547ffbeaa5e146def62a6c5a081e4e0fe3d5ca7
languageName: node
linkType: hard
"@azure/storage-blob@npm:^12.17.0":
version: 12.17.0
resolution: "@azure/storage-blob@npm:12.17.0"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-http": "npm:^3.0.0"
"@azure/core-lro": "npm:^2.2.0"
"@azure/core-paging": "npm:^1.1.1"
"@azure/core-tracing": "npm:1.0.0-preview.13"
"@azure/logger": "npm:^1.0.0"
events: "npm:^3.0.0"
tslib: "npm:^2.2.0"
checksum: 10/6a9279103dae129bd0374a59e2468f45e09e11491b2fdede737956f53c0d42e9e9e06db23d3e619033cfa459a786418d84adaf440b767ea3ea03f5bfd206c8af
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.23.5, @babel/code-frame@npm:^7.24.1, @babel/code-frame@npm:^7.24.2":
version: 7.24.2
resolution: "@babel/code-frame@npm:7.24.2"
dependencies:
"@babel/highlight": "npm:^7.24.2"
picocolors: "npm:^1.0.0"
checksum: 10/7db8f5b36ffa3f47a37f58f61e3d130b9ecad21961f3eede7e2a4ac2c7e4a5efb6e9d03a810c669bc986096831b6c0dfc2c3082673d93351b82359c1b03e0590
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.23.5":
version: 7.24.4
resolution: "@babel/compat-data@npm:7.24.4"
checksum: 10/e51faec0ac8259f03cc5029d2b4a944b4fee44cb5188c11530769d5beb81f384d031dba951febc3e33dbb48ceb8045b1184f5c1ac4c5f86ab1f5e951e9aaf7af
languageName: node
linkType: hard
"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.23.9":
version: 7.24.4
resolution: "@babel/core@npm:7.24.4"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.24.2"
"@babel/generator": "npm:^7.24.4"
"@babel/helper-compilation-targets": "npm:^7.23.6"
"@babel/helper-module-transforms": "npm:^7.23.3"
"@babel/helpers": "npm:^7.24.4"
"@babel/parser": "npm:^7.24.4"
"@babel/template": "npm:^7.24.0"
"@babel/traverse": "npm:^7.24.1"
"@babel/types": "npm:^7.24.0"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: 10/1e049f8df26be0fe5be36173fd7c33dfb004eeeec28152fea83c90e71784f9a6f2237296f43a2ee7d9041e2a33a05f43da48ce2d4e0cd473a682328ca07ce7e0
languageName: node
linkType: hard
"@babel/generator@npm:^7.24.1, @babel/generator@npm:^7.24.4, @babel/generator@npm:^7.7.2":
version: 7.24.4
resolution: "@babel/generator@npm:7.24.4"
dependencies:
"@babel/types": "npm:^7.24.0"
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
jsesc: "npm:^2.5.1"
checksum: 10/69e1772dcf8f95baec951f422cca091d59a3f29b5eedc989ad87f7262289b94625983f6fe654302ca17aae0a32f9232332b83fcc85533311d6267b09c58b1061
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.23.6":
version: 7.23.6
resolution: "@babel/helper-compilation-targets@npm:7.23.6"
dependencies:
"@babel/compat-data": "npm:^7.23.5"
"@babel/helper-validator-option": "npm:^7.23.5"
browserslist: "npm:^4.22.2"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 10/05595cd73087ddcd81b82d2f3297aac0c0422858dfdded43d304786cf680ec33e846e2317e6992d2c964ee61d93945cbf1fa8ec80b55aee5bfb159227fb02cb9
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-environment-visitor@npm:7.22.20"
checksum: 10/d80ee98ff66f41e233f36ca1921774c37e88a803b2f7dca3db7c057a5fea0473804db9fb6729e5dbfd07f4bed722d60f7852035c2c739382e84c335661590b69
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.23.0":
version: 7.23.0
resolution: "@babel/helper-function-name@npm:7.23.0"
dependencies:
"@babel/template": "npm:^7.22.15"
"@babel/types": "npm:^7.23.0"
checksum: 10/7b2ae024cd7a09f19817daf99e0153b3bf2bc4ab344e197e8d13623d5e36117ed0b110914bc248faa64e8ccd3e97971ec7b41cc6fd6163a2b980220c58dcdf6d
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-hoist-variables@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 10/394ca191b4ac908a76e7c50ab52102669efe3a1c277033e49467913c7ed6f7c64d7eacbeabf3bed39ea1f41731e22993f763b1edce0f74ff8563fd1f380d92cc
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.22.15":
version: 7.24.3
resolution: "@babel/helper-module-imports@npm:7.24.3"
dependencies:
"@babel/types": "npm:^7.24.0"
checksum: 10/42fe124130b78eeb4bb6af8c094aa749712be0f4606f46716ce74bc18a5ea91c918c547c8bb2307a2e4b33f163e4ad2cb6a7b45f80448e624eae45b597ea3499
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/helper-module-transforms@npm:7.23.3"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-module-imports": "npm:^7.22.15"
"@babel/helper-simple-access": "npm:^7.22.5"
"@babel/helper-split-export-declaration": "npm:^7.22.6"
"@babel/helper-validator-identifier": "npm:^7.22.20"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/583fa580f8e50e6f45c4f46aa76a8e49c2528deb84e25f634d66461b9a0e2420e13979b0a607b67aef67eaf8db8668eb9edc038b4514b16e3879fe09e8fd294b
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.24.0, @babel/helper-plugin-utils@npm:^7.8.0":
version: 7.24.0
resolution: "@babel/helper-plugin-utils@npm:7.24.0"
checksum: 10/dc8c7af321baf7653d93315beffee1790eb2c464b4f529273a24c8743a3f3095bf3f2d11828cb2c52d56282ef43a4bdc67a79c9ab8dd845e35d01871f3f28a0e
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-simple-access@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 10/7d5430eecf880937c27d1aed14245003bd1c7383ae07d652b3932f450f60bfcf8f2c1270c593ab063add185108d26198c69d1aca0e6fb7c6fdada4bcf72ab5b7
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.22.6":
version: 7.22.6
resolution: "@babel/helper-split-export-declaration@npm:7.22.6"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 10/e141cace583b19d9195f9c2b8e17a3ae913b7ee9b8120246d0f9ca349ca6f03cb2c001fd5ec57488c544347c0bb584afec66c936511e447fd20a360e591ac921
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.23.4":
version: 7.24.1
resolution: "@babel/helper-string-parser@npm:7.24.1"
checksum: 10/04c0ede77b908b43e6124753b48bc485528112a9335f0a21a226bff1ace75bb6e64fab24c85cb4b1610ef3494dacd1cb807caeb6b79a7b36c43d48c289b35949
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-validator-identifier@npm:7.22.20"
checksum: 10/df882d2675101df2d507b95b195ca2f86a3ef28cb711c84f37e79ca23178e13b9f0d8b522774211f51e40168bf5142be4c1c9776a150cddb61a0d5bf3e95750b
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.23.5":
version: 7.23.5
resolution: "@babel/helper-validator-option@npm:7.23.5"
checksum: 10/537cde2330a8aede223552510e8a13e9c1c8798afee3757995a7d4acae564124fe2bf7e7c3d90d62d3657434a74340a274b3b3b1c6f17e9a2be1f48af29cb09e
languageName: node
linkType: hard
"@babel/helpers@npm:^7.24.4":
version: 7.24.4
resolution: "@babel/helpers@npm:7.24.4"
dependencies:
"@babel/template": "npm:^7.24.0"