-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
yarn.lock
20792 lines (18869 loc) · 746 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
"@andrewbranch/untar.js@npm:^1.0.3":
version: 1.0.3
resolution: "@andrewbranch/untar.js@npm:1.0.3"
checksum: 10c0/16774208cd5bc2cace3c8c6ca608b2b9ab07719a44501e5553f72bffb63c5fbac0b715a4b1065a65d09e010d940ac3cd148ade44dd7d49682765fe09e2c3b2a8
languageName: node
linkType: hard
"@arcanis/slice-ansi@npm:^1.1.1":
version: 1.1.1
resolution: "@arcanis/slice-ansi@npm:1.1.1"
dependencies:
grapheme-splitter: "npm:^1.0.4"
checksum: 10c0/2f222b121b8aaf67e8495e27d60ebfc34e2472033445c3380e93fb06aba9bfef6ab3096aca190a181b3dd505ed4c07f4dc7243fc9cb5369008b649cd1e39e8d8
languageName: node
linkType: hard
"@arethetypeswrong/cli@npm:^0.16.4":
version: 0.16.4
resolution: "@arethetypeswrong/cli@npm:0.16.4"
dependencies:
"@arethetypeswrong/core": "npm:0.16.4"
chalk: "npm:^4.1.2"
cli-table3: "npm:^0.6.3"
commander: "npm:^10.0.1"
marked: "npm:^9.1.2"
marked-terminal: "npm:^7.1.0"
semver: "npm:^7.5.4"
bin:
attw: dist/index.js
checksum: 10c0/8cd5cfff23c8432dfbfbd2b68ca96bffe4d1e84f7612f5c1e70c53945ebce69f9347b32c7d77903c875718db544bd4dc268749e7283691f8850be2a72de8eb2f
languageName: node
linkType: hard
"@arethetypeswrong/core@npm:0.16.4":
version: 0.16.4
resolution: "@arethetypeswrong/core@npm:0.16.4"
dependencies:
"@andrewbranch/untar.js": "npm:^1.0.3"
cjs-module-lexer: "npm:^1.2.3"
fflate: "npm:^0.8.2"
lru-cache: "npm:^10.4.3"
semver: "npm:^7.5.4"
typescript: "npm:5.6.1-rc"
validate-npm-package-name: "npm:^5.0.0"
checksum: 10c0/fc89dfb9d10bbde659774329a32790a3916c38fbb7911467226d67b63fff4b7141d32a47a75bd7461666b1c37a817efaa7e2ac4ec6b61f5c0e623e0a2606e130
languageName: node
linkType: hard
"@aws-crypto/crc32@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/crc32@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10c0/09189ada61a4ffe6b3bd363b0535438470a8cc1a83c89a2591ef2a0b91acb9c4ba95626557cddf856abb9df0d2bfdb0969512f1949b6db7bff5d17109d8beb3f
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/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/sha256-js@npm:^2.0.2":
version: 2.0.2
resolution: "@aws-crypto/sha256-js@npm:2.0.2"
dependencies:
"@aws-crypto/util": "npm:^2.0.2"
"@aws-sdk/types": "npm:^3.110.0"
tslib: "npm:^1.11.1"
checksum: 10c0/c1636d357e30a4c074aadc08dcea04d7beb129297cefb951b111263af405c72980108d7f2b28b888350ad8f3854d91f25bbabc88da0a1a8a57e6616899d11d6f
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:^2.0.2":
version: 2.0.2
resolution: "@aws-crypto/util@npm:2.0.2"
dependencies:
"@aws-sdk/types": "npm:^3.110.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10c0/9b6f903fdfce26e41cdccb643cc38b27f9929f6b72a2a6b461208f38e65174117b6a7f5c75310d3afc84d3ec16177f2252ec8ad0c95c416db5b090fcb3e35be0
languageName: node
linkType: hard
"@aws-crypto/util@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/util@npm:3.0.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10c0/71ab6963daabbf080b274e24d160e4af6c8bbb6832bb885644018849ff53356bf82bb8000b8596cf296e7d6b14ad6201872b6b902f944e97e121eb2b2f692667
languageName: node
linkType: hard
"@aws-crypto/util@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/util@npm:5.2.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0362d4c197b1fd64b423966945130207d1fe23e1bb2878a18e361f7743c8d339dad3f8729895a29aa34fff6a86c65f281cf5167c4bf253f21627ae80b6dd2951
languageName: node
linkType: hard
"@aws-sdk/client-cloudwatch-logs@npm:^3.624.0":
version: 3.675.0
resolution: "@aws-sdk/client-cloudwatch-logs@npm:3.675.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.675.0"
"@aws-sdk/client-sts": "npm:3.675.0"
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/credential-provider-node": "npm:3.675.0"
"@aws-sdk/middleware-host-header": "npm:3.667.0"
"@aws-sdk/middleware-logger": "npm:3.667.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.667.0"
"@aws-sdk/middleware-user-agent": "npm:3.669.0"
"@aws-sdk/region-config-resolver": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@aws-sdk/util-endpoints": "npm:3.667.0"
"@aws-sdk/util-user-agent-browser": "npm:3.675.0"
"@aws-sdk/util-user-agent-node": "npm:3.669.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-utf8": "npm:^3.0.0"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/e6a0723d87f3cce29d4f4b89836d1b9d331b5032fa9bb7bcbdb8074fd802ab2035fe0443be81560453edab2843af38a24ce4d7106e3ccab5e21fce7354c53796
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.675.0":
version: 3.675.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.675.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.675.0"
"@aws-sdk/client-sts": "npm:3.675.0"
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/credential-provider-node": "npm:3.675.0"
"@aws-sdk/middleware-host-header": "npm:3.667.0"
"@aws-sdk/middleware-logger": "npm:3.667.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.667.0"
"@aws-sdk/middleware-user-agent": "npm:3.669.0"
"@aws-sdk/region-config-resolver": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@aws-sdk/util-endpoints": "npm:3.667.0"
"@aws-sdk/util-user-agent-browser": "npm:3.675.0"
"@aws-sdk/util-user-agent-node": "npm:3.669.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: 10c0/3bdcdbd032018db6a78b3cbc5891aad6d259fd767a78657d2cc24a04be29c067b5b01ed2ea41d422bcd35f6bf13538c4a4d9c8c221cae25adc5f5b5b91fb12b9
languageName: node
linkType: hard
"@aws-sdk/client-iam@npm:^3.624.0":
version: 3.675.0
resolution: "@aws-sdk/client-iam@npm:3.675.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.675.0"
"@aws-sdk/client-sts": "npm:3.675.0"
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/credential-provider-node": "npm:3.675.0"
"@aws-sdk/middleware-host-header": "npm:3.667.0"
"@aws-sdk/middleware-logger": "npm:3.667.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.667.0"
"@aws-sdk/middleware-user-agent": "npm:3.669.0"
"@aws-sdk/region-config-resolver": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@aws-sdk/util-endpoints": "npm:3.667.0"
"@aws-sdk/util-user-agent-browser": "npm:3.675.0"
"@aws-sdk/util-user-agent-node": "npm:3.669.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"
"@smithy/util-waiter": "npm:^3.1.6"
tslib: "npm:^2.6.2"
checksum: 10c0/d34ea4cce1966248a110f7ac724675e16a476c6933d2e7721ea7b92f0d2aac7ef54969a42ab4234103fa46ee27ccd94882d96619cda6c89c5e0e6de973711e56
languageName: node
linkType: hard
"@aws-sdk/client-lambda@npm:^3.624.0":
version: 3.675.0
resolution: "@aws-sdk/client-lambda@npm:3.675.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.675.0"
"@aws-sdk/client-sts": "npm:3.675.0"
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/credential-provider-node": "npm:3.675.0"
"@aws-sdk/middleware-host-header": "npm:3.667.0"
"@aws-sdk/middleware-logger": "npm:3.667.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.667.0"
"@aws-sdk/middleware-user-agent": "npm:3.669.0"
"@aws-sdk/region-config-resolver": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@aws-sdk/util-endpoints": "npm:3.667.0"
"@aws-sdk/util-user-agent-browser": "npm:3.675.0"
"@aws-sdk/util-user-agent-node": "npm:3.669.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: 10c0/79b8c5b4c9c63e083ddf5b8a485783d15f7b96fdd40bcfa3121d59757844a6efbce1b2bf0f64c88be194096eda21e2ba0473c99ef7e6ae48185ebe4c58ffeada
languageName: node
linkType: hard
"@aws-sdk/client-sfn@npm:^3.624.0":
version: 3.675.0
resolution: "@aws-sdk/client-sfn@npm:3.675.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.675.0"
"@aws-sdk/client-sts": "npm:3.675.0"
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/credential-provider-node": "npm:3.675.0"
"@aws-sdk/middleware-host-header": "npm:3.667.0"
"@aws-sdk/middleware-logger": "npm:3.667.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.667.0"
"@aws-sdk/middleware-user-agent": "npm:3.669.0"
"@aws-sdk/region-config-resolver": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@aws-sdk/util-endpoints": "npm:3.667.0"
"@aws-sdk/util-user-agent-browser": "npm:3.675.0"
"@aws-sdk/util-user-agent-node": "npm:3.669.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"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/a2b42eb92d63e836c574366d5081f3c716159d234326c002af4c35fbd38af0a26e1891d0f29ab5273d279ca8657613e6eb1f9ee3c4973807d09e24eb4cf928f4
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.675.0":
version: 3.675.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.675.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/credential-provider-node": "npm:3.675.0"
"@aws-sdk/middleware-host-header": "npm:3.667.0"
"@aws-sdk/middleware-logger": "npm:3.667.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.667.0"
"@aws-sdk/middleware-user-agent": "npm:3.669.0"
"@aws-sdk/region-config-resolver": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@aws-sdk/util-endpoints": "npm:3.667.0"
"@aws-sdk/util-user-agent-browser": "npm:3.675.0"
"@aws-sdk/util-user-agent-node": "npm:3.669.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.675.0
checksum: 10c0/ded32c6ac26f6802bea261338b8a5cbcaf59eb25b5c4b83ae2c3f4b1efbce7a20920a8e6a5adcf0c979aedfb86d91eabb038657a774b491c74d43f458230c387
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.675.0":
version: 3.675.0
resolution: "@aws-sdk/client-sso@npm:3.675.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/middleware-host-header": "npm:3.667.0"
"@aws-sdk/middleware-logger": "npm:3.667.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.667.0"
"@aws-sdk/middleware-user-agent": "npm:3.669.0"
"@aws-sdk/region-config-resolver": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@aws-sdk/util-endpoints": "npm:3.667.0"
"@aws-sdk/util-user-agent-browser": "npm:3.675.0"
"@aws-sdk/util-user-agent-node": "npm:3.669.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: 10c0/7d7e2790806c6f743deb87cbf73f85a54407cfa15104a1a4586aa667fad97b79b3b309594b3e80d4f195573eda8cff4de24617e0d7e019885f32baf88f45006f
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.675.0":
version: 3.675.0
resolution: "@aws-sdk/client-sts@npm:3.675.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.675.0"
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/credential-provider-node": "npm:3.675.0"
"@aws-sdk/middleware-host-header": "npm:3.667.0"
"@aws-sdk/middleware-logger": "npm:3.667.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.667.0"
"@aws-sdk/middleware-user-agent": "npm:3.669.0"
"@aws-sdk/region-config-resolver": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@aws-sdk/util-endpoints": "npm:3.667.0"
"@aws-sdk/util-user-agent-browser": "npm:3.675.0"
"@aws-sdk/util-user-agent-node": "npm:3.669.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: 10c0/a52928ad07b4a9cc211a96f51761a247aaa0e579c6c35d0a98e2d076147584a50a4ba703558152755c8c6f8518becda617ac6098243bd0bc44043ba218a41428
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.667.0, @aws-sdk/core@npm:^3.624.0":
version: 3.667.0
resolution: "@aws-sdk/core@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.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: 10c0/1f329f972c2ae8b39d6b727a2e70d32acc056ab287e666f192ba1ee61a2995509480c479de2b9151c49af7268d93a95999414023f8542fb2c3578262518751f7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-cognito-identity@npm:3.675.0":
version: 3.675.0
resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.675.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.675.0"
"@aws-sdk/types": "npm:3.667.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1a1b974694ed23a21c4ae512f81ed092cb3eb183b91218f42dcb0c8016e3451f30a8aa5f3deaf4f4165d56da58c1332aa3484222019cc8779455248525dad9f6
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/credential-provider-env@npm:3.667.0"
dependencies:
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/211ec650608320f55a2a5eeb8411949c037729a96e2e8ae9d40ec9d84cf63271b684051eb5e35c130ac15861fc42ab30fc79b8a4eae3bc64d1411f7fc7cfc321
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/credential-provider-http@npm:3.667.0"
dependencies:
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.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: 10c0/1296aacc3e82480b2c296b928810d53e24722162c7065ef3b8c70074c36dd89c5cd56bc8475b0739302bfc53966b1fce58c1b67e7bd4abed21758ce9c3ab302b
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.675.0, @aws-sdk/credential-provider-ini@npm:^3.624.0":
version: 3.675.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.675.0"
dependencies:
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/credential-provider-env": "npm:3.667.0"
"@aws-sdk/credential-provider-http": "npm:3.667.0"
"@aws-sdk/credential-provider-process": "npm:3.667.0"
"@aws-sdk/credential-provider-sso": "npm:3.675.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.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.675.0
checksum: 10c0/4855819471c1ad6736b729a848bb996acc8bfd0a2bea9ac65f9ddfaa2e8744faa8f72dbc80690183f1d7541193dbd22475847ea57ba00dc1f09484409299486c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.675.0":
version: 3.675.0
resolution: "@aws-sdk/credential-provider-node@npm:3.675.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.667.0"
"@aws-sdk/credential-provider-http": "npm:3.667.0"
"@aws-sdk/credential-provider-ini": "npm:3.675.0"
"@aws-sdk/credential-provider-process": "npm:3.667.0"
"@aws-sdk/credential-provider-sso": "npm:3.675.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.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: 10c0/537cea4eb66de7360badc4675ec192f0b5d6049f80c5824df3340dd34288e0f205d88a2e18846b7ca24e901121da1692670bb7624c93850b08f03570d0cb18f6
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/credential-provider-process@npm:3.667.0"
dependencies:
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.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: 10c0/f6bc550ba17ebfc9922be7dffafe900357530eece1bf93d6b710f4c4b04d63aebeba734384225945387a97a134acaf5dde48005daa85e5b9ea4b0bdf59c39698
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.675.0":
version: 3.675.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.675.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.675.0"
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/token-providers": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.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: 10c0/51b3ccf518e1aac27b665645676b35ebfe3db497f05243ac98427b5e4776b66aa10728a7084b0a80b6eb96e5c1a953789268bfd4eed8f6731f16b4742340243e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.667.0"
dependencies:
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.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.667.0
checksum: 10c0/d3a2021559e7a087fc1b524d21afaa5088d005bfbb9426005320b2ad16aff99d0a40b358f5629e412b041eef247b8afc0e2b486f5dc1e1d4f62209555b3cfdc4
languageName: node
linkType: hard
"@aws-sdk/credential-providers@npm:^3.624.0":
version: 3.675.0
resolution: "@aws-sdk/credential-providers@npm:3.675.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.675.0"
"@aws-sdk/client-sso": "npm:3.675.0"
"@aws-sdk/client-sts": "npm:3.675.0"
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/credential-provider-cognito-identity": "npm:3.675.0"
"@aws-sdk/credential-provider-env": "npm:3.667.0"
"@aws-sdk/credential-provider-http": "npm:3.667.0"
"@aws-sdk/credential-provider-ini": "npm:3.675.0"
"@aws-sdk/credential-provider-node": "npm:3.675.0"
"@aws-sdk/credential-provider-process": "npm:3.667.0"
"@aws-sdk/credential-provider-sso": "npm:3.675.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@smithy/credential-provider-imds": "npm:^3.2.4"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5b53d1f45ae0a3c309a6dee4ffd147c0b55e6df67a032f820a6a2cdc300d1ff8a25235607350e8225d5d62d8d18f3b4f187b1ef6bd60595ce29f820e5d44fa64
languageName: node
linkType: hard
"@aws-sdk/eventstream-codec@npm:3.370.0":
version: 3.370.0
resolution: "@aws-sdk/eventstream-codec@npm:3.370.0"
dependencies:
"@aws-crypto/crc32": "npm:3.0.0"
"@aws-sdk/types": "npm:3.370.0"
"@aws-sdk/util-hex-encoding": "npm:3.310.0"
tslib: "npm:^2.5.0"
checksum: 10c0/6e78431f49adc314b3fb658aa2ac56deac383ffcc6a6b37a648f70ce801c512adc5e8a1375d825a16161e6f5afe009c0965fe221752d8dd6de5ba05c3c640c1c
languageName: node
linkType: hard
"@aws-sdk/fetch-http-handler@npm:^3.36.0":
version: 3.370.0
resolution: "@aws-sdk/fetch-http-handler@npm:3.370.0"
dependencies:
"@aws-sdk/protocol-http": "npm:3.370.0"
"@aws-sdk/querystring-builder": "npm:3.370.0"
"@aws-sdk/types": "npm:3.370.0"
"@aws-sdk/util-base64": "npm:3.310.0"
tslib: "npm:^2.5.0"
checksum: 10c0/3380a072a47b59cb9bb443d59560d0b346025e8d1cd9f7cad0d3346ce3050479d4cd526f45912ff1f7e98f94908b6fdf6fcd5019d6c3d9dc04755217b1503aea
languageName: node
linkType: hard
"@aws-sdk/is-array-buffer@npm:3.310.0":
version: 3.310.0
resolution: "@aws-sdk/is-array-buffer@npm:3.310.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10c0/9e409bbdcf40aba872cdaa573adebd1bfebd0af4afedd1645d6782a8e0f942aeb53cb65da510ec52a8291682187f6b7091fd7d2631193a747c211ef6efae7960
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/middleware-host-header@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/7db9ae0d59695b251a05f48835b2cd2cbcadb0c0f11a8c530c37f596e807479891dae9a0ace723113979d04b8f5d556541cf42131a6ac4bac8371bcd22b86910
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/middleware-logger@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8091b797b226d97b93aa1635fc475168dcc881f4d5fc24efe3153605108be26607d5ca8a008085e2d4c6e8ba6aabd2f97cdf4ca12cf7d295362b36d7064312fe
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/87c305abb5df60883b468f000a17b4335188ba4be8845245f1de2d382dfa5f2d4f5ced2380d7b021a89029b8d488fa5139bd3f5c4b98e5c9712ee180b9a25a4d
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.669.0":
version: 3.669.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.669.0"
dependencies:
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@aws-sdk/util-endpoints": "npm:3.667.0"
"@smithy/core": "npm:^2.4.8"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d890315c40119661ac1f6b5d6fcd4bdcc5548b0b87cbbf72821a97341c95f906a49e0f6f23281e1c248f75343ec2074c1b7feaecc4fafdad6e31bb13aaeebddd
languageName: node
linkType: hard
"@aws-sdk/protocol-http@npm:3.370.0, @aws-sdk/protocol-http@npm:^3.36.0":
version: 3.370.0
resolution: "@aws-sdk/protocol-http@npm:3.370.0"
dependencies:
"@aws-sdk/types": "npm:3.370.0"
tslib: "npm:^2.5.0"
checksum: 10c0/50ef3ac827c8fdedb3714e4e0338ccc4876a26d278cf265b51d3c00f727909ba8d503bd0ecd216f9864a31dfb1b608381e65a6818803eef55fa8c9f276acaa47
languageName: node
linkType: hard
"@aws-sdk/querystring-builder@npm:3.370.0, @aws-sdk/querystring-builder@npm:^3.36.0":
version: 3.370.0
resolution: "@aws-sdk/querystring-builder@npm:3.370.0"
dependencies:
"@aws-sdk/types": "npm:3.370.0"
"@aws-sdk/util-uri-escape": "npm:3.310.0"
tslib: "npm:^2.5.0"
checksum: 10c0/434d8bdccea1b3718b13c8862e4e36b1af569f433ab38e40a32f12d8d980d8a1856192d6fc6416633c96f949b8894ae7b75473a7107441b5bb60e873f61d9cdd
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/region-config-resolver@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.7"
tslib: "npm:^2.6.2"
checksum: 10c0/ae3fb07a3e17515c902490c25d5885615f1e2c381b7681731a396319349ffdc80187116cf061763582e2925185b310dcd78fc96c49f1915abab21184f5c9554f
languageName: node
linkType: hard
"@aws-sdk/signature-v4@npm:^3.36.0":
version: 3.370.0
resolution: "@aws-sdk/signature-v4@npm:3.370.0"
dependencies:
"@aws-sdk/eventstream-codec": "npm:3.370.0"
"@aws-sdk/is-array-buffer": "npm:3.310.0"
"@aws-sdk/types": "npm:3.370.0"
"@aws-sdk/util-hex-encoding": "npm:3.310.0"
"@aws-sdk/util-middleware": "npm:3.370.0"
"@aws-sdk/util-uri-escape": "npm:3.310.0"
"@aws-sdk/util-utf8": "npm:3.310.0"
tslib: "npm:^2.5.0"
checksum: 10c0/60f28daca0d7a9b350176514299974789fe9ea66a604eef7975114b54319b6af6cb4fffb0342aeb5737d5ed8b58bc0fcc2835687042b98d3b0531eb9497d0f8e
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/token-providers@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.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"
peerDependencies:
"@aws-sdk/client-sso-oidc": ^3.667.0
checksum: 10c0/5ab543445bda169f0e250bd075044004618fc5915c2f0c11858687b823a7a5106c67c440bea391df2aca67f92ceb8a6ea3e066eaf1cd608d6409f262991772a5
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.370.0":
version: 3.370.0
resolution: "@aws-sdk/types@npm:3.370.0"
dependencies:
"@smithy/types": "npm:^1.1.0"
tslib: "npm:^2.5.0"
checksum: 10c0/6a9d94014a83b4e1682529a36ef98f177ece93d2a738559c5bfc670df65c63315d183dcb7aa6c36dd0981a830094d83aa20e3c15afa8a4651fcbdf8f9f669184
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.664.0":
version: 3.664.0
resolution: "@aws-sdk/types@npm:3.664.0"
dependencies:
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0f56e2dfc2990ded7fe3c3344a3ae0e21f835b4a251d309def04bf122b1da2336baf66fa78d6b9c4a82166d6ccd9cadcd4186f0c7bf7423e4db973dac63f2d74
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.667.0, @aws-sdk/types@npm:^3.110.0, @aws-sdk/types@npm:^3.222.0":
version: 3.667.0
resolution: "@aws-sdk/types@npm:3.667.0"
dependencies:
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c1173d4799e95f113eeb80505737d86a37b443e45fac52d1045683712078ea338678bf9b55403254615f68e1ee8176084b9647c60e286c6a3569198611ffb9f5
languageName: node
linkType: hard
"@aws-sdk/util-base64@npm:3.310.0":
version: 3.310.0
resolution: "@aws-sdk/util-base64@npm:3.310.0"
dependencies:
"@aws-sdk/util-buffer-from": "npm:3.310.0"
tslib: "npm:^2.5.0"
checksum: 10c0/99159de6d3fa23e7c07a9b329fe157201d23e9b872ecf5f6a2d0ae3b5720bb4466122642880e40a44e372292b68d861b8236f6c3d321fbdb83c68bca1b8c07c8
languageName: node
linkType: hard
"@aws-sdk/util-buffer-from@npm:3.310.0":
version: 3.310.0
resolution: "@aws-sdk/util-buffer-from@npm:3.310.0"
dependencies:
"@aws-sdk/is-array-buffer": "npm:3.310.0"
tslib: "npm:^2.5.0"
checksum: 10c0/48b7aa3041607527c0f0b0e27ede2522b3f79555bd541b62ed44dea64ac443442139040d3a7d65cc3f81210567e8e7b1a77a5bd7bfecf70564b51b8d2a9fd972
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/util-endpoints@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/util-endpoints": "npm:^2.1.3"
tslib: "npm:^2.6.2"
checksum: 10c0/53a378a1946024a3a3ce1854d6bf7e92b6155a2814aa0ad7d01109b083bb4fe3cb8ec4d04eb6e23e448fedb0cded7e7430d821d6bdd6f53f256de337ea3fa278
languageName: node
linkType: hard
"@aws-sdk/util-hex-encoding@npm:3.310.0, @aws-sdk/util-hex-encoding@npm:^3.36.0":
version: 3.310.0
resolution: "@aws-sdk/util-hex-encoding@npm:3.310.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10c0/92157c8a02c12fd7e19c888cd62f51e361be5311e4b018c3ed8ce5e740b1517bbe58b49553a6f7d6d7b5703e0ff3d9d8afd8927b1e9ee64ad07df9a5e41568d7
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.568.0
resolution: "@aws-sdk/util-locate-window@npm:3.568.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/cb1d0919498206fe266542a635cd05909456a06f007a6a550ff897a01390b239e51c2a50e47509e23c179f8df8001bd5fecd900045da5ec989c3f934c3fd3d56
languageName: node
linkType: hard
"@aws-sdk/util-middleware@npm:3.370.0":
version: 3.370.0
resolution: "@aws-sdk/util-middleware@npm:3.370.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10c0/4119ba35dbc3c1afaa0f390efb18f5a543f0ac87be5c732b7037bc4e77ef85bc4e5316834ef565c8e76f84a8ac2134db8962f40368f3b0c0d51f4b4ed369e8e5
languageName: node
linkType: hard
"@aws-sdk/util-uri-escape@npm:3.310.0":
version: 3.310.0
resolution: "@aws-sdk/util-uri-escape@npm:3.310.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10c0/ce2eb2dcd0dc86629cfa5f36dd908e3a20915667d0abde4ceef602cc55238ed95d5fa02f19b4f7bf316c371860e957cd5ce67c0c6c16903a465cd52558ae69dd
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.675.0":
version: 3.675.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.675.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/types": "npm:^3.5.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e4f4b63c3576cf65ac2b243921d9630a7ff198aafd98bc230669f47cf152bbba673debe8068a5460a7ef5bb2e312362e9ca8ce1872c21dfcc55c24addbd257a0
languageName: node