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