-
Notifications
You must be signed in to change notification settings - Fork 30
/
yarn.lock
25496 lines (23060 loc) · 901 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.29.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.29.0":
version: 2.29.0
resolution: "@apify/consts@npm:2.29.0"
checksum: 10c0/d0618487cbd91e6c755650050663a77f188ebd3c7eef45d10c957c5e5d439231587dd51e0cdbf2e80c680565c577e4c5d1c0c8136e4e94ef84737921a94da0e3
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.7.1":
version: 3.7.1
resolution: "@apify/input_schema@npm:3.7.1"
dependencies:
"@apify/consts": "npm:^2.29.0"
acorn-loose: "npm:^8.4.0"
countries-list: "npm:^3.0.0"
peerDependencies:
ajv: ^8.0.0
checksum: 10c0/860dbd59bf1bcfa9aaf69593854f87925beb4ba7cfe5bb796d0388698e8b09062f23b623f14ed27b34a1dbe094de4248dd1908112735081e22cc0cfb6a9d5cb6
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/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, @apify/utilities@npm:~2.10.6":
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
"@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.709.0":
version: 3.709.0
resolution: "@aws-sdk/client-cloudfront@npm:3.709.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.709.0"
"@aws-sdk/client-sts": "npm:3.709.0"
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/credential-provider-node": "npm:3.709.0"
"@aws-sdk/middleware-host-header": "npm:3.709.0"
"@aws-sdk/middleware-logger": "npm:3.709.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.709.0"
"@aws-sdk/middleware-user-agent": "npm:3.709.0"
"@aws-sdk/region-config-resolver": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.0"
"@aws-sdk/util-endpoints": "npm:3.709.0"
"@aws-sdk/util-user-agent-browser": "npm:3.709.0"
"@aws-sdk/util-user-agent-node": "npm:3.709.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.5"
"@smithy/middleware-retry": "npm:^3.0.30"
"@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.0"
"@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.30"
"@smithy/util-defaults-mode-node": "npm:^3.0.30"
"@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/36b52b8fc605c152ae4367fe42a1d247d2c41ef114ec71b9d6bc69b6af48d99d546da9222480e4f8c442ae72fb417a5f09bcb1df8a7cf41fdd178cf563697632
languageName: node
linkType: hard
"@aws-sdk/client-dynamodb@npm:3.709.0":
version: 3.709.0
resolution: "@aws-sdk/client-dynamodb@npm:3.709.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.709.0"
"@aws-sdk/client-sts": "npm:3.709.0"
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/credential-provider-node": "npm:3.709.0"
"@aws-sdk/middleware-endpoint-discovery": "npm:3.709.0"
"@aws-sdk/middleware-host-header": "npm:3.709.0"
"@aws-sdk/middleware-logger": "npm:3.709.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.709.0"
"@aws-sdk/middleware-user-agent": "npm:3.709.0"
"@aws-sdk/region-config-resolver": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.0"
"@aws-sdk/util-endpoints": "npm:3.709.0"
"@aws-sdk/util-user-agent-browser": "npm:3.709.0"
"@aws-sdk/util-user-agent-node": "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.5"
"@smithy/middleware-retry": "npm:^3.0.30"
"@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.0"
"@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.30"
"@smithy/util-defaults-mode-node": "npm:^3.0.30"
"@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/1b98f63387f34dfc99879e7f566536d721a47d13af77fc9e0c0b98b5b1ad63725261655f0a7409288f12963e56f3dc0f8ce1016ace271ba6fa0e50fa463062a8
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.709.0":
version: 3.709.0
resolution: "@aws-sdk/client-s3@npm:3.709.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.709.0"
"@aws-sdk/client-sts": "npm:3.709.0"
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/credential-provider-node": "npm:3.709.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.709.0"
"@aws-sdk/middleware-expect-continue": "npm:3.709.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.709.0"
"@aws-sdk/middleware-host-header": "npm:3.709.0"
"@aws-sdk/middleware-location-constraint": "npm:3.709.0"
"@aws-sdk/middleware-logger": "npm:3.709.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.709.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.709.0"
"@aws-sdk/middleware-ssec": "npm:3.709.0"
"@aws-sdk/middleware-user-agent": "npm:3.709.0"
"@aws-sdk/region-config-resolver": "npm:3.709.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.0"
"@aws-sdk/util-endpoints": "npm:3.709.0"
"@aws-sdk/util-user-agent-browser": "npm:3.709.0"
"@aws-sdk/util-user-agent-node": "npm:3.709.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.5"
"@smithy/middleware-retry": "npm:^3.0.30"
"@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.0"
"@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.30"
"@smithy/util-defaults-mode-node": "npm:^3.0.30"
"@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/e4c204c05a1485cf041de15d243a41c3e21536cf3b4e19cb0279380dba0d9d0ec306edeb8fe07339f61bf25be12de983f7b7ce3a2b143705b1b29f10683e26ae
languageName: node
linkType: hard
"@aws-sdk/client-sqs@npm:3.709.0":
version: 3.709.0
resolution: "@aws-sdk/client-sqs@npm:3.709.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.709.0"
"@aws-sdk/client-sts": "npm:3.709.0"
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/credential-provider-node": "npm:3.709.0"
"@aws-sdk/middleware-host-header": "npm:3.709.0"
"@aws-sdk/middleware-logger": "npm:3.709.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.709.0"
"@aws-sdk/middleware-sdk-sqs": "npm:3.709.0"
"@aws-sdk/middleware-user-agent": "npm:3.709.0"
"@aws-sdk/region-config-resolver": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.0"
"@aws-sdk/util-endpoints": "npm:3.709.0"
"@aws-sdk/util-user-agent-browser": "npm:3.709.0"
"@aws-sdk/util-user-agent-node": "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/md5-js": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.5"
"@smithy/middleware-retry": "npm:^3.0.30"
"@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.0"
"@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.30"
"@smithy/util-defaults-mode-node": "npm:^3.0.30"
"@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/8549d96b099fbaa3eb44f4483c7b867ea04e6916fcac930a94410fcf3b8f8e489eb74f6c42e22d8ab27db177544c7a15221f396c1f173969ebd2cc92cfedcbd3
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.709.0":
version: 3.709.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.709.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/credential-provider-node": "npm:3.709.0"
"@aws-sdk/middleware-host-header": "npm:3.709.0"
"@aws-sdk/middleware-logger": "npm:3.709.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.709.0"
"@aws-sdk/middleware-user-agent": "npm:3.709.0"
"@aws-sdk/region-config-resolver": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.0"
"@aws-sdk/util-endpoints": "npm:3.709.0"
"@aws-sdk/util-user-agent-browser": "npm:3.709.0"
"@aws-sdk/util-user-agent-node": "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.5"
"@smithy/middleware-retry": "npm:^3.0.30"
"@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.0"
"@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.30"
"@smithy/util-defaults-mode-node": "npm:^3.0.30"
"@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.709.0
checksum: 10c0/357c78f08a5fa1c38422e85a36031d7ed230a5df62b68a2a09eed1092774621f6043a92c0d4199704cb110d556334d736b95f81d9ed5813b310aac01450b26fa
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.709.0":
version: 3.709.0
resolution: "@aws-sdk/client-sso@npm:3.709.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/middleware-host-header": "npm:3.709.0"
"@aws-sdk/middleware-logger": "npm:3.709.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.709.0"
"@aws-sdk/middleware-user-agent": "npm:3.709.0"
"@aws-sdk/region-config-resolver": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.0"
"@aws-sdk/util-endpoints": "npm:3.709.0"
"@aws-sdk/util-user-agent-browser": "npm:3.709.0"
"@aws-sdk/util-user-agent-node": "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.5"
"@smithy/middleware-retry": "npm:^3.0.30"
"@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.0"
"@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.30"
"@smithy/util-defaults-mode-node": "npm:^3.0.30"
"@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/0dbe9a64b516b4b3e7584cd591f18717da7e98ebbc4b7cb997d943c66772897324442ae81912f3fa8f24c5eacd90adcf4a5d4a1fdbfa31c855374e221f16f0d0
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.709.0":
version: 3.709.0
resolution: "@aws-sdk/client-sts@npm:3.709.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.709.0"
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/credential-provider-node": "npm:3.709.0"
"@aws-sdk/middleware-host-header": "npm:3.709.0"
"@aws-sdk/middleware-logger": "npm:3.709.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.709.0"
"@aws-sdk/middleware-user-agent": "npm:3.709.0"
"@aws-sdk/region-config-resolver": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.0"
"@aws-sdk/util-endpoints": "npm:3.709.0"
"@aws-sdk/util-user-agent-browser": "npm:3.709.0"
"@aws-sdk/util-user-agent-node": "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.5"
"@smithy/middleware-retry": "npm:^3.0.30"
"@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.0"
"@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.30"
"@smithy/util-defaults-mode-node": "npm:^3.0.30"
"@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/7f3c0d6c548c5156f775ba08920fae9291174cd5ca285e9d6af9a8773053e493b6b14cda393b6edf4de57d3025bfc097f48282f58b53e3ad43e4fce3293ad5f5
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.709.0":
version: 3.709.0
resolution: "@aws-sdk/core@npm:3.709.0"
dependencies:
"@aws-sdk/types": "npm:3.709.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.0"
"@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/9ae5b510c2376f6fc79a70bb6773408cbcb24e9b686d6efc55b75e791c1fe03079fee18399a006be0441381c67d051d06db758a76c0e7fceb7f65c41dc91154d
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.709.0":
version: 3.709.0
resolution: "@aws-sdk/credential-provider-env@npm:3.709.0"
dependencies:
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/e68fc5ba198255754e4e2605bf305790cf82183139971ab152b03f30a2d6316ce64007473639566a14c335f0ca9afca1e0c1dd4df3b88b511ff6fe1745397233
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.709.0":
version: 3.709.0
resolution: "@aws-sdk/credential-provider-http@npm:3.709.0"
dependencies:
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.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.0"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-stream": "npm:^3.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/f899cc2810802d3df3efad8a355426cee8313e9391055b1c420223852c6574630036dff0aaae4a2c98963451be77803f4d409174d833d68bb4907390af9ad0cd
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.709.0":
version: 3.709.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.709.0"
dependencies:
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/credential-provider-env": "npm:3.709.0"
"@aws-sdk/credential-provider-http": "npm:3.709.0"
"@aws-sdk/credential-provider-process": "npm:3.709.0"
"@aws-sdk/credential-provider-sso": "npm:3.709.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.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.709.0
checksum: 10c0/86c76e8a1d8ad20b721baf1b11f8396d1f8c2baa32a6615d55876650f9d36e257c47b56bf4f5d0fdd8679f5d18b0703abcddcf00c520d9ab0ea0c002ebaa74cb
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.709.0":
version: 3.709.0
resolution: "@aws-sdk/credential-provider-node@npm:3.709.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.709.0"
"@aws-sdk/credential-provider-http": "npm:3.709.0"
"@aws-sdk/credential-provider-ini": "npm:3.709.0"
"@aws-sdk/credential-provider-process": "npm:3.709.0"
"@aws-sdk/credential-provider-sso": "npm:3.709.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.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/3be52ef6871cdbb0d38b6c3cf16bdc01282bdca1a0eb86b6c4226c79775630fde0775775b858ddd053383b747c2aec25755a11b6f278492855efc16b540a0c81
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.709.0":
version: 3.709.0
resolution: "@aws-sdk/credential-provider-process@npm:3.709.0"
dependencies:
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.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/34db091e276fb4f9cde7dd4bb11d3fd6937a7bd30452b6db0b6e6a95a7180a60e3aefd41f5ec0461ee9e2aa6db040e251ec4c4158b30ad6d68da381cef97a487
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.696.0":
version: 3.696.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.696.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.696.0"
"@aws-sdk/core": "npm:3.696.0"
"@aws-sdk/token-providers": "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/9f2ca87b98aa6f7f13b379b26eaf3f773e2337d3c08e623807eb00a28f433324bed494514caff7365ec0a7d19f140d9a8bf00e7a389666dc2e1a1bf5c87d20d6
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.709.0":