forked from docker/login-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
8219 lines (7421 loc) · 294 KB
/
Copy pathyarn.lock
File metadata and controls
8219 lines (7421 loc) · 294 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: 10
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 10/6eebd12a5cd03cee38fcb915ef9f4ea557df6a06f642dfc7fe8eb4839eb5c9ca55a382f3604d52c14200b0c214c12af5e1f23d2a6d8e23ef2d016b105a9d6c0a
languageName: node
linkType: hard
"@actions/artifact@npm:^2.3.2":
version: 2.3.2
resolution: "@actions/artifact@npm:2.3.2"
dependencies:
"@actions/core": "npm:^1.10.0"
"@actions/github": "npm:^5.1.1"
"@actions/http-client": "npm:^2.1.0"
"@azure/storage-blob": "npm:^12.15.0"
"@octokit/core": "npm:^3.5.1"
"@octokit/plugin-request-log": "npm:^1.0.4"
"@octokit/plugin-retry": "npm:^3.0.9"
"@octokit/request-error": "npm:^5.0.0"
"@protobuf-ts/plugin": "npm:^2.2.3-alpha.1"
archiver: "npm:^7.0.1"
jwt-decode: "npm:^3.1.2"
unzip-stream: "npm:^0.3.1"
checksum: 10/d6fbe1df300a1777343d3fb075011c9bf21285da24e8b4e28228bee9fb2940a80d505bd82ccb9f08d41bbb9a8d66350b456c8ee1ad67721dea71f0ea3b592257
languageName: node
linkType: hard
"@actions/cache@npm:^4.0.3":
version: 4.0.3
resolution: "@actions/cache@npm:4.0.3"
dependencies:
"@actions/core": "npm:^1.11.1"
"@actions/exec": "npm:^1.0.1"
"@actions/glob": "npm:^0.1.0"
"@actions/http-client": "npm:^2.1.1"
"@actions/io": "npm:^1.0.1"
"@azure/abort-controller": "npm:^1.1.0"
"@azure/ms-rest-js": "npm:^2.6.0"
"@azure/storage-blob": "npm:^12.13.0"
"@protobuf-ts/plugin": "npm:^2.9.4"
semver: "npm:^6.3.1"
checksum: 10/232790477fcbddf4591c84cd2860b009715515e53edb7bcba718b73ddd46401f09fd859f04b426614ad82e8cdcf6948fdc4ff03e926fbf5081163d77d9a8eec8
languageName: node
linkType: hard
"@actions/core@npm:^1.10.0, @actions/core@npm:^1.2.6":
version: 1.10.1
resolution: "@actions/core@npm:1.10.1"
dependencies:
"@actions/http-client": "npm:^2.0.1"
uuid: "npm:^8.3.2"
checksum: 10/d32af783ecb07f25a0f190112ee8e749a4c4cb88327d6df756ea1dcee146ab413c0e651a9c949294f8202ced1436c049d7b469485431a5cc4491d66926ec8323
languageName: node
linkType: hard
"@actions/core@npm:^1.11.1":
version: 1.11.1
resolution: "@actions/core@npm:1.11.1"
dependencies:
"@actions/exec": "npm:^1.1.1"
"@actions/http-client": "npm:^2.0.1"
checksum: 10/94f260e33607cc16567ce4c88014f069cd7da92baaa443b72cff80fdf4f1dcd18192e135df0d51ec29e8b82cfe214218715d482f2a7804efa5095737d1245f38
languageName: node
linkType: hard
"@actions/exec@npm:^1.0.0, @actions/exec@npm:^1.0.1, @actions/exec@npm:^1.1.1":
version: 1.1.1
resolution: "@actions/exec@npm:1.1.1"
dependencies:
"@actions/io": "npm:^1.0.1"
checksum: 10/c04bd25191e522841c7e17862d70099de8db61278d2b4c744b69ac0197a48f85c75dba548e1c29c695c4cc5363d558846b4dcd3db9013463c18ba8cf36497c6d
languageName: node
linkType: hard
"@actions/github@npm:^5.1.1":
version: 5.1.1
resolution: "@actions/github@npm:5.1.1"
dependencies:
"@actions/http-client": "npm:^2.0.1"
"@octokit/core": "npm:^3.6.0"
"@octokit/plugin-paginate-rest": "npm:^2.17.0"
"@octokit/plugin-rest-endpoint-methods": "npm:^5.13.0"
checksum: 10/2210bd7f8e1e8b407b7df74a259523dc4c63f4ad3a6bfcc0d7867b6e9c3499bd3e25d7de7a9a1bbd0de3be441a8832d5c0b5c0cff3036cd477378c0ec5502434
languageName: node
linkType: hard
"@actions/github@npm:^6.0.1":
version: 6.0.1
resolution: "@actions/github@npm:6.0.1"
dependencies:
"@actions/http-client": "npm:^2.2.0"
"@octokit/core": "npm:^5.0.1"
"@octokit/plugin-paginate-rest": "npm:^9.2.2"
"@octokit/plugin-rest-endpoint-methods": "npm:^10.4.0"
"@octokit/request": "npm:^8.4.1"
"@octokit/request-error": "npm:^5.1.1"
undici: "npm:^5.28.5"
checksum: 10/ba6a162a5727dea2f3f3fc450e02c5b336ceb65a0e26ba9ad9c62b20f4f5b2625ca347a9311a4905ef3c92378ca022caba841a283cb7f2e4175d79e3d1ecaf12
languageName: node
linkType: hard
"@actions/glob@npm:^0.1.0":
version: 0.1.2
resolution: "@actions/glob@npm:0.1.2"
dependencies:
"@actions/core": "npm:^1.2.6"
minimatch: "npm:^3.0.4"
checksum: 10/03fe4dd1959196b12195cc4981a83f856eefa7321a8e445894f8a4bf0e61dcc73952bd2262cbf984e8fa6f0e323f4052de8b1b3caf076c21554f0976a8540733
languageName: node
linkType: hard
"@actions/http-client@npm:^2.0.1, @actions/http-client@npm:^2.1.1, @actions/http-client@npm:^2.2.0":
version: 2.2.0
resolution: "@actions/http-client@npm:2.2.0"
dependencies:
tunnel: "npm:^0.0.6"
undici: "npm:^5.25.4"
checksum: 10/af2051e056b369d78073f3eddd04d838c27495ef7e8bc27b69a8409d7f8652c19b5b6c781a1560675094142bd2548cfa06b6e9a2454c70116007bd4f37cf0cd7
languageName: node
linkType: hard
"@actions/http-client@npm:^2.1.0":
version: 2.2.1
resolution: "@actions/http-client@npm:2.2.1"
dependencies:
tunnel: "npm:^0.0.6"
undici: "npm:^5.25.4"
checksum: 10/b7338f13461eeca945acc9ccdd20a46e545624dc872bc12869eca7d9a58536ee3e1ecc0d1a1d4c16e8610c2b783e7108e12148b6db5d7fb8bf8b950b8a002d66
languageName: node
linkType: hard
"@actions/http-client@npm:^2.2.3":
version: 2.2.3
resolution: "@actions/http-client@npm:2.2.3"
dependencies:
tunnel: "npm:^0.0.6"
undici: "npm:^5.25.4"
checksum: 10/0c0a540c79e50f795d214f696710bb9c50bdf5bb1458be288140f2aae3686adec73fdb464c43da5ef94f985ac7736273efef21cb5ba5a3b09e85b403d852c04b
languageName: node
linkType: hard
"@actions/io@npm:^1.0.1, @actions/io@npm:^1.1.1, @actions/io@npm:^1.1.3":
version: 1.1.3
resolution: "@actions/io@npm:1.1.3"
checksum: 10/4de44e8d428ba9f20049c844b37ecd486b589ed201f8cc8c5b550a9e4c72d1f594271ee2a7a6cfe8a42ebfb5dd527ef65016454656db391a353d41eab4f147e1
languageName: node
linkType: hard
"@actions/tool-cache@npm:^2.0.2":
version: 2.0.2
resolution: "@actions/tool-cache@npm:2.0.2"
dependencies:
"@actions/core": "npm:^1.11.1"
"@actions/exec": "npm:^1.0.0"
"@actions/http-client": "npm:^2.0.1"
"@actions/io": "npm:^1.1.1"
semver: "npm:^6.1.0"
checksum: 10/87ec7fef40a2ad606c4a8b47833c1818ddb42e009bd0434b49dfc8c8bd4de6b67b4edafae599e76869d923a2f940f223866012b0179dcbb172c784d90da3c3a9
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.1.0":
version: 2.1.2
resolution: "@ampproject/remapping@npm:2.1.2"
dependencies:
"@jridgewell/trace-mapping": "npm:^0.3.0"
checksum: 10/2151b1fd8149e9e288fa16c02699d74e6020baf3fe3154d2bd933e59db7a03076567e28493d1408ffa162d67880a2b9e0a9bbc64f3bb4af22a7cce2fdb4c345d
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: 10/e15fecbf3b54c988c8b4fdea8ef514ab482537e8a080b2978cc4b47ccca7140577ca7b65ad3322dcce65bc73ee6e5b90cbfe0bbd8c766dad04d5c62ec9634c42
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: 10/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: 10/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: 10/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: 10/f80a174c404e1ad4364741c942f440e75f834c08278fa754349fe23a6edc679d480ea9ced5820774aee58091ed270067022d8059ecf1a7ef452d58134ac7e9e1
languageName: node
linkType: hard
"@aws-sdk/client-ecr-public@npm:^3.890.0":
version: 3.890.0
resolution: "@aws-sdk/client-ecr-public@npm:3.890.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.890.0"
"@aws-sdk/credential-provider-node": "npm:3.890.0"
"@aws-sdk/middleware-host-header": "npm:3.887.0"
"@aws-sdk/middleware-logger": "npm:3.887.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.887.0"
"@aws-sdk/middleware-user-agent": "npm:3.890.0"
"@aws-sdk/region-config-resolver": "npm:3.890.0"
"@aws-sdk/types": "npm:3.887.0"
"@aws-sdk/util-endpoints": "npm:3.890.0"
"@aws-sdk/util-user-agent-browser": "npm:3.887.0"
"@aws-sdk/util-user-agent-node": "npm:3.890.0"
"@smithy/config-resolver": "npm:^4.2.2"
"@smithy/core": "npm:^3.11.0"
"@smithy/fetch-http-handler": "npm:^5.2.1"
"@smithy/hash-node": "npm:^4.1.1"
"@smithy/invalid-dependency": "npm:^4.1.1"
"@smithy/middleware-content-length": "npm:^4.1.1"
"@smithy/middleware-endpoint": "npm:^4.2.2"
"@smithy/middleware-retry": "npm:^4.2.2"
"@smithy/middleware-serde": "npm:^4.1.1"
"@smithy/middleware-stack": "npm:^4.1.1"
"@smithy/node-config-provider": "npm:^4.2.2"
"@smithy/node-http-handler": "npm:^4.2.1"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/smithy-client": "npm:^4.6.2"
"@smithy/types": "npm:^4.5.0"
"@smithy/url-parser": "npm:^4.1.1"
"@smithy/util-base64": "npm:^4.1.0"
"@smithy/util-body-length-browser": "npm:^4.1.0"
"@smithy/util-body-length-node": "npm:^4.1.0"
"@smithy/util-defaults-mode-browser": "npm:^4.1.2"
"@smithy/util-defaults-mode-node": "npm:^4.1.2"
"@smithy/util-endpoints": "npm:^3.1.2"
"@smithy/util-middleware": "npm:^4.1.1"
"@smithy/util-retry": "npm:^4.1.1"
"@smithy/util-utf8": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/30225ea1c7c0110cc6288e1e665b61e6bcc8e1a9f6b79cf238daccf5dccafc3e3061f6361a9061df8fd8ca19c4077ff0ca2a6f37ab656c6ef53b2305a40789c3
languageName: node
linkType: hard
"@aws-sdk/client-ecr@npm:^3.890.0":
version: 3.890.0
resolution: "@aws-sdk/client-ecr@npm:3.890.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.890.0"
"@aws-sdk/credential-provider-node": "npm:3.890.0"
"@aws-sdk/middleware-host-header": "npm:3.887.0"
"@aws-sdk/middleware-logger": "npm:3.887.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.887.0"
"@aws-sdk/middleware-user-agent": "npm:3.890.0"
"@aws-sdk/region-config-resolver": "npm:3.890.0"
"@aws-sdk/types": "npm:3.887.0"
"@aws-sdk/util-endpoints": "npm:3.890.0"
"@aws-sdk/util-user-agent-browser": "npm:3.887.0"
"@aws-sdk/util-user-agent-node": "npm:3.890.0"
"@smithy/config-resolver": "npm:^4.2.2"
"@smithy/core": "npm:^3.11.0"
"@smithy/fetch-http-handler": "npm:^5.2.1"
"@smithy/hash-node": "npm:^4.1.1"
"@smithy/invalid-dependency": "npm:^4.1.1"
"@smithy/middleware-content-length": "npm:^4.1.1"
"@smithy/middleware-endpoint": "npm:^4.2.2"
"@smithy/middleware-retry": "npm:^4.2.2"
"@smithy/middleware-serde": "npm:^4.1.1"
"@smithy/middleware-stack": "npm:^4.1.1"
"@smithy/node-config-provider": "npm:^4.2.2"
"@smithy/node-http-handler": "npm:^4.2.1"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/smithy-client": "npm:^4.6.2"
"@smithy/types": "npm:^4.5.0"
"@smithy/url-parser": "npm:^4.1.1"
"@smithy/util-base64": "npm:^4.1.0"
"@smithy/util-body-length-browser": "npm:^4.1.0"
"@smithy/util-body-length-node": "npm:^4.1.0"
"@smithy/util-defaults-mode-browser": "npm:^4.1.2"
"@smithy/util-defaults-mode-node": "npm:^4.1.2"
"@smithy/util-endpoints": "npm:^3.1.2"
"@smithy/util-middleware": "npm:^4.1.1"
"@smithy/util-retry": "npm:^4.1.1"
"@smithy/util-utf8": "npm:^4.1.0"
"@smithy/util-waiter": "npm:^4.1.1"
tslib: "npm:^2.6.2"
checksum: 10/ab4f04917cc92c8fb944a39185feb5270896c9570a9db7525243bc298b58934394f2a159cb9f221c544db49ac7cc0270a1f7642ad09ddbef7cd819ab369813cf
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.890.0":
version: 3.890.0
resolution: "@aws-sdk/client-sso@npm:3.890.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.890.0"
"@aws-sdk/middleware-host-header": "npm:3.887.0"
"@aws-sdk/middleware-logger": "npm:3.887.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.887.0"
"@aws-sdk/middleware-user-agent": "npm:3.890.0"
"@aws-sdk/region-config-resolver": "npm:3.890.0"
"@aws-sdk/types": "npm:3.887.0"
"@aws-sdk/util-endpoints": "npm:3.890.0"
"@aws-sdk/util-user-agent-browser": "npm:3.887.0"
"@aws-sdk/util-user-agent-node": "npm:3.890.0"
"@smithy/config-resolver": "npm:^4.2.2"
"@smithy/core": "npm:^3.11.0"
"@smithy/fetch-http-handler": "npm:^5.2.1"
"@smithy/hash-node": "npm:^4.1.1"
"@smithy/invalid-dependency": "npm:^4.1.1"
"@smithy/middleware-content-length": "npm:^4.1.1"
"@smithy/middleware-endpoint": "npm:^4.2.2"
"@smithy/middleware-retry": "npm:^4.2.2"
"@smithy/middleware-serde": "npm:^4.1.1"
"@smithy/middleware-stack": "npm:^4.1.1"
"@smithy/node-config-provider": "npm:^4.2.2"
"@smithy/node-http-handler": "npm:^4.2.1"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/smithy-client": "npm:^4.6.2"
"@smithy/types": "npm:^4.5.0"
"@smithy/url-parser": "npm:^4.1.1"
"@smithy/util-base64": "npm:^4.1.0"
"@smithy/util-body-length-browser": "npm:^4.1.0"
"@smithy/util-body-length-node": "npm:^4.1.0"
"@smithy/util-defaults-mode-browser": "npm:^4.1.2"
"@smithy/util-defaults-mode-node": "npm:^4.1.2"
"@smithy/util-endpoints": "npm:^3.1.2"
"@smithy/util-middleware": "npm:^4.1.1"
"@smithy/util-retry": "npm:^4.1.1"
"@smithy/util-utf8": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/77e433ebe785fd226d42c777abf9e76fecae0245c037c6e8eef44a9336f6e73b8de3ec784551b7019afd0070bbc3e411d0b0fafa38fd8ba2309edfc515c0f227
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.890.0":
version: 3.890.0
resolution: "@aws-sdk/core@npm:3.890.0"
dependencies:
"@aws-sdk/types": "npm:3.887.0"
"@aws-sdk/xml-builder": "npm:3.887.0"
"@smithy/core": "npm:^3.11.0"
"@smithy/node-config-provider": "npm:^4.2.2"
"@smithy/property-provider": "npm:^4.1.1"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/signature-v4": "npm:^5.2.1"
"@smithy/smithy-client": "npm:^4.6.2"
"@smithy/types": "npm:^4.5.0"
"@smithy/util-base64": "npm:^4.1.0"
"@smithy/util-body-length-browser": "npm:^4.1.0"
"@smithy/util-middleware": "npm:^4.1.1"
"@smithy/util-utf8": "npm:^4.1.0"
fast-xml-parser: "npm:5.2.5"
tslib: "npm:^2.6.2"
checksum: 10/1b6c24c841076591adef95742cb91125c3d8fddb4da5e90e71095805caee51954bba510a90ac62b586fde886962c08cd6ba8bd2a4e328d7feca94a811eb874cd
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.890.0":
version: 3.890.0
resolution: "@aws-sdk/credential-provider-env@npm:3.890.0"
dependencies:
"@aws-sdk/core": "npm:3.890.0"
"@aws-sdk/types": "npm:3.887.0"
"@smithy/property-provider": "npm:^4.1.1"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10/d8a3d755a85bdd49ec364d65578fecc5e6634e0632d0b6a5a530a8918688eaab70d3adcda8318306eb3f18ad2fbaaacf62093e4c7365de024fd11cfb1a8318ff
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.890.0":
version: 3.890.0
resolution: "@aws-sdk/credential-provider-http@npm:3.890.0"
dependencies:
"@aws-sdk/core": "npm:3.890.0"
"@aws-sdk/types": "npm:3.887.0"
"@smithy/fetch-http-handler": "npm:^5.2.1"
"@smithy/node-http-handler": "npm:^4.2.1"
"@smithy/property-provider": "npm:^4.1.1"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/smithy-client": "npm:^4.6.2"
"@smithy/types": "npm:^4.5.0"
"@smithy/util-stream": "npm:^4.3.1"
tslib: "npm:^2.6.2"
checksum: 10/26260f64b90c4a6cb2a0682f2a96151799448b92e4e1b7ffbadd0a8267984a9be5b487ae6d6487e9a8ffb6a2d127f7da03213b139f8d6fe86e1c7d503034996d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.890.0":
version: 3.890.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.890.0"
dependencies:
"@aws-sdk/core": "npm:3.890.0"
"@aws-sdk/credential-provider-env": "npm:3.890.0"
"@aws-sdk/credential-provider-http": "npm:3.890.0"
"@aws-sdk/credential-provider-process": "npm:3.890.0"
"@aws-sdk/credential-provider-sso": "npm:3.890.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.890.0"
"@aws-sdk/nested-clients": "npm:3.890.0"
"@aws-sdk/types": "npm:3.887.0"
"@smithy/credential-provider-imds": "npm:^4.1.2"
"@smithy/property-provider": "npm:^4.1.1"
"@smithy/shared-ini-file-loader": "npm:^4.2.0"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10/20539bf73e7ebbf17d07333cec5755ff4e3266d5cef81f251d82c6918598faf66a284f68d77c65544691827c37c2d6bca5215b0ec84b17e4a319664ff440a90d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.890.0":
version: 3.890.0
resolution: "@aws-sdk/credential-provider-node@npm:3.890.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.890.0"
"@aws-sdk/credential-provider-http": "npm:3.890.0"
"@aws-sdk/credential-provider-ini": "npm:3.890.0"
"@aws-sdk/credential-provider-process": "npm:3.890.0"
"@aws-sdk/credential-provider-sso": "npm:3.890.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.890.0"
"@aws-sdk/types": "npm:3.887.0"
"@smithy/credential-provider-imds": "npm:^4.1.2"
"@smithy/property-provider": "npm:^4.1.1"
"@smithy/shared-ini-file-loader": "npm:^4.2.0"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10/45834d50b78a669abb3ad74480dff1d5311e56d4cd07539a9f0118ce5f5fe15d4b4b261a57efc96429380b7dd98b7facdedee94db838509e3f5489e1d38a60e0
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.890.0":
version: 3.890.0
resolution: "@aws-sdk/credential-provider-process@npm:3.890.0"
dependencies:
"@aws-sdk/core": "npm:3.890.0"
"@aws-sdk/types": "npm:3.887.0"
"@smithy/property-provider": "npm:^4.1.1"
"@smithy/shared-ini-file-loader": "npm:^4.2.0"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10/57043a2f8c8d379660156838cafe5b32a1c839411f51d4ba9de80c266ea893169fbee17f126d385204c3cb0663a05e485366277099ecae56a9c469e62a8a8448
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.890.0":
version: 3.890.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.890.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.890.0"
"@aws-sdk/core": "npm:3.890.0"
"@aws-sdk/token-providers": "npm:3.890.0"
"@aws-sdk/types": "npm:3.887.0"
"@smithy/property-provider": "npm:^4.1.1"
"@smithy/shared-ini-file-loader": "npm:^4.2.0"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10/c623236675082a5655e0794b943622266e6be49361c9562cc19d96bc0223383cbfd3b8c3d9c6db0b898cadfaa30196aa1f1f7e118148745b34ee6d66a8e44042
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.890.0":
version: 3.890.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.890.0"
dependencies:
"@aws-sdk/core": "npm:3.890.0"
"@aws-sdk/nested-clients": "npm:3.890.0"
"@aws-sdk/types": "npm:3.887.0"
"@smithy/property-provider": "npm:^4.1.1"
"@smithy/shared-ini-file-loader": "npm:^4.2.0"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10/7d9586176da3399708eecf31596efd54966d1e221b53331c9d1783c735b667e89e9e346679363fbdf669003453f4a3cff0411a34777cf1ddb8fb4630a91bacc5
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.887.0":
version: 3.887.0
resolution: "@aws-sdk/middleware-host-header@npm:3.887.0"
dependencies:
"@aws-sdk/types": "npm:3.887.0"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10/6d0d51fb3463a038afde9f2a99ccd28b5516f44c115dc61890a46947a4651d7e1a628b95dcbe64587ba572a230b8a4c0bdad2a530d2e22f7d53d4d77a18b7ddb
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.887.0":
version: 3.887.0
resolution: "@aws-sdk/middleware-logger@npm:3.887.0"
dependencies:
"@aws-sdk/types": "npm:3.887.0"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10/bb01e8e9bdded33c3bee9ef4e55af988e2b81342c883681be571841f04aa80aab6deccf548cc6716018537ecbc012e6a91ca5c2f28b012d583589803a5f1e10c
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.887.0":
version: 3.887.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.887.0"
dependencies:
"@aws-sdk/types": "npm:3.887.0"
"@aws/lambda-invoke-store": "npm:^0.0.1"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10/e97b763476ace420d4a3d7117d3fb6e1111891f62032f37242603de59de1ed7a57a20031b8434eaa4c415471c7ed0cca82d81141074c79ef901b48020204d094
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.890.0":
version: 3.890.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.890.0"
dependencies:
"@aws-sdk/core": "npm:3.890.0"
"@aws-sdk/types": "npm:3.887.0"
"@aws-sdk/util-endpoints": "npm:3.890.0"
"@smithy/core": "npm:^3.11.0"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10/d4a1888fc1778649390a41f65a0c6ebcf818dc9b99dcd924dd1c5d42f9e958a0b7c9de6c227dace35a488042ba1a91d7030254c140767b0df5773c13bb832435
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.890.0":
version: 3.890.0
resolution: "@aws-sdk/nested-clients@npm:3.890.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.890.0"
"@aws-sdk/middleware-host-header": "npm:3.887.0"
"@aws-sdk/middleware-logger": "npm:3.887.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.887.0"
"@aws-sdk/middleware-user-agent": "npm:3.890.0"
"@aws-sdk/region-config-resolver": "npm:3.890.0"
"@aws-sdk/types": "npm:3.887.0"
"@aws-sdk/util-endpoints": "npm:3.890.0"
"@aws-sdk/util-user-agent-browser": "npm:3.887.0"
"@aws-sdk/util-user-agent-node": "npm:3.890.0"
"@smithy/config-resolver": "npm:^4.2.2"
"@smithy/core": "npm:^3.11.0"
"@smithy/fetch-http-handler": "npm:^5.2.1"
"@smithy/hash-node": "npm:^4.1.1"
"@smithy/invalid-dependency": "npm:^4.1.1"
"@smithy/middleware-content-length": "npm:^4.1.1"
"@smithy/middleware-endpoint": "npm:^4.2.2"
"@smithy/middleware-retry": "npm:^4.2.2"
"@smithy/middleware-serde": "npm:^4.1.1"
"@smithy/middleware-stack": "npm:^4.1.1"
"@smithy/node-config-provider": "npm:^4.2.2"
"@smithy/node-http-handler": "npm:^4.2.1"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/smithy-client": "npm:^4.6.2"
"@smithy/types": "npm:^4.5.0"
"@smithy/url-parser": "npm:^4.1.1"
"@smithy/util-base64": "npm:^4.1.0"
"@smithy/util-body-length-browser": "npm:^4.1.0"
"@smithy/util-body-length-node": "npm:^4.1.0"
"@smithy/util-defaults-mode-browser": "npm:^4.1.2"
"@smithy/util-defaults-mode-node": "npm:^4.1.2"
"@smithy/util-endpoints": "npm:^3.1.2"
"@smithy/util-middleware": "npm:^4.1.1"
"@smithy/util-retry": "npm:^4.1.1"
"@smithy/util-utf8": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10/27726c94430d341f827e0143363388de544ba06904f586f7aa993e6ae2e54d8e9171c3859016515a9b7c4f34334dca2295c0929056bae92ca3ba997d5f616d77
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.890.0":
version: 3.890.0
resolution: "@aws-sdk/region-config-resolver@npm:3.890.0"
dependencies:
"@aws-sdk/types": "npm:3.887.0"
"@smithy/node-config-provider": "npm:^4.2.2"
"@smithy/types": "npm:^4.5.0"
"@smithy/util-config-provider": "npm:^4.1.0"
"@smithy/util-middleware": "npm:^4.1.1"
tslib: "npm:^2.6.2"
checksum: 10/cc206435a728beea2ba08ce6efdd6a2e980be350f92b5dee0194665f3f1e88c3a82bf48d7cddf1567a9ff2fc597b30eda31749d88b09e4d2b30d71b3b67956a0
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.890.0":
version: 3.890.0
resolution: "@aws-sdk/token-providers@npm:3.890.0"
dependencies:
"@aws-sdk/core": "npm:3.890.0"
"@aws-sdk/nested-clients": "npm:3.890.0"
"@aws-sdk/types": "npm:3.887.0"
"@smithy/property-provider": "npm:^4.1.1"
"@smithy/shared-ini-file-loader": "npm:^4.2.0"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10/3f2c2b418958453bd0860696bb77a4384d5d933bfb0548557ca109f4e64bcd7230b60825b2b57031e11b95c17f8d1740bf92692f9f93535c6c4647d21dedb93a
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.887.0":
version: 3.887.0
resolution: "@aws-sdk/types@npm:3.887.0"
dependencies:
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10/b4a0024c35d01b481d18454ed1d6eaca8aa1f61082e9e71b1af78d1bc714c919fad3f594498a572aafa73f0d4301b26ae359d009a79d62c5ad995dad25416d59
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0":
version: 3.523.0
resolution: "@aws-sdk/types@npm:3.523.0"
dependencies:
"@smithy/types": "npm:^2.10.1"
tslib: "npm:^2.5.0"
checksum: 10/2a33cc1a68d259de199526efde22da2551bd4b6f0f1265d4d378a83b87a22eb88fb3c5b26aa6d649392c04e22aadfd88e56e86d37c304260a6ccb7275d76ed27
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.890.0":
version: 3.890.0
resolution: "@aws-sdk/util-endpoints@npm:3.890.0"
dependencies:
"@aws-sdk/types": "npm:3.887.0"
"@smithy/types": "npm:^4.5.0"
"@smithy/url-parser": "npm:^4.1.1"
"@smithy/util-endpoints": "npm:^3.1.2"
tslib: "npm:^2.6.2"
checksum: 10/c0f3e0ec2f2add47a8c91f18de1b8c2a7444027f45489be9e9566fe9130976ea236573d2cc299871d403b8658cb15057bda414e0308cc7c9f43b947700185c0b
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.37.0
resolution: "@aws-sdk/util-locate-window@npm:3.37.0"
dependencies:
tslib: "npm:^2.3.0"
checksum: 10/c8c8905bda0dd7381f64bffc4e40448ce859b3b094f54ea4d0ed23b7dbded6e12e5e2c7b8a459c0eca6dfdbe18830f2dfd1b11c3d9e95a3b715f38d6b37b45c8
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.887.0":
version: 3.887.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.887.0"
dependencies:
"@aws-sdk/types": "npm:3.887.0"
"@smithy/types": "npm:^4.5.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10/9ea71ca8e756a5e69e9651724253917fa5b75d31fc91562976d09c65d1ebdad65f529afc07922639549027c75f5f207fc70694ae29787198e895573f888c1b0e
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.890.0":
version: 3.890.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.890.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.890.0"
"@aws-sdk/types": "npm:3.887.0"
"@smithy/node-config-provider": "npm:^4.2.2"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10/5f12afdf8367c6b17a1371e1323053781f8b7932dbcfcf8e7a9b03c12ac6736ab835fb9fa86452d67c71d94ee4e3e1e41a5ef546afd8edbf3b5247bb015c2fbe
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.887.0":
version: 3.887.0
resolution: "@aws-sdk/xml-builder@npm:3.887.0"
dependencies:
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10/4a6189a319b846a82fe8a2cee7d34d6e5da934aacd5913d140bd3f3f7c677bd28617d49ce51dee95bee8aeccb4e436989a544405e8f3f28304daa43f1081c29c
languageName: node
linkType: hard
"@aws/lambda-invoke-store@npm:^0.0.1":
version: 0.0.1
resolution: "@aws/lambda-invoke-store@npm:0.0.1"
checksum: 10/e8f54d28aade8828962f2871a22aa4e960ebc40c8fa551414181dd9dd32d6258279013c42f88e57d17aa4252cb5ed00df6a49fc35185f9fa6b6f351ccf821bd6
languageName: node
linkType: hard
"@azure/abort-controller@npm:^1.0.0, @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: 10/1efe8735cfe6411f42ab9dda86be627073e0e3345a89bd5d0560175523ab3939db2c82fd17965a49fc70513377866539c91a5c73c871b5a0d771329ffae87dda
languageName: node
linkType: hard
"@azure/core-auth@npm:^1.1.4, @azure/core-auth@npm:^1.3.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: 10/c886661bcf3b3c777e35566218f7d48afb681b207c26d9785bb0e0be2826061bf1dda4a2c30f74530f8f54b3cb784b4287a5fefa1110527fa7bc3b4438d92c6a
languageName: node
linkType: hard
"@azure/core-http@npm:^3.0.0":
version: 3.0.2
resolution: "@azure/core-http@npm:3.0.2"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-auth": "npm:^1.3.0"
"@azure/core-tracing": "npm:1.0.0-preview.13"
"@azure/core-util": "npm:^1.1.1"
"@azure/logger": "npm:^1.0.0"
"@types/node-fetch": "npm:^2.5.0"
"@types/tunnel": "npm:^0.0.3"
form-data: "npm:^4.0.0"
node-fetch: "npm:^2.6.7"
process: "npm:^0.11.10"
tslib: "npm:^2.2.0"
tunnel: "npm:^0.0.6"
uuid: "npm:^8.3.0"
xml2js: "npm:^0.5.0"
checksum: 10/d00ca72083f7ae808d541847f548232c5966077aea411bbb173dede32154ce6a518410bbf4286736c3338a45b4f8635d839f62ed5c33070789523f2aeced549b
languageName: node
linkType: hard
"@azure/core-lro@npm:^2.2.0":
version: 2.5.3
resolution: "@azure/core-lro@npm:2.5.3"
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: 10/13386edafbd643b29060263be3807ecf9741041a6c99023dafa02bc5e36b542519ba6b81e8464c1a84d49b67bc9a9692cae0e734d217becf5024d3fa84bba5ff
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: 10/b02bbd7b3b00e7bb86f7c1e1e4542d5fb6ebadd7bb33a03112a0b0608dc43a936e271d8a3535ba548f617fc675393bc3d2882e54979e9a05baa321cd109585fc
languageName: node
linkType: hard
"@azure/core-tracing@npm:1.0.0-preview.13":
version: 1.0.0-preview.13
resolution: "@azure/core-tracing@npm:1.0.0-preview.13"
dependencies:
"@opentelemetry/api": "npm:^1.0.1"
tslib: "npm:^2.2.0"
checksum: 10/7a1832fdc7e3a6330a7714b68dcfc210258e52e1f003aaeb8174e0d6675466caf9bb11d977891d0445808119df4ab9045fb6d2888be4a4b6efa1404f02af5a9d
languageName: node
linkType: hard
"@azure/core-util@npm:^1.1.1, @azure/core-util@npm:^1.2.0":
version: 1.3.2
resolution: "@azure/core-util@npm:1.3.2"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
tslib: "npm:^2.2.0"
checksum: 10/a3420b22827f100f3b60b3080b8189efec9633a4deda71384b374ff71e7211f69369682c9716f74bd1fc4d7a20bb96b55dcc4a2590b7c04cf3510972f38860c8
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: 10/146359bf94d0049ae5da94f71b045a14fbd8e656db39639a57d0dda0f4dcd3c1cfdf9436f27e8ac9acd3b654d9d81d8dca437f13f78822b79e1b7d46d589ce9d
languageName: node
linkType: hard
"@azure/ms-rest-js@npm:^2.6.0":
version: 2.7.0
resolution: "@azure/ms-rest-js@npm:2.7.0"
dependencies:
"@azure/core-auth": "npm:^1.1.4"
abort-controller: "npm:^3.0.0"
form-data: "npm:^2.5.0"
node-fetch: "npm:^2.6.7"
tslib: "npm:^1.10.0"
tunnel: "npm:0.0.6"
uuid: "npm:^8.3.2"
xml2js: "npm:^0.5.0"
checksum: 10/f739fdf38bc2869b1de295250c16178d150825510de49cf5bba848d32b41d4fc2ad07a536c9d26258a26b7be62bc28fb2a03e6fd7b51dd9ad59ea8bba2c62df9
languageName: node
linkType: hard
"@azure/storage-blob@npm:^12.13.0":
version: 12.14.0
resolution: "@azure/storage-blob@npm:12.14.0"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-http": "npm:^3.0.0"
"@azure/core-lro": "npm:^2.2.0"
"@azure/core-paging": "npm:^1.1.1"
"@azure/core-tracing": "npm:1.0.0-preview.13"
"@azure/logger": "npm:^1.0.0"
events: "npm:^3.0.0"
tslib: "npm:^2.2.0"
checksum: 10/b346d26ba33582c3a76de4b9e6a684e05217324aa10e5d01d1d34bd6fcdd0dfe2b6d372bb5767a1e0258ac75284832e15f4a4a34a4eeacfe6e31b3f0a9120644
languageName: node
linkType: hard
"@azure/storage-blob@npm:^12.15.0":
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"
tslib: "npm:^2.2.0"
checksum: 10/7cb8a98876d6c2d1ab28115b4f3b74afd6b3ec8c0df96dbca6f903905e26e697ba31a6ab5acbe65e2880416eaf8e41d20c73fba33932f1ef00c0d81fd4b3d923
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/code-frame@npm:7.14.5"
dependencies:
"@babel/highlight": "npm:^7.14.5"
checksum: 10/0adbe4f8d91586f764f524e57631f582ab988b2ef504391a5d89db29bfaaf7c67c237798ed4a249b6a2d7135852cf94d3d07ce6b9739dd1df1f271d5ed069565
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/code-frame@npm:7.16.7"
dependencies:
"@babel/highlight": "npm:^7.16.7"
checksum: 10/db2f7faa31bc2c9cf63197b481b30ea57147a5fc1a6fab60e5d6c02cdfbf6de8e17b5121f99917b3dabb5eeb572da078312e70697415940383efc140d4e0808b
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.18.6, @babel/code-frame@npm:^7.21.4":
version: 7.21.4
resolution: "@babel/code-frame@npm:7.21.4"
dependencies:
"@babel/highlight": "npm:^7.18.6"
checksum: 10/99236ead98f215a6b144f2d1fe84163c2714614fa6b9cbe32a547ca289554770aac8c6a0c0fb6a7477b68cf17b9b7a7d0c81b50edfbe9e5c2c8f514cc2c09549
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.22.13":
version: 7.22.13
resolution: "@babel/code-frame@npm:7.22.13"
dependencies:
"@babel/highlight": "npm:^7.22.13"
chalk: "npm:^2.4.2"
checksum: 10/bf6ae6ba3a510adfda6a211b4a89b0f1c98ca1352b745c077d113f3b568141e0d44ce750b9ac2a80143ba5c8c4080c50fcfc1aa11d86e194ea6785f62520eb5a
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.16.4":
version: 7.17.0
resolution: "@babel/compat-data@npm:7.17.0"
checksum: 10/ca06df56c156640395ce16cb66038f570724ae86bdf35cfd71e928a4e1771c46fa8804ff78a7404c380c8b4ab6a85912bbf068e8f3c26d4e2aa2380ec8d60b92
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.21.4":
version: 7.21.4
resolution: "@babel/compat-data@npm:7.21.4"
checksum: 10/a14c573ac0b772dc77fa810c8d2db0dd159bf5f9b979e9e49acb2831db2d3745a54226aaaf9d6494039ad65719492bf227fa0d3557f203ea5ba4df0fcfb359a6
languageName: node
linkType: hard
"@babel/core@npm:^7.11.6":
version: 7.21.4
resolution: "@babel/core@npm:7.21.4"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.21.4"
"@babel/generator": "npm:^7.21.4"
"@babel/helper-compilation-targets": "npm:^7.21.4"
"@babel/helper-module-transforms": "npm:^7.21.2"
"@babel/helpers": "npm:^7.21.0"
"@babel/parser": "npm:^7.21.4"
"@babel/template": "npm:^7.20.7"
"@babel/traverse": "npm:^7.21.4"
"@babel/types": "npm:^7.21.4"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.2"
semver: "npm:^6.3.0"
checksum: 10/15040a98ff2d3862dd3a96292973749c0f44e51af851c21a7276dedcd4a7f25c86881de4d95a1af8642c8111c709a8cc1a35861a609b9ca703aa9651e58b947a
languageName: node
linkType: hard
"@babel/core@npm:^7.12.3":
version: 7.17.5
resolution: "@babel/core@npm:7.17.5"
dependencies:
"@ampproject/remapping": "npm:^2.1.0"
"@babel/code-frame": "npm:^7.16.7"
"@babel/generator": "npm:^7.17.3"
"@babel/helper-compilation-targets": "npm:^7.16.7"
"@babel/helper-module-transforms": "npm:^7.16.7"
"@babel/helpers": "npm:^7.17.2"
"@babel/parser": "npm:^7.17.3"
"@babel/template": "npm:^7.16.7"
"@babel/traverse": "npm:^7.17.3"
"@babel/types": "npm:^7.17.0"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.1.2"
semver: "npm:^6.3.0"
checksum: 10/1e45d498ca92fded7fcaff555a55ac2391385be307f83cf1994312c114303bdcab553c2b0b2e4201ec8e2f033f8eb3f5f9c46e496a98c93be02da11343a69393
languageName: node
linkType: hard
"@babel/generator@npm:^7.17.3, @babel/generator@npm:^7.7.2":
version: 7.17.3
resolution: "@babel/generator@npm:7.17.3"
dependencies:
"@babel/types": "npm:^7.17.0"
jsesc: "npm:^2.5.1"
source-map: "npm:^0.5.0"
checksum: 10/9a102a87b4e477aace1febc89a3692faf09c442015f24c3dffc1f54691498a73bd97a9eda9120be5626ede62728e15f7942ce841ff96c5b464703c701a7ab82a
languageName: node
linkType: hard
"@babel/generator@npm:^7.21.4":
version: 7.21.4
resolution: "@babel/generator@npm:7.21.4"
dependencies:
"@babel/types": "npm:^7.21.4"
"@jridgewell/gen-mapping": "npm:^0.3.2"
"@jridgewell/trace-mapping": "npm:^0.3.17"
jsesc: "npm:^2.5.1"
checksum: 10/73a81deba665655b92ed32ff4592674a8bf6babae9a810e46394476f9c96e5a8fe9fc5e04721aade7203ba2024506a9f4cd30247a8ce8ab20292befc4b40d0ea
languageName: node
linkType: hard
"@babel/generator@npm:^7.23.0":
version: 7.23.0
resolution: "@babel/generator@npm:7.23.0"
dependencies:
"@babel/types": "npm:^7.23.0"
"@jridgewell/gen-mapping": "npm:^0.3.2"
"@jridgewell/trace-mapping": "npm:^0.3.17"
jsesc: "npm:^2.5.1"
checksum: 10/bd1598bd356756065d90ce26968dd464ac2b915c67623f6f071fb487da5f9eb454031a380e20e7c9a7ce5c4a49d23be6cb9efde404952b0b3f3c0c3a9b73d68a
languageName: node
linkType: hard