-
Notifications
You must be signed in to change notification settings - Fork 1
/
yarn.lock
6936 lines (6308 loc) · 249 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: 10
"@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: 10/f3451525379c68a73eb0a1e65247fbf28c0cccd126d93af21c75fceff77773d43c0d4a2d51978fb131aff25b5f2cb41a9fe48cc296e61ae65e679c4f6918b0ab
languageName: node
linkType: hard
"@aws-amplify/analytics@npm:7.0.54":
version: 7.0.54
resolution: "@aws-amplify/analytics@npm:7.0.54"
dependencies:
"@aws-sdk/client-firehose": "npm:3.621.0"
"@aws-sdk/client-kinesis": "npm:3.621.0"
"@aws-sdk/client-personalize-events": "npm:3.621.0"
"@smithy/util-utf8": "npm:2.0.0"
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-amplify/core": ^6.1.0
checksum: 10/252af82d821e30e4cbe4851513c40418aea6706db56d0c36797b8ca6088e138edf437b8640f2f04d889c59b19b0910f02b1bbd1a6b3019cdde42bf6882903386
languageName: node
linkType: hard
"@aws-amplify/api-graphql@npm:4.4.3":
version: 4.4.3
resolution: "@aws-amplify/api-graphql@npm:4.4.3"
dependencies:
"@aws-amplify/api-rest": "npm:4.0.54"
"@aws-amplify/core": "npm:6.4.7"
"@aws-amplify/data-schema": "npm:^1.7.0"
"@aws-sdk/types": "npm:3.387.0"
graphql: "npm:15.8.0"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.5.0"
uuid: "npm:^9.0.0"
checksum: 10/1b7b9eb736fe1f53c6da2f90e1fba1df90dbfe8bb18f9839276220c4c9a525111a256ff2c21b001211d3813abb6a38260ce26535cb2b53726d0831287b1f843b
languageName: node
linkType: hard
"@aws-amplify/api-rest@npm:4.0.54":
version: 4.0.54
resolution: "@aws-amplify/api-rest@npm:4.0.54"
dependencies:
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-amplify/core": ^6.1.0
checksum: 10/9f2c54c291f4f11b6400325f0cd0b2c70f3b09e1f472de58d0d2417f8b5ee0ce10dcfff3f46a1cca3ada9459dae2572526e8cdaa2989057718f8e0f8c4f483bf
languageName: node
linkType: hard
"@aws-amplify/api@npm:6.0.56":
version: 6.0.56
resolution: "@aws-amplify/api@npm:6.0.56"
dependencies:
"@aws-amplify/api-graphql": "npm:4.4.3"
"@aws-amplify/api-rest": "npm:4.0.54"
tslib: "npm:^2.5.0"
checksum: 10/5f88d4041057c0398c8de2fe7a434cee7978ec57d0f391cb76b9e2b1cbe1bcd07bf246050d3309d2cb3b3f2e1d0dee8ced805977f8d0131646465c83e93d8a90
languageName: node
linkType: hard
"@aws-amplify/auth@npm:6.5.4":
version: 6.5.4
resolution: "@aws-amplify/auth@npm:6.5.4"
dependencies:
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-amplify/core": ^6.1.0
checksum: 10/312c8d5129d85efb506ee3ba300a051befbec2954a70f51cc48bf44003add8d278ed31e41f84bbd1e2cb91f8ac539c43ed3c51685c670755748a0aaf07270a58
languageName: node
linkType: hard
"@aws-amplify/core@npm:6.4.7":
version: 6.4.7
resolution: "@aws-amplify/core@npm:6.4.7"
dependencies:
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/types": "npm:3.398.0"
"@smithy/util-hex-encoding": "npm:2.0.0"
"@types/uuid": "npm:^9.0.0"
js-cookie: "npm:^3.0.5"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.5.0"
uuid: "npm:^9.0.0"
checksum: 10/5162ded38bde43fe08455cd1a701b4cf94f53dc06f3d09c0f1056ef27a1ab7d75a309bfb7186c77501420b1c2d8325f41c0a8cf2857da177b14dded6ae9d3d8a
languageName: node
linkType: hard
"@aws-amplify/data-schema-types@npm:*":
version: 1.1.1
resolution: "@aws-amplify/data-schema-types@npm:1.1.1"
dependencies:
graphql: "npm:15.8.0"
rxjs: "npm:^7.8.1"
checksum: 10/66b8c0b5452fb6b03b6ffe7420a3d8f47cbaf30072c6db3b8f56d77f661e9ff437c773a5392aa01bfdf1a3ee9ac21b7e755a6669fdf191f9e4323e4d97da1975
languageName: node
linkType: hard
"@aws-amplify/data-schema@npm:^1.7.0":
version: 1.10.2
resolution: "@aws-amplify/data-schema@npm:1.10.2"
dependencies:
"@aws-amplify/data-schema-types": "npm:*"
"@smithy/util-base64": "npm:^3.0.0"
"@types/aws-lambda": "npm:^8.10.134"
"@types/json-schema": "npm:^7.0.15"
rxjs: "npm:^7.8.1"
checksum: 10/2521efd1e863ea7229fac4d9d6d1f32e4ef7ae6d0e29eeb7465fe5250b31c320f4cf08e8f48d6ed21f7559da4be02864c9f22f3d5eaec89786c5f3fd27fe568f
languageName: node
linkType: hard
"@aws-amplify/datastore@npm:5.0.56":
version: 5.0.56
resolution: "@aws-amplify/datastore@npm:5.0.56"
dependencies:
"@aws-amplify/api": "npm:6.0.56"
buffer: "npm:4.9.2"
idb: "npm:5.0.6"
immer: "npm:9.0.6"
rxjs: "npm:^7.8.1"
ulid: "npm:^2.3.0"
peerDependencies:
"@aws-amplify/core": ^6.1.0
checksum: 10/966916fd8575a1a2d222ce23260cd9a010cd492850be807b65e84691ee074ee0f4ea4e10db45caba0765f2a53ad663c1fb773a0a3ee1770f37e7d7b3e937a69f
languageName: node
linkType: hard
"@aws-amplify/notifications@npm:2.0.54":
version: 2.0.54
resolution: "@aws-amplify/notifications@npm:2.0.54"
dependencies:
lodash: "npm:^4.17.21"
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-amplify/core": ^6.1.0
checksum: 10/382133222321f4ad0e29dcb0940ab4e952a718af3773c770326ae5178940d3310fd810881318261d40011bb7cad1895dca176bfecc328a3cfedee787e8d28e66
languageName: node
linkType: hard
"@aws-amplify/storage@npm:6.6.12":
version: 6.6.12
resolution: "@aws-amplify/storage@npm:6.6.12"
dependencies:
"@aws-sdk/types": "npm:3.398.0"
"@smithy/md5-js": "npm:2.0.7"
buffer: "npm:4.9.2"
fast-xml-parser: "npm:^4.4.1"
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-amplify/core": ^6.1.0
checksum: 10/6d7abf719b4bac6daa68357010d38da99903310e2fc1365704755820d7b71624c825848dde0b67c808591ac53c6f3b3a320a21c3f736325b654b62e969486509
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: 10/1b0a56ad4cb44c9512d8b1668dcf9306ab541d3a73829f435ca97abaec8d56f3db953db03ad0d0698754fea16fcd803d11fa42e0889bc7b803c6a030b04c63de
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: 10/2b1b701ca6caa876333b4eb2b96e5187d71ebb51ebf8e2d632690dbcdedeff038202d23adcc97e023437ed42bb1963b7b463e343687edf0635fd4b98b2edad1a
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: 10/f46aace7b873c615be4e787ab0efd0148ef7de48f9f12c7d043e05c52e52b75bb0bf6dbcb9b2852d940d7724fab7b6d5ff1469160a3dd024efe7a68b5f70df8c
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: 10/6ed0c7e17f4f6663d057630805c45edb35d5693380c24ab52d4c453ece303c6c8a6ade9ee93c97dda77d9f6cae376ffbb44467057161c513dffa3422250edaf5
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: 10/f80a174c404e1ad4364741c942f440e75f834c08278fa754349fe23a6edc679d480ea9ced5820774aee58091ed270067022d8059ecf1a7ef452d58134ac7e9e1
languageName: node
linkType: hard
"@aws-sdk/client-firehose@npm:3.621.0":
version: 3.621.0
resolution: "@aws-sdk/client-firehose@npm:3.621.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.621.0"
"@aws-sdk/client-sts": "npm:3.621.0"
"@aws-sdk/core": "npm:3.621.0"
"@aws-sdk/credential-provider-node": "npm:3.621.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.1"
"@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.13"
"@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.11"
"@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.13"
"@smithy/util-defaults-mode-node": "npm:^3.0.13"
"@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: 10/e0918e761e31fcac303908db7a3765ca468fea0481f5ddef959266decb84b9dae6589515d4576a6a32e34d6406cb46d7ae8f8a3702c1ea0f32465d71f9d38fd1
languageName: node
linkType: hard
"@aws-sdk/client-kinesis@npm:3.621.0":
version: 3.621.0
resolution: "@aws-sdk/client-kinesis@npm:3.621.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.621.0"
"@aws-sdk/client-sts": "npm:3.621.0"
"@aws-sdk/core": "npm:3.621.0"
"@aws-sdk/credential-provider-node": "npm:3.621.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.1"
"@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.13"
"@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.11"
"@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.13"
"@smithy/util-defaults-mode-node": "npm:^3.0.13"
"@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"
checksum: 10/d66956d389ebf6d7771bdf1329a574cfbcc0b69ecb785eb2596ddaa1f0c46a4720e6f44858b0fe63f73b2985d4adc283ff2d34ba3e08826d069902b53d2cb519
languageName: node
linkType: hard
"@aws-sdk/client-lambda@npm:^3.680.0":
version: 3.680.0
resolution: "@aws-sdk/client-lambda@npm:3.680.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.679.0"
"@aws-sdk/client-sts": "npm:3.679.0"
"@aws-sdk/core": "npm:3.679.0"
"@aws-sdk/credential-provider-node": "npm:3.679.0"
"@aws-sdk/middleware-host-header": "npm:3.679.0"
"@aws-sdk/middleware-logger": "npm:3.679.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.679.0"
"@aws-sdk/middleware-user-agent": "npm:3.679.0"
"@aws-sdk/region-config-resolver": "npm:3.679.0"
"@aws-sdk/types": "npm:3.679.0"
"@aws-sdk/util-endpoints": "npm:3.679.0"
"@aws-sdk/util-user-agent-browser": "npm:3.679.0"
"@aws-sdk/util-user-agent-node": "npm:3.679.0"
"@smithy/config-resolver": "npm:^3.0.9"
"@smithy/core": "npm:^2.4.8"
"@smithy/eventstream-serde-browser": "npm:^3.0.10"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.7"
"@smithy/eventstream-serde-node": "npm:^3.0.9"
"@smithy/fetch-http-handler": "npm:^3.2.9"
"@smithy/hash-node": "npm:^3.0.7"
"@smithy/invalid-dependency": "npm:^3.0.7"
"@smithy/middleware-content-length": "npm:^3.0.9"
"@smithy/middleware-endpoint": "npm:^3.1.4"
"@smithy/middleware-retry": "npm:^3.0.23"
"@smithy/middleware-serde": "npm:^3.0.7"
"@smithy/middleware-stack": "npm:^3.0.7"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/node-http-handler": "npm:^3.2.4"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/smithy-client": "npm:^3.4.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/url-parser": "npm:^3.0.7"
"@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.23"
"@smithy/util-defaults-mode-node": "npm:^3.0.23"
"@smithy/util-endpoints": "npm:^2.1.3"
"@smithy/util-middleware": "npm:^3.0.7"
"@smithy/util-retry": "npm:^3.0.7"
"@smithy/util-stream": "npm:^3.1.9"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.6"
tslib: "npm:^2.6.2"
checksum: 10/5535939f858bf96bba1f01013757e0f10077564f237a2f4203f64172c5708825d119ab5b7d476398a181e34afe8d048b673beccab78a31a04bf0589ce9df0e37
languageName: node
linkType: hard
"@aws-sdk/client-personalize-events@npm:3.621.0":
version: 3.621.0
resolution: "@aws-sdk/client-personalize-events@npm:3.621.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.621.0"
"@aws-sdk/client-sts": "npm:3.621.0"
"@aws-sdk/core": "npm:3.621.0"
"@aws-sdk/credential-provider-node": "npm:3.621.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.1"
"@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.13"
"@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.11"
"@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.13"
"@smithy/util-defaults-mode-node": "npm:^3.0.13"
"@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: 10/46cd1f85ff498c9b56a5e638259a0323365d74de2628519140d58d77ec860aef107bd191bcb2795e57295c90b76a64369f39c3fc0745417228f649ef782d4189
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.621.0":
version: 3.621.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.621.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.621.0"
"@aws-sdk/credential-provider-node": "npm:3.621.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.1"
"@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.13"
"@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.11"
"@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.13"
"@smithy/util-defaults-mode-node": "npm:^3.0.13"
"@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.621.0
checksum: 10/a1c79fb9442d206b6e86def93d3ac3f927988a335d6daeb20b043c7c5d5db7bfeaffaaf3e0bccf0366402a67e29543332525611e89065a9d09082d6d40fdd68a
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.679.0":
version: 3.679.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.679.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.679.0"
"@aws-sdk/credential-provider-node": "npm:3.679.0"
"@aws-sdk/middleware-host-header": "npm:3.679.0"
"@aws-sdk/middleware-logger": "npm:3.679.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.679.0"
"@aws-sdk/middleware-user-agent": "npm:3.679.0"
"@aws-sdk/region-config-resolver": "npm:3.679.0"
"@aws-sdk/types": "npm:3.679.0"
"@aws-sdk/util-endpoints": "npm:3.679.0"
"@aws-sdk/util-user-agent-browser": "npm:3.679.0"
"@aws-sdk/util-user-agent-node": "npm:3.679.0"
"@smithy/config-resolver": "npm:^3.0.9"
"@smithy/core": "npm:^2.4.8"
"@smithy/fetch-http-handler": "npm:^3.2.9"
"@smithy/hash-node": "npm:^3.0.7"
"@smithy/invalid-dependency": "npm:^3.0.7"
"@smithy/middleware-content-length": "npm:^3.0.9"
"@smithy/middleware-endpoint": "npm:^3.1.4"
"@smithy/middleware-retry": "npm:^3.0.23"
"@smithy/middleware-serde": "npm:^3.0.7"
"@smithy/middleware-stack": "npm:^3.0.7"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/node-http-handler": "npm:^3.2.4"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/smithy-client": "npm:^3.4.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/url-parser": "npm:^3.0.7"
"@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.23"
"@smithy/util-defaults-mode-node": "npm:^3.0.23"
"@smithy/util-endpoints": "npm:^2.1.3"
"@smithy/util-middleware": "npm:^3.0.7"
"@smithy/util-retry": "npm:^3.0.7"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.679.0
checksum: 10/291acc7e02c950deb1300b0706940506df9373e25c9bc94ed0500eedd2a405e7a41d12b8be2878b691cec23105b2484d17081785f06db4d0bbd59dda3b2eb804
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.621.0":
version: 3.621.0
resolution: "@aws-sdk/client-sso@npm:3.621.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.621.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.1"
"@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.13"
"@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.11"
"@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.13"
"@smithy/util-defaults-mode-node": "npm:^3.0.13"
"@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: 10/cfbab401ead113b8a63accb37e27cfcee16714fbe2f4fe1e1fca9e71f77e23371488559c7d2ebcc8d51915c649f1d60b257d42ae0622b5f54faf53212f688edd
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.679.0":
version: 3.679.0
resolution: "@aws-sdk/client-sso@npm:3.679.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.679.0"
"@aws-sdk/middleware-host-header": "npm:3.679.0"
"@aws-sdk/middleware-logger": "npm:3.679.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.679.0"
"@aws-sdk/middleware-user-agent": "npm:3.679.0"
"@aws-sdk/region-config-resolver": "npm:3.679.0"
"@aws-sdk/types": "npm:3.679.0"
"@aws-sdk/util-endpoints": "npm:3.679.0"
"@aws-sdk/util-user-agent-browser": "npm:3.679.0"
"@aws-sdk/util-user-agent-node": "npm:3.679.0"
"@smithy/config-resolver": "npm:^3.0.9"
"@smithy/core": "npm:^2.4.8"
"@smithy/fetch-http-handler": "npm:^3.2.9"
"@smithy/hash-node": "npm:^3.0.7"
"@smithy/invalid-dependency": "npm:^3.0.7"
"@smithy/middleware-content-length": "npm:^3.0.9"
"@smithy/middleware-endpoint": "npm:^3.1.4"
"@smithy/middleware-retry": "npm:^3.0.23"
"@smithy/middleware-serde": "npm:^3.0.7"
"@smithy/middleware-stack": "npm:^3.0.7"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/node-http-handler": "npm:^3.2.4"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/smithy-client": "npm:^3.4.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/url-parser": "npm:^3.0.7"
"@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.23"
"@smithy/util-defaults-mode-node": "npm:^3.0.23"
"@smithy/util-endpoints": "npm:^2.1.3"
"@smithy/util-middleware": "npm:^3.0.7"
"@smithy/util-retry": "npm:^3.0.7"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/58d431a2fac517bb4becce7662910abbc115f1279a18a55438a6213568fff55cd2e25b10294bacd521ab084534602e949523f17c2c4ab93c137fab4932ca7092
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.621.0":
version: 3.621.0
resolution: "@aws-sdk/client-sts@npm:3.621.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.621.0"
"@aws-sdk/core": "npm:3.621.0"
"@aws-sdk/credential-provider-node": "npm:3.621.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.1"
"@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.13"
"@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.11"
"@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.13"
"@smithy/util-defaults-mode-node": "npm:^3.0.13"
"@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: 10/155406c5976e49d19dcdea3fbc0b409685e06ab96c5326c5b66b46366cc6d0ba36206e7e5b580d17258df8611f76a7a0d9a2768b21f4c6ad97e8fe6020551fd8
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.679.0":
version: 3.679.0
resolution: "@aws-sdk/client-sts@npm:3.679.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.679.0"
"@aws-sdk/core": "npm:3.679.0"
"@aws-sdk/credential-provider-node": "npm:3.679.0"
"@aws-sdk/middleware-host-header": "npm:3.679.0"
"@aws-sdk/middleware-logger": "npm:3.679.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.679.0"
"@aws-sdk/middleware-user-agent": "npm:3.679.0"
"@aws-sdk/region-config-resolver": "npm:3.679.0"
"@aws-sdk/types": "npm:3.679.0"
"@aws-sdk/util-endpoints": "npm:3.679.0"
"@aws-sdk/util-user-agent-browser": "npm:3.679.0"
"@aws-sdk/util-user-agent-node": "npm:3.679.0"
"@smithy/config-resolver": "npm:^3.0.9"
"@smithy/core": "npm:^2.4.8"
"@smithy/fetch-http-handler": "npm:^3.2.9"
"@smithy/hash-node": "npm:^3.0.7"
"@smithy/invalid-dependency": "npm:^3.0.7"
"@smithy/middleware-content-length": "npm:^3.0.9"
"@smithy/middleware-endpoint": "npm:^3.1.4"
"@smithy/middleware-retry": "npm:^3.0.23"
"@smithy/middleware-serde": "npm:^3.0.7"
"@smithy/middleware-stack": "npm:^3.0.7"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/node-http-handler": "npm:^3.2.4"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/smithy-client": "npm:^3.4.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/url-parser": "npm:^3.0.7"
"@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.23"
"@smithy/util-defaults-mode-node": "npm:^3.0.23"
"@smithy/util-endpoints": "npm:^2.1.3"
"@smithy/util-middleware": "npm:^3.0.7"
"@smithy/util-retry": "npm:^3.0.7"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/f80757459e74aec5b1474e8c35a112d32351080920dc0048455b88c1f1bbd525d89a011fb1687834fbf19159aa6318f2d7b26af6295235150fd770f1000517f5
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.621.0":
version: 3.621.0
resolution: "@aws-sdk/core@npm:3.621.0"
dependencies:
"@smithy/core": "npm:^2.3.1"
"@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.11"
"@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: 10/1a7484d907691fa5c4705d350e3eb99ef0c0e4735a7d6a5985a588167765a059adec3cbba697ebd51e8b63af485dc663bca42a5978271522e48d6e6f3c7f2583
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.679.0":
version: 3.679.0
resolution: "@aws-sdk/core@npm:3.679.0"
dependencies:
"@aws-sdk/types": "npm:3.679.0"
"@smithy/core": "npm:^2.4.8"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/signature-v4": "npm:^4.2.0"
"@smithy/smithy-client": "npm:^3.4.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/util-middleware": "npm:^3.0.7"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10/7822b41def1d12139b311ce69951f0845c3fe9fea149058dca40f3ec948d85057cb92b87677addaffe0f33bb4b1532b134547517db96e58e3bcb6cee0922ef96
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: 10/43f1bd5e9e80acb2f83b8b64c6ac2bf112144bb1a4b8a0912546cb99497fbbc68a8104d02c6cd773fce7d66fb69f5859f25b711036654eee496905f3a51e657f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.679.0":
version: 3.679.0
resolution: "@aws-sdk/credential-provider-env@npm:3.679.0"
dependencies:
"@aws-sdk/core": "npm:3.679.0"
"@aws-sdk/types": "npm:3.679.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/e62e2f9ca85fd8759df78a6e9a04195e2d809013b6a31ebb432b7a95774d2856092005992649811f9e78106220f10c6c5946e84422631cf44fb1370a3ec56c2b
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.621.0":
version: 3.621.0
resolution: "@aws-sdk/credential-provider-http@npm:3.621.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.11"
"@smithy/types": "npm:^3.3.0"
"@smithy/util-stream": "npm:^3.1.3"
tslib: "npm:^2.6.2"
checksum: 10/6de4d653173ba9379f4cc0144f13d0ae61c9a642ca03a5e5cc421ec88f5f541c0f0ee36b1a52110a15f30e03beecca7e6ea05d87ed740261daf01a456cd584ab
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.679.0":
version: 3.679.0
resolution: "@aws-sdk/credential-provider-http@npm:3.679.0"
dependencies:
"@aws-sdk/core": "npm:3.679.0"
"@aws-sdk/types": "npm:3.679.0"
"@smithy/fetch-http-handler": "npm:^3.2.9"
"@smithy/node-http-handler": "npm:^3.2.4"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/smithy-client": "npm:^3.4.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/util-stream": "npm:^3.1.9"
tslib: "npm:^2.6.2"
checksum: 10/9114a4f20aba88b00169c773dafc3fb1ac2b53d03b7e7e249ae477443046537500696ec34d78e30742963d2d0b9af9f793cf44fc7fe8da6747f0824a500b1eb7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.621.0":
version: 3.621.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.621.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.620.1"
"@aws-sdk/credential-provider-http": "npm:3.621.0"
"@aws-sdk/credential-provider-process": "npm:3.620.1"
"@aws-sdk/credential-provider-sso": "npm:3.621.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.621.0
checksum: 10/867ab1b3eadec5a00f6b37ab8caf9b763e54239b7409621c017cfd1b87e841876c60407cd3668eb1faa8c1d207bb9a7f0378e12911c61da4326e8da43727cc68
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.679.0":
version: 3.679.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.679.0"
dependencies:
"@aws-sdk/core": "npm:3.679.0"
"@aws-sdk/credential-provider-env": "npm:3.679.0"
"@aws-sdk/credential-provider-http": "npm:3.679.0"
"@aws-sdk/credential-provider-process": "npm:3.679.0"
"@aws-sdk/credential-provider-sso": "npm:3.679.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.679.0"
"@aws-sdk/types": "npm:3.679.0"
"@smithy/credential-provider-imds": "npm:^3.2.4"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.679.0
checksum: 10/156d6c6d23cff8496468593feba64eb369d60b1491881570e304bf266285238683422225c2fd53af81ae4c7770fb2d9ea4b69c03f43dd7d03dec1e57726af8cd
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.621.0":
version: 3.621.0
resolution: "@aws-sdk/credential-provider-node@npm:3.621.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.620.1"
"@aws-sdk/credential-provider-http": "npm:3.621.0"
"@aws-sdk/credential-provider-ini": "npm:3.621.0"
"@aws-sdk/credential-provider-process": "npm:3.620.1"
"@aws-sdk/credential-provider-sso": "npm:3.621.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: 10/d3b384e309d7e8675aa0080cafe8cca7e0c975bb964f57b5ebfd4c60a0c1a99f3ddad7b74f6512c0bff9e92602c09cab30ad1b015fb1904970bfa64368a80cfe
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.679.0":
version: 3.679.0
resolution: "@aws-sdk/credential-provider-node@npm:3.679.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.679.0"
"@aws-sdk/credential-provider-http": "npm:3.679.0"
"@aws-sdk/credential-provider-ini": "npm:3.679.0"
"@aws-sdk/credential-provider-process": "npm:3.679.0"
"@aws-sdk/credential-provider-sso": "npm:3.679.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.679.0"
"@aws-sdk/types": "npm:3.679.0"
"@smithy/credential-provider-imds": "npm:^3.2.4"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/16167d9aa6ed93db4c1343ff55adedd5a08bafb260317def1f54e99e37105a9f8115bcf09ee9d69c15a97962d28c575e53d2ccb636f9950fe962b709b5551cec
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: 10/245d32be2abaa37df37703ae8bfa6e6f6fb9239168bcd54d2c7a717e6634a5691c5628d36b44dcb3fd63bb91416f95bf1ff1fabdd0d73142665e8f030a138a9e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.679.0":
version: 3.679.0
resolution: "@aws-sdk/credential-provider-process@npm:3.679.0"
dependencies:
"@aws-sdk/core": "npm:3.679.0"
"@aws-sdk/types": "npm:3.679.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/aec537fe7c4674d4a0cfa6778fa57a2abe78cbac3740507240dbbd3beefc9436634d58065d7f0fea239e1dbf5b1dc93083af1ade21d597f31a0c1e357e12503b
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.621.0":
version: 3.621.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.621.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.621.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: 10/49fb0e53827c510db75deddc8110db70f6ac07452d92597af88ef7e0e05d8185f66364a341f9052b4524edf02c69db6fe71c391b5d92cee2518f05e86afbdbbc
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.679.0":
version: 3.679.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.679.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.679.0"
"@aws-sdk/core": "npm:3.679.0"
"@aws-sdk/token-providers": "npm:3.679.0"
"@aws-sdk/types": "npm:3.679.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/c3a6b9a3e5bfbbd56a1be558a8d8bc9865998270e813ac6c010b6b9afe3270db11b17c6e52ff26bcf38984610918a18e31c40c94ea731d34db3d1d94c0c7de54
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: 10/63966d60773725c8652fb5ee3bcdd639d6e3e84c7cc90de2e15a30e79069b69461acb8e30cea8bde142bbf68d25ed1a9609eecf9f9db4cf03159c8bd257c4a95
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.679.0":
version: 3.679.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.679.0"
dependencies:
"@aws-sdk/core": "npm:3.679.0"
"@aws-sdk/types": "npm:3.679.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.679.0
checksum: 10/9106a015496e62d2e226a5959540dd8286e17a8cd285a2b434e8b1817d491e58529c3a11404660494e6785c979520a2c1e3a76af279cacab2ede1543a4d84e40
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: 10/81edf0f1dfe280eea3967bb438c4e4402b1f9de3e5b33c70f71a297c6f9460bf434297a82ba63789823f50880e09c11377f82cc7a83c3d43df394a35ac78a824
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.679.0":
version: 3.679.0
resolution: "@aws-sdk/middleware-host-header@npm:3.679.0"
dependencies:
"@aws-sdk/types": "npm:3.679.0"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/98872e5ffc4f0cf4d05a3cd4f2134d5ed4adcd58e103a1186ff3667a2edea521b7391c51874d69a83d647abf35595a7d280f678071d2a866dfdb3734e67ba726
languageName: node
linkType: hard