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