-
Notifications
You must be signed in to change notification settings - Fork 722
Expand file tree
/
Copy pathyarn.lock
More file actions
11094 lines (10053 loc) · 398 KB
/
yarn.lock
File metadata and controls
11094 lines (10053 loc) · 398 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@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
"@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-github-runner/ami-housekeeper@workspace:functions/ami-housekeeper":
version: 0.0.0-use.local
resolution: "@aws-github-runner/ami-housekeeper@workspace:functions/ami-housekeeper"
dependencies:
"@aws-github-runner/aws-powertools-util": "npm:*"
"@aws-github-runner/aws-ssm-util": "npm:*"
"@aws-sdk/client-ec2": "npm:^3.958.0"
"@aws-sdk/client-ssm": "npm:^3.958.0"
"@aws-sdk/types": "npm:^3.957.0"
"@types/aws-lambda": "npm:^8.10.159"
"@vercel/ncc": "npm:^0.38.4"
aws-sdk-client-mock: "npm:^4.1.0"
aws-sdk-client-mock-jest: "npm:^4.1.0"
cron-parser: "npm:^5.4.0"
languageName: unknown
linkType: soft
"@aws-github-runner/aws-powertools-util@npm:*, @aws-github-runner/aws-powertools-util@workspace:libs/aws-powertools-util":
version: 0.0.0-use.local
resolution: "@aws-github-runner/aws-powertools-util@workspace:libs/aws-powertools-util"
dependencies:
"@aws-lambda-powertools/logger": "npm:^2.30.0"
"@aws-lambda-powertools/metrics": "npm:^2.30.0"
"@aws-lambda-powertools/tracer": "npm:^2.30.0"
"@types/aws-lambda": "npm:^8.10.159"
"@types/node": "npm:^22.19.3"
aws-lambda: "npm:^1.0.7"
body-parser: "npm:^2.2.1"
languageName: unknown
linkType: soft
"@aws-github-runner/aws-ssm-util@npm:*, @aws-github-runner/aws-ssm-util@workspace:libs/aws-ssm-util":
version: 0.0.0-use.local
resolution: "@aws-github-runner/aws-ssm-util@workspace:libs/aws-ssm-util"
dependencies:
"@aws-github-runner/aws-powertools-util": "npm:*"
"@aws-sdk/client-ssm": "npm:^3.958.0"
"@aws-sdk/types": "npm:^3.957.0"
"@types/aws-lambda": "npm:^8.10.159"
"@types/node": "npm:^22.19.3"
aws-sdk-client-mock: "npm:^4.1.0"
aws-sdk-client-mock-jest: "npm:^4.1.0"
languageName: unknown
linkType: soft
"@aws-github-runner/control-plane@workspace:functions/control-plane":
version: 0.0.0-use.local
resolution: "@aws-github-runner/control-plane@workspace:functions/control-plane"
dependencies:
"@aws-github-runner/aws-powertools-util": "npm:*"
"@aws-github-runner/aws-ssm-util": "npm:*"
"@aws-lambda-powertools/parameters": "npm:^2.30.0"
"@aws-sdk/client-ec2": "npm:^3.958.0"
"@aws-sdk/client-sqs": "npm:^3.960.0"
"@aws-sdk/types": "npm:^3.957.0"
"@middy/core": "npm:^6.4.5"
"@octokit/auth-app": "npm:8.1.2"
"@octokit/core": "npm:7.0.6"
"@octokit/plugin-throttling": "npm:11.0.3"
"@octokit/rest": "npm:22.0.1"
"@octokit/types": "npm:^16.0.0"
"@types/aws-lambda": "npm:^8.10.159"
"@types/node": "npm:^22.19.3"
"@vercel/ncc": "npm:^0.38.4"
aws-sdk-client-mock: "npm:^4.1.0"
aws-sdk-client-mock-jest: "npm:^4.1.0"
cron-parser: "npm:^5.4.0"
moment-timezone: "npm:^0.6.0"
nock: "npm:^14.0.10"
ts-node: "npm:^10.9.2"
ts-node-dev: "npm:^2.0.0"
languageName: unknown
linkType: soft
"@aws-github-runner/gh-agent-syncer@workspace:functions/gh-agent-syncer":
version: 0.0.0-use.local
resolution: "@aws-github-runner/gh-agent-syncer@workspace:functions/gh-agent-syncer"
dependencies:
"@aws-github-runner/aws-powertools-util": "npm:*"
"@aws-sdk/client-s3": "npm:^3.958.0"
"@aws-sdk/lib-storage": "npm:^3.958.0"
"@aws-sdk/types": "npm:^3.957.0"
"@middy/core": "npm:^6.4.5"
"@octokit/rest": "npm:22.0.1"
"@types/aws-lambda": "npm:^8.10.159"
"@types/node": "npm:^22.19.3"
"@types/request": "npm:^2.48.13"
"@vercel/ncc": "npm:^0.38.4"
aws-sdk-client-mock: "npm:^4.1.0"
aws-sdk-client-mock-jest: "npm:^4.1.0"
aws-sdk-client-mock-vitest: "npm:^7.0.1"
axios: "npm:^1.13.2"
languageName: unknown
linkType: soft
"@aws-github-runner/termination-watcher@workspace:functions/termination-watcher":
version: 0.0.0-use.local
resolution: "@aws-github-runner/termination-watcher@workspace:functions/termination-watcher"
dependencies:
"@aws-github-runner/aws-powertools-util": "npm:*"
"@aws-sdk/client-ec2": "npm:^3.958.0"
"@aws-sdk/types": "npm:^3.957.0"
"@middy/core": "npm:^6.4.5"
"@types/aws-lambda": "npm:^8.10.159"
"@types/node": "npm:^22.19.3"
"@vercel/ncc": "npm:^0.38.4"
aws-sdk-client-mock: "npm:^4.1.0"
aws-sdk-client-mock-jest: "npm:^4.1.0"
languageName: unknown
linkType: soft
"@aws-github-runner/webhook@workspace:functions/webhook":
version: 0.0.0-use.local
resolution: "@aws-github-runner/webhook@workspace:functions/webhook"
dependencies:
"@aws-github-runner/aws-powertools-util": "npm:*"
"@aws-github-runner/aws-ssm-util": "npm:*"
"@aws-sdk/client-eventbridge": "npm:^3.958.0"
"@aws-sdk/client-sqs": "npm:^3.960.0"
"@middy/core": "npm:^6.4.5"
"@octokit/rest": "npm:22.0.1"
"@octokit/types": "npm:^16.0.0"
"@octokit/webhooks": "npm:^14.2.0"
"@octokit/webhooks-types": "npm:^7.6.1"
"@types/aws-lambda": "npm:^8.10.159"
"@types/express": "npm:^5.0.3"
"@types/node": "npm:^22.19.3"
"@vercel/ncc": "npm:0.38.4"
aws-lambda: "npm:^1.0.7"
body-parser: "npm:^2.2.1"
express: "npm:^5.2.0"
ts-node-dev: "npm:^2.0.0"
languageName: unknown
linkType: soft
"@aws-lambda-powertools/commons@npm:2.30.1":
version: 2.30.1
resolution: "@aws-lambda-powertools/commons@npm:2.30.1"
dependencies:
"@aws/lambda-invoke-store": "npm:0.2.2"
checksum: 10c0/4eee610cf3d900e24dd9bba3308cbc9cc19b988d4ba00cc09f144c2ac14a3f99251e8e5764e1f81f871339c11faff789e3a67809e89c6f1b5ca4be77885cfec5
languageName: node
linkType: hard
"@aws-lambda-powertools/logger@npm:^2.30.0":
version: 2.30.1
resolution: "@aws-lambda-powertools/logger@npm:2.30.1"
dependencies:
"@aws-lambda-powertools/commons": "npm:2.30.1"
"@aws/lambda-invoke-store": "npm:0.2.2"
peerDependencies:
"@aws-lambda-powertools/jmespath": 2.30.1
"@middy/core": 4.x || 5.x || 6.x
peerDependenciesMeta:
"@aws-lambda-powertools/jmespath":
optional: true
"@middy/core":
optional: true
checksum: 10c0/5c3133e62acbc1383a2eafdd3cb490d8294eb9f4b5885b2c78e9e7ef77c54a6196cc239dc22fa30bd713b800108283980b5afa747090566b79c54fcfeb2d0c0c
languageName: node
linkType: hard
"@aws-lambda-powertools/metrics@npm:^2.30.0":
version: 2.30.1
resolution: "@aws-lambda-powertools/metrics@npm:2.30.1"
dependencies:
"@aws-lambda-powertools/commons": "npm:2.30.1"
"@aws/lambda-invoke-store": "npm:0.2.2"
peerDependencies:
"@middy/core": 4.x || 5.x || 6.x
peerDependenciesMeta:
"@middy/core":
optional: true
checksum: 10c0/f31549e587929c98863ab6705a812c18e4019b7146c8d6719cb6c83952d2df97921440cb5fba0b65f6a61a76522c3329cc53f0dbccf35724bf9b3df18f32979f
languageName: node
linkType: hard
"@aws-lambda-powertools/parameters@npm:^2.30.0":
version: 2.30.1
resolution: "@aws-lambda-powertools/parameters@npm:2.30.1"
dependencies:
"@aws-lambda-powertools/commons": "npm:2.30.1"
peerDependencies:
"@aws-sdk/client-appconfigdata": ">=3.x"
"@aws-sdk/client-dynamodb": ">=3.x"
"@aws-sdk/client-secrets-manager": ">=3.x"
"@aws-sdk/client-ssm": ">=3.x"
"@aws-sdk/util-dynamodb": ">=3.x"
"@middy/core": 4.x || 5.x || 6.x
peerDependenciesMeta:
"@aws-sdk/client-appconfigdata":
optional: true
"@aws-sdk/client-dynamodb":
optional: true
"@aws-sdk/client-secrets-manager":
optional: true
"@aws-sdk/client-ssm":
optional: true
"@aws-sdk/util-dynamodb":
optional: true
"@middy/core":
optional: true
checksum: 10c0/7f2a9c3969eea43d2c3cce2998f73830620347747ba63a4e26fa5ca404bcf17cff23bb382f7d46dc3796f1cf238a62a506dde5ffc9f22b7dc7012d0520c5c604
languageName: node
linkType: hard
"@aws-lambda-powertools/tracer@npm:^2.30.0":
version: 2.30.1
resolution: "@aws-lambda-powertools/tracer@npm:2.30.1"
dependencies:
"@aws-lambda-powertools/commons": "npm:2.30.1"
aws-xray-sdk-core: "npm:^3.12.0"
peerDependencies:
"@middy/core": 4.x || 5.x || 6.x
peerDependenciesMeta:
"@middy/core":
optional: true
checksum: 10c0/4015b6cb2294fcb73f6f3168c7a6c65f8fdcebda6c33cd9dd752e190305ee927634e2fd573ffb7d9dc25fb8f2b90fff05dab00615d5275d3ddc6c351ffd7b31c
languageName: node
linkType: hard
"@aws-sdk/client-ec2@npm:^3.958.0":
version: 3.964.0
resolution: "@aws-sdk/client-ec2@npm:3.964.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.964.0"
"@aws-sdk/credential-provider-node": "npm:3.964.0"
"@aws-sdk/middleware-host-header": "npm:3.957.0"
"@aws-sdk/middleware-logger": "npm:3.957.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.957.0"
"@aws-sdk/middleware-sdk-ec2": "npm:3.957.0"
"@aws-sdk/middleware-user-agent": "npm:3.964.0"
"@aws-sdk/region-config-resolver": "npm:3.957.0"
"@aws-sdk/types": "npm:3.957.0"
"@aws-sdk/util-endpoints": "npm:3.957.0"
"@aws-sdk/util-user-agent-browser": "npm:3.957.0"
"@aws-sdk/util-user-agent-node": "npm:3.964.0"
"@smithy/config-resolver": "npm:^4.4.5"
"@smithy/core": "npm:^3.20.0"
"@smithy/fetch-http-handler": "npm:^5.3.8"
"@smithy/hash-node": "npm:^4.2.7"
"@smithy/invalid-dependency": "npm:^4.2.7"
"@smithy/middleware-content-length": "npm:^4.2.7"
"@smithy/middleware-endpoint": "npm:^4.4.1"
"@smithy/middleware-retry": "npm:^4.4.17"
"@smithy/middleware-serde": "npm:^4.2.8"
"@smithy/middleware-stack": "npm:^4.2.7"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/node-http-handler": "npm:^4.4.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
"@smithy/url-parser": "npm:^4.2.7"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.16"
"@smithy/util-defaults-mode-node": "npm:^4.2.19"
"@smithy/util-endpoints": "npm:^3.2.7"
"@smithy/util-middleware": "npm:^4.2.7"
"@smithy/util-retry": "npm:^4.2.7"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.7"
tslib: "npm:^2.6.2"
checksum: 10c0/7e8d5e3aecda9fdd38bdc5b7475f2188cd43af67efbc15eb31e253e5249230b9d271d6fc86e51ef4de57e1b387addf784aafb9451da5e39a3314578c640c6d2d
languageName: node
linkType: hard
"@aws-sdk/client-eventbridge@npm:^3.958.0":
version: 3.964.0
resolution: "@aws-sdk/client-eventbridge@npm:3.964.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.964.0"
"@aws-sdk/credential-provider-node": "npm:3.964.0"
"@aws-sdk/middleware-host-header": "npm:3.957.0"
"@aws-sdk/middleware-logger": "npm:3.957.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.957.0"
"@aws-sdk/middleware-user-agent": "npm:3.964.0"
"@aws-sdk/region-config-resolver": "npm:3.957.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.964.0"
"@aws-sdk/types": "npm:3.957.0"
"@aws-sdk/util-endpoints": "npm:3.957.0"
"@aws-sdk/util-user-agent-browser": "npm:3.957.0"
"@aws-sdk/util-user-agent-node": "npm:3.964.0"
"@smithy/config-resolver": "npm:^4.4.5"
"@smithy/core": "npm:^3.20.0"
"@smithy/fetch-http-handler": "npm:^5.3.8"
"@smithy/hash-node": "npm:^4.2.7"
"@smithy/invalid-dependency": "npm:^4.2.7"
"@smithy/middleware-content-length": "npm:^4.2.7"
"@smithy/middleware-endpoint": "npm:^4.4.1"
"@smithy/middleware-retry": "npm:^4.4.17"
"@smithy/middleware-serde": "npm:^4.2.8"
"@smithy/middleware-stack": "npm:^4.2.7"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/node-http-handler": "npm:^4.4.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
"@smithy/url-parser": "npm:^4.2.7"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.16"
"@smithy/util-defaults-mode-node": "npm:^4.2.19"
"@smithy/util-endpoints": "npm:^3.2.7"
"@smithy/util-middleware": "npm:^4.2.7"
"@smithy/util-retry": "npm:^4.2.7"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/57b1039643eb3f28da903fa8ea57d5dcbf7c0cdb04993562e68260f38695c01d5a21d9d138371510eacd7ebdff682848e0aab8d8bf9bb6b35f483501760ef4a2
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.958.0":
version: 3.964.0
resolution: "@aws-sdk/client-s3@npm:3.964.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:5.2.0"
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.964.0"
"@aws-sdk/credential-provider-node": "npm:3.964.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.957.0"
"@aws-sdk/middleware-expect-continue": "npm:3.957.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.964.0"
"@aws-sdk/middleware-host-header": "npm:3.957.0"
"@aws-sdk/middleware-location-constraint": "npm:3.957.0"
"@aws-sdk/middleware-logger": "npm:3.957.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.957.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.964.0"
"@aws-sdk/middleware-ssec": "npm:3.957.0"
"@aws-sdk/middleware-user-agent": "npm:3.964.0"
"@aws-sdk/region-config-resolver": "npm:3.957.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.964.0"
"@aws-sdk/types": "npm:3.957.0"
"@aws-sdk/util-endpoints": "npm:3.957.0"
"@aws-sdk/util-user-agent-browser": "npm:3.957.0"
"@aws-sdk/util-user-agent-node": "npm:3.964.0"
"@smithy/config-resolver": "npm:^4.4.5"
"@smithy/core": "npm:^3.20.0"
"@smithy/eventstream-serde-browser": "npm:^4.2.7"
"@smithy/eventstream-serde-config-resolver": "npm:^4.3.7"
"@smithy/eventstream-serde-node": "npm:^4.2.7"
"@smithy/fetch-http-handler": "npm:^5.3.8"
"@smithy/hash-blob-browser": "npm:^4.2.8"
"@smithy/hash-node": "npm:^4.2.7"
"@smithy/hash-stream-node": "npm:^4.2.7"
"@smithy/invalid-dependency": "npm:^4.2.7"
"@smithy/md5-js": "npm:^4.2.7"
"@smithy/middleware-content-length": "npm:^4.2.7"
"@smithy/middleware-endpoint": "npm:^4.4.1"
"@smithy/middleware-retry": "npm:^4.4.17"
"@smithy/middleware-serde": "npm:^4.2.8"
"@smithy/middleware-stack": "npm:^4.2.7"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/node-http-handler": "npm:^4.4.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
"@smithy/url-parser": "npm:^4.2.7"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.16"
"@smithy/util-defaults-mode-node": "npm:^4.2.19"
"@smithy/util-endpoints": "npm:^3.2.7"
"@smithy/util-middleware": "npm:^4.2.7"
"@smithy/util-retry": "npm:^4.2.7"
"@smithy/util-stream": "npm:^4.5.8"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.7"
tslib: "npm:^2.6.2"
checksum: 10c0/eed86cec2a66865e06156784e1a59c4d306c9b9fea972b6a4052528a344678f2dc498c35c5c3e886d24cceb38ec3ff1c18e894bfa14739ecc8b3efd53da72af9
languageName: node
linkType: hard
"@aws-sdk/client-sqs@npm:^3.960.0":
version: 3.964.0
resolution: "@aws-sdk/client-sqs@npm:3.964.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.964.0"
"@aws-sdk/credential-provider-node": "npm:3.964.0"
"@aws-sdk/middleware-host-header": "npm:3.957.0"
"@aws-sdk/middleware-logger": "npm:3.957.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.957.0"
"@aws-sdk/middleware-sdk-sqs": "npm:3.957.0"
"@aws-sdk/middleware-user-agent": "npm:3.964.0"
"@aws-sdk/region-config-resolver": "npm:3.957.0"
"@aws-sdk/types": "npm:3.957.0"
"@aws-sdk/util-endpoints": "npm:3.957.0"
"@aws-sdk/util-user-agent-browser": "npm:3.957.0"
"@aws-sdk/util-user-agent-node": "npm:3.964.0"
"@smithy/config-resolver": "npm:^4.4.5"
"@smithy/core": "npm:^3.20.0"
"@smithy/fetch-http-handler": "npm:^5.3.8"
"@smithy/hash-node": "npm:^4.2.7"
"@smithy/invalid-dependency": "npm:^4.2.7"
"@smithy/md5-js": "npm:^4.2.7"
"@smithy/middleware-content-length": "npm:^4.2.7"
"@smithy/middleware-endpoint": "npm:^4.4.1"
"@smithy/middleware-retry": "npm:^4.4.17"
"@smithy/middleware-serde": "npm:^4.2.8"
"@smithy/middleware-stack": "npm:^4.2.7"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/node-http-handler": "npm:^4.4.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
"@smithy/url-parser": "npm:^4.2.7"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.16"
"@smithy/util-defaults-mode-node": "npm:^4.2.19"
"@smithy/util-endpoints": "npm:^3.2.7"
"@smithy/util-middleware": "npm:^4.2.7"
"@smithy/util-retry": "npm:^4.2.7"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/effbdb2020d041bfc8ce8a7ac7bafa543cf4e5176d67c4a21763c56aa594d4d0dc598cab5c0e70c86a1661808b4cbe98f9d79a65a65c8aede84423166f2e4520
languageName: node
linkType: hard
"@aws-sdk/client-ssm@npm:^3.958.0":
version: 3.964.0
resolution: "@aws-sdk/client-ssm@npm:3.964.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.964.0"
"@aws-sdk/credential-provider-node": "npm:3.964.0"
"@aws-sdk/middleware-host-header": "npm:3.957.0"
"@aws-sdk/middleware-logger": "npm:3.957.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.957.0"
"@aws-sdk/middleware-user-agent": "npm:3.964.0"
"@aws-sdk/region-config-resolver": "npm:3.957.0"
"@aws-sdk/types": "npm:3.957.0"
"@aws-sdk/util-endpoints": "npm:3.957.0"
"@aws-sdk/util-user-agent-browser": "npm:3.957.0"
"@aws-sdk/util-user-agent-node": "npm:3.964.0"
"@smithy/config-resolver": "npm:^4.4.5"
"@smithy/core": "npm:^3.20.0"
"@smithy/fetch-http-handler": "npm:^5.3.8"
"@smithy/hash-node": "npm:^4.2.7"
"@smithy/invalid-dependency": "npm:^4.2.7"
"@smithy/middleware-content-length": "npm:^4.2.7"
"@smithy/middleware-endpoint": "npm:^4.4.1"
"@smithy/middleware-retry": "npm:^4.4.17"
"@smithy/middleware-serde": "npm:^4.2.8"
"@smithy/middleware-stack": "npm:^4.2.7"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/node-http-handler": "npm:^4.4.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
"@smithy/url-parser": "npm:^4.2.7"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.16"
"@smithy/util-defaults-mode-node": "npm:^4.2.19"
"@smithy/util-endpoints": "npm:^3.2.7"
"@smithy/util-middleware": "npm:^4.2.7"
"@smithy/util-retry": "npm:^4.2.7"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.7"
tslib: "npm:^2.6.2"
checksum: 10c0/45ce281309b7a0203a91708fe188e5452ba742657058bfd2816bd04055d1c8eebcfaa817845ed56aba8e28395d5ea45bfec42518618f441fd788dddf5dc89451
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.964.0":
version: 3.964.0
resolution: "@aws-sdk/client-sso@npm:3.964.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.964.0"
"@aws-sdk/middleware-host-header": "npm:3.957.0"
"@aws-sdk/middleware-logger": "npm:3.957.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.957.0"
"@aws-sdk/middleware-user-agent": "npm:3.964.0"
"@aws-sdk/region-config-resolver": "npm:3.957.0"
"@aws-sdk/types": "npm:3.957.0"
"@aws-sdk/util-endpoints": "npm:3.957.0"
"@aws-sdk/util-user-agent-browser": "npm:3.957.0"
"@aws-sdk/util-user-agent-node": "npm:3.964.0"
"@smithy/config-resolver": "npm:^4.4.5"
"@smithy/core": "npm:^3.20.0"
"@smithy/fetch-http-handler": "npm:^5.3.8"
"@smithy/hash-node": "npm:^4.2.7"
"@smithy/invalid-dependency": "npm:^4.2.7"
"@smithy/middleware-content-length": "npm:^4.2.7"
"@smithy/middleware-endpoint": "npm:^4.4.1"
"@smithy/middleware-retry": "npm:^4.4.17"
"@smithy/middleware-serde": "npm:^4.2.8"
"@smithy/middleware-stack": "npm:^4.2.7"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/node-http-handler": "npm:^4.4.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
"@smithy/url-parser": "npm:^4.2.7"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.16"
"@smithy/util-defaults-mode-node": "npm:^4.2.19"
"@smithy/util-endpoints": "npm:^3.2.7"
"@smithy/util-middleware": "npm:^4.2.7"
"@smithy/util-retry": "npm:^4.2.7"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/aef36a2c5e753d23a9aecf24d8f019722ee9f7f018a78c1830255d3dcf11a0f877b2a97f6edb66c53cee77d13d758729aad94fcd1a8320209aa822c21da86994
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.964.0":
version: 3.964.0
resolution: "@aws-sdk/core@npm:3.964.0"
dependencies:
"@aws-sdk/types": "npm:3.957.0"
"@aws-sdk/xml-builder": "npm:3.957.0"
"@smithy/core": "npm:^3.20.0"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/signature-v4": "npm:^5.3.7"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-middleware": "npm:^4.2.7"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1667f75f62c9ebc5dccb021a3f970d4c58987068593d9e479d380812fc86f2da3a57e1f260477a06cea2c452729858c6bc193dab0e59bb4a106f88c3958765b7
languageName: node
linkType: hard
"@aws-sdk/crc64-nvme@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/crc64-nvme@npm:3.957.0"
dependencies:
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/7510bcfeef001839a2b6987e98b4805e308ab5198122fcbac41dc0713391f03cd476a4697fd30656524740863af0d55e22ea7d225aa7f238ee5e6a6399a1a630
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.964.0":
version: 3.964.0
resolution: "@aws-sdk/credential-provider-env@npm:3.964.0"
dependencies:
"@aws-sdk/core": "npm:3.964.0"
"@aws-sdk/types": "npm:3.957.0"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a5d487f2360a96e719c4aa80c190f35c83b17b4235acb858b07ff980cdea28aebfa69ddc7110de5dee16e8f7a3295ed7e082299cada5c8157829fd3df0a7d582
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.964.0":
version: 3.964.0
resolution: "@aws-sdk/credential-provider-http@npm:3.964.0"
dependencies:
"@aws-sdk/core": "npm:3.964.0"
"@aws-sdk/types": "npm:3.957.0"
"@smithy/fetch-http-handler": "npm:^5.3.8"
"@smithy/node-http-handler": "npm:^4.4.7"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
"@smithy/util-stream": "npm:^4.5.8"
tslib: "npm:^2.6.2"
checksum: 10c0/8ae74d7a597daa638e29af3f837b6ca5475f949877073c0d7af4ec688e9fceeabc385162ce94692302b2368d20cf4df8b95f909d6be66869f866ae2240620a30
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.964.0":
version: 3.964.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.964.0"
dependencies:
"@aws-sdk/core": "npm:3.964.0"
"@aws-sdk/credential-provider-env": "npm:3.964.0"
"@aws-sdk/credential-provider-http": "npm:3.964.0"
"@aws-sdk/credential-provider-login": "npm:3.964.0"
"@aws-sdk/credential-provider-process": "npm:3.964.0"
"@aws-sdk/credential-provider-sso": "npm:3.964.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.964.0"
"@aws-sdk/nested-clients": "npm:3.964.0"
"@aws-sdk/types": "npm:3.957.0"
"@smithy/credential-provider-imds": "npm:^4.2.7"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/shared-ini-file-loader": "npm:^4.4.2"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d510ec54d0cb34aea73a7649f0e2d47acb611a2adf7b15ad40324ba690f78fb1730caa0c6a387f15dad36681563103d37a1e4f9bd4de7515a111daf3eb1c46ad
languageName: node
linkType: hard
"@aws-sdk/credential-provider-login@npm:3.964.0":
version: 3.964.0
resolution: "@aws-sdk/credential-provider-login@npm:3.964.0"
dependencies:
"@aws-sdk/core": "npm:3.964.0"
"@aws-sdk/nested-clients": "npm:3.964.0"
"@aws-sdk/types": "npm:3.957.0"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/shared-ini-file-loader": "npm:^4.4.2"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6e6cd2a9e7f30387425ed10f9d8be144a5f22ea7c5a39ff6e7f773d9517ef6752b14ad120af39afa05b750fb959e73b93bc0c469bbe77d7898e7905252be754d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.964.0":
version: 3.964.0
resolution: "@aws-sdk/credential-provider-node@npm:3.964.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.964.0"
"@aws-sdk/credential-provider-http": "npm:3.964.0"
"@aws-sdk/credential-provider-ini": "npm:3.964.0"
"@aws-sdk/credential-provider-process": "npm:3.964.0"
"@aws-sdk/credential-provider-sso": "npm:3.964.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.964.0"
"@aws-sdk/types": "npm:3.957.0"
"@smithy/credential-provider-imds": "npm:^4.2.7"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/shared-ini-file-loader": "npm:^4.4.2"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/808f168be2bdd62353f9689baff42929b63cd3d754d32bd344947043d2846e98853199bf3c6aed43cbb58b110efc86e043d1eafd9035e1958526f941ce0a7ddd
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.964.0":
version: 3.964.0
resolution: "@aws-sdk/credential-provider-process@npm:3.964.0"
dependencies:
"@aws-sdk/core": "npm:3.964.0"
"@aws-sdk/types": "npm:3.957.0"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/shared-ini-file-loader": "npm:^4.4.2"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e99a1856969dcbf007d9595098eb03b75c49f6972b13cffffd29b67d546062c1509a768594a0bb0eb3e1e88b74d246b0179ecd9490716fe87c738f3091d0a6a7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.964.0":
version: 3.964.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.964.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.964.0"
"@aws-sdk/core": "npm:3.964.0"
"@aws-sdk/token-providers": "npm:3.964.0"
"@aws-sdk/types": "npm:3.957.0"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/shared-ini-file-loader": "npm:^4.4.2"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b05b619acb8c13d1094d01468320dabba936b38d62a0d333f4e528a469b95f0ec2210efad952f6f8054576964b756d84cf82d732167e837a4e250dcafd8eba4c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.964.0":
version: 3.964.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.964.0"
dependencies:
"@aws-sdk/core": "npm:3.964.0"
"@aws-sdk/nested-clients": "npm:3.964.0"
"@aws-sdk/types": "npm:3.957.0"
"@smithy/property-provider": "npm:^4.2.7"
"@smithy/shared-ini-file-loader": "npm:^4.4.2"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/908d1a5bd6ab6fd21a5f677285dfe4d776eabca0459850a42bd6d4dba2026a3b49f2a66f50460b20fb9d05534e16890e2e72a0b891063502cf22f1b5238a1a15
languageName: node
linkType: hard
"@aws-sdk/lib-storage@npm:^3.958.0":
version: 3.964.0
resolution: "@aws-sdk/lib-storage@npm:3.964.0"
dependencies:
"@smithy/abort-controller": "npm:^4.2.7"
"@smithy/middleware-endpoint": "npm:^4.4.1"
"@smithy/smithy-client": "npm:^4.10.2"
buffer: "npm:5.6.0"
events: "npm:3.3.0"
stream-browserify: "npm:3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-s3": ^3.964.0
checksum: 10c0/94cad53031fb5d950f5bfc233f4d9b7517cc6a385dd35c26907f4cca61865b6cb3b8b719503cee2dd8daff286fc9b0ef9f7f6947bf7d4675163e21bf7a96afd8
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.957.0"
dependencies:
"@aws-sdk/types": "npm:3.957.0"
"@aws-sdk/util-arn-parser": "npm:3.957.0"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/types": "npm:^4.11.0"
"@smithy/util-config-provider": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a168bb376482bb9f94d845539ff97aef728e6304a1f374ebe045fed081b0f482a96aac1a6e540d07ff7db59e151574fea6b634e2aac93b66c8c91c81c61d282f
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.957.0"
dependencies:
"@aws-sdk/types": "npm:3.957.0"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ee31bb61132b027b305b679556165b9c230f2d53c4993ca7b8be073dafd1f62503e3732c4c7d8f11731ccf1262878c2819d16559d63fd8b91ba8b273adae10db
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.964.0":
version: 3.964.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.964.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-crypto/util": "npm:5.2.0"
"@aws-sdk/core": "npm:3.964.0"
"@aws-sdk/crc64-nvme": "npm:3.957.0"
"@aws-sdk/types": "npm:3.957.0"
"@smithy/is-array-buffer": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/types": "npm:^4.11.0"
"@smithy/util-middleware": "npm:^4.2.7"
"@smithy/util-stream": "npm:^4.5.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6c2f96cb06d5e7ee1b9ec04c8ef2b88632d90462734229f4b05db59c9c4b33094e7461312d60734c9bf1b69462163e1cd40d87645d55c872e5348825be2b7664
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/middleware-host-header@npm:3.957.0"
dependencies:
"@aws-sdk/types": "npm:3.957.0"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b7656460ff07a14703b45a0047a6cb81c53e0cfc0b7ebe1e8079edfb09a4400ff09e537b6a90871d005c92066c4a450ce8987fa280680286063d32e13c901883
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.957.0"
dependencies:
"@aws-sdk/types": "npm:3.957.0"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0fce30cb8af1159369ea2fad5f58d0683d72faa147c433959d53b8fdd96396bbd02641ffd78a6a3a50f9d2585e832510e5db571c1ba70d0cb18ef5fcff04186b
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/middleware-logger@npm:3.957.0"
dependencies:
"@aws-sdk/types": "npm:3.957.0"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/767707c6748c3e4035339119d3c3a12d79402d99acc37dd96a83099a1201e9130a669d5fb5f4f15d8f67e776a6a3e5d99365b19a67b4eb30aff02d33f6cbc35b
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.957.0"
dependencies:
"@aws-sdk/types": "npm:3.957.0"
"@aws/lambda-invoke-store": "npm:^0.2.2"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/21808cad790cc052f420b716b04980d1d974a17fe495ebe7d95e617d566328410f856798eef135ce85d14ea4caf1fa21f34041b41977b5c5d6d0b2b694f7bb78
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-ec2@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/middleware-sdk-ec2@npm:3.957.0"
dependencies:
"@aws-sdk/types": "npm:3.957.0"
"@aws-sdk/util-format-url": "npm:3.957.0"
"@smithy/middleware-endpoint": "npm:^4.4.1"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/signature-v4": "npm:^5.3.7"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/15fe201a5771ff94becfe50aee50a394de2c7699aa53da48a15e4d29bb2f04a3881cd1d86a2cb241b8a427f8bfa72f678e11638d3f3dc7d5b5576da06aa93a58
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.964.0":
version: 3.964.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.964.0"
dependencies:
"@aws-sdk/core": "npm:3.964.0"
"@aws-sdk/types": "npm:3.957.0"
"@aws-sdk/util-arn-parser": "npm:3.957.0"
"@smithy/core": "npm:^3.20.0"
"@smithy/node-config-provider": "npm:^4.3.7"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/signature-v4": "npm:^5.3.7"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
"@smithy/util-config-provider": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.2.7"
"@smithy/util-stream": "npm:^4.5.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d66c33b9c9feb1412f86e7366e5de4e3078a3f52b0ccba307e0f9263ad1f6200ca915b054d374fafdb2a4ea0f5ef2f56db070af73d34407f43195993bdbe34a1
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-sqs@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/middleware-sdk-sqs@npm:3.957.0"
dependencies:
"@aws-sdk/types": "npm:3.957.0"
"@smithy/smithy-client": "npm:^4.10.2"
"@smithy/types": "npm:^4.11.0"
"@smithy/util-hex-encoding": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d59799da3c3a0e59da11218850721d507d624eab353067a664e48d54ae9ff64a627cfcfae0c72288321fcbb1512f69522fea6e3467a0da9fb22087511e2bc792
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.957.0":
version: 3.957.0
resolution: "@aws-sdk/middleware-ssec@npm:3.957.0"
dependencies:
"@aws-sdk/types": "npm:3.957.0"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d9fc3ed3efa5e7e2604dd54ae05e9e19705e0d2c06e9d1193e8febc9f14e1778254332a33c72a5e0c83cfa3427d6664defdd82245ab8bf72169860486a9a2bc1
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.964.0":
version: 3.964.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.964.0"
dependencies:
"@aws-sdk/core": "npm:3.964.0"
"@aws-sdk/types": "npm:3.957.0"
"@aws-sdk/util-endpoints": "npm:3.957.0"
"@smithy/core": "npm:^3.20.0"
"@smithy/protocol-http": "npm:^5.3.7"
"@smithy/types": "npm:^4.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8653d0f666321233fb57291d445cbfa107b7baec375d34c5517c347fdad5b7bfcd22c7641db28d6d6fcd49d17b221daf08da9aa60474a8a953a758e34a54035c
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.964.0":
version: 3.964.0
resolution: "@aws-sdk/nested-clients@npm:3.964.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.964.0"
"@aws-sdk/middleware-host-header": "npm:3.957.0"
"@aws-sdk/middleware-logger": "npm:3.957.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.957.0"
"@aws-sdk/middleware-user-agent": "npm:3.964.0"
"@aws-sdk/region-config-resolver": "npm:3.957.0"
"@aws-sdk/types": "npm:3.957.0"
"@aws-sdk/util-endpoints": "npm:3.957.0"
"@aws-sdk/util-user-agent-browser": "npm:3.957.0"
"@aws-sdk/util-user-agent-node": "npm:3.964.0"
"@smithy/config-resolver": "npm:^4.4.5"
"@smithy/core": "npm:^3.20.0"
"@smithy/fetch-http-handler": "npm:^5.3.8"
"@smithy/hash-node": "npm:^4.2.7"
"@smithy/invalid-dependency": "npm:^4.2.7"