-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathyarn.lock
1266 lines (1156 loc) · 47.5 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
"@aws-crypto/crc32@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/crc32@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10c0/09189ada61a4ffe6b3bd363b0535438470a8cc1a83c89a2591ef2a0b91acb9c4ba95626557cddf856abb9df0d2bfdb0969512f1949b6db7bff5d17109d8beb3f
languageName: node
linkType: hard
"@aws-crypto/ie11-detection@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/ie11-detection@npm:3.0.0"
dependencies:
tslib: "npm:^1.11.1"
checksum: 10c0/388891b86d816adb658175afeedaa6c4b4c70e83a7e94050d0425788da7fd5c1d675c5bd1588700e5168325bb342cc1063aa1ee4e519bc7f9b028b3998b69c53
languageName: node
linkType: hard
"@aws-crypto/sha256-browser@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha256-browser@npm:3.0.0"
dependencies:
"@aws-crypto/ie11-detection": "npm:^3.0.0"
"@aws-crypto/sha256-js": "npm:^3.0.0"
"@aws-crypto/supports-web-crypto": "npm:^3.0.0"
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10c0/c6a2d6b8176f6ab34b86f7b8c81e2beeae9d41bd4f5f375b332fbe9cbb916b94adcd70676fc7a505ba5abd4232dec1ddfcfa55877f91696d4c65f166648f3026
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:3.0.0, @aws-crypto/sha256-js@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha256-js@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10c0/fc013b25a5813c425d4fb77c9ffbc8b5f73d2c78b423df98a1b2575a26de5ff3775c8f62fcf8ef2cc39c8af1cc651013e2c670c1a605a2e16749e06920a2d68f
languageName: node
linkType: hard
"@aws-crypto/supports-web-crypto@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/supports-web-crypto@npm:3.0.0"
dependencies:
tslib: "npm:^1.11.1"
checksum: 10c0/67e5cbdebd9560244658ba4dd8610c8dc51022497780961fb5061c09618d4337e18b1ee6c71ac24b4aca175f2aa34d1390b95f8759dc293f197f2339dd5dd8c9
languageName: node
linkType: hard
"@aws-crypto/util@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/util@npm:3.0.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10c0/71ab6963daabbf080b274e24d160e4af6c8bbb6832bb885644018849ff53356bf82bb8000b8596cf296e7d6b14ad6201872b6b902f944e97e121eb2b2f692667
languageName: node
linkType: hard
"@aws-sdk/client-cloudwatch-logs@npm:^3.379.1":
version: 3.379.1
resolution: "@aws-sdk/client-cloudwatch-logs@npm:3.379.1"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.379.1"
"@aws-sdk/credential-provider-node": "npm:3.379.1"
"@aws-sdk/middleware-host-header": "npm:3.379.1"
"@aws-sdk/middleware-logger": "npm:3.378.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.378.0"
"@aws-sdk/middleware-signing": "npm:3.379.1"
"@aws-sdk/middleware-user-agent": "npm:3.379.1"
"@aws-sdk/types": "npm:3.378.0"
"@aws-sdk/util-endpoints": "npm:3.378.0"
"@aws-sdk/util-user-agent-browser": "npm:3.378.0"
"@aws-sdk/util-user-agent-node": "npm:3.378.0"
"@smithy/config-resolver": "npm:^2.0.1"
"@smithy/fetch-http-handler": "npm:^2.0.1"
"@smithy/hash-node": "npm:^2.0.1"
"@smithy/invalid-dependency": "npm:^2.0.1"
"@smithy/middleware-content-length": "npm:^2.0.1"
"@smithy/middleware-endpoint": "npm:^2.0.1"
"@smithy/middleware-retry": "npm:^2.0.1"
"@smithy/middleware-serde": "npm:^2.0.1"
"@smithy/middleware-stack": "npm:^2.0.0"
"@smithy/node-config-provider": "npm:^2.0.1"
"@smithy/node-http-handler": "npm:^2.0.1"
"@smithy/protocol-http": "npm:^2.0.1"
"@smithy/smithy-client": "npm:^2.0.1"
"@smithy/types": "npm:^2.0.2"
"@smithy/url-parser": "npm:^2.0.1"
"@smithy/util-base64": "npm:^2.0.0"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.0.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.1"
"@smithy/util-defaults-mode-node": "npm:^2.0.1"
"@smithy/util-retry": "npm:^2.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10c0/54b46ce3391cae71f8dcbcb2a06aa3264fabc3c68a3c48d0c4ff5dbef1f5f7e2fbaae0bd8577b3ba2cae889ef2ea9ce8119a9ed361a07dc83804e35fcae84409
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.379.1":
version: 3.379.1
resolution: "@aws-sdk/client-sso-oidc@npm:3.379.1"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/middleware-host-header": "npm:3.379.1"
"@aws-sdk/middleware-logger": "npm:3.378.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.378.0"
"@aws-sdk/middleware-user-agent": "npm:3.379.1"
"@aws-sdk/types": "npm:3.378.0"
"@aws-sdk/util-endpoints": "npm:3.378.0"
"@aws-sdk/util-user-agent-browser": "npm:3.378.0"
"@aws-sdk/util-user-agent-node": "npm:3.378.0"
"@smithy/config-resolver": "npm:^2.0.1"
"@smithy/fetch-http-handler": "npm:^2.0.1"
"@smithy/hash-node": "npm:^2.0.1"
"@smithy/invalid-dependency": "npm:^2.0.1"
"@smithy/middleware-content-length": "npm:^2.0.1"
"@smithy/middleware-endpoint": "npm:^2.0.1"
"@smithy/middleware-retry": "npm:^2.0.1"
"@smithy/middleware-serde": "npm:^2.0.1"
"@smithy/middleware-stack": "npm:^2.0.0"
"@smithy/node-config-provider": "npm:^2.0.1"
"@smithy/node-http-handler": "npm:^2.0.1"
"@smithy/protocol-http": "npm:^2.0.1"
"@smithy/smithy-client": "npm:^2.0.1"
"@smithy/types": "npm:^2.0.2"
"@smithy/url-parser": "npm:^2.0.1"
"@smithy/util-base64": "npm:^2.0.0"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.0.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.1"
"@smithy/util-defaults-mode-node": "npm:^2.0.1"
"@smithy/util-retry": "npm:^2.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10c0/25bc0fae2aa4dda20d29f624e3f61fe94be78f9a6d7e1dc6465dc62cfe24447fddf6c362a89a4a1327021588e46888e7b92e896a450e77d56a7fd836994ee5ec
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.379.1":
version: 3.379.1
resolution: "@aws-sdk/client-sso@npm:3.379.1"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/middleware-host-header": "npm:3.379.1"
"@aws-sdk/middleware-logger": "npm:3.378.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.378.0"
"@aws-sdk/middleware-user-agent": "npm:3.379.1"
"@aws-sdk/types": "npm:3.378.0"
"@aws-sdk/util-endpoints": "npm:3.378.0"
"@aws-sdk/util-user-agent-browser": "npm:3.378.0"
"@aws-sdk/util-user-agent-node": "npm:3.378.0"
"@smithy/config-resolver": "npm:^2.0.1"
"@smithy/fetch-http-handler": "npm:^2.0.1"
"@smithy/hash-node": "npm:^2.0.1"
"@smithy/invalid-dependency": "npm:^2.0.1"
"@smithy/middleware-content-length": "npm:^2.0.1"
"@smithy/middleware-endpoint": "npm:^2.0.1"
"@smithy/middleware-retry": "npm:^2.0.1"
"@smithy/middleware-serde": "npm:^2.0.1"
"@smithy/middleware-stack": "npm:^2.0.0"
"@smithy/node-config-provider": "npm:^2.0.1"
"@smithy/node-http-handler": "npm:^2.0.1"
"@smithy/protocol-http": "npm:^2.0.1"
"@smithy/smithy-client": "npm:^2.0.1"
"@smithy/types": "npm:^2.0.2"
"@smithy/url-parser": "npm:^2.0.1"
"@smithy/util-base64": "npm:^2.0.0"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.0.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.1"
"@smithy/util-defaults-mode-node": "npm:^2.0.1"
"@smithy/util-retry": "npm:^2.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10c0/201cfc0ed9aa16c5c103aca245fea209cba8e5a4323ce986e42c3ff53f08d1679049517aeb11d13c72c673cac8a383f44458c547437dec671e1429f75c57a570
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.379.1":
version: 3.379.1
resolution: "@aws-sdk/client-sts@npm:3.379.1"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/credential-provider-node": "npm:3.379.1"
"@aws-sdk/middleware-host-header": "npm:3.379.1"
"@aws-sdk/middleware-logger": "npm:3.378.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.378.0"
"@aws-sdk/middleware-sdk-sts": "npm:3.379.1"
"@aws-sdk/middleware-signing": "npm:3.379.1"
"@aws-sdk/middleware-user-agent": "npm:3.379.1"
"@aws-sdk/types": "npm:3.378.0"
"@aws-sdk/util-endpoints": "npm:3.378.0"
"@aws-sdk/util-user-agent-browser": "npm:3.378.0"
"@aws-sdk/util-user-agent-node": "npm:3.378.0"
"@smithy/config-resolver": "npm:^2.0.1"
"@smithy/fetch-http-handler": "npm:^2.0.1"
"@smithy/hash-node": "npm:^2.0.1"
"@smithy/invalid-dependency": "npm:^2.0.1"
"@smithy/middleware-content-length": "npm:^2.0.1"
"@smithy/middleware-endpoint": "npm:^2.0.1"
"@smithy/middleware-retry": "npm:^2.0.1"
"@smithy/middleware-serde": "npm:^2.0.1"
"@smithy/middleware-stack": "npm:^2.0.0"
"@smithy/node-config-provider": "npm:^2.0.1"
"@smithy/node-http-handler": "npm:^2.0.1"
"@smithy/protocol-http": "npm:^2.0.1"
"@smithy/smithy-client": "npm:^2.0.1"
"@smithy/types": "npm:^2.0.2"
"@smithy/url-parser": "npm:^2.0.1"
"@smithy/util-base64": "npm:^2.0.0"
"@smithy/util-body-length-browser": "npm:^2.0.0"
"@smithy/util-body-length-node": "npm:^2.0.0"
"@smithy/util-defaults-mode-browser": "npm:^2.0.1"
"@smithy/util-defaults-mode-node": "npm:^2.0.1"
"@smithy/util-retry": "npm:^2.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
checksum: 10c0/0b67e59f0ad63e8537312e20c8c6510cc800fcbec1af46976a25d90e53310a9d1c7e23863d13c94c61d8764084281f44f451a18b5f2aa003d30f3de2caab99aa
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.378.0":
version: 3.378.0
resolution: "@aws-sdk/credential-provider-env@npm:3.378.0"
dependencies:
"@aws-sdk/types": "npm:3.378.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/bc6aa45384b92c8055a4075dbc56319140adf4b2e1b42edded500f6f335466bf4c16ed83629086e06947efe02751a796c0f67b01094033e7833e4703177a99a1
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.379.1":
version: 3.379.1
resolution: "@aws-sdk/credential-provider-ini@npm:3.379.1"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.378.0"
"@aws-sdk/credential-provider-process": "npm:3.378.0"
"@aws-sdk/credential-provider-sso": "npm:3.379.1"
"@aws-sdk/credential-provider-web-identity": "npm:3.378.0"
"@aws-sdk/types": "npm:3.378.0"
"@smithy/credential-provider-imds": "npm:^2.0.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.0"
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/23e15898b039c51af93ca44ced784adb8c36e5fca1cb1e9ff6c5cee3e850d53f9d4df1adfe674d91439498ba242694693888f9bdcda1cd5a9b42675d205f1c52
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.379.1":
version: 3.379.1
resolution: "@aws-sdk/credential-provider-node@npm:3.379.1"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.378.0"
"@aws-sdk/credential-provider-ini": "npm:3.379.1"
"@aws-sdk/credential-provider-process": "npm:3.378.0"
"@aws-sdk/credential-provider-sso": "npm:3.379.1"
"@aws-sdk/credential-provider-web-identity": "npm:3.378.0"
"@aws-sdk/types": "npm:3.378.0"
"@smithy/credential-provider-imds": "npm:^2.0.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.0"
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/a9ded01bc1f5ecc595c4d96c0f9731e9677e64bbbd5e959a5d1eb3a5e5e81cc18f7b5ec725c60f542335fe336acc42ab4272520f6ea57ba944b0dc757f0a26cf
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.378.0":
version: 3.378.0
resolution: "@aws-sdk/credential-provider-process@npm:3.378.0"
dependencies:
"@aws-sdk/types": "npm:3.378.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.0"
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/214868f3d5dcb2ecf51f0662c4cf95be720cca72cd56c6f4a6a23a15d1bca91451983f0018bef38eb2bffb427ecc87ecc277ff5db884d20418b427d5852a5251
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.379.1":
version: 3.379.1
resolution: "@aws-sdk/credential-provider-sso@npm:3.379.1"
dependencies:
"@aws-sdk/client-sso": "npm:3.379.1"
"@aws-sdk/token-providers": "npm:3.379.1"
"@aws-sdk/types": "npm:3.378.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.0"
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/c7c6e3d2bb5b9a59291133eab38d55098ffad8582e430d8e7ddef6cb9dcfc01f579cedf3995ce25b1fdf25684673a92a0fd24830a475b87a7f1e181c286435cf
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.378.0":
version: 3.378.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.378.0"
dependencies:
"@aws-sdk/types": "npm:3.378.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/32d6d72aa1d2599f918a48311f1ebda03d47c35872c899bbfb332f3973e6db08e047d32794a1c67ad1833177c57c25e708811ed81b1fcb440667b327f54eb1dd
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.379.1":
version: 3.379.1
resolution: "@aws-sdk/middleware-host-header@npm:3.379.1"
dependencies:
"@aws-sdk/types": "npm:3.378.0"
"@smithy/protocol-http": "npm:^2.0.1"
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/7c3074faceae0246b23a51ca4e6244a8180fe9617deae073769f34e25818cc6b80b2a3ad82421200f3f144474e889b72310b86ebe5f66bef3782e85bfb50f811
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.378.0":
version: 3.378.0
resolution: "@aws-sdk/middleware-logger@npm:3.378.0"
dependencies:
"@aws-sdk/types": "npm:3.378.0"
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/63a073a6211e29e31193487c30486a7b9a6fbeb82651012c14dfd7030adb300294f434d2eb46e3031a30961260551fd5825b8794b8de2bd15ce0d2cc0a512ec9
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.378.0":
version: 3.378.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.378.0"
dependencies:
"@aws-sdk/types": "npm:3.378.0"
"@smithy/protocol-http": "npm:^2.0.1"
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/68c715283febef7037cac36eba2cc5d7368ddddb0485a7cb7ddbab12812e843dca5b067bb5975e96021cc12bf988fa27d37bff6e67c683e655cb2371081c0fca
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-sts@npm:3.379.1":
version: 3.379.1
resolution: "@aws-sdk/middleware-sdk-sts@npm:3.379.1"
dependencies:
"@aws-sdk/middleware-signing": "npm:3.379.1"
"@aws-sdk/types": "npm:3.378.0"
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/d885e6949ddab968325bc2ce40c0f9332e9ce1c71f7d4c3c2d51bff29f1e36474efbb75b6f9bf2ed5210130b5f3cc04be0dcb93ddec530694026c5cfe78dd04a
languageName: node
linkType: hard
"@aws-sdk/middleware-signing@npm:3.379.1":
version: 3.379.1
resolution: "@aws-sdk/middleware-signing@npm:3.379.1"
dependencies:
"@aws-sdk/types": "npm:3.378.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/protocol-http": "npm:^2.0.1"
"@smithy/signature-v4": "npm:^2.0.0"
"@smithy/types": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10c0/71ac8f0062212cf7488f3a62217f9224b7aee21ad9429abac79383da58b5588cf046294640fdab8a8651f532c71b43b9ae76a67483948097b4875adb8b450beb
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.379.1":
version: 3.379.1
resolution: "@aws-sdk/middleware-user-agent@npm:3.379.1"
dependencies:
"@aws-sdk/types": "npm:3.378.0"
"@aws-sdk/util-endpoints": "npm:3.378.0"
"@smithy/protocol-http": "npm:^2.0.1"
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/8c720542a4cc8849562333ea7c8713679faa3c4150f0c6172c662356a1302413b0ba2d765bbe01d1a56a46744506c44040a86f0053d387bd83675390cedf45aa
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.379.1":
version: 3.379.1
resolution: "@aws-sdk/token-providers@npm:3.379.1"
dependencies:
"@aws-sdk/client-sso-oidc": "npm:3.379.1"
"@aws-sdk/types": "npm:3.378.0"
"@smithy/property-provider": "npm:^2.0.0"
"@smithy/shared-ini-file-loader": "npm:^2.0.0"
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/c98b91ed415c15695f2c1429eb2391b4f52fd635df589c17e544c35a958c903a14dab22e0d2b6887dee21e1b5ce91e4880ad62aaae5be57f69d90db8aef77e03
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.378.0, @aws-sdk/types@npm:^3.222.0":
version: 3.378.0
resolution: "@aws-sdk/types@npm:3.378.0"
dependencies:
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/2d32d0b19ad75f506e37efc207aae2135bb0630d666861c1afcfa073403c10472953ea127cb32b9eddf36800b5ecda3c7e08d8e4d5de883114871d9572ce5a18
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.378.0":
version: 3.378.0
resolution: "@aws-sdk/util-endpoints@npm:3.378.0"
dependencies:
"@aws-sdk/types": "npm:3.378.0"
tslib: "npm:^2.5.0"
checksum: 10c0/4e17af4e95bce97cadcb92dfaaa6905c2729a7fa1ca0a723860fbd1130888f44d806377ba013099d20467e2266aa142a83ee4e31ac457d67b3e20720fa0e2d74
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.310.0
resolution: "@aws-sdk/util-locate-window@npm:3.310.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10c0/9f040d9cb01687317ac9f61d5c9e349aeb506deb114f6259d48949428695e5c4e40b36920091451f74e037b016a6534e43d5a5eb225e18fa45eedb998c87bd6f
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.378.0":
version: 3.378.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.378.0"
dependencies:
"@aws-sdk/types": "npm:3.378.0"
"@smithy/types": "npm:^2.0.2"
bowser: "npm:^2.11.0"
tslib: "npm:^2.5.0"
checksum: 10c0/9e42412baf1ce8b3b5a0861185f17e365c29f205cb03995a2cc5c0baa3f8e07b63e0ba7efeab72a149a74384673f88bd6c13514306f1301cd79d8d686731976e
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.378.0":
version: 3.378.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.378.0"
dependencies:
"@aws-sdk/types": "npm:3.378.0"
"@smithy/node-config-provider": "npm:^2.0.1"
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/f3bcf036cb05034c0c93f739655b4189fa2fdf18a6714a85221ef51111477694f541a373aff8ce85b3c12fe9e80a8a9a8e16ebadef4fe779e427e0eebe745784
languageName: node
linkType: hard
"@aws-sdk/util-utf8-browser@npm:^3.0.0":
version: 3.259.0
resolution: "@aws-sdk/util-utf8-browser@npm:3.259.0"
dependencies:
tslib: "npm:^2.3.1"
checksum: 10c0/ff56ff252c0ea22b760b909ba5bbe9ca59a447066097e73b1e2ae50a6d366631ba560c373ec4e83b3e225d16238eeaf8def210fdbf135070b3dd3ceb1cc2ef9a
languageName: node
linkType: hard
"@colors/colors@npm:1.5.0":
version: 1.5.0
resolution: "@colors/colors@npm:1.5.0"
checksum: 10c0/eb42729851adca56d19a08e48d5a1e95efd2a32c55ae0323de8119052be0510d4b7a1611f2abcbf28c044a6c11e6b7d38f99fccdad7429300c37a8ea5fb95b44
languageName: node
linkType: hard
"@dabh/diagnostics@npm:^2.0.2":
version: 2.0.3
resolution: "@dabh/diagnostics@npm:2.0.3"
dependencies:
colorspace: "npm:1.1.x"
enabled: "npm:2.0.x"
kuler: "npm:^2.0.0"
checksum: 10c0/a5133df8492802465ed01f2f0a5784585241a1030c362d54a602ed1839816d6c93d71dde05cf2ddb4fd0796238c19774406bd62fa2564b637907b495f52425fe
languageName: node
linkType: hard
"@smithy/abort-controller@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/abort-controller@npm:2.0.1"
dependencies:
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/995c3a719edec798b057f961b321b41471543f72cb567413b37cca5400cbe177da18392ae734ab8603016616fa326e0c08138bfcb454287bfc8cc8356649698d
languageName: node
linkType: hard
"@smithy/config-resolver@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/config-resolver@npm:2.0.1"
dependencies:
"@smithy/types": "npm:^2.0.2"
"@smithy/util-config-provider": "npm:^2.0.0"
"@smithy/util-middleware": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10c0/c58266a9b00486d84b9e7e14cba72fd32b14860d028f7322fe197dfed705798ee8bef22f069a7dacbd273894ff64d7afbc60a585792f4345e1e3fd17ac52a90a
languageName: node
linkType: hard
"@smithy/credential-provider-imds@npm:^2.0.0, @smithy/credential-provider-imds@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/credential-provider-imds@npm:2.0.1"
dependencies:
"@smithy/node-config-provider": "npm:^2.0.1"
"@smithy/property-provider": "npm:^2.0.1"
"@smithy/types": "npm:^2.0.2"
"@smithy/url-parser": "npm:^2.0.1"
tslib: "npm:^2.5.0"
checksum: 10c0/e795f3a91fa079495d809e082fba1e5871a45c4a1774e25a1e6a7f0664889ad5b8a1b32f1e2254bad93c074c8ab5b194ab2c02e3a53a900c8f8a2d907859f5d2
languageName: node
linkType: hard
"@smithy/eventstream-codec@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/eventstream-codec@npm:2.0.1"
dependencies:
"@aws-crypto/crc32": "npm:3.0.0"
"@smithy/types": "npm:^2.0.2"
"@smithy/util-hex-encoding": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10c0/ba78a170cd714a6e6c1990415e7817f3fbce6d9f20d8dadc29edabc2666746b56381e8ed52079ce0a07e5ef44ab59d2b378a98781698de19fd4de7268e4de885
languageName: node
linkType: hard
"@smithy/fetch-http-handler@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/fetch-http-handler@npm:2.0.1"
dependencies:
"@smithy/protocol-http": "npm:^2.0.1"
"@smithy/querystring-builder": "npm:^2.0.1"
"@smithy/types": "npm:^2.0.2"
"@smithy/util-base64": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10c0/7bae59b44772496677eb1de11b3ab48ac9e0a3e6d4011d83271e08e7414fa2116d812479d05c8052ad498f496159ce34488b873ed22b6561fd20a8a5933eef8b
languageName: node
linkType: hard
"@smithy/hash-node@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/hash-node@npm:2.0.1"
dependencies:
"@smithy/types": "npm:^2.0.2"
"@smithy/util-buffer-from": "npm:^2.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10c0/516eb7f62def0ca507ffe808d6ba192d3c4f804c76439c85719e0487a3610255b68085922c4bbd5ef64f1992ab75cf21a8af899685968999291e88f3441a2dc3
languageName: node
linkType: hard
"@smithy/invalid-dependency@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/invalid-dependency@npm:2.0.1"
dependencies:
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/f7bc61822206379db94c343df056df743947c1842aff3f8581917fe4dd7a6f79b0cf6f5b4a46998110845ee63569921389262f5614bde8e284b1a823f2971332
languageName: node
linkType: hard
"@smithy/is-array-buffer@npm:^2.0.0":
version: 2.0.0
resolution: "@smithy/is-array-buffer@npm:2.0.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10c0/c0f8983a402da853fd6ee33f60e70c561e44f83a7aae1af9675a40aeb57980d1a64ac7a9b892b69fdfcf282f54accc7e531619ba1ae5e447f17c27efd109802e
languageName: node
linkType: hard
"@smithy/middleware-content-length@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/middleware-content-length@npm:2.0.1"
dependencies:
"@smithy/protocol-http": "npm:^2.0.1"
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/e0c0f919ffa0f50fe02fbc9b6350b93c349410fef73d13a26e7b1d8e840de921f5c89082931bb53cb609c4d29360f006a8066501226774f16d3b1d470310c0fa
languageName: node
linkType: hard
"@smithy/middleware-endpoint@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/middleware-endpoint@npm:2.0.1"
dependencies:
"@smithy/middleware-serde": "npm:^2.0.1"
"@smithy/types": "npm:^2.0.2"
"@smithy/url-parser": "npm:^2.0.1"
"@smithy/util-middleware": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10c0/ad557e680eb64cdeb9c867ff227e62b98bf781b77c284dfc9ed17b19e67d86b782a1cc39282c4b9a1bc11783fff862b04418b789a6398816b26a09d44492c0c9
languageName: node
linkType: hard
"@smithy/middleware-retry@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/middleware-retry@npm:2.0.1"
dependencies:
"@smithy/protocol-http": "npm:^2.0.1"
"@smithy/service-error-classification": "npm:^2.0.0"
"@smithy/types": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^2.0.0"
"@smithy/util-retry": "npm:^2.0.0"
tslib: "npm:^2.5.0"
uuid: "npm:^8.3.2"
checksum: 10c0/55aef1ad76cfcff3717114875e2b978ac4f250550acb3ea81447e91bce8fa78e1a90b52b810f220808433d1587ef13caa30912574b34a82947902157de89733d
languageName: node
linkType: hard
"@smithy/middleware-serde@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/middleware-serde@npm:2.0.1"
dependencies:
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/0d50d635cdb4ab5b688499c3e4ab0ec12066a9b40e0d31c9011f4f7f8d90b2c1dae72f4491c5ec19309e81b2d5c88484492e3333ae2ba6ab854f6d06d6de8471
languageName: node
linkType: hard
"@smithy/middleware-stack@npm:^2.0.0":
version: 2.0.0
resolution: "@smithy/middleware-stack@npm:2.0.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10c0/dd1507d599f9fa70d720f0be7e5ecf3aa24f0f0f23879c19a2d65fe6ba60184f641944116724612a240212361bb2b533c6aac8de4c1f4417611cf951d8001ccb
languageName: node
linkType: hard
"@smithy/node-config-provider@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/node-config-provider@npm:2.0.1"
dependencies:
"@smithy/property-provider": "npm:^2.0.1"
"@smithy/shared-ini-file-loader": "npm:^2.0.1"
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/2ea3ab568bb3871ad87a760e7889668e6662aeb96662f4d040dd32e12437c8168fb2989d2aa51e16b3544d521b29aa1d61f9c93a905f23dee96a3d97242b4ac2
languageName: node
linkType: hard
"@smithy/node-http-handler@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/node-http-handler@npm:2.0.1"
dependencies:
"@smithy/abort-controller": "npm:^2.0.1"
"@smithy/protocol-http": "npm:^2.0.1"
"@smithy/querystring-builder": "npm:^2.0.1"
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/beb561b4c01791faa1a5c7f11b39777ae28011a69ea5baf032830226f8dba2a572d8ec846d06dd922bda5ac4f38159f7f1b388d9bab9cabbe0929530d623c016
languageName: node
linkType: hard
"@smithy/property-provider@npm:^2.0.0, @smithy/property-provider@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/property-provider@npm:2.0.1"
dependencies:
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/f1ba9c699ea0113e866ecd7da34454a0e47e7f378353f008f399b0764c87fca55099d47d1b8c5fceedb3e4242b65eca635091071b48657ce7bf3ba0cc98895b8
languageName: node
linkType: hard
"@smithy/protocol-http@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/protocol-http@npm:2.0.1"
dependencies:
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/350f59d2a92afe711115dd3ff52571c9b7d31bb652d39f44c1012947ff26b46bbe00edaeaa1a001b974b62c32c88fa54798244819029b82b7744535c509fed2e
languageName: node
linkType: hard
"@smithy/querystring-builder@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/querystring-builder@npm:2.0.1"
dependencies:
"@smithy/types": "npm:^2.0.2"
"@smithy/util-uri-escape": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10c0/288a0c5084b7394020882130ae20f1bd61089816af686123067787845555f81e7f7436b00638fa3f0530b5557e81417e34aea297f7dbe5a4203792890509e315
languageName: node
linkType: hard
"@smithy/querystring-parser@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/querystring-parser@npm:2.0.1"
dependencies:
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/465ebb4ee87d3225dbc88b0adf45e2cc29ed7bdaaad84bdcf4f0ddd513be40940c75acd326c42b66a34babe2575ea1435c307f21202119b6ebe6ccdc782f0206
languageName: node
linkType: hard
"@smithy/service-error-classification@npm:^2.0.0":
version: 2.0.0
resolution: "@smithy/service-error-classification@npm:2.0.0"
checksum: 10c0/01eff69704f8d3c0a4e556b06d7566d905856ab069517b81e232b08e966c303bd24f2441f62518c0bd0ecb7e25069afd47db442223bb80b455e8f6c6a77bb57b
languageName: node
linkType: hard
"@smithy/shared-ini-file-loader@npm:^2.0.0, @smithy/shared-ini-file-loader@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/shared-ini-file-loader@npm:2.0.1"
dependencies:
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/53840d0524adfed2a2ad9887014c357df0ccf07b3bf23f775d999c8c7f0c0b314c1b01992cd2901f6b44a3e59a3f3c7fcaf71aa8a2c4c1948d2fe153af320679
languageName: node
linkType: hard
"@smithy/signature-v4@npm:^2.0.0":
version: 2.0.1
resolution: "@smithy/signature-v4@npm:2.0.1"
dependencies:
"@smithy/eventstream-codec": "npm:^2.0.1"
"@smithy/is-array-buffer": "npm:^2.0.0"
"@smithy/types": "npm:^2.0.2"
"@smithy/util-hex-encoding": "npm:^2.0.0"
"@smithy/util-middleware": "npm:^2.0.0"
"@smithy/util-uri-escape": "npm:^2.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10c0/b5262f7f6e69b18a8c2b2024eb6890585f892de05b8f27bf63725d4ce005cb5093d420cb420e51bbe70f2a185720082ef6b4680086af172cd0634584aaeebd83
languageName: node
linkType: hard
"@smithy/smithy-client@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/smithy-client@npm:2.0.1"
dependencies:
"@smithy/middleware-stack": "npm:^2.0.0"
"@smithy/types": "npm:^2.0.2"
"@smithy/util-stream": "npm:^2.0.1"
tslib: "npm:^2.5.0"
checksum: 10c0/c9157b3a9ba718a1f9760d00eaa5bb5b42d1ea72c0a86395c00409484232abc01c21b03e0ad84caecbfb3f09343e3b2a5d02e429c96b02c9eabc59585ea2bb0c
languageName: node
linkType: hard
"@smithy/types@npm:^2.0.2":
version: 2.0.2
resolution: "@smithy/types@npm:2.0.2"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10c0/2decf04dd0c2f9f5976485eb40392227ee8c0cd68f2433a7c38ccc47b10af39cdc21a26368ede26871ac02701f58828aecb6ab091074cc0468e3913104835794
languageName: node
linkType: hard
"@smithy/url-parser@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/url-parser@npm:2.0.1"
dependencies:
"@smithy/querystring-parser": "npm:^2.0.1"
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/b0b765b17b7e41ca72829bd9943dbfb33924f7bdec5e622b87e8d2d83ee570a305ed7a948c9cd085d4ab04afd7286e7e70470b912c5fad07cc60507bbc9f62e6
languageName: node
linkType: hard
"@smithy/util-base64@npm:^2.0.0":
version: 2.0.0
resolution: "@smithy/util-base64@npm:2.0.0"
dependencies:
"@smithy/util-buffer-from": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10c0/89ca476b119e9cb14563c4b0c901d4b54b93732be7a56bf16f192cc17ecefaa782423bc10e22b92e7dd96b4a191fa90141e615460d2797a640478b2dc1be0681
languageName: node
linkType: hard
"@smithy/util-body-length-browser@npm:^2.0.0":
version: 2.0.0
resolution: "@smithy/util-body-length-browser@npm:2.0.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10c0/a0ce4a9615b750a9fbcfc2e7fe025afb4e583f6500b7c532d758c4585e17425d2825c99cf24cd0eea5ccbb2f7e98e71060105075493db8d0b190c4fb70b89a6f
languageName: node
linkType: hard
"@smithy/util-body-length-node@npm:^2.0.0":
version: 2.0.0
resolution: "@smithy/util-body-length-node@npm:2.0.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10c0/ce6437f2aa3079e8ecca93300c1712c3296f0ede6792323365566d7382c3b26aff1713cdee19ce3bf56a516d23c17792982af3621f077181ce4a6bd6cfc23dad
languageName: node
linkType: hard
"@smithy/util-buffer-from@npm:^2.0.0":
version: 2.0.0
resolution: "@smithy/util-buffer-from@npm:2.0.0"
dependencies:
"@smithy/is-array-buffer": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10c0/21bcfe8f9dc66775970cd5d0fb401bcda39715e558f3309d0a5c1d6dc2d2cb40ed0a259748346f282b40398707f222791e6e9637174d82a510bd5eaad69dd0ca
languageName: node
linkType: hard
"@smithy/util-config-provider@npm:^2.0.0":
version: 2.0.0
resolution: "@smithy/util-config-provider@npm:2.0.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10c0/cc48532787a75f45a6959b8ad8fc018d0793fb8ed9969cf9cc8e348bfd8997b82a2ee9cce368d0df1c42d8ebd5ca866de34079ba2364777d572ddb4c2b8e71b9
languageName: node
linkType: hard
"@smithy/util-defaults-mode-browser@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/util-defaults-mode-browser@npm:2.0.1"
dependencies:
"@smithy/property-provider": "npm:^2.0.1"
"@smithy/types": "npm:^2.0.2"
bowser: "npm:^2.11.0"
tslib: "npm:^2.5.0"
checksum: 10c0/2b03444cb341524254aec005da05eb6a42824fae254694446ae1ae34b41e055daa77afaefa70cb5aabbb21fa6bb61ba6211c8c636c335254b4b45501cb8918a1
languageName: node
linkType: hard
"@smithy/util-defaults-mode-node@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/util-defaults-mode-node@npm:2.0.1"
dependencies:
"@smithy/config-resolver": "npm:^2.0.1"
"@smithy/credential-provider-imds": "npm:^2.0.1"
"@smithy/node-config-provider": "npm:^2.0.1"
"@smithy/property-provider": "npm:^2.0.1"
"@smithy/types": "npm:^2.0.2"
tslib: "npm:^2.5.0"
checksum: 10c0/3cb749c692c4bb09e494b3d48c463e008b53b31f8df24cfd5f725fab168c063315131aedcb1b72eefd794e69a2c9ef5a31fdfb3ec20ae99499f379c89f56f405
languageName: node
linkType: hard
"@smithy/util-hex-encoding@npm:^2.0.0":
version: 2.0.0
resolution: "@smithy/util-hex-encoding@npm:2.0.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10c0/50c3d855b8f3e7a6ef087969e451327cb5ebc1e582ba34f0523d73341f944ae1afa80bb950d2bc6298f4021146193dc84c892d5932f4e47275c3818e8426b338
languageName: node
linkType: hard
"@smithy/util-middleware@npm:^2.0.0":
version: 2.0.0
resolution: "@smithy/util-middleware@npm:2.0.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10c0/2720983153d77d18815d67eefabe24afa4c4fdde15435817dabb574fda7ba602491fc1efb5de2c05a1882ff2f2b7d17fb1eb8590202d6299cb93a258fdce989d
languageName: node
linkType: hard
"@smithy/util-retry@npm:^2.0.0":
version: 2.0.0
resolution: "@smithy/util-retry@npm:2.0.0"
dependencies:
"@smithy/service-error-classification": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10c0/03b69046d7736f11430147772463685246918560b70ff54799b8dee59a4819fa4349917fa9df841953224f5ec95ef1aa3e5ee5818450ad2f92a2397caede41bd
languageName: node
linkType: hard
"@smithy/util-stream@npm:^2.0.1":
version: 2.0.1
resolution: "@smithy/util-stream@npm:2.0.1"
dependencies:
"@smithy/fetch-http-handler": "npm:^2.0.1"
"@smithy/node-http-handler": "npm:^2.0.1"
"@smithy/types": "npm:^2.0.2"
"@smithy/util-base64": "npm:^2.0.0"
"@smithy/util-buffer-from": "npm:^2.0.0"
"@smithy/util-hex-encoding": "npm:^2.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10c0/e3121b02575dea55c0bfa59ad25aaca4b6f4cd4dc7091966f78635a57b7b5765ce9fe94eda66de50fe68ba3544c94c59691b7f18085bb7fdb29ee62cce2f5237
languageName: node
linkType: hard
"@smithy/util-uri-escape@npm:^2.0.0":
version: 2.0.0
resolution: "@smithy/util-uri-escape@npm:2.0.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10c0/4a82a7ee35ddce9d509ed2d2d07bbfc8def085af759e7b17212e94bc7415fc9dcbd386d8f3212a14dd7225beed5411b887077f02c29cb56a2407db0a728e543e
languageName: node
linkType: hard
"@smithy/util-utf8@npm:^2.0.0":
version: 2.0.0
resolution: "@smithy/util-utf8@npm:2.0.0"
dependencies:
"@smithy/util-buffer-from": "npm:^2.0.0"
tslib: "npm:^2.5.0"
checksum: 10c0/26ecfc2a3c022f9e71dd5ede5d9fe8f1c3ecae6d623fe7504c398bc8ca7387e6a94c9fee4370da543b83220e51ee57c1fea189798c03884cecef21216918c56a
languageName: node
linkType: hard
"@types/triple-beam@npm:^1.3.2":
version: 1.3.2
resolution: "@types/triple-beam@npm:1.3.2"
checksum: 10c0/2e936cff7cde9df7da854a54a5f63e0a434b2ae1d6c1eb6de5f7a0b1107b023b3c272abecbba28614a54b8831226b29e37a49e3e34a7490a6a24d770a5b44eb9
languageName: node
linkType: hard
"async@npm:^3.2.3":
version: 3.2.4
resolution: "async@npm:3.2.4"
checksum: 10c0/b5d02fed64717edf49e35b2b156debd9cf524934ea670108fa5528e7615ed66a5e0bf6c65f832c9483b63aa7f0bffe3e588ebe8d58a539b833798d324516e1c9
languageName: node
linkType: hard
"bowser@npm:^2.11.0":
version: 2.11.0
resolution: "bowser@npm:2.11.0"
checksum: 10c0/04efeecc7927a9ec33c667fa0965dea19f4ac60b3fea60793c2e6cf06c1dcd2f7ae1dbc656f450c5f50783b1c75cf9dc173ba6f3b7db2feee01f8c4b793e1bd3
languageName: node
linkType: hard
"cloudwatch-winston@workspace:.":
version: 0.0.0-use.local
resolution: "cloudwatch-winston@workspace:."
dependencies:
"@aws-sdk/client-cloudwatch-logs": "npm:^3.379.1"
debug: "npm:^4.3.4"
truncate-utf8-bytes: "npm:^1.0.2"
winston: "npm:^3.0.0"
peerDependencies:
winston: ^3.0.0
languageName: unknown
linkType: soft
"color-convert@npm:^1.9.3":
version: 1.9.3
resolution: "color-convert@npm:1.9.3"
dependencies:
color-name: "npm:1.1.3"
checksum: 10c0/5ad3c534949a8c68fca8fbc6f09068f435f0ad290ab8b2f76841b9e6af7e0bb57b98cb05b0e19fe33f5d91e5a8611ad457e5f69e0a484caad1f7487fd0e8253c
languageName: node
linkType: hard
"color-name@npm:1.1.3":
version: 1.1.3
resolution: "color-name@npm:1.1.3"
checksum: 10c0/566a3d42cca25b9b3cd5528cd7754b8e89c0eb646b7f214e8e2eaddb69994ac5f0557d9c175eb5d8f0ad73531140d9c47525085ee752a91a2ab15ab459caf6d6
languageName: node
linkType: hard
"color-name@npm:^1.0.0":
version: 1.1.4
resolution: "color-name@npm:1.1.4"
checksum: 10c0/a1a3f914156960902f46f7f56bc62effc6c94e84b2cae157a526b1c1f74b677a47ec602bf68a61abfa2b42d15b7c5651c6dbe72a43af720bc588dff885b10f95
languageName: node
linkType: hard
"color-string@npm:^1.6.0":
version: 1.9.1
resolution: "color-string@npm:1.9.1"
dependencies:
color-name: "npm:^1.0.0"
simple-swizzle: "npm:^0.2.2"
checksum: 10c0/b0bfd74c03b1f837f543898b512f5ea353f71630ccdd0d66f83028d1f0924a7d4272deb278b9aef376cacf1289b522ac3fb175e99895283645a2dc3a33af2404
languageName: node
linkType: hard
"color@npm:^3.1.3":
version: 3.2.1
resolution: "color@npm:3.2.1"
dependencies:
color-convert: "npm:^1.9.3"
color-string: "npm:^1.6.0"
checksum: 10c0/39345d55825884c32a88b95127d417a2c24681d8b57069413596d9fcbb721459ef9d9ec24ce3e65527b5373ce171b73e38dbcd9c830a52a6487e7f37bf00e83c
languageName: node
linkType: hard