-
Notifications
You must be signed in to change notification settings - Fork 30
/
yarn.lock
25806 lines (23339 loc) · 909 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
"@apideck/better-ajv-errors@npm:^0.3.1":
version: 0.3.6
resolution: "@apideck/better-ajv-errors@npm:0.3.6"
dependencies:
json-schema: "npm:^0.4.0"
jsonpointer: "npm:^5.0.0"
leven: "npm:^3.1.0"
peerDependencies:
ajv: ">=8"
checksum: 10c0/f89a1e16ecbc2ada91c56d4391c8345471e385f0b9c38d62c3bccac40ec94482cdfa496d4c2fe0af411e9851a9931c0d5042a8040f52213f603ba6b6fd7f949b
languageName: node
linkType: hard
"@apify/actor-templates@npm:~0.1.5":
version: 0.1.5
resolution: "@apify/actor-templates@npm:0.1.5"
checksum: 10c0/69b8fb70da078a5373316c6478bb56739876d11ca4d92fa5fe1cbbcad6b88ad1e02097c90b934f3817ea502530699a076106894b80b4c886ca8887730a7b3177
languageName: node
linkType: hard
"@apify/consts@npm:^2.20.0, @apify/consts@npm:^2.23.0, @apify/consts@npm:^2.25.0, @apify/consts@npm:^2.33.0":
version: 2.33.0
resolution: "@apify/consts@npm:2.33.0"
checksum: 10c0/d8371452be18476e180854f07b52b79db255651d45d3fc30907a55ddfa2a5174dbc1d867aade114090d5e0995915f3a380e7c393185ec1cb5fe8f4656788905a
languageName: node
linkType: hard
"@apify/consts@npm:^2.35.0, @apify/consts@npm:~2.35.0":
version: 2.35.0
resolution: "@apify/consts@npm:2.35.0"
checksum: 10c0/b4e8a0655bb33e183d2ac4cffb47c758e432d10ea067ff9f8c2bc4ed0efe5e2b5131c98d899f60563b1d0afe2e9d0d50d066ec0124a966a234f4be37d37ec35d
languageName: node
linkType: hard
"@apify/datastructures@npm:^2.0.0":
version: 2.0.2
resolution: "@apify/datastructures@npm:2.0.2"
checksum: 10c0/d52b852bdc72be5e7debe72a90bd15deede574ae0d6313556fa8da148c87e36a3028105423e8b498569fd52c7b71579e5c517d1a3e89a7ffc6c6df512add0335
languageName: node
linkType: hard
"@apify/input_schema@npm:~3.12.3":
version: 3.12.3
resolution: "@apify/input_schema@npm:3.12.3"
dependencies:
"@apify/consts": "npm:^2.35.0"
acorn-loose: "npm:^8.4.0"
countries-list: "npm:^3.0.0"
peerDependencies:
ajv: ^8.0.0
checksum: 10c0/eb27e7cf55494664677e330cefa7bc09fac7ddb346d18cde6c4b4cbb5d7097209724c959bc1ada62536dc01bc448f42a008175e667798455620f55d7681735d1
languageName: node
linkType: hard
"@apify/input_secrets@npm:^1.1.40":
version: 1.1.57
resolution: "@apify/input_secrets@npm:1.1.57"
dependencies:
"@apify/log": "npm:^2.5.9"
"@apify/utilities": "npm:^2.10.10"
ow: "npm:^0.28.2"
checksum: 10c0/13a1d9715f75998a836bb631b78013416fdde38de2ef6edb7b93f90ffb2d0b78dc479eb1bb559c89546a1bc6f39298ae0fc8c86fb0d20e41f41e3d598af5aa7a
languageName: node
linkType: hard
"@apify/log@npm:^2.2.6, @apify/log@npm:^2.4.0, @apify/log@npm:^2.4.3, @apify/log@npm:^2.5.9":
version: 2.5.9
resolution: "@apify/log@npm:2.5.9"
dependencies:
"@apify/consts": "npm:^2.33.0"
ansi-colors: "npm:^4.1.1"
checksum: 10c0/b8bc2687b8de3790e800b9020ea9bd9e4a41f7ace0c621415b3379ed6c9f2b1881742515c13332b2bf4ca15be0ebdbc468ae613bd15d3580f431b1c84d084fb0
languageName: node
linkType: hard
"@apify/log@npm:^2.5.11":
version: 2.5.11
resolution: "@apify/log@npm:2.5.11"
dependencies:
"@apify/consts": "npm:^2.35.0"
ansi-colors: "npm:^4.1.1"
checksum: 10c0/af27b710bb6ad9248bcfff4657b7a0cfca7773ff2be2c410b7e7e0f88670e5ed6915755fb2c8d6412657b463268bbcaa266d9fc0eae27a2b3a0af11b7c7734b5
languageName: node
linkType: hard
"@apify/ps-tree@npm:^1.2.0":
version: 1.2.0
resolution: "@apify/ps-tree@npm:1.2.0"
dependencies:
event-stream: "npm:3.3.4"
bin:
ps-tree: bin/ps-tree.js
checksum: 10c0/02420412f761f5090c3abd7b38264e4564f8c64901de0f50e538882cdedf669845292748c38ecbf064f1e33d2cccdcde5883eaa0a2233e9dd414f8a9e77f1599
languageName: node
linkType: hard
"@apify/pseudo_url@npm:^2.0.30":
version: 2.0.50
resolution: "@apify/pseudo_url@npm:2.0.50"
dependencies:
"@apify/log": "npm:^2.5.9"
checksum: 10c0/0219b4b98d12f94ac5c3c239eef1c04641be9c1936a1e50300495838888b8ae207218fef91b4f682a7f6002632a49fb0b37f0d0c3b57feea8e038255f142bcdf
languageName: node
linkType: hard
"@apify/timeout@npm:^0.3.0, @apify/timeout@npm:^0.3.1":
version: 0.3.1
resolution: "@apify/timeout@npm:0.3.1"
checksum: 10c0/3019f9ef14bad1e3675553e85032f87ef5a2552dcbb1d4b26305e00591647999000641a0660d30838ea1a6aaab558881bc9f5514e52614969bca9bdccaf96fa6
languageName: node
linkType: hard
"@apify/utilities@npm:^2.10.10, @apify/utilities@npm:^2.7.10, @apify/utilities@npm:^2.9.3":
version: 2.10.10
resolution: "@apify/utilities@npm:2.10.10"
dependencies:
"@apify/consts": "npm:^2.33.0"
"@apify/log": "npm:^2.5.9"
checksum: 10c0/7682772e18c792d1e013233530657c99915d2885cf2b2285185fb76592d887a31d24bfd0ce4138cb885b8cfb871aca46c1fd6f397ac63744f0b2807b2523071e
languageName: node
linkType: hard
"@apify/utilities@npm:~2.11.1":
version: 2.11.1
resolution: "@apify/utilities@npm:2.11.1"
dependencies:
"@apify/consts": "npm:^2.35.0"
"@apify/log": "npm:^2.5.11"
checksum: 10c0/319d1b222a64fa704370763adc37b2151e60b997dd8f8b345d0c5f4c397cd5e7893d8e89eeb6ff974875ff9fda760c4b2626a95efabf65b644894e1435a5c5f4
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-cloudfront@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/client-cloudfront@npm:3.716.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.716.0"
"@aws-sdk/client-sts": "npm:3.716.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/credential-provider-node": "npm:3.716.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-user-agent": "npm:3.716.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.716.0"
"@aws-sdk/xml-builder": "npm:3.709.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.6"
"@smithy/middleware-retry": "npm:^3.0.31"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@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.31"
"@smithy/util-defaults-mode-node": "npm:^3.0.31"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-stream": "npm:^3.3.2"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ff1ddc551f400a0d1b3418f19448ba6f785461a57c7649fd7cbeb19c8a5e63160a450949768b8476548cb5c69625c2541cd4e68d80e85fda43fa91504353c5a2
languageName: node
linkType: hard
"@aws-sdk/client-dynamodb@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/client-dynamodb@npm:3.716.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.716.0"
"@aws-sdk/client-sts": "npm:3.716.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/credential-provider-node": "npm:3.716.0"
"@aws-sdk/middleware-endpoint-discovery": "npm:3.714.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-user-agent": "npm:3.716.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.716.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.6"
"@smithy/middleware-retry": "npm:^3.0.31"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@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.31"
"@smithy/util-defaults-mode-node": "npm:^3.0.31"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.2.0"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/f36b80d39e89d9788a216a86fe5df2830908312d73f1ea2076141205f1766a38c27f9979c9ebb82a0feb13bc45d581be328ecb6cd73c0f89ecea2e8a9c1c4b37
languageName: node
linkType: hard
"@aws-sdk/client-ecs@npm:^3.405.0":
version: 3.697.0
resolution: "@aws-sdk/client-ecs@npm:3.697.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.696.0"
"@aws-sdk/client-sts": "npm:3.696.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-node": "npm:3.696.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.9"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/be6ba3a5166a2bb5e43de11b9735e3da3348f741d655b294e9e9411828156ce932067adcba732f9bc80a2a81733eef91b97efe39cb2d2f75b1900dd9baf3afb1
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/client-s3@npm:3.716.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:5.2.0"
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.716.0"
"@aws-sdk/client-sts": "npm:3.716.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/credential-provider-node": "npm:3.716.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.714.0"
"@aws-sdk/middleware-expect-continue": "npm:3.714.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.716.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-location-constraint": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.716.0"
"@aws-sdk/middleware-ssec": "npm:3.714.0"
"@aws-sdk/middleware-user-agent": "npm:3.716.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.716.0"
"@aws-sdk/xml-builder": "npm:3.709.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/eventstream-serde-browser": "npm:^3.0.14"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.11"
"@smithy/eventstream-serde-node": "npm:^3.0.13"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-blob-browser": "npm:^3.1.10"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/hash-stream-node": "npm:^3.1.10"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/md5-js": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.6"
"@smithy/middleware-retry": "npm:^3.0.31"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@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.31"
"@smithy/util-defaults-mode-node": "npm:^3.0.31"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-stream": "npm:^3.3.2"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/94606f8f54c8aca44d0cf44f341199894ae8163b125a0fc7abf5a05d42047779d62cca9cc612ec7c62ff8fd4fa29bd2af0ce23b187bdbae52ad95148276fbf56
languageName: node
linkType: hard
"@aws-sdk/client-sqs@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/client-sqs@npm:3.716.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.716.0"
"@aws-sdk/client-sts": "npm:3.716.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/credential-provider-node": "npm:3.716.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-sdk-sqs": "npm:3.716.0"
"@aws-sdk/middleware-user-agent": "npm:3.716.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.716.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/md5-js": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.6"
"@smithy/middleware-retry": "npm:^3.0.31"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@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.31"
"@smithy/util-defaults-mode-node": "npm:^3.0.31"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/34c042722e5d4ca1baabd58eeb81eb88de75fe38179b80378b362f1f08ad7c2614c937e607283953c2d7d32fe3eccb2b15b4d4db16f0bb99f0efec0ac0d090de
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.696.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-node": "npm:3.696.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.696.0
checksum: 10c0/b211e3790ed2ef6d4e2bde04306373bdecbf5a90ffa34a504813187ab536a2772084fced814a274d1b7785c805a6ac617ae94bb34b1a72eb975ec51d7a31b8a5
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.716.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/credential-provider-node": "npm:3.716.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-user-agent": "npm:3.716.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.716.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.6"
"@smithy/middleware-retry": "npm:^3.0.31"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@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.31"
"@smithy/util-defaults-mode-node": "npm:^3.0.31"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.716.0
checksum: 10c0/56c158846b2ff895565ff1da0f677d7959700288cf3dc44e7bd17ef87d6188233f6a331d1ded0e91df0068083ef28d50024016a90f5405f55b877b6c7130c7b0
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/client-sso@npm:3.696.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e96c907c3385ea183181eb7dbdceb01c2b96a220f67bf6147b9a116aa197ceb2860fa54667405a7f60f365ee1c056b7039ff1ac236815894b675ee76c52862f3
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/client-sso@npm:3.716.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-user-agent": "npm:3.716.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.716.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.6"
"@smithy/middleware-retry": "npm:^3.0.31"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@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.31"
"@smithy/util-defaults-mode-node": "npm:^3.0.31"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5c30caf6e21800974ff4c7f1dce230cfd7cfd4be146e356b19c0a4690b6123f23095f32eb73fa96b389f729975bbd5fbfe05c3d940f958c4f2a884fe4b9d44b4
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/client-sts@npm:3.696.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.696.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-node": "npm:3.696.0"
"@aws-sdk/middleware-host-header": "npm:3.696.0"
"@aws-sdk/middleware-logger": "npm:3.696.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.696.0"
"@aws-sdk/middleware-user-agent": "npm:3.696.0"
"@aws-sdk/region-config-resolver": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@aws-sdk/util-endpoints": "npm:3.696.0"
"@aws-sdk/util-user-agent-browser": "npm:3.696.0"
"@aws-sdk/util-user-agent-node": "npm:3.696.0"
"@smithy/config-resolver": "npm:^3.0.12"
"@smithy/core": "npm:^2.5.3"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/hash-node": "npm:^3.0.10"
"@smithy/invalid-dependency": "npm:^3.0.10"
"@smithy/middleware-content-length": "npm:^3.0.12"
"@smithy/middleware-endpoint": "npm:^3.2.3"
"@smithy/middleware-retry": "npm:^3.0.27"
"@smithy/middleware-serde": "npm:^3.0.10"
"@smithy/middleware-stack": "npm:^3.0.10"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/url-parser": "npm:^3.0.10"
"@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.27"
"@smithy/util-defaults-mode-node": "npm:^3.0.27"
"@smithy/util-endpoints": "npm:^2.1.6"
"@smithy/util-middleware": "npm:^3.0.10"
"@smithy/util-retry": "npm:^3.0.10"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/106f67f3e929485b060c02221cc0ad546035a6914ad47c38f99ba1ff3a97dd6b118d09a7bb2eb58d3a93ec5e28ac6d0ffe85ed5ede3a885c4da1c8b37c15680c
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/client-sts@npm:3.716.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.716.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/credential-provider-node": "npm:3.716.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-user-agent": "npm:3.716.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.716.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.6"
"@smithy/middleware-retry": "npm:^3.0.31"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@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.31"
"@smithy/util-defaults-mode-node": "npm:^3.0.31"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/3a0a408f264260781dcf992028c60c8dbfad1acf00ae3590db07b1d52d931a05ffbe7f6709783ac8385dc79f44f0427054d21a89333faddd8c50f62eb354f854
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/core@npm:3.696.0"
dependencies:
"@aws-sdk/types": "npm:3.696.0"
"@smithy/core": "npm:^2.5.3"
"@smithy/node-config-provider": "npm:^3.1.11"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/signature-v4": "npm:^4.2.2"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/util-middleware": "npm:^3.0.10"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10c0/4a96a3e29bf6e0dcd82d8160633eb4b8a488d821a8e59c1033c79a8e0d32b2f82e241e1cf94599f48836800549e342a410318b18e055851741ddf7d5d3ad4606
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/core@npm:3.716.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/core": "npm:^2.5.5"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/signature-v4": "npm:^4.2.4"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-middleware": "npm:^3.0.11"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10c0/d11deccbe6b33f91f951fa317793d56359e87a1871772e429519df2d488929a9d9c230aa6be501446980b8e9c01fc549970c28b6d1eeff23f53955e57b021db7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/credential-provider-env@npm:3.696.0"
dependencies:
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10c0/e16987ca343f9dbae2560d0d016ca005f36b27fb094f8d32b99954d0a2874aa8230f924f2dab2a0e0aebc7ee9eda6881c5f6e928d89dc759f70a7658363e20be
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-env@npm:3.716.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/00f197f9e5f49f596357b620415d85084150f794cd908838b36d9cb6e537832db530e7975c12a8d66a0e711f5c32c57453131ba1f463392e257ce6f0625a5c2a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/credential-provider-http@npm:3.696.0"
dependencies:
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/fetch-http-handler": "npm:^4.1.1"
"@smithy/node-http-handler": "npm:^3.3.1"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/protocol-http": "npm:^4.1.7"
"@smithy/smithy-client": "npm:^3.4.4"
"@smithy/types": "npm:^3.7.1"
"@smithy/util-stream": "npm:^3.3.1"
tslib: "npm:^2.6.2"
checksum: 10c0/383dd45600b0edbcc52c8e1101485569e631fb218f1776bbd4971e43a54be0adef458cb096d06d944353675136d2043da588424c78fff1c4eeeaf5229eb6774d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-http@npm:3.716.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-stream": "npm:^3.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/ed342f61d1365b4511392b8eb897bea49b0f7c71ab92bb81748ca036409c1b59eef68cd507e7697e6df2d07f69b7a26bf57172ddde6bed10730152551ba8b603
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.696.0"
dependencies:
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/credential-provider-env": "npm:3.696.0"
"@aws-sdk/credential-provider-http": "npm:3.696.0"
"@aws-sdk/credential-provider-process": "npm:3.696.0"
"@aws-sdk/credential-provider-sso": "npm:3.696.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/credential-provider-imds": "npm:^3.2.6"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/shared-ini-file-loader": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.696.0
checksum: 10c0/9c96646d3e6645ddc079bb8b41532a80a9899b5a4c47d0f1304f8c096f6f8a6f7d35db25b56092004eb159a62dabe2f2daeb852db3fa19e37317e8a175b36ba5
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.716.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/credential-provider-env": "npm:3.716.0"
"@aws-sdk/credential-provider-http": "npm:3.716.0"
"@aws-sdk/credential-provider-process": "npm:3.716.0"
"@aws-sdk/credential-provider-sso": "npm:3.716.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/credential-provider-imds": "npm:^3.2.8"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/shared-ini-file-loader": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.716.0
checksum: 10c0/1282f893a2149f0105f33dc9cfcbfa519b2936e8fc41da4b85fc89b022824c5689f8fc8652c2a03586ea0719e569da64b51414e831667b0c2c79c4e383cc65c6
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/credential-provider-node@npm:3.696.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.696.0"
"@aws-sdk/credential-provider-http": "npm:3.696.0"
"@aws-sdk/credential-provider-ini": "npm:3.696.0"
"@aws-sdk/credential-provider-process": "npm:3.696.0"
"@aws-sdk/credential-provider-sso": "npm:3.696.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/credential-provider-imds": "npm:^3.2.6"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/shared-ini-file-loader": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10c0/1b4803d175c4245bc5afb14fa86b8d43513d0bd86454216e08816e83787d922ad7131306f7965e34bd60543d802bc06d9b3b27c7287fa6efe9bdb21cc34f1962
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-node@npm:3.716.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.716.0"
"@aws-sdk/credential-provider-http": "npm:3.716.0"
"@aws-sdk/credential-provider-ini": "npm:3.716.0"
"@aws-sdk/credential-provider-process": "npm:3.716.0"
"@aws-sdk/credential-provider-sso": "npm:3.716.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/credential-provider-imds": "npm:^3.2.8"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/shared-ini-file-loader": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/41955b9098845652ab892e6edea9ce94705ade42be8ccc96f212efd75a2aec7aaf6cd06beaa9c01dd74e7cca1bc0a23571f94b4593034eccfe199603fc353cd0
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/credential-provider-process@npm:3.696.0"
dependencies:
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/types": "npm:3.696.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/shared-ini-file-loader": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.1"
tslib: "npm:^2.6.2"
checksum: 10c0/61741aa3d9cbbc88ea31bad7b7e8253aa4a0860eef215ff8d9a8196cdaa7ca8fa3bb438500c558abc9ce78b9490c540b12180acee21a7a9276491344931c5279
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-process@npm:3.716.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/shared-ini-file-loader": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/cec748bc9ecf9c029b1e7cdec4722ecae6b4a4653f39c0be03e4901ec9a1745f8d341eb879b374119096490c93dd5746cfc3f1bd0af552462da57e2249646146