-
Notifications
You must be signed in to change notification settings - Fork 3
/
yarn.lock
10071 lines (9136 loc) · 357 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
"@alcalzone/ansi-tokenize@npm:^0.1.3":
version: 0.1.3
resolution: "@alcalzone/ansi-tokenize@npm:0.1.3"
dependencies:
ansi-styles: "npm:^6.2.1"
is-fullwidth-code-point: "npm:^4.0.0"
checksum: 10c0/b88c5708271bb64ce132fc80dac8d5b87fc1699bf3abfdf10ecae40dbb56ab82460818f5746ecdd9870a00be9854e039d5cb3a121b808d0ff6f5bc7d0146cb38
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10c0/81d63cca5443e0f0c72ae18b544cc28c7c0ec2cea46e7cb888bb0e0f411a1191d0d6b7af798d54e30777d8d1488b2ec0732aac2be342d3d7d3ffd271c6f489ed
languageName: node
linkType: hard
"@aws-cdk/asset-awscli-v1@npm:^2.2.202":
version: 2.2.202
resolution: "@aws-cdk/asset-awscli-v1@npm:2.2.202"
checksum: 10c0/3702ae0c6d57094a9f8f7fc86af2cf98d128c601ee2b8e14f72bf6b869e5b54df6448014f2d88c2fdff1258a182e28d735c9b0a807180e1eaa62367f93051bd4
languageName: node
linkType: hard
"@aws-cdk/asset-kubectl-v20@npm:^2.1.2":
version: 2.1.2
resolution: "@aws-cdk/asset-kubectl-v20@npm:2.1.2"
checksum: 10c0/491883ada4b62f89e48e3d45d776b72d30cbb2d87e0802424164343c81723b23dd77044ab3cb02a7ecad9960622dc264f9f716d2ec830404482117ee63f8bb2d
languageName: node
linkType: hard
"@aws-cdk/asset-node-proxy-agent-v6@npm:^2.0.3":
version: 2.0.3
resolution: "@aws-cdk/asset-node-proxy-agent-v6@npm:2.0.3"
checksum: 10c0/fa83c50bff30c5edb70b97314e68bc75362c1e541484b4f39c962e3f742f342ea11278a01606aaeca5b5257c582f108267f44675a452b8ea8a0348c715ad031b
languageName: node
linkType: hard
"@aws-cdk/aws-lambda-python-alpha@npm:2.142.1-alpha.0":
version: 2.142.1-alpha.0
resolution: "@aws-cdk/aws-lambda-python-alpha@npm:2.142.1-alpha.0"
peerDependencies:
aws-cdk-lib: ^2.142.1
constructs: ^10.0.0
checksum: 10c0/7f66c8da67edab2fa573386fa8126b855c12dfdb32140d4f45f46a3e1514b0a8512b9d071387c76cf0a254c8fbb4c4c7421006a83997f8ad660902f0eda784c2
languageName: node
linkType: hard
"@aws-cdk/aws-service-spec@npm:^0.1.1":
version: 0.1.8
resolution: "@aws-cdk/aws-service-spec@npm:0.1.8"
dependencies:
"@aws-cdk/service-spec-types": "npm:^0.0.76"
"@cdklabs/tskb": "npm:^0.0.3"
checksum: 10c0/e56e01e38af1ec5de01514e090ae714cba183613476e0caaaed43ee3f0aa5716178fa4242ed98c9908cac0e081fba45813f743f1869cc6f1a8e645983c14564d
languageName: node
linkType: hard
"@aws-cdk/cloud-assembly-schema@npm:2.142.1":
version: 2.142.1
resolution: "@aws-cdk/cloud-assembly-schema@npm:2.142.1"
dependencies:
jsonschema: "npm:^1.4.1"
semver: "npm:^7.6.0"
checksum: 10c0/6dcdcc0105e30a20cd2b0f09c8ef7b26f468bf928956503bed57c4118720450e4e1ac4be2acd8dfd861be7d94db623f6fa9c92547783e0f129f04d419b9de8ae
languageName: node
linkType: hard
"@aws-cdk/cloudformation-diff@npm:2.142.1":
version: 2.142.1
resolution: "@aws-cdk/cloudformation-diff@npm:2.142.1"
dependencies:
"@aws-cdk/aws-service-spec": "npm:^0.1.1"
"@aws-cdk/service-spec-types": "npm:^0.0.69"
chalk: "npm:^4"
diff: "npm:^5.2.0"
fast-deep-equal: "npm:^3.1.3"
string-width: "npm:^4.2.3"
table: "npm:^6.8.2"
checksum: 10c0/c3cfce80f2f7f42692fbcf0600ca243a59917d5822bf53fb8dd7cc1edd3f96223a9da24a655145f2c7165f71a16855f01f7d0a65b6803edf976238427426c8af
languageName: node
linkType: hard
"@aws-cdk/cx-api@npm:2.142.1":
version: 2.142.1
resolution: "@aws-cdk/cx-api@npm:2.142.1"
dependencies:
semver: "npm:^7.6.0"
peerDependencies:
"@aws-cdk/cloud-assembly-schema": 2.142.1
checksum: 10c0/741b82948c9b036cb0c92714730003607a872f7071291352edbd6a08afdf5d3df1d1eb17089dbc36b50dcbccb7b23f67b62dd8884d6f557c2f048779463d2f1d
languageName: node
linkType: hard
"@aws-cdk/service-spec-types@npm:^0.0.69":
version: 0.0.69
resolution: "@aws-cdk/service-spec-types@npm:0.0.69"
dependencies:
"@cdklabs/tskb": "npm:^0.0.3"
checksum: 10c0/a8e71c90d46ea10d061f823d28cf9d2969fd3e04636bcc35388e8756faa0b37ec77f1c671290e14333f52ad679c1a9ec4990d33c36f2ad9067e6d861da1a594d
languageName: node
linkType: hard
"@aws-cdk/service-spec-types@npm:^0.0.76":
version: 0.0.76
resolution: "@aws-cdk/service-spec-types@npm:0.0.76"
dependencies:
"@cdklabs/tskb": "npm:^0.0.3"
checksum: 10c0/938d2e6da43949e254727bcb6ef5e0313a22db49642b8f728d75e80d83e13868a8cd8fe4142dbedc182327e9a1e96ca6db03a7aa5893641f1b8769685ff6e22b
languageName: node
linkType: hard
"@aws-crypto/crc32@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10c0/eab9581d3363af5ea498ae0e72de792f54d8890360e14a9d8261b7b5c55ebe080279fb2556e07994d785341cdaa99ab0b1ccf137832b53b5904cd6928f2b094b
languageName: node
linkType: hard
"@aws-crypto/crc32c@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32c@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10c0/223efac396cdebaf5645568fa9a38cd0c322c960ae1f4276bedfe2e1031d0112e49d7d39225d386354680ecefae29f39af469a84b2ddfa77cb6692036188af77
languageName: node
linkType: hard
"@aws-crypto/sha1-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha1-browser@npm:5.2.0"
dependencies:
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/51fed0bf078c10322d910af179871b7d299dde5b5897873ffbeeb036f427e5d11d23db9794439226544b73901920fd19f4d86bbc103ed73cc0cfdea47a83c6ac
languageName: node
linkType: hard
"@aws-crypto/sha256-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-browser@npm:5.2.0"
dependencies:
"@aws-crypto/sha256-js": "npm:^5.2.0"
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/05f6d256794df800fe9aef5f52f2ac7415f7f3117d461f85a6aecaa4e29e91527b6fd503681a17136fa89e9dd3d916e9c7e4cfb5eba222875cb6c077bdc1d00d
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:5.2.0, @aws-crypto/sha256-js@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-js@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6c48701f8336341bb104dfde3d0050c89c288051f6b5e9bdfeb8091cf3ffc86efcd5c9e6ff2a4a134406b019c07aca9db608128f8d9267c952578a3108db9fd1
languageName: node
linkType: hard
"@aws-crypto/supports-web-crypto@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/supports-web-crypto@npm:5.2.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/4d2118e29d68ca3f5947f1e37ce1fbb3239a0c569cc938cdc8ab8390d595609b5caf51a07c9e0535105b17bf5c52ea256fed705a07e9681118120ab64ee73af2
languageName: node
linkType: hard
"@aws-crypto/util@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/util@npm:5.2.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0362d4c197b1fd64b423966945130207d1fe23e1bb2878a18e361f7743c8d339dad3f8729895a29aa34fff6a86c65f281cf5167c4bf253f21627ae80b6dd2951
languageName: node
linkType: hard
"@aws-sdk/client-cloudformation@npm:^3.454.0":
version: 3.600.0
resolution: "@aws-sdk/client-cloudformation@npm:3.600.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.600.0"
"@aws-sdk/client-sts": "npm:3.600.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/credential-provider-node": "npm:3.600.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^3.0.1"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/3d9bb81179e4c16a1fec589d41389a9177beba5c7705b69579353c494c4f26df85a1a12e66b6adaa9cd94a50c024b771282c977e7fb8522ab1c9bd66333078bd
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.600.0":
version: 3.600.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.600.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.600.0"
"@aws-sdk/client-sts": "npm:3.600.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/credential-provider-node": "npm:3.600.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^3.0.1"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5dfa83f97a65914e08d5863a40a9a6ac8cbc3eeec1918d3970130ee6c336f6acaa09b5fba4031f04fc6808af20832938f2f4a64c1c73bb0897a254125cbb8b43
languageName: node
linkType: hard
"@aws-sdk/client-ecs@npm:^3.454.0":
version: 3.600.0
resolution: "@aws-sdk/client-ecs@npm:3.600.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.600.0"
"@aws-sdk/client-sts": "npm:3.600.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/credential-provider-node": "npm:3.600.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^3.0.1"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/9b8ad52ac291ef11aacb5754fc820a12d7d86168a2981b5788e49414b9359aa4de930dfdcfbdeb2617c65ff7acbfbe3e6e9c2a454d7304ab13ec630bfb6ad1bf
languageName: node
linkType: hard
"@aws-sdk/client-eventbridge@npm:^3.454.0":
version: 3.600.0
resolution: "@aws-sdk/client-eventbridge@npm:3.600.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.600.0"
"@aws-sdk/client-sts": "npm:3.600.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/credential-provider-node": "npm:3.600.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-signing": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f4cda15db72c5194d72ea3eaa5eedef7b8514e9526d980c9491e8f3c80ef3bc35a4ae2fe2b34949c0e3617d4207367a4f397c4bfc99783adfe5fb33f3cb442f4
languageName: node
linkType: hard
"@aws-sdk/client-iam@npm:^3.454.0":
version: 3.600.0
resolution: "@aws-sdk/client-iam@npm:3.600.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.600.0"
"@aws-sdk/client-sts": "npm:3.600.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/credential-provider-node": "npm:3.600.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^3.0.1"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.0.1"
tslib: "npm:^2.6.2"
checksum: 10c0/8db8ce0589cf405908616087fc286cdd3629608084985341773731b2e5d1d037163539ab7a5b6d53c3350285e94893d7c3fc79a5393fb04fb2655279d1dc933e
languageName: node
linkType: hard
"@aws-sdk/client-iot-data-plane@npm:^3.454.0":
version: 3.600.0
resolution: "@aws-sdk/client-iot-data-plane@npm:3.600.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.600.0"
"@aws-sdk/client-sts": "npm:3.600.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/credential-provider-node": "npm:3.600.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^3.0.1"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-stream": "npm:^3.0.2"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/68581e3f0bd023cccda8fc6bf942173a8b23dced0bad6475e4a21b936d106c8e77c03b703f15992811b2a7cd76db88a7fe458404c1b69b1c5f1bb0c4ae09b71d
languageName: node
linkType: hard
"@aws-sdk/client-iot@npm:^3.454.0":
version: 3.600.0
resolution: "@aws-sdk/client-iot@npm:3.600.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.600.0"
"@aws-sdk/client-sts": "npm:3.600.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/credential-provider-node": "npm:3.600.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^3.0.1"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/369cc03eb73978b79e013b15430661fd9f3d4ad635abd9ac0bad3ce0ffabe57ba94a9aa43f69ceff4b006db92f4590f3192c335bebf512dde2f91a3a14e77007
languageName: node
linkType: hard
"@aws-sdk/client-lambda@npm:^3.454.0":
version: 3.600.0
resolution: "@aws-sdk/client-lambda@npm:3.600.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.600.0"
"@aws-sdk/client-sts": "npm:3.600.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/credential-provider-node": "npm:3.600.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/eventstream-serde-browser": "npm:^3.0.2"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.1"
"@smithy/eventstream-serde-node": "npm:^3.0.2"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^3.0.1"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-stream": "npm:^3.0.2"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.0.1"
tslib: "npm:^2.6.2"
checksum: 10c0/f99ae79eb0711248370bd83437a223a0c3f98a1916dc1f42c0896f11339dd3d49c7ad5c76389bb39cdda6aae2a2d2559fb77f18c2f8b08e6cf60cb776983585b
languageName: node
linkType: hard
"@aws-sdk/client-rds-data@npm:^3.454.0":
version: 3.600.0
resolution: "@aws-sdk/client-rds-data@npm:3.600.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.600.0"
"@aws-sdk/client-sts": "npm:3.600.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/credential-provider-node": "npm:3.600.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^3.0.1"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5a2be003388b0445de31ff9c955e923c5955994de3e97712411ab17ddf73242f37c8d071b18317f73acb0a7e6930a75b59369bc4d48c52dca88235190fbb51b0
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.454.0":
version: 3.600.0
resolution: "@aws-sdk/client-s3@npm:3.600.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:5.2.0"
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.600.0"
"@aws-sdk/client-sts": "npm:3.600.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/credential-provider-node": "npm:3.600.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.598.0"
"@aws-sdk/middleware-expect-continue": "npm:3.598.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.598.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-location-constraint": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.598.0"
"@aws-sdk/middleware-signing": "npm:3.598.0"
"@aws-sdk/middleware-ssec": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@aws-sdk/xml-builder": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/eventstream-serde-browser": "npm:^3.0.2"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.1"
"@smithy/eventstream-serde-node": "npm:^3.0.2"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-blob-browser": "npm:^3.1.0"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/hash-stream-node": "npm:^3.1.0"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/md5-js": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-stream": "npm:^3.0.2"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.0.1"
tslib: "npm:^2.6.2"
checksum: 10c0/f174ec661d2cf3de44af2dba79ef7004d4d109cd4a672c702fa9d830af597eb942b6297588abdac5541d3a34d7a77d245c1006561aea1ab2ac9a9e69c8727ccb
languageName: node
linkType: hard
"@aws-sdk/client-ssm@npm:^3.454.0":
version: 3.600.0
resolution: "@aws-sdk/client-ssm@npm:3.600.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.600.0"
"@aws-sdk/client-sts": "npm:3.600.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/credential-provider-node": "npm:3.600.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^3.0.1"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/fdffd44f3881310f3fb9b2679e8b8cc5a515940be7caf801b1e38f13836a6fba91c33f3dabea0a2b0ed619e97d17ae6fd815c5dec101d1aff2fa7971fcc1a626
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.600.0":
version: 3.600.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.600.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sts": "npm:3.600.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/credential-provider-node": "npm:3.600.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^3.0.1"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/36d4ffc27971166a09d5b5e5483807688ff807a54ce66f171ce4b7bf7e61b77b23a3d39c5aa1decbef8781b9c203484b36b01b504ab2a9aa86f8b53033865926
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/client-sso@npm:3.598.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^3.0.1"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/21fff686f2b24494faee4e0f2d53a4420724ad2d2ff43d0f8f2fd6059a1685c14d0e1be22cbd1e1fbc337e73f2a05a4ee887e902cd901848b5be218c9e990d3d
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.600.0, @aws-sdk/client-sts@npm:^3.454.0":
version: 3.600.0
resolution: "@aws-sdk/client-sts@npm:3.600.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.600.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/credential-provider-node": "npm:3.600.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^3.0.1"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8232cf94ff57653cd935f1fb12a4b2e393f827afacbfddac8ae3b9f9c5c170ccbc94c5e452580bf90fb3def364a8b37bc3a943dbdb5753aa1d960bba551bf175
languageName: node
linkType: hard
"@aws-sdk/config-resolver@npm:^3.374.0":
version: 3.374.0
resolution: "@aws-sdk/config-resolver@npm:3.374.0"
dependencies:
"@smithy/config-resolver": "npm:^1.0.1"
tslib: "npm:^2.5.0"
checksum: 10c0/78c70fcacc2cfbb9e16d4300e341dfa80a71831a02da8eb80d6aa6a9fc3c85905fecc84a30335bf9b614ccb30785e3b6b1381cde30be48cde3991c65079f65cc
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/core@npm:3.598.0"
dependencies:
"@smithy/core": "npm:^2.2.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/signature-v4": "npm:^3.1.0"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.6.2"
checksum: 10c0/d11646f013c9e6bc64b59aceb61786d36cba3e12f811a825d40fbe9a7fcd0c396d261c45e53cbe4140cbe907995ee2e64dc0dc3fcc073a66469e8374dea43791
languageName: node
linkType: hard
"@aws-sdk/credential-provider-cognito-identity@npm:3.600.0":
version: 3.600.0
resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.600.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.600.0"
"@aws-sdk/types": "npm:3.598.0"
"@smithy/property-provider": "npm:^3.1.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d52fb5f1c29008445adaba2e46ab41e2157fa5de2efd795dadbdd6fb18a8f42eacbfeabe964d4ac7c53554f13722a3e302601ed33997608c379595f1dc553759
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/credential-provider-env@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/property-provider": "npm:^3.1.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/19cf683199b4efc12f76a8213d99ec18cf48b202625545ea3c65da73eada7f8898fbb10726c97afd800fd95d9f759530ae65a42a6ff59e475f2f06301a4fd342
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/credential-provider-http@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/property-provider": "npm:^3.1.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/util-stream": "npm:^3.0.2"
tslib: "npm:^2.6.2"
checksum: 10c0/c0fb39044370a4752a404b1249ce4dcf7f60a0ee51a56f195de53367faff0e4a8e01fd4a3405c6851adacdc9a6e23441b1d94b7f5d85ddcd620b1fa695a15878
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.598.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.598.0"
"@aws-sdk/credential-provider-http": "npm:3.598.0"
"@aws-sdk/credential-provider-process": "npm:3.598.0"
"@aws-sdk/credential-provider-sso": "npm:3.598.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@smithy/credential-provider-imds": "npm:^3.1.1"
"@smithy/property-provider": "npm:^3.1.1"
"@smithy/shared-ini-file-loader": "npm:^3.1.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.598.0