forked from CherryHQ/cherry-studio-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
19867 lines (18048 loc) Β· 703 KB
/
yarn.lock
File metadata and controls
19867 lines (18048 loc) Β· 703 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@0no-co/graphql.web@npm:^1.0.13, @0no-co/graphql.web@npm:^1.0.8":
version: 1.2.0
resolution: "@0no-co/graphql.web@npm:1.2.0"
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0
peerDependenciesMeta:
graphql:
optional: true
checksum: 10c0/4eed600962bfab42afb49cddcfb31a47b00502f59707609cf160559920ce0f5cf8874791e4cafc465ede30ae291992f3f892bc757b2a989e80e50e358f71c518
languageName: node
linkType: hard
"@ai-sdk/amazon-bedrock@npm:^3.0.0":
version: 3.0.35
resolution: "@ai-sdk/amazon-bedrock@npm:3.0.35"
dependencies:
"@ai-sdk/anthropic": "npm:2.0.27"
"@ai-sdk/provider": "npm:2.0.0"
"@ai-sdk/provider-utils": "npm:3.0.12"
"@smithy/eventstream-codec": "npm:^4.0.1"
"@smithy/util-utf8": "npm:^4.0.0"
aws4fetch: "npm:^1.0.20"
peerDependencies:
zod: ^3.25.76 || ^4.1.8
checksum: 10c0/0e3e0ed1730fa6a14d8d7ca14b7823ec0b80c9d666435d97a505e7fb0c1818378343cdb647e3cc08d7f15d201cbeb04272c5128065f6cc6858b4404961eca761
languageName: node
linkType: hard
"@ai-sdk/anthropic@npm:2.0.27, @ai-sdk/anthropic@npm:^2.0.22":
version: 2.0.27
resolution: "@ai-sdk/anthropic@npm:2.0.27"
dependencies:
"@ai-sdk/provider": "npm:2.0.0"
"@ai-sdk/provider-utils": "npm:3.0.12"
peerDependencies:
zod: ^3.25.76 || ^4.1.8
checksum: 10c0/b568b3b8639af8ec7ea9b766061a4f18bcdef16f2bb12da3a4c4124c751bd6aab1b96dbe1a0eb8e38831d305871ce0787a6536d1a4d8a8ab8aaf03aca3e48e3f
languageName: node
linkType: hard
"@ai-sdk/anthropic@npm:^1.2.12":
version: 1.2.12
resolution: "@ai-sdk/anthropic@npm:1.2.12"
dependencies:
"@ai-sdk/provider": "npm:1.1.3"
"@ai-sdk/provider-utils": "npm:2.2.8"
peerDependencies:
zod: ^3.0.0
checksum: 10c0/da13e1ed3c03efe207dbb0fd5fe9f399e4119e6687ec1096418a33a7eeea3c5f912a51c74b185bba3c203b15ee0c1b9cdf649711815ff8e769e31af266ac00fb
languageName: node
linkType: hard
"@ai-sdk/azure@npm:^2.0.42":
version: 2.0.50
resolution: "@ai-sdk/azure@npm:2.0.50"
dependencies:
"@ai-sdk/openai": "npm:2.0.49"
"@ai-sdk/provider": "npm:2.0.0"
"@ai-sdk/provider-utils": "npm:3.0.12"
peerDependencies:
zod: ^3.25.76 || ^4.1.8
checksum: 10c0/e1e761861e2585145a3a363653820b941565398fcd4338a5649047f1c47a8cd8ecceb13759bc3647f824841327c06848cc3ce2449a72235914d7c01fd4871c1e
languageName: node
linkType: hard
"@ai-sdk/deepseek@npm:^1.0.20":
version: 1.0.23
resolution: "@ai-sdk/deepseek@npm:1.0.23"
dependencies:
"@ai-sdk/openai-compatible": "npm:1.0.22"
"@ai-sdk/provider": "npm:2.0.0"
"@ai-sdk/provider-utils": "npm:3.0.12"
peerDependencies:
zod: ^3.25.76 || ^4.1.8
checksum: 10c0/39736e9787420ce86d0f2ce6935ba51f2b721acfb4c0d2b77064a8b939cf22b0767a83b82a5c99efff1311080532a3aaa2f34804d7981133f671a050521ed197
languageName: node
linkType: hard
"@ai-sdk/gateway@npm:1.0.39":
version: 1.0.39
resolution: "@ai-sdk/gateway@npm:1.0.39"
dependencies:
"@ai-sdk/provider": "npm:2.0.0"
"@ai-sdk/provider-utils": "npm:3.0.12"
"@vercel/oidc": "npm:3.0.2"
peerDependencies:
zod: ^3.25.76 || ^4.1.8
checksum: 10c0/1b6eedf12ac641c96a1eb75e48e43474694b60eb7dca273f76a636a4e2bfc89efda1d9855d5abf9cc464e23cdbf5a3119fed65c3d22cec726e29a2bad3c3318b
languageName: node
linkType: hard
"@ai-sdk/google@npm:^1.2.22":
version: 1.2.22
resolution: "@ai-sdk/google@npm:1.2.22"
dependencies:
"@ai-sdk/provider": "npm:1.1.3"
"@ai-sdk/provider-utils": "npm:2.2.8"
peerDependencies:
zod: ^3.0.0
checksum: 10c0/662005cb4d972e4048d496e9713cd0ff2828f8363c9f1449e5a8580523c34f9ab57126ad3129e4d535561aa1bac0ae0d68bb471c379be80f5a23d455eea49987
languageName: node
linkType: hard
"@ai-sdk/openai-compatible@npm:1.0.22, @ai-sdk/openai-compatible@npm:^1.0.19":
version: 1.0.22
resolution: "@ai-sdk/openai-compatible@npm:1.0.22"
dependencies:
"@ai-sdk/provider": "npm:2.0.0"
"@ai-sdk/provider-utils": "npm:3.0.12"
peerDependencies:
zod: ^3.25.76 || ^4.1.8
checksum: 10c0/31eb07b63eaf07384391e81d824e16589af540f3af2fde1cb24f2a6d04dd07ddb843c9301dbceca78fa5ae5002cb235fc376c41532ab167d1564491526e6011b
languageName: node
linkType: hard
"@ai-sdk/openai-compatible@npm:^0.2.16":
version: 0.2.16
resolution: "@ai-sdk/openai-compatible@npm:0.2.16"
dependencies:
"@ai-sdk/provider": "npm:1.1.3"
"@ai-sdk/provider-utils": "npm:2.2.8"
peerDependencies:
zod: ^3.0.0
checksum: 10c0/03054b7d6960be64cd9788cc7ecde324a6c70b8d51df4c3252deba8f6c5b641fce1058ab89c4793bbb4f2237e4fe09d1f4966205015b75b04bb49931d49a4253
languageName: node
linkType: hard
"@ai-sdk/openai@npm:2.0.49, @ai-sdk/openai@npm:^2.0.42":
version: 2.0.49
resolution: "@ai-sdk/openai@npm:2.0.49"
dependencies:
"@ai-sdk/provider": "npm:2.0.0"
"@ai-sdk/provider-utils": "npm:3.0.12"
peerDependencies:
zod: ^3.25.76 || ^4.1.8
checksum: 10c0/1e74b7c48eaf698525215d39b9c80e1c7907c8644be57cd79dff4a22ee26c3d0e56c602284a1eb74335710fb6124207d81924ef8b87d8bf965e5c26013b45320
languageName: node
linkType: hard
"@ai-sdk/openai@npm:^1.3.23":
version: 1.3.24
resolution: "@ai-sdk/openai@npm:1.3.24"
dependencies:
"@ai-sdk/provider": "npm:1.1.3"
"@ai-sdk/provider-utils": "npm:2.2.8"
peerDependencies:
zod: ^3.0.0
checksum: 10c0/fb8e1ca98cdba97ecb2910cb2321bd9c00564fa40eb1b68e54939bfac3e90c2c8e05f9a40110b612181438d06ee0cee6aa8c9bec74cd9b51a4bcd8e8b149f8a5
languageName: node
linkType: hard
"@ai-sdk/provider-utils@npm:2.2.8":
version: 2.2.8
resolution: "@ai-sdk/provider-utils@npm:2.2.8"
dependencies:
"@ai-sdk/provider": "npm:1.1.3"
nanoid: "npm:^3.3.8"
secure-json-parse: "npm:^2.7.0"
peerDependencies:
zod: ^3.23.8
checksum: 10c0/34c72bf5f23f2d3e7aef496da7099422ba3b3ff243c35511853e16c3f1528717500262eea32b19e3e09bc4452152a5f31e650512f53f08a5f5645d907bff429e
languageName: node
linkType: hard
"@ai-sdk/provider-utils@npm:3.0.12, @ai-sdk/provider-utils@npm:^3.0.10":
version: 3.0.12
resolution: "@ai-sdk/provider-utils@npm:3.0.12"
dependencies:
"@ai-sdk/provider": "npm:2.0.0"
"@standard-schema/spec": "npm:^1.0.0"
eventsource-parser: "npm:^3.0.5"
peerDependencies:
zod: ^3.25.76 || ^4.1.8
checksum: 10c0/83886bf188cad0cc655b680b710a10413989eaba9ec59dd24a58b985c02a8a1d50ad0f96dd5259385c07592ec3c37a7769fdf4a1ef569a73c9edbdb2cd585915
languageName: node
linkType: hard
"@ai-sdk/provider@npm:1.1.3":
version: 1.1.3
resolution: "@ai-sdk/provider@npm:1.1.3"
dependencies:
json-schema: "npm:^0.4.0"
checksum: 10c0/40e080e223328e7c89829865e9c48f4ce8442a6a59f7ed5dfbdb4f63e8d859a76641e2d31e91970dd389bddb910f32ec7c3dbb0ce583c119e5a1e614ea7b8bc4
languageName: node
linkType: hard
"@ai-sdk/provider@npm:2.0.0, @ai-sdk/provider@npm:^2.0.0":
version: 2.0.0
resolution: "@ai-sdk/provider@npm:2.0.0"
dependencies:
json-schema: "npm:^0.4.0"
checksum: 10c0/e50e520016c9fc0a8b5009cadd47dae2f1c81ec05c1792b9e312d7d15479f024ca8039525813a33425c884e3449019fed21043b1bfabd6a2626152ca9a388199
languageName: node
linkType: hard
"@ai-sdk/xai@npm:^2.0.23":
version: 2.0.26
resolution: "@ai-sdk/xai@npm:2.0.26"
dependencies:
"@ai-sdk/openai-compatible": "npm:1.0.22"
"@ai-sdk/provider": "npm:2.0.0"
"@ai-sdk/provider-utils": "npm:3.0.12"
peerDependencies:
zod: ^3.25.76 || ^4.1.8
checksum: 10c0/72fef55a96d9c3820de02beb9b63e53902649c5db906a892b7818a984b6e8afe161daa225b8d527b74f783e2c4eecd474af6e96efbb95761aca2c508e0c7c2d9
languageName: node
linkType: hard
"@alloc/quick-lru@npm:^5.2.0":
version: 5.2.0
resolution: "@alloc/quick-lru@npm:5.2.0"
checksum: 10c0/7b878c48b9d25277d0e1a9b8b2f2312a314af806b4129dc902f2bc29ab09b58236e53964689feec187b28c80d2203aff03829754773a707a8a5987f1b7682d92
languageName: node
linkType: hard
"@anthropic-ai/sdk@npm:^0.51.0":
version: 0.51.0
resolution: "@anthropic-ai/sdk@npm:0.51.0"
bin:
anthropic-ai-sdk: bin/cli
checksum: 10c0/eb68ad2e77c49477c6e9c883e8ad1bff758fc7f5fcd646878a5dd9b7f4b89de7d11fad8ea81480eee483b7c0563f564ff9b8b82f5e1550e1f3b5321761e241fe
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-bedrock-runtime@npm:^3.840.0":
version: 3.908.0
resolution: "@aws-sdk/client-bedrock-runtime@npm:3.908.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/credential-provider-node": "npm:3.908.0"
"@aws-sdk/eventstream-handler-node": "npm:3.901.0"
"@aws-sdk/middleware-eventstream": "npm:3.901.0"
"@aws-sdk/middleware-host-header": "npm:3.901.0"
"@aws-sdk/middleware-logger": "npm:3.901.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.901.0"
"@aws-sdk/middleware-user-agent": "npm:3.908.0"
"@aws-sdk/middleware-websocket": "npm:3.908.0"
"@aws-sdk/region-config-resolver": "npm:3.901.0"
"@aws-sdk/token-providers": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-endpoints": "npm:3.901.0"
"@aws-sdk/util-user-agent-browser": "npm:3.907.0"
"@aws-sdk/util-user-agent-node": "npm:3.908.0"
"@smithy/config-resolver": "npm:^4.3.0"
"@smithy/core": "npm:^3.15.0"
"@smithy/eventstream-serde-browser": "npm:^4.2.0"
"@smithy/eventstream-serde-config-resolver": "npm:^4.3.0"
"@smithy/eventstream-serde-node": "npm:^4.2.0"
"@smithy/fetch-http-handler": "npm:^5.3.1"
"@smithy/hash-node": "npm:^4.2.0"
"@smithy/invalid-dependency": "npm:^4.2.0"
"@smithy/middleware-content-length": "npm:^4.2.0"
"@smithy/middleware-endpoint": "npm:^4.3.1"
"@smithy/middleware-retry": "npm:^4.4.1"
"@smithy/middleware-serde": "npm:^4.2.0"
"@smithy/middleware-stack": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/node-http-handler": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.1"
"@smithy/types": "npm:^4.6.0"
"@smithy/url-parser": "npm:^4.2.0"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.0"
"@smithy/util-defaults-mode-node": "npm:^4.2.1"
"@smithy/util-endpoints": "npm:^3.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-retry": "npm:^4.2.0"
"@smithy/util-stream": "npm:^4.5.0"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/uuid": "npm:^1.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8d62b94acc114654c967c51773f1fc8c8d4808c62c9de9ac95e23e6f4726d3f7d108a8a089c2f3b2c15a96bf7394ed70aae8413055c46198cc99b9dea733cb63
languageName: node
linkType: hard
"@aws-sdk/client-bedrock@npm:^3.840.0":
version: 3.908.0
resolution: "@aws-sdk/client-bedrock@npm:3.908.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/credential-provider-node": "npm:3.908.0"
"@aws-sdk/middleware-host-header": "npm:3.901.0"
"@aws-sdk/middleware-logger": "npm:3.901.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.901.0"
"@aws-sdk/middleware-user-agent": "npm:3.908.0"
"@aws-sdk/region-config-resolver": "npm:3.901.0"
"@aws-sdk/token-providers": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-endpoints": "npm:3.901.0"
"@aws-sdk/util-user-agent-browser": "npm:3.907.0"
"@aws-sdk/util-user-agent-node": "npm:3.908.0"
"@smithy/config-resolver": "npm:^4.3.0"
"@smithy/core": "npm:^3.15.0"
"@smithy/fetch-http-handler": "npm:^5.3.1"
"@smithy/hash-node": "npm:^4.2.0"
"@smithy/invalid-dependency": "npm:^4.2.0"
"@smithy/middleware-content-length": "npm:^4.2.0"
"@smithy/middleware-endpoint": "npm:^4.3.1"
"@smithy/middleware-retry": "npm:^4.4.1"
"@smithy/middleware-serde": "npm:^4.2.0"
"@smithy/middleware-stack": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/node-http-handler": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.1"
"@smithy/types": "npm:^4.6.0"
"@smithy/url-parser": "npm:^4.2.0"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.0"
"@smithy/util-defaults-mode-node": "npm:^4.2.1"
"@smithy/util-endpoints": "npm:^3.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-retry": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/uuid": "npm:^1.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/73c39150c36212050b53d364d4b6ed3b1f14c59a11f82fd2de43d88e48e88b8d37a51536e13e0ec7a5d620aa45c93095b6232407f8f95ca43e27c116be632a90
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.840.0":
version: 3.908.0
resolution: "@aws-sdk/client-s3@npm:3.908.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/core": "npm:3.908.0"
"@aws-sdk/credential-provider-node": "npm:3.908.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.901.0"
"@aws-sdk/middleware-expect-continue": "npm:3.901.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.908.0"
"@aws-sdk/middleware-host-header": "npm:3.901.0"
"@aws-sdk/middleware-location-constraint": "npm:3.901.0"
"@aws-sdk/middleware-logger": "npm:3.901.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.901.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.908.0"
"@aws-sdk/middleware-ssec": "npm:3.901.0"
"@aws-sdk/middleware-user-agent": "npm:3.908.0"
"@aws-sdk/region-config-resolver": "npm:3.901.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-endpoints": "npm:3.901.0"
"@aws-sdk/util-user-agent-browser": "npm:3.907.0"
"@aws-sdk/util-user-agent-node": "npm:3.908.0"
"@aws-sdk/xml-builder": "npm:3.901.0"
"@smithy/config-resolver": "npm:^4.3.0"
"@smithy/core": "npm:^3.15.0"
"@smithy/eventstream-serde-browser": "npm:^4.2.0"
"@smithy/eventstream-serde-config-resolver": "npm:^4.3.0"
"@smithy/eventstream-serde-node": "npm:^4.2.0"
"@smithy/fetch-http-handler": "npm:^5.3.1"
"@smithy/hash-blob-browser": "npm:^4.2.1"
"@smithy/hash-node": "npm:^4.2.0"
"@smithy/hash-stream-node": "npm:^4.2.0"
"@smithy/invalid-dependency": "npm:^4.2.0"
"@smithy/md5-js": "npm:^4.2.0"
"@smithy/middleware-content-length": "npm:^4.2.0"
"@smithy/middleware-endpoint": "npm:^4.3.1"
"@smithy/middleware-retry": "npm:^4.4.1"
"@smithy/middleware-serde": "npm:^4.2.0"
"@smithy/middleware-stack": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/node-http-handler": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.1"
"@smithy/types": "npm:^4.6.0"
"@smithy/url-parser": "npm:^4.2.0"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.0"
"@smithy/util-defaults-mode-node": "npm:^4.2.1"
"@smithy/util-endpoints": "npm:^3.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-retry": "npm:^4.2.0"
"@smithy/util-stream": "npm:^4.5.0"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.0"
"@smithy/uuid": "npm:^1.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/219b618387eaf10c1da9f7b774d44bd68225ae3b7cd3c2bd297e66094326c979e8a26d4788cab670f19f48366fd0384480d6939e799fba445ad156e937a142be
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/client-sso@npm:3.908.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/middleware-host-header": "npm:3.901.0"
"@aws-sdk/middleware-logger": "npm:3.901.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.901.0"
"@aws-sdk/middleware-user-agent": "npm:3.908.0"
"@aws-sdk/region-config-resolver": "npm:3.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-endpoints": "npm:3.901.0"
"@aws-sdk/util-user-agent-browser": "npm:3.907.0"
"@aws-sdk/util-user-agent-node": "npm:3.908.0"
"@smithy/config-resolver": "npm:^4.3.0"
"@smithy/core": "npm:^3.15.0"
"@smithy/fetch-http-handler": "npm:^5.3.1"
"@smithy/hash-node": "npm:^4.2.0"
"@smithy/invalid-dependency": "npm:^4.2.0"
"@smithy/middleware-content-length": "npm:^4.2.0"
"@smithy/middleware-endpoint": "npm:^4.3.1"
"@smithy/middleware-retry": "npm:^4.4.1"
"@smithy/middleware-serde": "npm:^4.2.0"
"@smithy/middleware-stack": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/node-http-handler": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.1"
"@smithy/types": "npm:^4.6.0"
"@smithy/url-parser": "npm:^4.2.0"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.0"
"@smithy/util-defaults-mode-node": "npm:^4.2.1"
"@smithy/util-endpoints": "npm:^3.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-retry": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/bfd3525f394ee87ddd1b0cc92e334f00e21a5b31f3fd85ee09d2797190cdbd70e96bf1f88dd2a13252b0f704a633c60f90779b7e8ee7cbf03b20bc86cb287d0b
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/core@npm:3.908.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/xml-builder": "npm:3.901.0"
"@smithy/core": "npm:^3.15.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/signature-v4": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.1"
"@smithy/types": "npm:^4.6.0"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/fa5ab0d33a30155df388133f8298293d08360313703bfa7a15a077866760adfe97d636824a6866dc5cae90655f8e59b6ce93460ce72911e133ab2e48c4cc746d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/credential-provider-env@npm:3.908.0"
dependencies:
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d9e6630d28cf1374b334e0cf6a6a8331352bddcf5b6305d1b32e6d07716a835cce258927cb82d9cc309f3a67e810a80c4458f53540f6f1185382e023db8498f5
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/credential-provider-http@npm:3.908.0"
dependencies:
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/fetch-http-handler": "npm:^5.3.1"
"@smithy/node-http-handler": "npm:^4.3.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.1"
"@smithy/types": "npm:^4.6.0"
"@smithy/util-stream": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/9624570866310a663199bde3deb9d91c748cd177319f06dfafa32521d820e7aa1c2aa5ad421993a14de5ed2e6f55dd89e8ac406b0c73f040444c1c9e9164634c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.908.0"
dependencies:
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/credential-provider-env": "npm:3.908.0"
"@aws-sdk/credential-provider-http": "npm:3.908.0"
"@aws-sdk/credential-provider-process": "npm:3.908.0"
"@aws-sdk/credential-provider-sso": "npm:3.908.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.908.0"
"@aws-sdk/nested-clients": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/credential-provider-imds": "npm:^4.2.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/shared-ini-file-loader": "npm:^4.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/baa78040ca5174ed2db4b2b2f7df5b7e01344bcb4a0ffb7937fdb3568ef5c206c9d3dfa536fa49b44705c33b1e685584c2267c745c0c557dd80a62290d01a511
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/credential-provider-node@npm:3.908.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.908.0"
"@aws-sdk/credential-provider-http": "npm:3.908.0"
"@aws-sdk/credential-provider-ini": "npm:3.908.0"
"@aws-sdk/credential-provider-process": "npm:3.908.0"
"@aws-sdk/credential-provider-sso": "npm:3.908.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/credential-provider-imds": "npm:^4.2.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/shared-ini-file-loader": "npm:^4.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/32a32574aaee9e5968af6e81016c86630f973af30d93dd219d000a5208dd8ecce271e4eb782d2cb5a8dc6b334cd207fc1742db5cdd01e2bd90259cff54d12d27
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/credential-provider-process@npm:3.908.0"
dependencies:
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/shared-ini-file-loader": "npm:^4.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/be167dbbd903d9318f195009c9c389f5e00ba167d5d3ba739557873c3b5eb7b384e3c590a50a291a49c97277e498c110c68300aa5f030f2e25269e48e8bd6905
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.908.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.908.0"
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/token-providers": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/shared-ini-file-loader": "npm:^4.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/db8c49140bb16cdf904e46296e238403c44d0cecd1f3fe7d1d36453891eb63c39c0c9d5fee4655d3f94f59ac9b28e3eb33beb360f2c399ef575ca8f949f0923a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.908.0"
dependencies:
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/nested-clients": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/shared-ini-file-loader": "npm:^4.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/7eb01e9c035a41b3b3694643d665d7a71e683cceb239e6e3a0a9844c5a664a34b790a820eed4ac3c0dd9d6eb9e0092ebd0a9d79c6529189d68c81ce9d53cdd0e
languageName: node
linkType: hard
"@aws-sdk/eventstream-handler-node@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/eventstream-handler-node@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/eventstream-codec": "npm:^4.2.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/198d3a7e5df238ee5743eda05478498b11a983df1cc8a8cfaf12051838f1bd3085d960c0b1a3fc0a46f7cd2f3efde7626ed4f51b6db2338535ef5fb7e628fd6a
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-arn-parser": "npm:3.893.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
"@smithy/util-config-provider": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d3675d7468e4c268854bfcd945683bd87e55f194ff19379977a9df77591f5ab57258836cceed5aefad33ae783e5dd0120d8d2a983b1acdcae90058a6fc572d41
languageName: node
linkType: hard
"@aws-sdk/middleware-eventstream@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-eventstream@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d8dc938ffc73d1495ba5a5d92e95586381e7545ef4292124a3df18f14be68f8decac2ffe272728fdb78121c54eaae3c5457c43751951d2ce162b7583d05727a9
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/534714439b8f62e9b8ac0fb75d40b2cb51c4c69745ca80a2fc79cd927d492eba5748f0a0a8aacd5a0f11f621f718756504a5792b2445d3643b4aa5ee7df50666
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.908.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.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/is-array-buffer": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-stream": "npm:^4.5.0"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b095aa66ff629559c4f6f8a3db79ad55f06de2cd449b186249fa7785d7f081a96195cb95c68835113b72e74552c6411eebc8df491c2f5f272af946e9d1461a2c
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-host-header@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f36cffb33532df97f7480a9a0705a0d3e874861b12e10d3b1713ef4f830e1d17e8568c3baff1c4c05ad681115af6e8e4f84d828a9834a9df8b6127fbc5af5f48
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a1e57365274bf89dc1b74e70be377de819251ac529d140442401bc7f968021a429ae0a77edd68cbac868905a7ded7a9d09aaedac89117f15ad2c01e1bed91fea
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-logger@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6ad444c2d791d2f8158c1e5262cdc12591a41164f63c660eb8874d4f915f007001d152deb426874ff4d4b1326d5e6b18bbdfe3087fa6fdc9ce7c88ed6bb75997
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@aws/lambda-invoke-store": "npm:^0.0.1"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/428d2da0d4583c8b33e5c10153b5cfebf572962a11df7501c35b5361b9e39fc9ab7b8778484a8f29d521f1ba37865bf0a441650de7c539e707714d4321c13272
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.908.0"
dependencies:
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-arn-parser": "npm:3.893.0"
"@smithy/core": "npm:^3.15.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/signature-v4": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.1"
"@smithy/types": "npm:^4.6.0"
"@smithy/util-config-provider": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-stream": "npm:^4.5.0"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/de8b600bb1ae546912c4f70c10d52c5d17e793a9e455649d0ebe42d8f56563e0b4aaef15890da423086b9aaa824e2e209d7e3b476e9ad47826f7fa634bb6225f
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/middleware-ssec@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6748ba6674d1dcf48c970e67d477127924c2ae1c8026310b78d54221d3fbd5d5795f690119583cb2207e00bcc91875df5058d83763a37d311dd2ec1bba0367ce
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.908.0"
dependencies:
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-endpoints": "npm:3.901.0"
"@smithy/core": "npm:^3.15.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0ff8ee148d1b332a4508727ce0449f377d4bf9c4cdb724df20e6da4211e074acc08cb1f29cfb5c29140da80c5b583ab74df3cf84f71fd8f829cea265f8b00112
languageName: node
linkType: hard
"@aws-sdk/middleware-websocket@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/middleware-websocket@npm:3.908.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-format-url": "npm:3.901.0"
"@smithy/eventstream-codec": "npm:^4.2.0"
"@smithy/eventstream-serde-browser": "npm:^4.2.0"
"@smithy/fetch-http-handler": "npm:^5.3.1"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/signature-v4": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
"@smithy/util-hex-encoding": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/548761114edbc8ba2e6ed3cab54fd336a535265fe8a7ba0e8387d112b2e07863c011926c57774b0a35ac7e8de530d025b7f46b0ea3f96777895071d34c4bf80f
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/nested-clients@npm:3.908.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/middleware-host-header": "npm:3.901.0"
"@aws-sdk/middleware-logger": "npm:3.901.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.901.0"
"@aws-sdk/middleware-user-agent": "npm:3.908.0"
"@aws-sdk/region-config-resolver": "npm:3.901.0"
"@aws-sdk/types": "npm:3.901.0"
"@aws-sdk/util-endpoints": "npm:3.901.0"
"@aws-sdk/util-user-agent-browser": "npm:3.907.0"
"@aws-sdk/util-user-agent-node": "npm:3.908.0"
"@smithy/config-resolver": "npm:^4.3.0"
"@smithy/core": "npm:^3.15.0"
"@smithy/fetch-http-handler": "npm:^5.3.1"
"@smithy/hash-node": "npm:^4.2.0"
"@smithy/invalid-dependency": "npm:^4.2.0"
"@smithy/middleware-content-length": "npm:^4.2.0"
"@smithy/middleware-endpoint": "npm:^4.3.1"
"@smithy/middleware-retry": "npm:^4.4.1"
"@smithy/middleware-serde": "npm:^4.2.0"
"@smithy/middleware-stack": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/node-http-handler": "npm:^4.3.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/smithy-client": "npm:^4.7.1"
"@smithy/types": "npm:^4.6.0"
"@smithy/url-parser": "npm:^4.2.0"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.0"
"@smithy/util-defaults-mode-node": "npm:^4.2.1"
"@smithy/util-endpoints": "npm:^3.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
"@smithy/util-retry": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/59dd60269a978ae8b26e9faa6491f45646b9b4fdbb933d2256ff2d539ae60b960ec94ff62181f28a409317c429e6ec182e9f5558c455ee45f598175b5b8d05fd
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/region-config-resolver@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/node-config-provider": "npm:^4.3.0"
"@smithy/types": "npm:^4.6.0"
"@smithy/util-config-provider": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a01f85908e38ea43cd6e69dcb2c33916cf2a8de3e7f0baa004e218317e3f331829746f17bcc2f79c4fc7ae7c9ff0716b30986618bd776800ee8d1b535f3849d7
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.908.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/protocol-http": "npm:^5.3.0"
"@smithy/signature-v4": "npm:^5.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/7080fa36ba6ced905bca9c2aa8eb74d25ed2c59a4559fc500063af03b9ad128e6ff27c729efb84ed5089fae42dcf1b246d4e9ec672028849061db58183009dd2
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.908.0":
version: 3.908.0
resolution: "@aws-sdk/token-providers@npm:3.908.0"
dependencies:
"@aws-sdk/core": "npm:3.908.0"
"@aws-sdk/nested-clients": "npm:3.908.0"
"@aws-sdk/types": "npm:3.901.0"
"@smithy/property-provider": "npm:^4.2.0"
"@smithy/shared-ini-file-loader": "npm:^4.3.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/432e70c9b2ca20c4a3a501fd96ff7c31ce9099eb448fe6ecec13171efbe420e116a73450885106c65712a2670be52091ba5558e464385ccbf94d80acb25e260c
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.901.0, @aws-sdk/types@npm:^3.222.0":
version: 3.901.0
resolution: "@aws-sdk/types@npm:3.901.0"
dependencies:
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/38f1b7dac82b0e53faf764d0e741e32385c1e022b67c73d601fe3fd0f66d1a75d72dddd8f41dde89944441df766217f00a451a6d95caa256bebe08891206d949
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.893.0":
version: 3.893.0
resolution: "@aws-sdk/util-arn-parser@npm:3.893.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/c8bbc1e258674e791929f1259a3f2422433c0b8c5470808a958ef4320bb9ca7c27783b617da3b9e04d9a1cd1d0b547da2858249dbec816f1098c02731b551aac
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/util-endpoints@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/types": "npm:^4.6.0"
"@smithy/url-parser": "npm:^4.2.0"
"@smithy/util-endpoints": "npm:^3.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ae6a2b15975e1b4e36211c30ff7ea2ac080bb5add13a7e5181b348bc393a74f82b6c5afb998c8dde9aedfe97eae23e0ce64da79cbd2b4061c594d1bd3d9d4a65
languageName: node
linkType: hard
"@aws-sdk/util-format-url@npm:3.901.0":
version: 3.901.0
resolution: "@aws-sdk/util-format-url@npm:3.901.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/querystring-builder": "npm:^4.2.0"
"@smithy/types": "npm:^4.6.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b28828f956d17d824d6e2e7fed7757576047fbbbf66f63738e902b9d9b3cbf038896c12972ffd66d610f926be724973856dd590274b7fca9b4e3d497743eb115
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.893.0
resolution: "@aws-sdk/util-locate-window@npm:3.893.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/ed2232d1eff567a7fa96bed87d56f03ac183dc20ba0ea262edb35f0b66aea201b987f447a5c383adc5694c80275700345946c0ad3183b30a6f9ec2f89be789d8
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.907.0":
version: 3.907.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.907.0"
dependencies:
"@aws-sdk/types": "npm:3.901.0"
"@smithy/types": "npm:^4.6.0"