forked from sequelize/sequelize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
14149 lines (12750 loc) · 499 KB
/
yarn.lock
File metadata and controls
14149 lines (12750 loc) · 499 KB
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.504.0
resolution: "@aws-sdk/client-s3@npm:3.504.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.504.0"
"@aws-sdk/core": "npm:3.496.0"
"@aws-sdk/credential-provider-node": "npm:3.504.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.502.0"
"@aws-sdk/middleware-expect-continue": "npm:3.502.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.502.0"
"@aws-sdk/middleware-host-header": "npm:3.502.0"
"@aws-sdk/middleware-location-constraint": "npm:3.502.0"
"@aws-sdk/middleware-logger": "npm:3.502.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.502.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.502.0"
"@aws-sdk/middleware-signing": "npm:3.502.0"
"@aws-sdk/middleware-ssec": "npm:3.502.0"
"@aws-sdk/middleware-user-agent": "npm:3.502.0"
"@aws-sdk/region-config-resolver": "npm:3.502.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.502.0"
"@aws-sdk/types": "npm:3.502.0"
"@aws-sdk/util-endpoints": "npm:3.502.0"
"@aws-sdk/util-user-agent-browser": "npm:3.502.0"
"@aws-sdk/util-user-agent-node": "npm:3.502.0"
"@aws-sdk/xml-builder": "npm:3.496.0"
"@smithy/config-resolver": "npm:^2.1.1"
"@smithy/core": "npm:^1.3.1"
"@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.1.1"
"@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/9182440751cc4703e7f3576b9496f2a429657c70fc297e3eeb226ad3c081fb485b052fb473a4e91b29bf0e037c1cb1d429fd08b1f21fc63cf528c946b617942b
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.504.0":
version: 3.504.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.504.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.504.0"
"@aws-sdk/core": "npm:3.496.0"
"@aws-sdk/middleware-host-header": "npm:3.502.0"
"@aws-sdk/middleware-logger": "npm:3.502.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.502.0"
"@aws-sdk/middleware-signing": "npm:3.502.0"
"@aws-sdk/middleware-user-agent": "npm:3.502.0"
"@aws-sdk/region-config-resolver": "npm:3.502.0"
"@aws-sdk/types": "npm:3.502.0"
"@aws-sdk/util-endpoints": "npm:3.502.0"
"@aws-sdk/util-user-agent-browser": "npm:3.502.0"
"@aws-sdk/util-user-agent-node": "npm:3.502.0"
"@smithy/config-resolver": "npm:^2.1.1"
"@smithy/core": "npm:^1.3.1"
"@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.1.1"
"@smithy/util-endpoints": "npm:^1.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.504.0
checksum: 10c0/cab50f08d214187b8f8f123b4ada0796299e2931c276c18ca65bce1cffee5ae6193f002d0762594bc92bef43b8ca93a25523e46679bfced67f94dc2f5ef99acb
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/client-sso@npm:3.502.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.496.0"
"@aws-sdk/middleware-host-header": "npm:3.502.0"
"@aws-sdk/middleware-logger": "npm:3.502.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.502.0"
"@aws-sdk/middleware-user-agent": "npm:3.502.0"
"@aws-sdk/region-config-resolver": "npm:3.502.0"
"@aws-sdk/types": "npm:3.502.0"
"@aws-sdk/util-endpoints": "npm:3.502.0"
"@aws-sdk/util-user-agent-browser": "npm:3.502.0"
"@aws-sdk/util-user-agent-node": "npm:3.502.0"
"@smithy/config-resolver": "npm:^2.1.1"
"@smithy/core": "npm:^1.3.1"
"@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.1.1"
"@smithy/util-endpoints": "npm:^1.1.1"
"@smithy/util-retry": "npm:^2.1.1"
"@smithy/util-utf8": "npm:^2.1.1"
tslib: "npm:^2.5.0"
checksum: 10c0/5cad26e92081a7e5edc0a3ce99c7bed9814370a8f2be42e372f384c8c9510b34fdc385334d5aae15e71b36f26a308a33c496ea41e6e1946d5d2d33c6625ce2d8
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.504.0":
version: 3.504.0
resolution: "@aws-sdk/client-sts@npm:3.504.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.496.0"
"@aws-sdk/middleware-host-header": "npm:3.502.0"
"@aws-sdk/middleware-logger": "npm:3.502.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.502.0"
"@aws-sdk/middleware-user-agent": "npm:3.502.0"
"@aws-sdk/region-config-resolver": "npm:3.502.0"
"@aws-sdk/types": "npm:3.502.0"
"@aws-sdk/util-endpoints": "npm:3.502.0"
"@aws-sdk/util-user-agent-browser": "npm:3.502.0"
"@aws-sdk/util-user-agent-node": "npm:3.502.0"
"@smithy/config-resolver": "npm:^2.1.1"
"@smithy/core": "npm:^1.3.1"
"@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.1.1"
"@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.504.0
checksum: 10c0/8a96533b7dfa6fefe6855e6e3b25cad33229854f658429b2922c5ddcaf2be231944e5cd4cbaba6f99db21f80488924ca6690db209a155496a124257aba8fcbdf
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.496.0":
version: 3.496.0
resolution: "@aws-sdk/core@npm:3.496.0"
dependencies:
"@smithy/core": "npm:^1.3.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"
tslib: "npm:^2.5.0"
checksum: 10c0/3064367fb4fe7812c2cf33f356ff74caaa9ead7ca04df17bfb57605715f176fc2071a86b818574373244c4a168826d579d1ba281de2e4e5329954051734a3d4e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/credential-provider-env@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.0"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/f6f3daac0c9d3db078070e204e0d139933c7a7cfdefecbf0432d80dc4e987e24847ebaf30993eab9f4c90ab1aa69c145ed805e9b1342093608befcbec7c0510c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.503.1":
version: 3.503.1
resolution: "@aws-sdk/credential-provider-http@npm:3.503.1"
dependencies:
"@aws-sdk/types": "npm:3.502.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/b439793a23c9b4d5ac13a5b40e389cc0b53067b3f05c1c9afa9ec13ecffa90757c9faa12eef1ba90482bb8a8188fddd154fcfe747fe44bc71f91e7c793c115f9
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.504.0":
version: 3.504.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.504.0"
dependencies:
"@aws-sdk/client-sts": "npm:3.504.0"
"@aws-sdk/credential-provider-env": "npm:3.502.0"
"@aws-sdk/credential-provider-process": "npm:3.502.0"
"@aws-sdk/credential-provider-sso": "npm:3.504.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.504.0"
"@aws-sdk/types": "npm:3.502.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/9a54fd917ac3a371780c08aa3d632b5247b07ca3004c889233c10a186d88b7b85f59362eb164f8af5ea4a2537356be3a3e83d37ee512c2b64d415dd3d0a501ba
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.504.0":
version: 3.504.0
resolution: "@aws-sdk/credential-provider-node@npm:3.504.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.502.0"
"@aws-sdk/credential-provider-http": "npm:3.503.1"
"@aws-sdk/credential-provider-ini": "npm:3.504.0"
"@aws-sdk/credential-provider-process": "npm:3.502.0"
"@aws-sdk/credential-provider-sso": "npm:3.504.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.504.0"
"@aws-sdk/types": "npm:3.502.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/98d0dca85b8b6ab0a796d693484abf39756bdbe88d3568b0961f39f8a019996fc3e26ee587e7949ed168e9ab96d6774714570a3567b47d87c6ceeffeebfec044
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/credential-provider-process@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.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/da8f3f3d7bb05b1c00e612ff7075ea659ab1c1977b13db0f822e50d6593e3c6a83117e54082c2e4d28015b164142285d88f3c056cfcd64b4fa52e55b61333362
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.504.0":
version: 3.504.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.504.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.502.0"
"@aws-sdk/token-providers": "npm:3.504.0"
"@aws-sdk/types": "npm:3.502.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/71c0f92bf90ee17da0eb9164230e62713b01086cc2b53302b1dd22cd533b0b5a7d5af564fd161bc27de65f8b4044ffca31342b35d741b299e62a0af0d442e2f4
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.504.0":
version: 3.504.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.504.0"
dependencies:
"@aws-sdk/client-sts": "npm:3.504.0"
"@aws-sdk/types": "npm:3.502.0"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/0be05167543c896dc1d5a6637f8b936505f508c902d43e8a33914ffb9d267675cb76b15c64ca0a9c267ed1a32ffa678db9e03c341625395711741d1b21bad357
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.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/7f2ce6eeae3e3b379342c790069303a41c9ee18affa13b111bccd14e068933104fe6cad65607909b0f0d2fc376622d3cd3097a8d778bf66801dfb081467ff8ca
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.0"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/226bd7fc1079a9346959d6b117420e406ed86a48bc9198fc1fc502d7f239d19045b6827372720eb5c64d0cdd12dac8eaa4856c67e1b357c7c2c8f72dafa2cf57
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.502.0"
dependencies:
"@aws-crypto/crc32": "npm:3.0.0"
"@aws-crypto/crc32c": "npm:3.0.0"
"@aws-sdk/types": "npm:3.502.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/47ec9794c7781485aa7fd360b67dfcba5162b20d5e8fa7e9a934d8fcd0ffcfc0d68add76567a9e1eaac8056aa19fb2e0afc9dc8fd8f2425c30a9d037a543be6a
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/middleware-host-header@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.0"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/67039ade0cdc97ba158c49b8c406c039eceda712ba6041915e7fbac105578aa6a88264e8c4f2b1a1856b36892d5f004a08bfff1ae5be5f2e5e77893afc12170f
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.0"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/277db1b7d9dcfb8d110961ebbc1d57f397841bf3ac476be7ce53340e65e50f406d9deaa95afad4a38b88e6e19d3c4a358c5c930279275bb79c6ae1e5c80f5623
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/middleware-logger@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.0"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/d4ca7d89d7a1e6603c9585a7a704fde7cf7e9786ffea8225d5fa74bf132cc89e2b91287b3f9783f63bd839f8162a26bcb0366de4c625537ed63fae2dd9955892
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.0"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/7e6f41a7d5d427aed023ce68a1bd1cfde81dc32b5cb444da77929ae28c8ae8c95cd05c42b5a1f6abea9cf7a81168de22426de93336d19d7365d79217d3a4063c
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.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/5e0dd4279ba631bb069b4f8fe9adfcb8a707bbff063b21cf30da921eef50d2ab8407bf9603c3e04036aba7cb140b2e73116dd7d237f05c047a28e9c75f1a3774
languageName: node
linkType: hard
"@aws-sdk/middleware-signing@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/middleware-signing@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.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/a07147565ea8946b765916e02d06b0fb251dfe4d3b36f9299420e0cafc041145501764a08d1c24ed656ee32953ce602a47abc3684efe7be595f2b30bfb1bd093
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/middleware-ssec@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.0"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/efb04dc6a9f47e0eef5e8b504f0d67ec5166c4f0599485c8c8f76838c1a4ae391bbc5b875d2bc1d8c064d51b280bd1f249ba241dc9600fa00503d287c9e0ab91
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.0"
"@aws-sdk/util-endpoints": "npm:3.502.0"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/91663d161a8e64a1fa3ec31c13d89c2d7c849df35c4e7e928b3f087fd289b75469e497c13889ed2854d5f6c9f12e37cf7f7ec68aca6361f911d452be901272c4
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/region-config-resolver@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.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/f5df58df7cbf6731a64faa32c26d1b9a6baca4bc005fb99412069452ca8ae791b91e284f41b21321687f8e436134392024512be3e7c640543c1644355393d894
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.502.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.502.0"
"@aws-sdk/types": "npm:3.502.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/9885dcef941a5c00e0acb914c694377a2bbbeff0be69d203a8c160bfd6268abb7e39a6d9c09527ac6ef793bd2a94dbd2110f0b043e125604f35dd17036817523
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.504.0":
version: 3.504.0
resolution: "@aws-sdk/token-providers@npm:3.504.0"
dependencies:
"@aws-sdk/client-sso-oidc": "npm:3.504.0"
"@aws-sdk/types": "npm:3.502.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/fd6e46cf8edc9af3c8ae24569cf947c2bb49881d1cf7712ec8dd5179c288f7c44e4f6b98d1a828b40906caa053c75389c0da4d37dbc275a43b3e4b033971e6bc
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.502.0, @aws-sdk/types@npm:^3.222.0":
version: 3.502.0
resolution: "@aws-sdk/types@npm:3.502.0"
dependencies:
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/8db784c1eee0f788f6650390b28f83fe38d85890441db1bbace865d412b372b4a3011f1d6a4919ff306a23813d17bd7307448eb35aae51783b839e6af3b64d74
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.502.0":
version: 3.502.0
resolution: "@aws-sdk/util-endpoints@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.0"
"@smithy/types": "npm:^2.9.1"
"@smithy/util-endpoints": "npm:^1.1.1"
tslib: "npm:^2.5.0"
checksum: 10c0/cbbdce293bec546b62f691aec7c92cbf0c310c64ee6aa48c4c52b902092ef786e193445d43bed3c200167dc772b5eda8f5a12a82b516f94cfb151936a341ae81
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.502.0":
version: 3.502.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.0"
"@smithy/types": "npm:^2.9.1"
bowser: "npm:^2.11.0"
tslib: "npm:^2.5.0"
checksum: 10c0/6000f261706e414e0168d0f41f7c2217ac4778cf9c5a8d9179ebebed8376b638ec8d49c98c215b3b17b7ca5c1e8791541578b7c3600910df831d2efa47190eac
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.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/706cae9cd8867a3365a0c86c2c8a8a174d3cbd931be85315b4172fe4647c7e5c9d598b19c04ffec6da6c12dd3d514c1698bbb3767ea144dde406c1333e6ef23d
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:^1.3.0":
version: 1.3.0
resolution: "@azure/core-http-compat@npm:1.3.0"
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/a55f4ea0f70132c05ee50d3c3bb2785804b667974109146461895ca7dde093fc37a307f5d0beb44292ceff10ae7c6ea246a9e2b61614dcd51e4d718c30f134df
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.7.2
resolution: "@azure/keyvault-keys@npm:4.7.2"
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:^1.3.0"
"@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/d1e209ceb3108920950213ed4b442e2f586c4fcf24a3a8b121f6f27ec8847b751cf9e515879f4640a479b4cca0d65158d6b45f7884d6e60a084e340b86e3fc62
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.7.1
resolution: "@azure/msal-browser@npm:3.7.1"
dependencies:
"@azure/msal-common": "npm:14.6.1"
checksum: 10c0/9115f8cd48203c79bfdec43e8f8e96c5e71215cab30163aab9ed134e61bb686ad2f6b6db7eacfd012f1530901354ad928095e9f99d33ee8a70c18c9a947f51a7
languageName: node
linkType: hard
"@azure/msal-common@npm:14.6.1":
version: 14.6.1
resolution: "@azure/msal-common@npm:14.6.1"
checksum: 10c0/21aa130a2a8fbb16aeda5423ffb6dea922bcfc28fc0535b9d6ce958c808965b85ea7f325a6acd0351c73c7f4de0b5621798a66b4f1ea6d506d8d38c0980090b4
languageName: node
linkType: hard
"@azure/msal-node@npm:^2.5.1":
version: 2.6.2
resolution: "@azure/msal-node@npm:2.6.2"
dependencies:
"@azure/msal-common": "npm:14.6.1"
jsonwebtoken: "npm:^9.0.0"
uuid: "npm:^8.3.0"
checksum: 10c0/93a38d930149f8b48d1c84634ec6d90defb2775c82dad97f67911146d57a2fb9c41ca053d7a7f757c2f14a341f44de7d407aeb3f12b4e532d4c9f53298f73477
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