-
Notifications
You must be signed in to change notification settings - Fork 33
/
yarn.lock
5044 lines (4579 loc) · 181 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
"@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.209
resolution: "@aws-cdk/asset-awscli-v1@npm:2.2.209"
checksum: 10c0/a89a8bb6faaa5bbc8d3f1fbe8d182f59ad158d14539e62fdbe76c996ceb8b61659db0379b824f47c4dd9766c989b770ff8064e9ae71d110d0c546b0113c4882e
languageName: node
linkType: hard
"@aws-cdk/asset-kubectl-v20@npm:^2.1.2":
version: 2.1.3
resolution: "@aws-cdk/asset-kubectl-v20@npm:2.1.3"
checksum: 10c0/12be13eb04482055b9b00a65280e143b8459ba11b4cb168a344fdb227a672d2662d05fa28436975898fad2ea83e52b5a38eea6f88df636d564b43c37d0d63050
languageName: node
linkType: hard
"@aws-cdk/asset-node-proxy-agent-v6@npm:^2.0.1":
version: 2.1.0
resolution: "@aws-cdk/asset-node-proxy-agent-v6@npm:2.1.0"
checksum: 10c0/1ac7bccf82afee69c05241a5ad66345fbd468678ce633bb43c5921c7241a3186231b3b65f9ac6b9924933349c826a9470c79a3ddf14a03fbfce43f14c4d957f2
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-notes-app/frontend@workspace:packages/frontend":
version: 0.0.0-use.local
resolution: "@aws-sdk-notes-app/frontend@workspace:packages/frontend"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.624.0"
"@aws-sdk/client-polly": "npm:3.624.0"
"@aws-sdk/client-s3": "npm:3.627.0"
"@aws-sdk/client-transcribe-streaming": "npm:3.624.0"
"@aws-sdk/credential-provider-cognito-identity": "npm:3.624.0"
"@aws-sdk/polly-request-presigner": "npm:3.624.0"
"@aws-sdk/s3-request-presigner": "npm:3.627.0"
"@aws-sdk/util-create-request": "npm:3.622.0"
"@aws-sdk/util-format-url": "npm:3.609.0"
"@reach/router": "npm:1.3.4"
"@tsconfig/node20": "npm:^20.1.4"
"@types/node": "npm:^18.11.18"
"@types/reach__router": "npm:1.3.6"
"@types/react": "npm:^18.0.15"
"@types/react-dom": "npm:^18.0.6"
"@vitejs/plugin-react-refresh": "npm:1.3.6"
p-event: "npm:^6.0.1"
react: "npm:18.2.0"
react-bootstrap: "npm:1.4.0"
react-bootstrap-icons: "npm:1.3.0"
react-dom: "npm:18.2.0"
typescript: "npm:~5.4.5"
vite: "npm:5.2.14"
languageName: unknown
linkType: soft
"@aws-sdk-notes-app/infra@workspace:packages/infra":
version: 0.0.0-use.local
resolution: "@aws-sdk-notes-app/infra@workspace:packages/infra"
dependencies:
"@aws-sdk/client-dynamodb": "npm:3.624.0"
"@aws-sdk/lib-dynamodb": "npm:3.624.0"
"@tsconfig/node20": "npm:^20.1.4"
"@types/aws-lambda": "npm:^8.10.64"
"@types/node": "npm:^18.11.18"
aws-cdk: "npm:2.134.0"
aws-cdk-lib: "npm:2.134.0"
constructs: "npm:10.3.0"
typescript: "npm:~5.4.5"
languageName: unknown
linkType: soft
"@aws-sdk/client-cognito-identity@npm:3.624.0":
version: 3.624.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.624.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.624.0"
"@aws-sdk/client-sts": "npm:3.624.0"
"@aws-sdk/core": "npm:3.624.0"
"@aws-sdk/credential-provider-node": "npm:3.624.0"
"@aws-sdk/middleware-host-header": "npm:3.620.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
"@aws-sdk/middleware-user-agent": "npm:3.620.0"
"@aws-sdk/region-config-resolver": "npm:3.614.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.614.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.614.0"
"@smithy/config-resolver": "npm:^3.0.5"
"@smithy/core": "npm:^2.3.2"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.5"
"@smithy/middleware-endpoint": "npm:^3.1.0"
"@smithy/middleware-retry": "npm:^3.0.14"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.1.12"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.14"
"@smithy/util-defaults-mode-node": "npm:^3.0.14"
"@smithy/util-endpoints": "npm:^2.0.5"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/84a8f62f25db4637a85e87c364c6bdf91ef46b033a41d8131c07b218e8b6dc3e5c8685a3ef8bef064dc84e0aa3bff10f7dc2953b87041f4863288deaa9c4c6f5
languageName: node
linkType: hard
"@aws-sdk/client-dynamodb@npm:3.624.0":
version: 3.624.0
resolution: "@aws-sdk/client-dynamodb@npm:3.624.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.624.0"
"@aws-sdk/client-sts": "npm:3.624.0"
"@aws-sdk/core": "npm:3.624.0"
"@aws-sdk/credential-provider-node": "npm:3.624.0"
"@aws-sdk/middleware-endpoint-discovery": "npm:3.620.0"
"@aws-sdk/middleware-host-header": "npm:3.620.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
"@aws-sdk/middleware-user-agent": "npm:3.620.0"
"@aws-sdk/region-config-resolver": "npm:3.614.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.614.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.614.0"
"@smithy/config-resolver": "npm:^3.0.5"
"@smithy/core": "npm:^2.3.2"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.5"
"@smithy/middleware-endpoint": "npm:^3.1.0"
"@smithy/middleware-retry": "npm:^3.0.14"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.1.12"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.14"
"@smithy/util-defaults-mode-node": "npm:^3.0.14"
"@smithy/util-endpoints": "npm:^2.0.5"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.2"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/f7a3c2b6291098aebe5100f9b6b3a5b31b2e2715ee432ef8a37734795a7e8f9fb894d8bda1aa6ae408089ac21216778c3c5ddfbb8ccd2a190034c6bfb64e22b9
languageName: node
linkType: hard
"@aws-sdk/client-polly@npm:3.624.0":
version: 3.624.0
resolution: "@aws-sdk/client-polly@npm:3.624.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.624.0"
"@aws-sdk/client-sts": "npm:3.624.0"
"@aws-sdk/core": "npm:3.624.0"
"@aws-sdk/credential-provider-node": "npm:3.624.0"
"@aws-sdk/middleware-host-header": "npm:3.620.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
"@aws-sdk/middleware-user-agent": "npm:3.620.0"
"@aws-sdk/region-config-resolver": "npm:3.614.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.614.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.614.0"
"@smithy/config-resolver": "npm:^3.0.5"
"@smithy/core": "npm:^2.3.2"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.5"
"@smithy/middleware-endpoint": "npm:^3.1.0"
"@smithy/middleware-retry": "npm:^3.0.14"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.1.12"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.14"
"@smithy/util-defaults-mode-node": "npm:^3.0.14"
"@smithy/util-endpoints": "npm:^2.0.5"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-stream": "npm:^3.1.3"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/3fe4b73d37b79f4e2c0b11c5d0365b6336c567bcb2dba96f55e057ec0645b903a3bd21612d1964aea80f5c6d7a357a3bea932ef4736436dc226f7605513abaad
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:3.627.0":
version: 3.627.0
resolution: "@aws-sdk/client-s3@npm:3.627.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:5.2.0"
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.624.0"
"@aws-sdk/client-sts": "npm:3.624.0"
"@aws-sdk/core": "npm:3.624.0"
"@aws-sdk/credential-provider-node": "npm:3.624.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.620.0"
"@aws-sdk/middleware-expect-continue": "npm:3.620.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.620.0"
"@aws-sdk/middleware-host-header": "npm:3.620.0"
"@aws-sdk/middleware-location-constraint": "npm:3.609.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.626.0"
"@aws-sdk/middleware-ssec": "npm:3.609.0"
"@aws-sdk/middleware-user-agent": "npm:3.620.0"
"@aws-sdk/region-config-resolver": "npm:3.614.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.626.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.614.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.614.0"
"@aws-sdk/xml-builder": "npm:3.609.0"
"@smithy/config-resolver": "npm:^3.0.5"
"@smithy/core": "npm:^2.3.2"
"@smithy/eventstream-serde-browser": "npm:^3.0.5"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.3"
"@smithy/eventstream-serde-node": "npm:^3.0.4"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/hash-blob-browser": "npm:^3.1.2"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/hash-stream-node": "npm:^3.1.2"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/md5-js": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.5"
"@smithy/middleware-endpoint": "npm:^3.1.0"
"@smithy/middleware-retry": "npm:^3.0.14"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.1.12"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.14"
"@smithy/util-defaults-mode-node": "npm:^3.0.14"
"@smithy/util-endpoints": "npm:^2.0.5"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-stream": "npm:^3.1.3"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.2"
tslib: "npm:^2.6.2"
checksum: 10c0/a88a578b371bf79656bbfe27e9e4373d23f576a9aeccfe3fc8f34e3ace707cae918e4366c0700ffab4b8697a2f7de08917676c5d1ff7bcdbfaf77ced5c41960b
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.624.0":
version: 3.624.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.624.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.624.0"
"@aws-sdk/credential-provider-node": "npm:3.624.0"
"@aws-sdk/middleware-host-header": "npm:3.620.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
"@aws-sdk/middleware-user-agent": "npm:3.620.0"
"@aws-sdk/region-config-resolver": "npm:3.614.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.614.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.614.0"
"@smithy/config-resolver": "npm:^3.0.5"
"@smithy/core": "npm:^2.3.2"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.5"
"@smithy/middleware-endpoint": "npm:^3.1.0"
"@smithy/middleware-retry": "npm:^3.0.14"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.1.12"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.14"
"@smithy/util-defaults-mode-node": "npm:^3.0.14"
"@smithy/util-endpoints": "npm:^2.0.5"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.624.0
checksum: 10c0/cc7dc73b69025eabf5a0f9c7a924beaf393794c2477e4e8c508bfe59f5cca71b7ca7bb01288b90237f082f7e19f850e2d797b151182006f043118f4135c814b9
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.624.0":
version: 3.624.0
resolution: "@aws-sdk/client-sso@npm:3.624.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.624.0"
"@aws-sdk/middleware-host-header": "npm:3.620.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
"@aws-sdk/middleware-user-agent": "npm:3.620.0"
"@aws-sdk/region-config-resolver": "npm:3.614.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.614.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.614.0"
"@smithy/config-resolver": "npm:^3.0.5"
"@smithy/core": "npm:^2.3.2"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.5"
"@smithy/middleware-endpoint": "npm:^3.1.0"
"@smithy/middleware-retry": "npm:^3.0.14"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.1.12"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.14"
"@smithy/util-defaults-mode-node": "npm:^3.0.14"
"@smithy/util-endpoints": "npm:^2.0.5"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/94ad5bc973407b024c2e66aafb360bac6c4056bb4ea868244bd2eddce1d2407ea66de894d14ce4211c471fe649c2a2a0315af6e4332fbea826098a0c769420da
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.624.0":
version: 3.624.0
resolution: "@aws-sdk/client-sts@npm:3.624.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.624.0"
"@aws-sdk/core": "npm:3.624.0"
"@aws-sdk/credential-provider-node": "npm:3.624.0"
"@aws-sdk/middleware-host-header": "npm:3.620.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
"@aws-sdk/middleware-user-agent": "npm:3.620.0"
"@aws-sdk/region-config-resolver": "npm:3.614.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.614.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.614.0"
"@smithy/config-resolver": "npm:^3.0.5"
"@smithy/core": "npm:^2.3.2"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.5"
"@smithy/middleware-endpoint": "npm:^3.1.0"
"@smithy/middleware-retry": "npm:^3.0.14"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.1.12"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.14"
"@smithy/util-defaults-mode-node": "npm:^3.0.14"
"@smithy/util-endpoints": "npm:^2.0.5"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/4b7279bdc9fb8e90652d09322ffadf7897824dc69951030ea454c135c2e91f09bedd52249c39e66fa2751c8610fd0a0848693fec690e1868e7d848f08bcfa647
languageName: node
linkType: hard
"@aws-sdk/client-transcribe-streaming@npm:3.624.0":
version: 3.624.0
resolution: "@aws-sdk/client-transcribe-streaming@npm:3.624.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.624.0"
"@aws-sdk/client-sts": "npm:3.624.0"
"@aws-sdk/core": "npm:3.624.0"
"@aws-sdk/credential-provider-node": "npm:3.624.0"
"@aws-sdk/eventstream-handler-node": "npm:3.620.0"
"@aws-sdk/middleware-eventstream": "npm:3.620.0"
"@aws-sdk/middleware-host-header": "npm:3.620.0"
"@aws-sdk/middleware-logger": "npm:3.609.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.620.0"
"@aws-sdk/middleware-sdk-transcribe-streaming": "npm:3.620.0"
"@aws-sdk/middleware-user-agent": "npm:3.620.0"
"@aws-sdk/middleware-websocket": "npm:3.621.0"
"@aws-sdk/region-config-resolver": "npm:3.614.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.614.0"
"@aws-sdk/util-user-agent-browser": "npm:3.609.0"
"@aws-sdk/util-user-agent-node": "npm:3.614.0"
"@smithy/config-resolver": "npm:^3.0.5"
"@smithy/core": "npm:^2.3.2"
"@smithy/eventstream-serde-browser": "npm:^3.0.5"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.3"
"@smithy/eventstream-serde-node": "npm:^3.0.4"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/hash-node": "npm:^3.0.3"
"@smithy/invalid-dependency": "npm:^3.0.3"
"@smithy/middleware-content-length": "npm:^3.0.5"
"@smithy/middleware-endpoint": "npm:^3.1.0"
"@smithy/middleware-retry": "npm:^3.0.14"
"@smithy/middleware-serde": "npm:^3.0.3"
"@smithy/middleware-stack": "npm:^3.0.3"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.1.12"
"@smithy/types": "npm:^3.3.0"
"@smithy/url-parser": "npm:^3.0.3"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.14"
"@smithy/util-defaults-mode-node": "npm:^3.0.14"
"@smithy/util-endpoints": "npm:^2.0.5"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-retry": "npm:^3.0.3"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d3e85cf498f443295764d5eb4e651cd074f53548616d322d0b931664d93821a29a62a6db1a9c95fc677cbd92bcc3f58b3360810ebf2bec8dc471b26275705e6a
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.624.0":
version: 3.624.0
resolution: "@aws-sdk/core@npm:3.624.0"
dependencies:
"@smithy/core": "npm:^2.3.2"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/signature-v4": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.1.12"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-middleware": "npm:^3.0.3"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10c0/c0c915985ee8e52c9eb1484664d6dbfc81c815f25e0c78841a29cf90a4f165f685bae7455c6f285f282387670e97e81ff36132751a4b8fff4b40ecdcd0965d8b
languageName: node
linkType: hard
"@aws-sdk/credential-provider-cognito-identity@npm:3.624.0":
version: 3.624.0
resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.624.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.624.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/086bf7d0a5ef5e9ed7f5979d68cb5591d46154e8cacbdbfabba94c281f819615f44eb15cd6d99c720382573d026c521ca6639cb29a7deac59f36ff6753ed7a28
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.620.1":
version: 3.620.1
resolution: "@aws-sdk/credential-provider-env@npm:3.620.1"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/25156df7c0e9a1423f261276506fc5766c9f43c41e811adaa0f9a6199b03ff4fd299e9dd94fd73942ab99283b30d8e127692ae371c16917f6709f655de401874
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.622.0":
version: 3.622.0
resolution: "@aws-sdk/credential-provider-http@npm:3.622.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/node-http-handler": "npm:^3.1.4"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.1.12"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-stream": "npm:^3.1.3"
tslib: "npm:^2.6.2"
checksum: 10c0/fa6b24991532dddcf1e688ab08fd831e5df189b4a5f2d560f41f3f870b9c940c00411a62e05f4a02e808edcab52f49b4255c8fba8fe07152224676e54eb6bbdb
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.624.0":
version: 3.624.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.624.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.620.1"
"@aws-sdk/credential-provider-http": "npm:3.622.0"
"@aws-sdk/credential-provider-process": "npm:3.620.1"
"@aws-sdk/credential-provider-sso": "npm:3.624.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.621.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/credential-provider-imds": "npm:^3.2.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/shared-ini-file-loader": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.624.0
checksum: 10c0/d21788b622fdb4b86403af10eaf22704b9e7cd520a4dbb18cc258da6dda2c032b3235ab76834ea08c959b0cf534962cf0b8baad813e1e73cfddfb1c243a4caca
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.624.0":
version: 3.624.0
resolution: "@aws-sdk/credential-provider-node@npm:3.624.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.620.1"
"@aws-sdk/credential-provider-http": "npm:3.622.0"
"@aws-sdk/credential-provider-ini": "npm:3.624.0"
"@aws-sdk/credential-provider-process": "npm:3.620.1"
"@aws-sdk/credential-provider-sso": "npm:3.624.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.621.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/credential-provider-imds": "npm:^3.2.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/shared-ini-file-loader": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1f1b9fd4bb28bb042bab07b892a94dcb78f2149e6e56b5bb3138e9da29269039cc6d61c27f1a3273b63db521bb4fc5352931cbe38207d4b18b64f43538f73591
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.620.1":
version: 3.620.1
resolution: "@aws-sdk/credential-provider-process@npm:3.620.1"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/shared-ini-file-loader": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d33bf3e5e73f16c8e58dc71a738cdcbcf48b54610e464affc69c73f9bdcc2b287b6cb281c9a719f67298fb0cd795e67201e5d6704dcc24933e71e58653607992
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.624.0":
version: 3.624.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.624.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.624.0"
"@aws-sdk/token-providers": "npm:3.614.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/shared-ini-file-loader": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/454e1e1817f8c9ca1b34f6370489520a4858a9e83c4e44ea75afff334a848fa0b9042e7cc13c701ddde114abc551da29f08d6319c76a87ddd3f1d85768d04f33
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.621.0":
version: 3.621.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.621.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.621.0
checksum: 10c0/c699a60e242cc3895b3536a0a4818560f167b6c0cc3e8858cf75cd0438020a070b2e5c84e59280ee81679d865516dcde5b31cf6af1ee35b0d28c94b68c63f742
languageName: node
linkType: hard
"@aws-sdk/endpoint-cache@npm:3.572.0":
version: 3.572.0
resolution: "@aws-sdk/endpoint-cache@npm:3.572.0"
dependencies:
mnemonist: "npm:0.38.3"
tslib: "npm:^2.6.2"
checksum: 10c0/632b79b83f1b0a31568a06f8036c2694942b22c4e8450a2197f76a56276497a07c6003c9deac42908ad38e8ff51544fd3d06a36bee80ed421ad705791420b796
languageName: node
linkType: hard
"@aws-sdk/eventstream-handler-node@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/eventstream-handler-node@npm:3.620.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/eventstream-codec": "npm:^3.1.2"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/aeeeb7663f2154199352dde32ba1474d34994a8d5cc07ca263be74f1f52d2a709891e284e10ad86b25b13faf9a030a10ee1f808504506295ca522132de785398
languageName: node
linkType: hard
"@aws-sdk/lib-dynamodb@npm:3.624.0":
version: 3.624.0
resolution: "@aws-sdk/lib-dynamodb@npm:3.624.0"
dependencies:
"@aws-sdk/util-dynamodb": "npm:3.624.0"
"@smithy/smithy-client": "npm:^3.1.12"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-dynamodb": ^3.624.0
checksum: 10c0/b4c8bd08b446997c298acec7705477f5ed2da06d83dbd952f1bfb6661822b32a063bf0a81f79ca5828105a0d525247c412ded01ebbcb607e9f5901503e9ef106
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.620.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-arn-parser": "npm:3.568.0"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-config-provider": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5fec190026bac88554a2299d81565bb4f067600336045af5d4ec1e06a1a884386e324922f1de8d8d87954bd8dbdae279bf4e37401aaf8311db5fe70c1c44b483
languageName: node
linkType: hard
"@aws-sdk/middleware-endpoint-discovery@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/middleware-endpoint-discovery@npm:3.620.0"
dependencies:
"@aws-sdk/endpoint-cache": "npm:3.572.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d8d9ce567c16ec836b16459711fa54cf29f585eae3ebdb9b7f60381ed0500fcf10b3d495f42cf8808186d7dce90862113f8ec88bb25a2efa592ac72d9ef13500
languageName: node
linkType: hard
"@aws-sdk/middleware-eventstream@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/middleware-eventstream@npm:3.620.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/438952b1627a757bf2d19765542620ec52d8e0cb690ea3185b8d92a8cfed684abb902faa89129fa30533c27491a197847e7b4b67ab358422db739445c80082fc
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.620.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1204171772b3f141a19e68ede28b412c5bca68e4f5c493c38f41d278cbbaae0488d95e1161ed5b44aefcfbbb66f795f2aacfb24434d7fdd71695a1a3885c59bb
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.620.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-sdk/types": "npm:3.609.0"
"@smithy/is-array-buffer": "npm:^3.0.0"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b6990776c98a19c57850ad623a61d45946741f75913cd71901d693ff71a840ea6fdbb7811d8849db6d149090bd2b61a6f3c706084a2d2b366c8e55c5f62e3186
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/middleware-host-header@npm:3.620.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/221e8e440fc156bc0ef8d2186bc3b9c18c7874cb275ae714c3c7eeb934b846e1291c3cb9a3631c486a86189a4c446e61c64e8e7d737f209fe63808ad313bd779
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1eba2a3a1a003855a69e56f1c54fb2283b30db50bf14130cd042e25805497b7a19539144052c4fa710952d754d1a9e5d680fce09536509cf796a16816c8d506f
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/middleware-logger@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e8d110552fee03c5290f94be8da8bb6c07404c06c68971cf24c89a5a4e08b93f6039a2bf729b173855815dd13e382eda18c31e098e7a40db9c8163b74a7770e7
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.620.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f859a777eb0441e8ec78054b478bb75c2debcf53680deb6731830a62ec2a45a5a9b1462028214c49bbc67acff2ca1a78cb35913f826ccc4118fa45b51220bcd4
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.626.0":
version: 3.626.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.626.0"
dependencies:
"@aws-sdk/core": "npm:3.624.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-arn-parser": "npm:3.568.0"
"@smithy/core": "npm:^2.3.2"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/signature-v4": "npm:^4.1.0"
"@smithy/smithy-client": "npm:^3.1.12"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.3"
"@smithy/util-stream": "npm:^3.1.3"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/dc164155b5b0b0a4e5e49d77eb0c24ae7b43d56f177372a026045ce4d10b1ced88a4fbd9944144d9cd200af7cb3cf560cc9f350cbfbf58f7c1706ef6f49e0a2a
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-transcribe-streaming@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/middleware-sdk-transcribe-streaming@npm:3.620.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-format-url": "npm:3.609.0"
"@smithy/eventstream-serde-browser": "npm:^3.0.5"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/signature-v4": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/321e562dc0ab397c1a7d447c2c056f7a880aa9f8c622f2941e3712f52efd5d517c7b5f638a47c4930e162c9af2464341ab79925faf2977e965e7901e7fc2ee78
languageName: node
linkType: hard
"@aws-sdk/middleware-signing@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/middleware-signing@npm:3.620.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/property-provider": "npm:^3.1.3"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/signature-v4": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-middleware": "npm:^3.0.3"
tslib: "npm:^2.6.2"
checksum: 10c0/1900aea1d665e846022ad59112ef357ee44a65505937d263013811971827a2268689320f6af1c09088c473966942540d1c06c583e1bcc640c4afefdb0bad0681
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.609.0":
version: 3.609.0
resolution: "@aws-sdk/middleware-ssec@npm:3.609.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/7688628299c3d3352182634836d8a5ad89d69dfedd91d7386ffeaa8288160329eef7d399321b7841bb4c84c9741d7245ef218657a8df71248b5ce5f7273e303d
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.620.0":
version: 3.620.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.620.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-endpoints": "npm:3.614.0"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c661d368c2fe12a925faa7f59509f507edf9cebc5a98650d5592eaf333cbb50a92dd3532e04de6e5b44686c7ab25fa5a6515df4e0790d1b6b0823e44efb3657c
languageName: node
linkType: hard
"@aws-sdk/middleware-websocket@npm:3.621.0":
version: 3.621.0
resolution: "@aws-sdk/middleware-websocket@npm:3.621.0"
dependencies:
"@aws-sdk/middleware-signing": "npm:3.620.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-format-url": "npm:3.609.0"
"@smithy/eventstream-codec": "npm:^3.1.2"
"@smithy/eventstream-serde-browser": "npm:^3.0.5"
"@smithy/fetch-http-handler": "npm:^3.2.4"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/signature-v4": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-hex-encoding": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/938b206578b4cc89e7b311b5761d9c81926326dd7a5583731495efe40c3ef7ab659822743803b621979c6c8b2c130b30b4a49b2c3550ded444870ac4f2d1789a
languageName: node
linkType: hard
"@aws-sdk/polly-request-presigner@npm:3.624.0":
version: 3.624.0
resolution: "@aws-sdk/polly-request-presigner@npm:3.624.0"
dependencies:
"@aws-sdk/client-polly": "npm:3.624.0"
"@aws-sdk/types": "npm:3.609.0"
"@aws-sdk/util-format-url": "npm:3.609.0"
"@smithy/protocol-http": "npm:^4.1.0"
"@smithy/signature-v4": "npm:^4.1.0"
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/42917dc8d82c0610e9619834b9739bdafa2334e757012938f2b9b617306a3de9c30f791da8ac847458f7c9d12443d6ec33762762a140f260dbb962775e7f1cb0
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.614.0":
version: 3.614.0
resolution: "@aws-sdk/region-config-resolver@npm:3.614.0"
dependencies:
"@aws-sdk/types": "npm:3.609.0"
"@smithy/node-config-provider": "npm:^3.1.4"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.3"
tslib: "npm:^2.6.2"
checksum: 10c0/555842b34c26398741fa3a1f629d27d210270516b453b0a7237672a4472ff8e204c5979fe1823baddf4d695d4d95a631fadfa78d1d27089d9e9cba28e736346e
languageName: node
linkType: hard