forked from sequelize/sequelize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
15844 lines (14292 loc) · 559 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.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: 10c0/81d63cca5443e0f0c72ae18b544cc28c7c0ec2cea46e7cb888bb0e0f411a1191d0d6b7af798d54e30777d8d1488b2ec0732aac2be342d3d7d3ffd271c6f489ed
languageName: node
linkType: hard
"@aws-crypto/crc32@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10c0/eab9581d3363af5ea498ae0e72de792f54d8890360e14a9d8261b7b5c55ebe080279fb2556e07994d785341cdaa99ab0b1ccf137832b53b5904cd6928f2b094b
languageName: node
linkType: hard
"@aws-crypto/crc32c@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32c@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10c0/223efac396cdebaf5645568fa9a38cd0c322c960ae1f4276bedfe2e1031d0112e49d7d39225d386354680ecefae29f39af469a84b2ddfa77cb6692036188af77
languageName: node
linkType: hard
"@aws-crypto/sha1-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha1-browser@npm:5.2.0"
dependencies:
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/51fed0bf078c10322d910af179871b7d299dde5b5897873ffbeeb036f427e5d11d23db9794439226544b73901920fd19f4d86bbc103ed73cc0cfdea47a83c6ac
languageName: node
linkType: hard
"@aws-crypto/sha256-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-browser@npm:5.2.0"
dependencies:
"@aws-crypto/sha256-js": "npm:^5.2.0"
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/05f6d256794df800fe9aef5f52f2ac7415f7f3117d461f85a6aecaa4e29e91527b6fd503681a17136fa89e9dd3d916e9c7e4cfb5eba222875cb6c077bdc1d00d
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:5.2.0, @aws-crypto/sha256-js@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-js@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6c48701f8336341bb104dfde3d0050c89c288051f6b5e9bdfeb8091cf3ffc86efcd5c9e6ff2a4a134406b019c07aca9db608128f8d9267c952578a3108db9fd1
languageName: node
linkType: hard
"@aws-crypto/supports-web-crypto@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/supports-web-crypto@npm:5.2.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/4d2118e29d68ca3f5947f1e37ce1fbb3239a0c569cc938cdc8ab8390d595609b5caf51a07c9e0535105b17bf5c52ea256fed705a07e9681118120ab64ee73af2
languageName: node
linkType: hard
"@aws-crypto/util@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/util@npm:5.2.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0362d4c197b1fd64b423966945130207d1fe23e1bb2878a18e361f7743c8d339dad3f8729895a29aa34fff6a86c65f281cf5167c4bf253f21627ae80b6dd2951
languageName: node
linkType: hard
"@aws-sdk/client-cloudfront@npm:^3.665.0":
version: 3.665.0
resolution: "@aws-sdk/client-cloudfront@npm:3.665.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.665.0"
"@aws-sdk/client-sts": "npm:3.665.0"
"@aws-sdk/core": "npm:3.665.0"
"@aws-sdk/credential-provider-node": "npm:3.665.0"
"@aws-sdk/middleware-host-header": "npm:3.664.0"
"@aws-sdk/middleware-logger": "npm:3.664.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.664.0"
"@aws-sdk/middleware-user-agent": "npm:3.664.0"
"@aws-sdk/region-config-resolver": "npm:3.664.0"
"@aws-sdk/types": "npm:3.664.0"
"@aws-sdk/util-endpoints": "npm:3.664.0"
"@aws-sdk/util-user-agent-browser": "npm:3.664.0"
"@aws-sdk/util-user-agent-node": "npm:3.664.0"
"@aws-sdk/xml-builder": "npm:3.662.0"
"@smithy/config-resolver": "npm:^3.0.9"
"@smithy/core": "npm:^2.4.7"
"@smithy/fetch-http-handler": "npm:^3.2.9"
"@smithy/hash-node": "npm:^3.0.7"
"@smithy/invalid-dependency": "npm:^3.0.7"
"@smithy/middleware-content-length": "npm:^3.0.9"
"@smithy/middleware-endpoint": "npm:^3.1.4"
"@smithy/middleware-retry": "npm:^3.0.22"
"@smithy/middleware-serde": "npm:^3.0.7"
"@smithy/middleware-stack": "npm:^3.0.7"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/node-http-handler": "npm:^3.2.4"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/smithy-client": "npm:^3.3.6"
"@smithy/types": "npm:^3.5.0"
"@smithy/url-parser": "npm:^3.0.7"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.22"
"@smithy/util-defaults-mode-node": "npm:^3.0.22"
"@smithy/util-endpoints": "npm:^2.1.3"
"@smithy/util-middleware": "npm:^3.0.7"
"@smithy/util-retry": "npm:^3.0.7"
"@smithy/util-stream": "npm:^3.1.9"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.6"
tslib: "npm:^2.6.2"
checksum: 10c0/36dabfbff360b8571b706c3f87d2a8e998c88889124efa4e869fb53eccb5be6a6ed516ea7cdef8fd862c45de5c06ac8d2e66356854595f3fe615720d4be07b82
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.388.0, @aws-sdk/client-s3@npm:^3.665.0":
version: 3.665.0
resolution: "@aws-sdk/client-s3@npm:3.665.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:5.2.0"
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.665.0"
"@aws-sdk/client-sts": "npm:3.665.0"
"@aws-sdk/core": "npm:3.665.0"
"@aws-sdk/credential-provider-node": "npm:3.665.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.664.0"
"@aws-sdk/middleware-expect-continue": "npm:3.664.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.664.0"
"@aws-sdk/middleware-host-header": "npm:3.664.0"
"@aws-sdk/middleware-location-constraint": "npm:3.664.0"
"@aws-sdk/middleware-logger": "npm:3.664.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.664.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.665.0"
"@aws-sdk/middleware-ssec": "npm:3.664.0"
"@aws-sdk/middleware-user-agent": "npm:3.664.0"
"@aws-sdk/region-config-resolver": "npm:3.664.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.665.0"
"@aws-sdk/types": "npm:3.664.0"
"@aws-sdk/util-endpoints": "npm:3.664.0"
"@aws-sdk/util-user-agent-browser": "npm:3.664.0"
"@aws-sdk/util-user-agent-node": "npm:3.664.0"
"@aws-sdk/xml-builder": "npm:3.662.0"
"@smithy/config-resolver": "npm:^3.0.9"
"@smithy/core": "npm:^2.4.7"
"@smithy/eventstream-serde-browser": "npm:^3.0.10"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.7"
"@smithy/eventstream-serde-node": "npm:^3.0.9"
"@smithy/fetch-http-handler": "npm:^3.2.9"
"@smithy/hash-blob-browser": "npm:^3.1.6"
"@smithy/hash-node": "npm:^3.0.7"
"@smithy/hash-stream-node": "npm:^3.1.6"
"@smithy/invalid-dependency": "npm:^3.0.7"
"@smithy/md5-js": "npm:^3.0.7"
"@smithy/middleware-content-length": "npm:^3.0.9"
"@smithy/middleware-endpoint": "npm:^3.1.4"
"@smithy/middleware-retry": "npm:^3.0.22"
"@smithy/middleware-serde": "npm:^3.0.7"
"@smithy/middleware-stack": "npm:^3.0.7"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/node-http-handler": "npm:^3.2.4"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/smithy-client": "npm:^3.3.6"
"@smithy/types": "npm:^3.5.0"
"@smithy/url-parser": "npm:^3.0.7"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.22"
"@smithy/util-defaults-mode-node": "npm:^3.0.22"
"@smithy/util-endpoints": "npm:^2.1.3"
"@smithy/util-middleware": "npm:^3.0.7"
"@smithy/util-retry": "npm:^3.0.7"
"@smithy/util-stream": "npm:^3.1.9"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.6"
tslib: "npm:^2.6.2"
checksum: 10c0/0936ffd21cc07cff2b5c798643295ef9f34213214d1ab7467b2f4cd45580dcbf8ec4413a3619a548e54239eb666e4ce41b9d6ef8de7fc382e05f75dd090fa6e8
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.665.0":
version: 3.665.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.665.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.665.0"
"@aws-sdk/credential-provider-node": "npm:3.665.0"
"@aws-sdk/middleware-host-header": "npm:3.664.0"
"@aws-sdk/middleware-logger": "npm:3.664.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.664.0"
"@aws-sdk/middleware-user-agent": "npm:3.664.0"
"@aws-sdk/region-config-resolver": "npm:3.664.0"
"@aws-sdk/types": "npm:3.664.0"
"@aws-sdk/util-endpoints": "npm:3.664.0"
"@aws-sdk/util-user-agent-browser": "npm:3.664.0"
"@aws-sdk/util-user-agent-node": "npm:3.664.0"
"@smithy/config-resolver": "npm:^3.0.9"
"@smithy/core": "npm:^2.4.7"
"@smithy/fetch-http-handler": "npm:^3.2.9"
"@smithy/hash-node": "npm:^3.0.7"
"@smithy/invalid-dependency": "npm:^3.0.7"
"@smithy/middleware-content-length": "npm:^3.0.9"
"@smithy/middleware-endpoint": "npm:^3.1.4"
"@smithy/middleware-retry": "npm:^3.0.22"
"@smithy/middleware-serde": "npm:^3.0.7"
"@smithy/middleware-stack": "npm:^3.0.7"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/node-http-handler": "npm:^3.2.4"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/smithy-client": "npm:^3.3.6"
"@smithy/types": "npm:^3.5.0"
"@smithy/url-parser": "npm:^3.0.7"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.22"
"@smithy/util-defaults-mode-node": "npm:^3.0.22"
"@smithy/util-endpoints": "npm:^2.1.3"
"@smithy/util-middleware": "npm:^3.0.7"
"@smithy/util-retry": "npm:^3.0.7"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.665.0
checksum: 10c0/37503a8ca75fc2a36cf3259a383181920b7991beac5681a313a51056359e79c29e8938dcdeec2c42d7abe47ab4a752403e206ebe3db510171a316fc619908216
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.665.0":
version: 3.665.0
resolution: "@aws-sdk/client-sso@npm:3.665.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.665.0"
"@aws-sdk/middleware-host-header": "npm:3.664.0"
"@aws-sdk/middleware-logger": "npm:3.664.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.664.0"
"@aws-sdk/middleware-user-agent": "npm:3.664.0"
"@aws-sdk/region-config-resolver": "npm:3.664.0"
"@aws-sdk/types": "npm:3.664.0"
"@aws-sdk/util-endpoints": "npm:3.664.0"
"@aws-sdk/util-user-agent-browser": "npm:3.664.0"
"@aws-sdk/util-user-agent-node": "npm:3.664.0"
"@smithy/config-resolver": "npm:^3.0.9"
"@smithy/core": "npm:^2.4.7"
"@smithy/fetch-http-handler": "npm:^3.2.9"
"@smithy/hash-node": "npm:^3.0.7"
"@smithy/invalid-dependency": "npm:^3.0.7"
"@smithy/middleware-content-length": "npm:^3.0.9"
"@smithy/middleware-endpoint": "npm:^3.1.4"
"@smithy/middleware-retry": "npm:^3.0.22"
"@smithy/middleware-serde": "npm:^3.0.7"
"@smithy/middleware-stack": "npm:^3.0.7"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/node-http-handler": "npm:^3.2.4"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/smithy-client": "npm:^3.3.6"
"@smithy/types": "npm:^3.5.0"
"@smithy/url-parser": "npm:^3.0.7"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.22"
"@smithy/util-defaults-mode-node": "npm:^3.0.22"
"@smithy/util-endpoints": "npm:^2.1.3"
"@smithy/util-middleware": "npm:^3.0.7"
"@smithy/util-retry": "npm:^3.0.7"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a6d8d95e37d2e0ca774fa37a48b4819d0bbce7623321e2a5af15e802ca02daf1d6a439588ed644ea9e4ee5c30e817aa073264606693105f3163ba0c9ac27a698
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.665.0":
version: 3.665.0
resolution: "@aws-sdk/client-sts@npm:3.665.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.665.0"
"@aws-sdk/core": "npm:3.665.0"
"@aws-sdk/credential-provider-node": "npm:3.665.0"
"@aws-sdk/middleware-host-header": "npm:3.664.0"
"@aws-sdk/middleware-logger": "npm:3.664.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.664.0"
"@aws-sdk/middleware-user-agent": "npm:3.664.0"
"@aws-sdk/region-config-resolver": "npm:3.664.0"
"@aws-sdk/types": "npm:3.664.0"
"@aws-sdk/util-endpoints": "npm:3.664.0"
"@aws-sdk/util-user-agent-browser": "npm:3.664.0"
"@aws-sdk/util-user-agent-node": "npm:3.664.0"
"@smithy/config-resolver": "npm:^3.0.9"
"@smithy/core": "npm:^2.4.7"
"@smithy/fetch-http-handler": "npm:^3.2.9"
"@smithy/hash-node": "npm:^3.0.7"
"@smithy/invalid-dependency": "npm:^3.0.7"
"@smithy/middleware-content-length": "npm:^3.0.9"
"@smithy/middleware-endpoint": "npm:^3.1.4"
"@smithy/middleware-retry": "npm:^3.0.22"
"@smithy/middleware-serde": "npm:^3.0.7"
"@smithy/middleware-stack": "npm:^3.0.7"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/node-http-handler": "npm:^3.2.4"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/smithy-client": "npm:^3.3.6"
"@smithy/types": "npm:^3.5.0"
"@smithy/url-parser": "npm:^3.0.7"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.22"
"@smithy/util-defaults-mode-node": "npm:^3.0.22"
"@smithy/util-endpoints": "npm:^2.1.3"
"@smithy/util-middleware": "npm:^3.0.7"
"@smithy/util-retry": "npm:^3.0.7"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/381310ca330a8df72b187f8afda97002922f063eabf3ed15708b0fdeabe9e9dbcd4117ab8d4b06577e63b4b96239293fa669ddc2e81284387c6c142c3dd62545
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.665.0":
version: 3.665.0
resolution: "@aws-sdk/core@npm:3.665.0"
dependencies:
"@aws-sdk/types": "npm:3.664.0"
"@smithy/core": "npm:^2.4.7"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/signature-v4": "npm:^4.2.0"
"@smithy/smithy-client": "npm:^3.3.6"
"@smithy/types": "npm:^3.5.0"
"@smithy/util-middleware": "npm:^3.0.7"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10c0/fe24ca433f42e76733bea3c74c2379fbe31af9e39921a7737994eda429ada8173b2cc9f5286f74f59205a6a8ebbe3e41976955ef1ddb23f2b4ee24728472b736
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.664.0":
version: 3.664.0
resolution: "@aws-sdk/credential-provider-env@npm:3.664.0"
dependencies:
"@aws-sdk/types": "npm:3.664.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ca30668ef79e380f9107ea03c941929ac0e791e523dd9e160ec784ec32a82b86565901ed01030005737c2e75a004842e00dbcf61fd8b58c3cc2e4496889d48ab
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.664.0":
version: 3.664.0
resolution: "@aws-sdk/credential-provider-http@npm:3.664.0"
dependencies:
"@aws-sdk/types": "npm:3.664.0"
"@smithy/fetch-http-handler": "npm:^3.2.9"
"@smithy/node-http-handler": "npm:^3.2.4"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/smithy-client": "npm:^3.3.6"
"@smithy/types": "npm:^3.5.0"
"@smithy/util-stream": "npm:^3.1.9"
tslib: "npm:^2.6.2"
checksum: 10c0/576754ce7412c2ca87cdf4ff3542416961dd583fd62e8367e17699205068d4b252ab66620590a17c655ddde4fa67b73c8f7b216a8cbbd832694f7194084ae3ba
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.665.0":
version: 3.665.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.665.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.664.0"
"@aws-sdk/credential-provider-http": "npm:3.664.0"
"@aws-sdk/credential-provider-process": "npm:3.664.0"
"@aws-sdk/credential-provider-sso": "npm:3.665.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.664.0"
"@aws-sdk/types": "npm:3.664.0"
"@smithy/credential-provider-imds": "npm:^3.2.4"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.665.0
checksum: 10c0/be539db6cf903f7a7cc45cdb9749063819d50e3342cb12a77fe594c347faf36f17da6c0bddd423446affdae3b7a2d1def1955d9dbb2d66212c7a37202e7adbe4
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.665.0":
version: 3.665.0
resolution: "@aws-sdk/credential-provider-node@npm:3.665.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.664.0"
"@aws-sdk/credential-provider-http": "npm:3.664.0"
"@aws-sdk/credential-provider-ini": "npm:3.665.0"
"@aws-sdk/credential-provider-process": "npm:3.664.0"
"@aws-sdk/credential-provider-sso": "npm:3.665.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.664.0"
"@aws-sdk/types": "npm:3.664.0"
"@smithy/credential-provider-imds": "npm:^3.2.4"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e95bf889d0fd4e228e5307ce7c08416562a1c4b747eaf09024db6e7e97f858a2fd1610a3833f21efe8c95c04aa83de153b8cb2347ca76bcee9b46c970f3fe98d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.664.0":
version: 3.664.0
resolution: "@aws-sdk/credential-provider-process@npm:3.664.0"
dependencies:
"@aws-sdk/types": "npm:3.664.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/52ef8f55bbf98d43cc36a214f0fbcde68ff06fae75b5f22fd9bcc87cead6cf687b6b64ac746b08d4ca4df2d6970d923fe0aa89c9c9f8183d8d40e1b8253144ed
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.665.0":
version: 3.665.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.665.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.665.0"
"@aws-sdk/token-providers": "npm:3.664.0"
"@aws-sdk/types": "npm:3.664.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a235e01d57c014e157394f9acd4f4afdebf786608651504bcde2c97829826242505dc1eb66e358a2a0138aa149fb896e8ed8925d3875e2e2ead6788e45fec8ce
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.664.0":
version: 3.664.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.664.0"
dependencies:
"@aws-sdk/types": "npm:3.664.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.664.0
checksum: 10c0/4bda5192952b56114a1a5d4fc16d89353908665217970d9a90f4491e18e0f5bc49a110565958d7015a6009e1834021adb55114af138fa86bfdbeecd6eaba3376
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.664.0":
version: 3.664.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.664.0"
dependencies:
"@aws-sdk/types": "npm:3.664.0"
"@aws-sdk/util-arn-parser": "npm:3.568.0"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/types": "npm:^3.5.0"
"@smithy/util-config-provider": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/aa9aa8d39bb15551b327f5671cce3d4525c8925d82e330dfc6255d09edbc3029e08dc8dc1a446474d00db33c8e26d4a5d4fe058edc1dd8c6763fc043f4368add
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.664.0":
version: 3.664.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.664.0"
dependencies:
"@aws-sdk/types": "npm:3.664.0"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/7380fb8ba889e6eb8db93eb234f7f3d3edfbc3331a2a379ceeca1ad1d60442e01bb62544c1924b28504b4da30a2d25747d9bad1707f0854615f199933cafeacf
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.664.0":
version: 3.664.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.664.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-sdk/types": "npm:3.664.0"
"@smithy/is-array-buffer": "npm:^3.0.0"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/types": "npm:^3.5.0"
"@smithy/util-middleware": "npm:^3.0.7"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/4a26f48f69f2050a04781c7fdf12d81473f8f903a628a2ed9446d98990fc3e48f896ee0a9aef966aa8267a13e4b5e67c66249186a6aa1078006f1f0cefd53b0f
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.664.0":
version: 3.664.0
resolution: "@aws-sdk/middleware-host-header@npm:3.664.0"
dependencies:
"@aws-sdk/types": "npm:3.664.0"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/897ebe1d3f498240016bc8c6cc1b7a4c2ae6e3cb4d706ebd28aae6602478e677976f86079b31c7f25e2dce336488c804a47b87f2773dd86db22365fa892c6ed2
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.664.0":
version: 3.664.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.664.0"
dependencies:
"@aws-sdk/types": "npm:3.664.0"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0ae2bd7a389cf925a3b830c7984e6894c20c45fb36f8c47095e65d41ff194eecff8cc59f93d330717e30d34a82ade501b4f3d993a10728596828e90a6cd4f3b5
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.664.0":
version: 3.664.0
resolution: "@aws-sdk/middleware-logger@npm:3.664.0"
dependencies:
"@aws-sdk/types": "npm:3.664.0"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/85997583e1f42407291311d99191e99caad7abb5bdd8b840aeb6c94ad292cdcdfa9d73be750eea64e1ad65c6f43b155eba9bec0cb85dc260ebb4be80210d205b
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.664.0":
version: 3.664.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.664.0"
dependencies:
"@aws-sdk/types": "npm:3.664.0"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e2f297a6cd70d5f7cae927db094396ba5ea949247f98e7d3fa64e225169737241212440cf8c22ca92fc7498f369191c0153b8c6d692aa21ed3173c41276698b1
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.665.0":
version: 3.665.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.665.0"
dependencies:
"@aws-sdk/core": "npm:3.665.0"
"@aws-sdk/types": "npm:3.664.0"
"@aws-sdk/util-arn-parser": "npm:3.568.0"
"@smithy/core": "npm:^2.4.7"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/signature-v4": "npm:^4.2.0"
"@smithy/smithy-client": "npm:^3.3.6"
"@smithy/types": "npm:^3.5.0"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.7"
"@smithy/util-stream": "npm:^3.1.9"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8559f307e92a704aebe8140fcc7602ebb5da9edd07d1dccc51d0f34d66c4e576f81164613f74b00cf035a0212340007613b06ded7841feacb8195cf9ac5257b6
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.664.0":
version: 3.664.0
resolution: "@aws-sdk/middleware-ssec@npm:3.664.0"
dependencies:
"@aws-sdk/types": "npm:3.664.0"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c24555368db00261b2a1c16c1fe6be774f029bb3048b6b76638542200a651f0fee000e7c1aed5190d65a3fd11a572af42a33247f4e4c1cdebf7c7048ed02cc2b
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.664.0":
version: 3.664.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.664.0"
dependencies:
"@aws-sdk/types": "npm:3.664.0"
"@aws-sdk/util-endpoints": "npm:3.664.0"
"@smithy/core": "npm:^2.4.7"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d639722d38e2a91fd36321f6ba49181e1d48416e0a147f0286f79ca59517403fe3427df5ae206aa2db41f3d2f4b0204b4032e9bbc0806eb02b61f0cd88de5a21
languageName: node
linkType: hard
"@aws-sdk/node-http-handler@npm:^3.374.0":
version: 3.374.0
resolution: "@aws-sdk/node-http-handler@npm:3.374.0"
dependencies:
"@smithy/node-http-handler": "npm:^1.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/f3822f843e57235830f874da1c4874a1b27e972cdc4b6d1fef7af90f5acd36dfa8fc44c13dcef7811adb36d791c9f3dda6f2592ba5fef0af612f6882eba02df1
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.664.0":
version: 3.664.0
resolution: "@aws-sdk/region-config-resolver@npm:3.664.0"
dependencies:
"@aws-sdk/types": "npm:3.664.0"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.7"
tslib: "npm:^2.6.2"
checksum: 10c0/1359e699a60078dd3091c424550f95497968a9b6bbb2b31ddf9d4a737fb7b1412da82eb5aec696ba5ef4bf0a774f08f0574b4363ca08f61f6034c5da2e78c890
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.665.0":
version: 3.665.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.665.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.665.0"
"@aws-sdk/types": "npm:3.664.0"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/signature-v4": "npm:^4.2.0"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/afbc97b9111c8e19342c8d0bf0b84557ba96515a526d93f10e2c3c5e5253a272babf3970c076053ea926e6c9368372d5f629017a07a4aa46d6902d70106e77b4
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.664.0":
version: 3.664.0
resolution: "@aws-sdk/token-providers@npm:3.664.0"
dependencies:
"@aws-sdk/types": "npm:3.664.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sso-oidc": ^3.664.0
checksum: 10c0/9537333e5f945b68c5d01a49f8a4f8ca5d4ae739f4080c02e2a65211a8ce3274741092ac5abe5834fe2de88ddd31818ac4ce3868c3c9db1af9ebf7cb82bc244e
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.664.0, @aws-sdk/types@npm:^3.222.0":
version: 3.664.0
resolution: "@aws-sdk/types@npm:3.664.0"
dependencies:
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0f56e2dfc2990ded7fe3c3344a3ae0e21f835b4a251d309def04bf122b1da2336baf66fa78d6b9c4a82166d6ccd9cadcd4186f0c7bf7423e4db973dac63f2d74
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.568.0":
version: 3.568.0
resolution: "@aws-sdk/util-arn-parser@npm:3.568.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/4e6168b86a1ff4509f25b56e473c95bdcc0ecbaedcded29cbbd500eb7c156de63f2426282cd50489ac7f321a990056349974730f9e27ac3fe872ba3573b09fb6
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.664.0":
version: 3.664.0
resolution: "@aws-sdk/util-endpoints@npm:3.664.0"
dependencies:
"@aws-sdk/types": "npm:3.664.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/util-endpoints": "npm:^2.1.3"
tslib: "npm:^2.6.2"
checksum: 10c0/050304dcb9783cf69b232d5b1651357db491b6460ad4163cb69a282fba7f3ec0b841f96c9209eab4d55fd1cc0709b63841779362522d9ae0bf6b896dd1736ec7
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: 10c0/bbab321b02af1bca46269a4cef58f01a7e2c7b6c6cc2e752ea10552bb2b93decd1c4ee0dab22ed12afd1a9035b3aaa0e8ce6d35b8d59a3dc03935a2640ccbeef
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.664.0":
version: 3.664.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.664.0"
dependencies:
"@aws-sdk/types": "npm:3.664.0"
"@smithy/types": "npm:^3.5.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e50f8d9728abec2b10febbaea3daaa5a8385614ac07776eb6d416023ed021bd6b735e9c85f8ebbc942ae9d8cde1638cfa2ed99d11d661d03433c46a60c0899c0
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.664.0":
version: 3.664.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.664.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.664.0"
"@aws-sdk/types": "npm:3.664.0"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/c460d8e2aadbf00e200d046c24ec8fd599ee4a9dfccbd6377013b78bda9cef53eb807b904417dec9de95adfee80e240416194964fe96815c83a69e0373d8d46e
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.662.0":
version: 3.662.0
resolution: "@aws-sdk/xml-builder@npm:3.662.0"
dependencies:
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/19d7b9dc63e9e071fbe5608cba00e1edfc89529e76034b336bf019f4950aebaf25913bcf4545b3380a2e53df93d3914d160abe2091e97d91138efb2855649a48
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: 10c0/bb79f0faaa9e9c1ae3c4ec2523ea23ee0879cc491abb4b3ac2dd56c2cc2dfe4b7e8522ffa866d39c7145c0dd61387711368afe0d4eb6534daba7b67ed0a2a730
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: 10c0/9dd6a0b240646d76abe9a92641755cd1e7ed87ef8caf4a16d737fe588a2f26e9a42dd9e1f77da7d10e8c8489ebe17a50a75837226a69c1ae8be83bf20e624aa3
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, @azure/core-auth@npm:^1.7.2":
version: 1.8.0
resolution: "@azure/core-auth@npm:1.8.0"
dependencies:
"@azure/abort-controller": "npm:^2.0.0"
"@azure/core-util": "npm:^1.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/db9d78da0ae9c43258bc735c7eeda598370559c0d0146293cdfc096191712ee6e0fcc1b1da105bd095df0d034603eead949a8598b2209880a14bad822a5f81d2
languageName: node
linkType: hard
"@azure/core-client@npm:^1.3.0, @azure/core-client@npm:^1.5.0, @azure/core-client@npm:^1.9.2":
version: 1.9.2
resolution: "@azure/core-client@npm:1.9.2"
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.6.1"
"@azure/logger": "npm:^1.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/4dab1f3b070f7c2c5a8390f81c7afdf31c030ad0599e75e16b9684959fb666cb57d34b63977639a60a7535f63f30a8a708210e8e48ff68a30732b7518044ebce
languageName: node
linkType: hard
"@azure/core-http-compat@npm:^2.0.1":
version: 2.1.1
resolution: "@azure/core-http-compat@npm:2.1.1"
dependencies:
"@azure/abort-controller": "npm:^2.0.0"
"@azure/core-client": "npm:^1.3.0"
"@azure/core-rest-pipeline": "npm:^1.3.0"
checksum: 10c0/4a8f1845b223be9f44d94b52d08223ca9e0d4036a91492a27d0d3cbd1cb9f696df794dba1d58a7530c5926d5dbe51123e063e3c2e559d01313ee498ee3b07661
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.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: 10c0/55ce51fa74fbbb8f702e5fda1ab3983d9575fc6188be34473f339c2096be203fbc4bc38cc1aacc75576a654bbc319ae198e316a12745f56bac12d0c20baa98ca
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: 10c0/a68e6cf2ec324022dc60065b8916576b2f85b0a2b038a9a501a97b38a1977b6c8fcf1adef4db615910c442dcf75123dee1fb2c7cbfa42a9730fd26d89a3b9f67
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.15.1
resolution: "@azure/core-rest-pipeline@npm:1.15.1"
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:^7.0.0"
https-proxy-agent: "npm:^7.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/11994f2c5b041bfe72892a3086a8ba23ddf700cb293ce0e36d1cd41676e492b0dae8f3a19aadaa315008d49811bfbacf567b2f363916cabf26d473d2d7c07bf0
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.1.1
resolution: "@azure/core-tracing@npm:1.1.1"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/e8c77e6acfe74965cd25389132c2b8009f48cb146e6ef1fe472923e6719dcb3575175af68f56dd38b78493dfc4264f5ea79a37e12cb7ebac3e93f090d4cb8ba2
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.8.1
resolution: "@azure/core-util@npm:1.8.1"
dependencies:
"@azure/abort-controller": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a321e2dc06788a62cce7ec1fc2967a60818145c737694ea27c8cd60df52b076fbc338baa8a76b70706c6f3658f7f4e92cbf821f91efadefcc9286b14f1f45f98
languageName: node
linkType: hard
"@azure/identity@npm:^4.2.1":
version: 4.3.0
resolution: "@azure/identity@npm:4.3.0"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-auth": "npm:^1.5.0"
"@azure/core-client": "npm:^1.9.2"
"@azure/core-rest-pipeline": "npm:^1.1.0"
"@azure/core-tracing": "npm:^1.0.0"
"@azure/core-util": "npm:^1.3.0"
"@azure/logger": "npm:^1.0.0"
"@azure/msal-browser": "npm:^3.11.1"
"@azure/msal-node": "npm:^2.9.2"
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/c1972095da50ba9a6ba712538c880af01e8a9fef8cf4798f29828443461c2d16291bdd7cdd6f0af786731962b943e7b6d8a5c8074151beb3de3195bb30cc2540
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.1.1
resolution: "@azure/logger@npm:1.1.1"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/79014d78774b7a24c236a9c83550e9769c39cb6d4469c23ab35998dd1a67fed8fd43c947eb7382cdeab826747fa7fabc686a37e4aee67535cc6ce5e0302c9323
languageName: node
linkType: hard
"@azure/msal-browser@npm:^3.11.1":
version: 3.17.0
resolution: "@azure/msal-browser@npm:3.17.0"
dependencies:
"@azure/msal-common": "npm:14.12.0"
checksum: 10c0/c937c04e31a6efafda576e910bbcddfaf4f6889ff813b358eba803d91334c60e90986e1ca8cc87044478cca366be68de1d2e64dc03c5727e028b488be3b765a7
languageName: node
linkType: hard
"@azure/msal-common@npm:14.12.0":
version: 14.12.0
resolution: "@azure/msal-common@npm:14.12.0"
checksum: 10c0/5f88ecac2bcc4b60abbe4243347cafca9dfa19ab75bf532f9b4b77069fd5fe55516608f77ab8d5c5c706eefc5ca77380eebf6a6742b79feb46c328d39c5da213
languageName: node
linkType: hard
"@azure/msal-node@npm:^2.9.2":
version: 2.9.2
resolution: "@azure/msal-node@npm:2.9.2"
dependencies:
"@azure/msal-common": "npm:14.12.0"
jsonwebtoken: "npm:^9.0.0"
uuid: "npm:^8.3.0"
checksum: 10c0/40b485ea2358ad1445fc6bfed2b82295a128f5304decb5c2e68ad43dbb98d5f76d9d7004e71ff751d8e6936685c36686b599dce12dfe145c2126d1faf69d7580
languageName: node
linkType: hard
"@azure/storage-blob@npm:12.18.x":
version: 12.18.0
resolution: "@azure/storage-blob@npm:12.18.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"