forked from sequelize/sequelize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
14247 lines (12840 loc) · 503 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 10c0/53c2b231a61a46792b39a0d43bc4f4f776bb4542aa57ee04930676802e5501282c2fc8aac14e4cd1f1120ff8b52616b6ff5ab539ad30aa2277d726444b71619f
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: 10c0/92ce5915f8901d8c7cd4f4e6e2fe7b9fd335a29955b400caa52e0e5b12ca3796ada7c2f10e78c9c5b0f9c2539dff0ffea7b19850a56e1487aa083531e1e46d43
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: 10c0/09189ada61a4ffe6b3bd363b0535438470a8cc1a83c89a2591ef2a0b91acb9c4ba95626557cddf856abb9df0d2bfdb0969512f1949b6db7bff5d17109d8beb3f
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: 10c0/a5c7ec12ec23fd44c93971234176e0f3bda33d1d5ff3abe25a538f46d8a0baa312eefd179ac3f9bcca1c2d31886e3a36d1e2349b6989c59c3ea6853161095229
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: 10c0/388891b86d816adb658175afeedaa6c4b4c70e83a7e94050d0425788da7fd5c1d675c5bd1588700e5168325bb342cc1063aa1ee4e519bc7f9b028b3998b69c53
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: 10c0/26b51cba7f4f0412531205661d21e4a4f56cd87dbcfeb9844c4758b23029b83ff9815bd5207abbe98b62803948625d559cf177f6f6bce3af6654a6e05e0e1e31
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: 10c0/c6a2d6b8176f6ab34b86f7b8c81e2beeae9d41bd4f5f375b332fbe9cbb916b94adcd70676fc7a505ba5abd4232dec1ddfcfa55877f91696d4c65f166648f3026
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: 10c0/fc013b25a5813c425d4fb77c9ffbc8b5f73d2c78b423df98a1b2575a26de5ff3775c8f62fcf8ef2cc39c8af1cc651013e2c670c1a605a2e16749e06920a2d68f
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: 10c0/67e5cbdebd9560244658ba4dd8610c8dc51022497780961fb5061c09618d4337e18b1ee6c71ac24b4aca175f2aa34d1390b95f8759dc293f197f2339dd5dd8c9
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: 10c0/71ab6963daabbf080b274e24d160e4af6c8bbb6832bb885644018849ff53356bf82bb8000b8596cf296e7d6b14ad6201872b6b902f944e97e121eb2b2f692667
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.388.0":
version: 3.515.0
resolution: "@aws-sdk/client-s3@npm:3.515.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.515.0"
"@aws-sdk/core": "npm:3.513.0"
"@aws-sdk/credential-provider-node": "npm:3.515.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.515.0"
"@aws-sdk/middleware-expect-continue": "npm:3.515.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.515.0"
"@aws-sdk/middleware-host-header": "npm:3.515.0"
"@aws-sdk/middleware-location-constraint": "npm:3.515.0"
"@aws-sdk/middleware-logger": "npm:3.515.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.515.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.515.0"
"@aws-sdk/middleware-signing": "npm:3.515.0"
"@aws-sdk/middleware-ssec": "npm:3.515.0"
"@aws-sdk/middleware-user-agent": "npm:3.515.0"
"@aws-sdk/region-config-resolver": "npm:3.515.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.515.0"
"@aws-sdk/types": "npm:3.515.0"
"@aws-sdk/util-endpoints": "npm:3.515.0"
"@aws-sdk/util-user-agent-browser": "npm:3.515.0"
"@aws-sdk/util-user-agent-node": "npm:3.515.0"
"@aws-sdk/xml-builder": "npm:3.496.0"
"@smithy/config-resolver": "npm:^2.1.1"
"@smithy/core": "npm:^1.3.2"
"@smithy/eventstream-serde-browser": "npm:^2.1.1"
"@smithy/eventstream-serde-config-resolver": "npm:^2.1.1"
"@smithy/eventstream-serde-node": "npm:^2.1.1"
"@smithy/fetch-http-handler": "npm:^2.4.1"
"@smithy/hash-blob-browser": "npm:^2.1.1"
"@smithy/hash-node": "npm:^2.1.1"
"@smithy/hash-stream-node": "npm:^2.1.1"
"@smithy/invalid-dependency": "npm:^2.1.1"
"@smithy/md5-js": "npm:^2.1.1"
"@smithy/middleware-content-length": "npm:^2.1.1"
"@smithy/middleware-endpoint": "npm:^2.4.1"
"@smithy/middleware-retry": "npm:^2.1.1"
"@smithy/middleware-serde": "npm:^2.1.1"
"@smithy/middleware-stack": "npm:^2.1.1"
"@smithy/node-config-provider": "npm:^2.2.1"
"@smithy/node-http-handler": "npm:^2.3.1"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/smithy-client": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
"@smithy/url-parser": "npm:^2.1.1"
"@smithy/util-base64": "npm:^2.1.1"
"@smithy/util-body-length-browser": "npm:^2.1.1"
"@smithy/util-body-length-node": "npm:^2.2.1"
"@smithy/util-defaults-mode-browser": "npm:^2.1.1"
"@smithy/util-defaults-mode-node": "npm:^2.2.0"
"@smithy/util-endpoints": "npm:^1.1.1"
"@smithy/util-retry": "npm:^2.1.1"
"@smithy/util-stream": "npm:^2.1.1"
"@smithy/util-utf8": "npm:^2.1.1"
"@smithy/util-waiter": "npm:^2.1.1"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
checksum: 10c0/481847122acc53a6f09d8a4956199e58d4cd85d8d68d06759483125afffde51d32910852eaa4df627818878a0078b5a81effa060f56c69fd5cbb838fdeb45e9c
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.515.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.515.0"
"@aws-sdk/core": "npm:3.513.0"
"@aws-sdk/middleware-host-header": "npm:3.515.0"
"@aws-sdk/middleware-logger": "npm:3.515.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.515.0"
"@aws-sdk/middleware-user-agent": "npm:3.515.0"
"@aws-sdk/region-config-resolver": "npm:3.515.0"
"@aws-sdk/types": "npm:3.515.0"
"@aws-sdk/util-endpoints": "npm:3.515.0"
"@aws-sdk/util-user-agent-browser": "npm:3.515.0"
"@aws-sdk/util-user-agent-node": "npm:3.515.0"
"@smithy/config-resolver": "npm:^2.1.1"
"@smithy/core": "npm:^1.3.2"
"@smithy/fetch-http-handler": "npm:^2.4.1"
"@smithy/hash-node": "npm:^2.1.1"
"@smithy/invalid-dependency": "npm:^2.1.1"
"@smithy/middleware-content-length": "npm:^2.1.1"
"@smithy/middleware-endpoint": "npm:^2.4.1"
"@smithy/middleware-retry": "npm:^2.1.1"
"@smithy/middleware-serde": "npm:^2.1.1"
"@smithy/middleware-stack": "npm:^2.1.1"
"@smithy/node-config-provider": "npm:^2.2.1"
"@smithy/node-http-handler": "npm:^2.3.1"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/smithy-client": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
"@smithy/url-parser": "npm:^2.1.1"
"@smithy/util-base64": "npm:^2.1.1"
"@smithy/util-body-length-browser": "npm:^2.1.1"
"@smithy/util-body-length-node": "npm:^2.2.1"
"@smithy/util-defaults-mode-browser": "npm:^2.1.1"
"@smithy/util-defaults-mode-node": "npm:^2.2.0"
"@smithy/util-endpoints": "npm:^1.1.1"
"@smithy/util-middleware": "npm:^2.1.1"
"@smithy/util-retry": "npm:^2.1.1"
"@smithy/util-utf8": "npm:^2.1.1"
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-sdk/credential-provider-node": ^3.515.0
checksum: 10c0/5b7edda7e4a2a7647f2be93e99338fb7873718732f92bd81ec48dea0808f3e2f91da2a79ff55a71e3fd2d8ba6e9285ac6bcf1d64d0b52c397d4f31d9b42dce66
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/client-sso@npm:3.515.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.513.0"
"@aws-sdk/middleware-host-header": "npm:3.515.0"
"@aws-sdk/middleware-logger": "npm:3.515.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.515.0"
"@aws-sdk/middleware-user-agent": "npm:3.515.0"
"@aws-sdk/region-config-resolver": "npm:3.515.0"
"@aws-sdk/types": "npm:3.515.0"
"@aws-sdk/util-endpoints": "npm:3.515.0"
"@aws-sdk/util-user-agent-browser": "npm:3.515.0"
"@aws-sdk/util-user-agent-node": "npm:3.515.0"
"@smithy/config-resolver": "npm:^2.1.1"
"@smithy/core": "npm:^1.3.2"
"@smithy/fetch-http-handler": "npm:^2.4.1"
"@smithy/hash-node": "npm:^2.1.1"
"@smithy/invalid-dependency": "npm:^2.1.1"
"@smithy/middleware-content-length": "npm:^2.1.1"
"@smithy/middleware-endpoint": "npm:^2.4.1"
"@smithy/middleware-retry": "npm:^2.1.1"
"@smithy/middleware-serde": "npm:^2.1.1"
"@smithy/middleware-stack": "npm:^2.1.1"
"@smithy/node-config-provider": "npm:^2.2.1"
"@smithy/node-http-handler": "npm:^2.3.1"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/smithy-client": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
"@smithy/url-parser": "npm:^2.1.1"
"@smithy/util-base64": "npm:^2.1.1"
"@smithy/util-body-length-browser": "npm:^2.1.1"
"@smithy/util-body-length-node": "npm:^2.2.1"
"@smithy/util-defaults-mode-browser": "npm:^2.1.1"
"@smithy/util-defaults-mode-node": "npm:^2.2.0"
"@smithy/util-endpoints": "npm:^1.1.1"
"@smithy/util-middleware": "npm:^2.1.1"
"@smithy/util-retry": "npm:^2.1.1"
"@smithy/util-utf8": "npm:^2.1.1"
tslib: "npm:^2.5.0"
checksum: 10c0/f49ecf395cfe3b7ded3448e519a4589e06df5eabb678b20738a9b3e2ac1c0f85efdad7ee00cd5caf0c115f4862186c40e83a5144b71e062c526f9e703a5b70ff
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/client-sts@npm:3.515.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.513.0"
"@aws-sdk/middleware-host-header": "npm:3.515.0"
"@aws-sdk/middleware-logger": "npm:3.515.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.515.0"
"@aws-sdk/middleware-user-agent": "npm:3.515.0"
"@aws-sdk/region-config-resolver": "npm:3.515.0"
"@aws-sdk/types": "npm:3.515.0"
"@aws-sdk/util-endpoints": "npm:3.515.0"
"@aws-sdk/util-user-agent-browser": "npm:3.515.0"
"@aws-sdk/util-user-agent-node": "npm:3.515.0"
"@smithy/config-resolver": "npm:^2.1.1"
"@smithy/core": "npm:^1.3.2"
"@smithy/fetch-http-handler": "npm:^2.4.1"
"@smithy/hash-node": "npm:^2.1.1"
"@smithy/invalid-dependency": "npm:^2.1.1"
"@smithy/middleware-content-length": "npm:^2.1.1"
"@smithy/middleware-endpoint": "npm:^2.4.1"
"@smithy/middleware-retry": "npm:^2.1.1"
"@smithy/middleware-serde": "npm:^2.1.1"
"@smithy/middleware-stack": "npm:^2.1.1"
"@smithy/node-config-provider": "npm:^2.2.1"
"@smithy/node-http-handler": "npm:^2.3.1"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/smithy-client": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
"@smithy/url-parser": "npm:^2.1.1"
"@smithy/util-base64": "npm:^2.1.1"
"@smithy/util-body-length-browser": "npm:^2.1.1"
"@smithy/util-body-length-node": "npm:^2.2.1"
"@smithy/util-defaults-mode-browser": "npm:^2.1.1"
"@smithy/util-defaults-mode-node": "npm:^2.2.0"
"@smithy/util-endpoints": "npm:^1.1.1"
"@smithy/util-middleware": "npm:^2.1.1"
"@smithy/util-retry": "npm:^2.1.1"
"@smithy/util-utf8": "npm:^2.1.1"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-sdk/credential-provider-node": ^3.515.0
checksum: 10c0/7716a3f63f0b598d368c3c5a3d051158cfacbcc9ae2f21c5d0e92049e5042db363605fe93a8fe99b9fc5c1e7fa50a24d8de6dd9900210f04fdc5731ce91d8427
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.513.0":
version: 3.513.0
resolution: "@aws-sdk/core@npm:3.513.0"
dependencies:
"@smithy/core": "npm:^1.3.2"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/signature-v4": "npm:^2.1.1"
"@smithy/smithy-client": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/ddfa48da5d8ec4f074801d4217533f08968ad99a6e88b0ee1b671d06bc5d0ed4febb1de2e0696db5802b047fa02a543bdd960fb1a36ecba61c2f0bec22baf320
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/credential-provider-env@npm:3.515.0"
dependencies:
"@aws-sdk/types": "npm:3.515.0"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/5c19f3d20051c4dc04d4668933615bf342ed4e04979bf2e4a18fca4ec1dd6b7476d46d98ab3d28f3555c06cb6a73d94a113f2495571755a25b30b3ffba35b328
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/credential-provider-http@npm:3.515.0"
dependencies:
"@aws-sdk/types": "npm:3.515.0"
"@smithy/fetch-http-handler": "npm:^2.4.1"
"@smithy/node-http-handler": "npm:^2.3.1"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/smithy-client": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
"@smithy/util-stream": "npm:^2.1.1"
tslib: "npm:^2.5.0"
checksum: 10c0/9447729ed9141d91748e3cacdeba20ce100b1fd1abc5528f127fc36d7d4c626e8e0618c95b9ff8f76a364ba0d67426a6c81643ed4f21d340ae57478ef7759c3f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.515.0"
dependencies:
"@aws-sdk/client-sts": "npm:3.515.0"
"@aws-sdk/credential-provider-env": "npm:3.515.0"
"@aws-sdk/credential-provider-process": "npm:3.515.0"
"@aws-sdk/credential-provider-sso": "npm:3.515.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.515.0"
"@aws-sdk/types": "npm:3.515.0"
"@smithy/credential-provider-imds": "npm:^2.2.1"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/shared-ini-file-loader": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/381c0fd0bf806cd09b9b11d770e2b093e76280c484c35de2a65980466d4a7ce681a635db4a0d2ea17df055d15c319ba8cc65ee035aa80ec1f1110ad05f80ece4
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/credential-provider-node@npm:3.515.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.515.0"
"@aws-sdk/credential-provider-http": "npm:3.515.0"
"@aws-sdk/credential-provider-ini": "npm:3.515.0"
"@aws-sdk/credential-provider-process": "npm:3.515.0"
"@aws-sdk/credential-provider-sso": "npm:3.515.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.515.0"
"@aws-sdk/types": "npm:3.515.0"
"@smithy/credential-provider-imds": "npm:^2.2.1"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/shared-ini-file-loader": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/bca7ff4b880ec1de9aa08eb8702f9a6b1b5beec6ac38466562c59a799ebf5fefe0df62826f96eac3b8b0f0e2da5da0bbee53b467333302f9ab580b0ae5bf4b0b
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/credential-provider-process@npm:3.515.0"
dependencies:
"@aws-sdk/types": "npm:3.515.0"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/shared-ini-file-loader": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/c31b40e340362f391053f92f728226f819ce72479d1ccc7cb7b1efee3e89af3ddb15deff8736183fb126a566e32e2a95cb8b8600a329d57349ff38d2e8494543
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.515.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.515.0"
"@aws-sdk/token-providers": "npm:3.515.0"
"@aws-sdk/types": "npm:3.515.0"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/shared-ini-file-loader": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/5fc1abeb64e2a44b322a13cbdb81992c8b02906fb5427fc5acb8e5a88d34f0664f955be8b9de5feeb4bff6ca53d242d0069e7e2cc3e0e99621cd804f78a8e5d6
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.515.0"
dependencies:
"@aws-sdk/client-sts": "npm:3.515.0"
"@aws-sdk/types": "npm:3.515.0"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/651eb1c5d9f5883d8ba4725056a3d2d3b0a2305891a82e1ff7170a972af7641387f7a7a5e44f3af3edeae5dc6f6d93a667c5ac9537b5d44b4a1452ee8f125084
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.515.0"
dependencies:
"@aws-sdk/types": "npm:3.515.0"
"@aws-sdk/util-arn-parser": "npm:3.495.0"
"@smithy/node-config-provider": "npm:^2.2.1"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/types": "npm:^2.9.1"
"@smithy/util-config-provider": "npm:^2.2.1"
tslib: "npm:^2.5.0"
checksum: 10c0/1d36f140cf497ca3db00912e6151a84657b10864748193ae88efbd2b7e575d0562297957a5ea556b6e16714677f3263554c4105fc62e80160ae662e15c1d2925
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.515.0"
dependencies:
"@aws-sdk/types": "npm:3.515.0"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/43e8e9b698f035986ff8d18f524085b3b514ab77051774d5abd53d8b6e3ddbc37b3459cb36c3fbe9bb65383980b0367715de4d5b6505e0b053fa59192e341e1f
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.515.0"
dependencies:
"@aws-crypto/crc32": "npm:3.0.0"
"@aws-crypto/crc32c": "npm:3.0.0"
"@aws-sdk/types": "npm:3.515.0"
"@smithy/is-array-buffer": "npm:^2.1.1"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/types": "npm:^2.9.1"
"@smithy/util-utf8": "npm:^2.1.1"
tslib: "npm:^2.5.0"
checksum: 10c0/cc17902ae0406cccb4186755a4215e89b9cc9db0e0d27e0572b1a29c1a03b8bfca5c36b2390fc72c70e3b39698bc01e668fa7806a38c780f3db67dc19c9097dd
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/middleware-host-header@npm:3.515.0"
dependencies:
"@aws-sdk/types": "npm:3.515.0"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/4bbc5cce1050b6d9e34a2b28faa4d4cb620510df5124e378a3c28fcf2c06d1eb7be8afd065f01b10343aca32f31e1a29272d7f1cac4535f0e058e6d920e974e8
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.515.0"
dependencies:
"@aws-sdk/types": "npm:3.515.0"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/7b35f65a28cb579fb483976d74b4ec1822d2e1fd7ad74cf4f0baef58c6b503d8d46328017a318c4da1ed576749921e4116ec3199596546eb6283ccba1a6b3a68
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/middleware-logger@npm:3.515.0"
dependencies:
"@aws-sdk/types": "npm:3.515.0"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/79037e42babcd8137260f9b83c63ed4e6370d3a2b74a8fdb08a69f099014924617b46fba222930d2f2f9a2900640c18013c9b453c252b13a13a7959c63288d13
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.515.0"
dependencies:
"@aws-sdk/types": "npm:3.515.0"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/69abd6566b624835a8bf6c0f7b469172c1df4aebb5a9c459dfc044ce5d133ed18e4786360160d4d4c2779014929c8498a136eb72adc0ab2518d27102c12369ec
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.515.0"
dependencies:
"@aws-sdk/types": "npm:3.515.0"
"@aws-sdk/util-arn-parser": "npm:3.495.0"
"@smithy/node-config-provider": "npm:^2.2.1"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/signature-v4": "npm:^2.1.1"
"@smithy/smithy-client": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
"@smithy/util-config-provider": "npm:^2.2.1"
tslib: "npm:^2.5.0"
checksum: 10c0/8d453b5c20ea7ba7aea3c7f0d97580275265c3342ac8ec0b6e6d0d344582dadf9c9d2c56c6aa53f69e7347cf989d6bc9594c3da88f169bcdd5a489815c0b9b7d
languageName: node
linkType: hard
"@aws-sdk/middleware-signing@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/middleware-signing@npm:3.515.0"
dependencies:
"@aws-sdk/types": "npm:3.515.0"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/signature-v4": "npm:^2.1.1"
"@smithy/types": "npm:^2.9.1"
"@smithy/util-middleware": "npm:^2.1.1"
tslib: "npm:^2.5.0"
checksum: 10c0/db6b090e33db929b35365b86106ff395fc9f955073299984d2ac32fe5a5cb42207b1c6ab837f4efa0b402e06211578d002773a8c9e102a4c5e38cd6a0bb80c14
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/middleware-ssec@npm:3.515.0"
dependencies:
"@aws-sdk/types": "npm:3.515.0"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/3d842c5483f45ef4308dc9028e7fcfef9768fe4935deed45278aeaeb7a031012362205aaf9a328baea64b910c7e085c57a7592e84b5de3c3872206327f94075b
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.515.0"
dependencies:
"@aws-sdk/types": "npm:3.515.0"
"@aws-sdk/util-endpoints": "npm:3.515.0"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/3fd8fdbd868376a736e5a2fce2223e217fe0aa84da4991c8160d83feb89ea2277eda782f42b6a2f66c0fe62d850502bf470289fd1c64b7497c03a4c60be8cc17
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/region-config-resolver@npm:3.515.0"
dependencies:
"@aws-sdk/types": "npm:3.515.0"
"@smithy/node-config-provider": "npm:^2.2.1"
"@smithy/types": "npm:^2.9.1"
"@smithy/util-config-provider": "npm:^2.2.1"
"@smithy/util-middleware": "npm:^2.1.1"
tslib: "npm:^2.5.0"
checksum: 10c0/a60d08bdefbb633db4e937d2c0eb1aef46ff50b6a796408e39bb3cc5d10daa150e9e2f018bf811b00ec87c0193027fbe5446e9225b862da0e2b43b2ca53d11fc
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.515.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.515.0"
"@aws-sdk/types": "npm:3.515.0"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/signature-v4": "npm:^2.1.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/fed7dc750ee02ef8164f61c018419bae06c6e1c043e20dc924aa2c2dd8db49ae17a54631d5fd5d21a0cbb1ec289395f50f5e49d12038cb58379a362e72c12c2e
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/token-providers@npm:3.515.0"
dependencies:
"@aws-sdk/client-sso-oidc": "npm:3.515.0"
"@aws-sdk/types": "npm:3.515.0"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/shared-ini-file-loader": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/1870e03f84fed109fe6e30ccae8b02ba2af95105259c6ff071c36fbe75eccf960e195e9bfc9a211cda8fa7059fba2f089d6aa0f89b8cca79f3991ad0682d99b1
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.515.0, @aws-sdk/types@npm:^3.222.0":
version: 3.515.0
resolution: "@aws-sdk/types@npm:3.515.0"
dependencies:
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/47afecf060dec7e7db5073dfec7d6815582f66266cfb31111af4a80fc10bc56bf5c7a5dc096780849efa982a9b097e69b1b3bebf23d82521763b04ae17cc7202
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.495.0":
version: 3.495.0
resolution: "@aws-sdk/util-arn-parser@npm:3.495.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10c0/8e739c9f9c1b78df5dd2e4ed72feae300966af19aa1c2361ceec4626df022304cc866e0494a4a6aac2e334927e5acc393fc7bf50e7c4eade8fe35a9e5a60642d
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/util-endpoints@npm:3.515.0"
dependencies:
"@aws-sdk/types": "npm:3.515.0"
"@smithy/types": "npm:^2.9.1"
"@smithy/util-endpoints": "npm:^1.1.1"
tslib: "npm:^2.5.0"
checksum: 10c0/fadb9c28abd0edbca0c59ab33a24c27b4e361ab85657e7e4b67d2954d94327dc91adcde9b620f62c4a78a037000315b6270bed3ab8cb2bad805e80d3177429cb
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.495.0
resolution: "@aws-sdk/util-locate-window@npm:3.495.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10c0/e1d33f519016dd3bb92ebdc192a49863c8a4bf5f8c5972c2518a600ecf8b3fc62c2271d79b6e91a42000c59fc9eee74aa2cf184268cd52048ce0a31af5e7117b
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.515.0"
dependencies:
"@aws-sdk/types": "npm:3.515.0"
"@smithy/types": "npm:^2.9.1"
bowser: "npm:^2.11.0"
tslib: "npm:^2.5.0"
checksum: 10c0/d0d202610d5aa02fd3576416661b3853fd73874fb6cc9b34b6806692415c7c234cca563508a5d0d367a66b2bcda379ca9bae82f5010696d767c33309d5ec1e83
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.515.0":
version: 3.515.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.515.0"
dependencies:
"@aws-sdk/types": "npm:3.515.0"
"@smithy/node-config-provider": "npm:^2.2.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/c8167a5a089e2e46895a7c919bfc2e39db52b1351725ae19a2b9ed1c43dfa20c9327990500f96ef8b7dd591db63370f4fb037f385cf4403a72c159d6a33c4b16
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: 10c0/ff56ff252c0ea22b760b909ba5bbe9ca59a447066097e73b1e2ae50a6d366631ba560c373ec4e83b3e225d16238eeaf8def210fdbf135070b3dd3ceb1cc2ef9a
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.496.0":
version: 3.496.0
resolution: "@aws-sdk/xml-builder@npm:3.496.0"
dependencies:
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/2efe8c0e4098fbc9a5ab7864e4a1852d8c029ea12ec46a7585b75216555cc2204e0907258c1fa531945a0c79ec091ada8b0752dea89763e894adba3bbdab1cb0
languageName: node
linkType: hard
"@azure/abort-controller@npm:^1.0.0, @azure/abort-controller@npm:^1.0.4":
version: 1.1.0
resolution: "@azure/abort-controller@npm:1.1.0"
dependencies:
tslib: "npm:^2.2.0"
checksum: 10c0/bb79f0faaa9e9c1ae3c4ec2523ea23ee0879cc491abb4b3ac2dd56c2cc2dfe4b7e8522ffa866d39c7145c0dd61387711368afe0d4eb6534daba7b67ed0a2a730
languageName: node
linkType: hard
"@azure/abort-controller@npm:^2.0.0":
version: 2.0.0
resolution: "@azure/abort-controller@npm:2.0.0"
dependencies:
tslib: "npm:^2.2.0"
checksum: 10c0/8530b8fe3b10413162e02e6de0788f0cc482a6be92b58c068fbb9d5d96ef5adacdec100fa49dc159848282c582bdb0d61003130ac50ca456d14c5c3400043078
languageName: node
linkType: hard
"@azure/core-auth@npm:^1.3.0, @azure/core-auth@npm:^1.4.0, @azure/core-auth@npm:^1.5.0":
version: 1.6.0
resolution: "@azure/core-auth@npm:1.6.0"
dependencies:
"@azure/abort-controller": "npm:^2.0.0"
"@azure/core-util": "npm:^1.1.0"
tslib: "npm:^2.2.0"
checksum: 10c0/2bee30c0b0d931ffeb25dc53d46c2d0cfa825c955a59d0298a389e85ec1d8a72da55d7226bb445deeadb37d9ee6d2f0073aac0a01de3556649d69905caf7e2a2
languageName: node
linkType: hard
"@azure/core-client@npm:^1.3.0, @azure/core-client@npm:^1.4.0, @azure/core-client@npm:^1.5.0":
version: 1.8.0
resolution: "@azure/core-client@npm:1.8.0"
dependencies:
"@azure/abort-controller": "npm:^2.0.0"
"@azure/core-auth": "npm:^1.4.0"
"@azure/core-rest-pipeline": "npm:^1.9.1"
"@azure/core-tracing": "npm:^1.0.0"
"@azure/core-util": "npm:^1.0.0"
"@azure/logger": "npm:^1.0.0"
tslib: "npm:^2.2.0"
checksum: 10c0/73be469669543bb2ecc95f1e4a19f09125c56615c367d44ece5bfac3bcf427b258f3eda1ff4d2828510d74df1d2260040cdab76db3ed3ab68c650508d6f6ab0e
languageName: node
linkType: hard
"@azure/core-http-compat@npm:^2.0.1":
version: 2.0.1
resolution: "@azure/core-http-compat@npm:2.0.1"
dependencies:
"@azure/abort-controller": "npm:^1.0.4"
"@azure/core-client": "npm:^1.3.0"
"@azure/core-rest-pipeline": "npm:^1.3.0"
checksum: 10c0/dd02f1a44645c4edbf44da50f2b242b2523ecb3d64584e831d26f33baf33426446270f1e1edcf29d5c4ff8946af5fd8c7652ceebc77291f05084063a22fd3922
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: 10c0/87c81a0fa47289f2f0fe4270000503e2a09faf0a4b93023df2bcf9fb77cb13bada994d1086b01284d2afdd7c3099f9d97e257f43e68f3a109366157ffb45c230
languageName: node
linkType: hard
"@azure/core-lro@npm:^2.2.0":
version: 2.6.0
resolution: "@azure/core-lro@npm:2.6.0"
dependencies:
"@azure/abort-controller": "npm:^2.0.0"
"@azure/core-util": "npm:^1.2.0"
"@azure/logger": "npm:^1.0.0"
tslib: "npm:^2.2.0"
checksum: 10c0/3d86eb96436f0fd6ee53f4630079be825da89b332ebc32f2160ea99427bb5b11d746c162d37ee7b616ec9dd5a5028aab3afd3ada67ceb5f4868427c125703f5e
languageName: node
linkType: hard
"@azure/core-paging@npm:^1.1.1":
version: 1.5.0
resolution: "@azure/core-paging@npm:1.5.0"
dependencies:
tslib: "npm:^2.2.0"
checksum: 10c0/634a1c6540d16cf047035f19d8866b561e8036059aec2ce0304d77999404e95458f47c33a3f523d20cefa329bad33ccc6bf7450efa8f7d77ceb3419d519b1c48
languageName: node
linkType: hard
"@azure/core-rest-pipeline@npm:^1.1.0, @azure/core-rest-pipeline@npm:^1.3.0, @azure/core-rest-pipeline@npm:^1.8.1, @azure/core-rest-pipeline@npm:^1.9.1":
version: 1.14.0
resolution: "@azure/core-rest-pipeline@npm:1.14.0"
dependencies:
"@azure/abort-controller": "npm:^2.0.0"
"@azure/core-auth": "npm:^1.4.0"
"@azure/core-tracing": "npm:^1.0.1"
"@azure/core-util": "npm:^1.3.0"
"@azure/logger": "npm:^1.0.0"
http-proxy-agent: "npm:^5.0.0"
https-proxy-agent: "npm:^5.0.0"
tslib: "npm:^2.2.0"
checksum: 10c0/859ae83b2065861d72c2f051b20a7cda1c86d5754c0d17423aa16800da33b716df1c5535b275c4576de23617b72465f8646f1b49a2d4dae84938778fa6e95d7d
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: 10c0/0977479165deefe1dcabbd68d18e44742ad18fa4bd0200b9d8b6647510c200800e8b47f8039a249086de9ff7eda37ea3f2beb85fa4878a08dd0251a71ea0cbe3
languageName: node
linkType: hard
"@azure/core-tracing@npm:^1.0.0, @azure/core-tracing@npm:^1.0.1":
version: 1.0.1
resolution: "@azure/core-tracing@npm:1.0.1"
dependencies:
tslib: "npm:^2.2.0"
checksum: 10c0/bc8ff602392b76e9a1b38be9b56f6bcb33b1c44fc0d19196cbf6f7b5834b264d6a5989db867b77884ffa9b3ff29633120b524cec64f5bbc89c72a1f89fdb4ea1
languageName: node
linkType: hard
"@azure/core-util@npm:^1.0.0, @azure/core-util@npm:^1.1.0, @azure/core-util@npm:^1.1.1, @azure/core-util@npm:^1.2.0, @azure/core-util@npm:^1.3.0, @azure/core-util@npm:^1.6.1":
version: 1.7.0
resolution: "@azure/core-util@npm:1.7.0"
dependencies:
"@azure/abort-controller": "npm:^2.0.0"
tslib: "npm:^2.2.0"
checksum: 10c0/a55af1589e0bb03e98fde18fb8c8f36c5e9c135a04750bbe858349e5ec97a0c2f26c9a774dc98e6fbf4649cfc434c504402b820611975bf35fcef292bfee0073
languageName: node
linkType: hard
"@azure/identity@npm:^3.4.1":
version: 3.4.2
resolution: "@azure/identity@npm:3.4.2"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-auth": "npm:^1.5.0"
"@azure/core-client": "npm:^1.4.0"
"@azure/core-rest-pipeline": "npm:^1.1.0"
"@azure/core-tracing": "npm:^1.0.0"
"@azure/core-util": "npm:^1.6.1"
"@azure/logger": "npm:^1.0.0"
"@azure/msal-browser": "npm:^3.5.0"
"@azure/msal-node": "npm:^2.5.1"
events: "npm:^3.0.0"
jws: "npm:^4.0.0"
open: "npm:^8.0.0"
stoppable: "npm:^1.1.0"
tslib: "npm:^2.2.0"
checksum: 10c0/526c9f4822a7d4a95e113f93e139befd6a04cf7fdd7e7db518c98fe4c766722d814e220754c4beab7ba89844b9769fc403a865e4bc6a7f8e9f2bcd0756bb089d
languageName: node
linkType: hard
"@azure/keyvault-keys@npm:^4.4.0":
version: 4.8.0
resolution: "@azure/keyvault-keys@npm:4.8.0"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-auth": "npm:^1.3.0"
"@azure/core-client": "npm:^1.5.0"
"@azure/core-http-compat": "npm:^2.0.1"
"@azure/core-lro": "npm:^2.2.0"
"@azure/core-paging": "npm:^1.1.1"
"@azure/core-rest-pipeline": "npm:^1.8.1"
"@azure/core-tracing": "npm:^1.0.0"
"@azure/core-util": "npm:^1.0.0"
"@azure/logger": "npm:^1.0.0"
tslib: "npm:^2.2.0"
checksum: 10c0/47a675de78f1bc320e9d7d32f4c51675aeb050f51874a552991c2203c41bbaa117c1b0d839c046d5f4fadb7a83894cacafea88ec7b614539b9b99e3d2fb41e89
languageName: node
linkType: hard
"@azure/logger@npm:^1.0.0":
version: 1.0.4
resolution: "@azure/logger@npm:1.0.4"
dependencies:
tslib: "npm:^2.2.0"
checksum: 10c0/15af549d8dbf027e7520fc65432577d52c73b5a30bce2c218f97ab7104b037ae6c31d9a5bfa6bc9c7873c05693261ab8d7f5b95c65db6b1a7c8624c7b655afc6
languageName: node
linkType: hard
"@azure/msal-browser@npm:^3.5.0":
version: 3.10.0
resolution: "@azure/msal-browser@npm:3.10.0"
dependencies:
"@azure/msal-common": "npm:14.7.1"
checksum: 10c0/0ceba9161598d9234508644eb78f6593df3aeb7dc1e1eb08eefe75e8424219b721fface76e903f06c6bef780cfe7756dd86c3ce14fd619f6f6f42d7b69dd3e2f
languageName: node
linkType: hard
"@azure/msal-common@npm:14.7.1":
version: 14.7.1
resolution: "@azure/msal-common@npm:14.7.1"
checksum: 10c0/e37cd3ef03de1d921cd06621f40b378dc655ed87e2e7cbee6529ca02c3fb9c88cbd7bbe2a199f7e96e98edcd0cbf3d094432aaafa51f27e83a432e8247dc3ea2
languageName: node
linkType: hard
"@azure/msal-node@npm:^2.5.1":
version: 2.6.4
resolution: "@azure/msal-node@npm:2.6.4"
dependencies:
"@azure/msal-common": "npm:14.7.1"
jsonwebtoken: "npm:^9.0.0"
uuid: "npm:^8.3.0"
checksum: 10c0/45e88223498cd53163bb23ea92c5368b4101ba78c89da6c684ba0dd7d649733c7145db9ac5a9e964691802b09880c461f4ace0316cb2f357d66c56dde45c9820
languageName: node
linkType: hard
"@azure/storage-blob@npm:^12.11.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: 10c0/462e04cdfcbc891a32522ba2c6cf922c2621996255b5d436411bc4c55f7bcd86ca2693881cad32df718187f574a2799cb118672ebf92f3842be02813735737ac
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.23.5":
version: 7.23.5
resolution: "@babel/code-frame@npm:7.23.5"
dependencies:
"@babel/highlight": "npm:^7.23.4"
chalk: "npm:^2.4.2"
checksum: 10c0/a10e843595ddd9f97faa99917414813c06214f4d9205294013e20c70fbdf4f943760da37dec1d998bf3e6fc20fa2918a47c0e987a7e458663feb7698063ad7c6
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.23.5":
version: 7.23.5
resolution: "@babel/compat-data@npm:7.23.5"
checksum: 10c0/081278ed46131a890ad566a59c61600a5f9557bd8ee5e535890c8548192532ea92590742fd74bd9db83d74c669ef8a04a7e1c85cdea27f960233e3b83c3a957c
languageName: node
linkType: hard
"@babel/core@npm:^7.21.4, @babel/core@npm:^7.7.5":
version: 7.23.9
resolution: "@babel/core@npm:7.23.9"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.23.5"
"@babel/generator": "npm:^7.23.6"
"@babel/helper-compilation-targets": "npm:^7.23.6"
"@babel/helper-module-transforms": "npm:^7.23.3"
"@babel/helpers": "npm:^7.23.9"
"@babel/parser": "npm:^7.23.9"
"@babel/template": "npm:^7.23.9"
"@babel/traverse": "npm:^7.23.9"
"@babel/types": "npm:^7.23.9"
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: 10c0/03883300bf1252ab4c9ba5b52f161232dd52873dbe5cde9289bb2bb26e935c42682493acbac9194a59a3b6cbd17f4c4c84030db8d6d482588afe64531532ff9b
languageName: node
linkType: hard