-
Notifications
You must be signed in to change notification settings - Fork 723
Expand file tree
/
Copy pathyarn.lock
More file actions
12048 lines (10909 loc) · 430 KB
/
yarn.lock
File metadata and controls
12048 lines (10909 loc) · 430 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.2.1
resolution: "@ampproject/remapping@npm:2.2.1"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 10c0/92ce5915f8901d8c7cd4f4e6e2fe7b9fd335a29955b400caa52e0e5b12ca3796ada7c2f10e78c9c5b0f9c2539dff0ffea7b19850a56e1487aa083531e1e46d43
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.3.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
"@asamuzakjp/css-color@npm:^3.1.1":
version: 3.1.1
resolution: "@asamuzakjp/css-color@npm:3.1.1"
dependencies:
"@csstools/css-calc": "npm:^2.1.2"
"@csstools/css-color-parser": "npm:^3.0.8"
"@csstools/css-parser-algorithms": "npm:^3.0.4"
"@csstools/css-tokenizer": "npm:^3.0.3"
lru-cache: "npm:^10.4.3"
checksum: 10c0/4abb010fd29de8acae8571eba738468c22cb45a1f77647df3c59a80f1c83d83d728cae3ebbf99e5c73f2517761abaaffbe5e4176fc46b5f9bf60f1478463b51e
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.875.0"
"@aws-sdk/client-ssm": "npm:^3.873.0"
"@aws-sdk/types": "npm:^3.862.0"
"@types/aws-lambda": "npm:^8.10.152"
"@vercel/ncc": "npm:^0.38.3"
aws-sdk-client-mock: "npm:^4.1.0"
aws-sdk-client-mock-jest: "npm:^4.1.0"
cron-parser: "npm:^5.3.1"
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.25.1"
"@aws-lambda-powertools/metrics": "npm:^2.25.1"
"@aws-lambda-powertools/tracer": "npm:^2.25.1"
"@types/aws-lambda": "npm:^8.10.152"
"@types/node": "npm:^22.16.5"
aws-lambda: "npm:^1.0.7"
body-parser: "npm:^2.2.0"
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.873.0"
"@aws-sdk/types": "npm:^3.862.0"
"@types/aws-lambda": "npm:^8.10.152"
"@types/node": "npm:^22.16.5"
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.25.1"
"@aws-sdk/client-ec2": "npm:^3.875.0"
"@aws-sdk/client-sqs": "npm:^3.875.0"
"@aws-sdk/types": "npm:^3.862.0"
"@middy/core": "npm:^6.4.1"
"@octokit/auth-app": "npm:8.0.2"
"@octokit/core": "npm:7.0.3"
"@octokit/plugin-throttling": "npm:11.0.1"
"@octokit/rest": "npm:22.0.0"
"@octokit/types": "npm:^14.1.0"
"@types/aws-lambda": "npm:^8.10.152"
"@types/node": "npm:^22.16.5"
"@vercel/ncc": "npm:^0.38.3"
aws-sdk-client-mock: "npm:^4.1.0"
aws-sdk-client-mock-jest: "npm:^4.1.0"
cron-parser: "npm:^5.3.1"
moment-timezone: "npm:^0.6.0"
nock: "npm:^14.0.2"
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.873.0"
"@aws-sdk/lib-storage": "npm:^3.873.0"
"@aws-sdk/types": "npm:^3.862.0"
"@middy/core": "npm:^6.4.1"
"@octokit/rest": "npm:22.0.0"
"@types/aws-lambda": "npm:^8.10.152"
"@types/node": "npm:^22.16.5"
"@types/request": "npm:^2.48.13"
"@vercel/ncc": "npm:^0.38.3"
aws-sdk-client-mock: "npm:^4.1.0"
aws-sdk-client-mock-jest: "npm:^4.1.0"
aws-sdk-client-mock-vitest: "npm:^6.1.1"
axios: "npm:^1.8.4"
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.875.0"
"@aws-sdk/types": "npm:^3.862.0"
"@middy/core": "npm:^6.4.1"
"@types/aws-lambda": "npm:^8.10.152"
"@types/node": "npm:^22.16.5"
"@vercel/ncc": "npm:^0.38.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/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.873.0"
"@aws-sdk/client-sqs": "npm:^3.875.0"
"@middy/core": "npm:^6.4.1"
"@octokit/rest": "npm:22.0.0"
"@octokit/types": "npm:^14.1.0"
"@octokit/webhooks": "npm:^14.1.3"
"@octokit/webhooks-types": "npm:^7.6.1"
"@types/aws-lambda": "npm:^8.10.152"
"@types/express": "npm:^5.0.0"
"@types/node": "npm:^22.16.5"
"@vercel/ncc": "npm:0.38.3"
aws-lambda: "npm:^1.0.7"
body-parser: "npm:^2.2.0"
express: "npm:^5.1.0"
ts-node-dev: "npm:^2.0.0"
languageName: unknown
linkType: soft
"@aws-lambda-powertools/commons@npm:2.25.1":
version: 2.25.1
resolution: "@aws-lambda-powertools/commons@npm:2.25.1"
checksum: 10c0/f1dfa52316805641e4d0b274758c1b8ab7268ddcaa8707ce4b628c3632e560771ddfa74466c1cb1d65d7e029d892f8f8c14668b6db93e84ea6fd45c6c54f7e74
languageName: node
linkType: hard
"@aws-lambda-powertools/logger@npm:^2.25.1":
version: 2.25.1
resolution: "@aws-lambda-powertools/logger@npm:2.25.1"
dependencies:
"@aws-lambda-powertools/commons": "npm:2.25.1"
lodash.merge: "npm:^4.6.2"
peerDependencies:
"@aws-lambda-powertools/jmespath": 2.25.1
"@middy/core": 4.x || 5.x || 6.x
peerDependenciesMeta:
"@aws-lambda-powertools/jmespath":
optional: true
"@middy/core":
optional: true
checksum: 10c0/c6211871fe24d7be180ef0b5733cdc33a8f8b1c5eeebd3240117d91156cac88f24e1359da19d6c3029452c0ede4b120002d58bf638b5fc39b346dd5c4ce47e7c
languageName: node
linkType: hard
"@aws-lambda-powertools/metrics@npm:^2.25.1":
version: 2.25.1
resolution: "@aws-lambda-powertools/metrics@npm:2.25.1"
dependencies:
"@aws-lambda-powertools/commons": "npm:2.25.1"
peerDependencies:
"@middy/core": 4.x || 5.x || 6.x
peerDependenciesMeta:
"@middy/core":
optional: true
checksum: 10c0/3eabce84652e49b90af1bff787977416fbd980b55c9fcf4e8544fd28ef3639ebfaf95145d09b0f1d9919fdb5667cc2bdafd734744665d2aea3ec3de31c81d329
languageName: node
linkType: hard
"@aws-lambda-powertools/parameters@npm:^2.25.1":
version: 2.25.1
resolution: "@aws-lambda-powertools/parameters@npm:2.25.1"
dependencies:
"@aws-lambda-powertools/commons": "npm:2.25.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/106abf1587dfd4067e737b52dd87f75e26987e6c8cd87248810083935c33c729a1c7e91c0c7c50d64e8b37f3e53c7f9ffcfad2e6d5e5ffa01626b5926e7d24b8
languageName: node
linkType: hard
"@aws-lambda-powertools/tracer@npm:^2.25.1":
version: 2.25.1
resolution: "@aws-lambda-powertools/tracer@npm:2.25.1"
dependencies:
"@aws-lambda-powertools/commons": "npm:2.25.1"
aws-xray-sdk-core: "npm:^3.10.3"
peerDependencies:
"@middy/core": 4.x || 5.x || 6.x
peerDependenciesMeta:
"@middy/core":
optional: true
checksum: 10c0/e65d20c6587a448730ecc2d300cedb8fe5998b31166e360212b84f3f41f4f0cc572f5de4d2e5536f5ac4dc424f5435793ca513ad39264d6e5e46381d64cb9472
languageName: node
linkType: hard
"@aws-sdk/client-ec2@npm:^3.875.0":
version: 3.875.0
resolution: "@aws-sdk/client-ec2@npm:3.875.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.873.0"
"@aws-sdk/credential-provider-node": "npm:3.873.0"
"@aws-sdk/middleware-host-header": "npm:3.873.0"
"@aws-sdk/middleware-logger": "npm:3.873.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.873.0"
"@aws-sdk/middleware-sdk-ec2": "npm:3.873.0"
"@aws-sdk/middleware-user-agent": "npm:3.873.0"
"@aws-sdk/region-config-resolver": "npm:3.873.0"
"@aws-sdk/types": "npm:3.862.0"
"@aws-sdk/util-endpoints": "npm:3.873.0"
"@aws-sdk/util-user-agent-browser": "npm:3.873.0"
"@aws-sdk/util-user-agent-node": "npm:3.873.0"
"@smithy/config-resolver": "npm:^4.1.5"
"@smithy/core": "npm:^3.8.0"
"@smithy/fetch-http-handler": "npm:^5.1.1"
"@smithy/hash-node": "npm:^4.0.5"
"@smithy/invalid-dependency": "npm:^4.0.5"
"@smithy/middleware-content-length": "npm:^4.0.5"
"@smithy/middleware-endpoint": "npm:^4.1.18"
"@smithy/middleware-retry": "npm:^4.1.19"
"@smithy/middleware-serde": "npm:^4.0.9"
"@smithy/middleware-stack": "npm:^4.0.5"
"@smithy/node-config-provider": "npm:^4.1.4"
"@smithy/node-http-handler": "npm:^4.1.1"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/smithy-client": "npm:^4.4.10"
"@smithy/types": "npm:^4.3.2"
"@smithy/url-parser": "npm:^4.0.5"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.26"
"@smithy/util-defaults-mode-node": "npm:^4.0.26"
"@smithy/util-endpoints": "npm:^3.0.7"
"@smithy/util-middleware": "npm:^4.0.5"
"@smithy/util-retry": "npm:^4.0.7"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.7"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/16218f55a45677b53ebc0404e84e467fce5fa9be7ba0ce78be51420f4ee72f9e49864e55c691eb80c60f408734c8287897bb50f911ee9f44053d2b8b03c8722f
languageName: node
linkType: hard
"@aws-sdk/client-eventbridge@npm:^3.873.0":
version: 3.873.0
resolution: "@aws-sdk/client-eventbridge@npm:3.873.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.873.0"
"@aws-sdk/credential-provider-node": "npm:3.873.0"
"@aws-sdk/middleware-host-header": "npm:3.873.0"
"@aws-sdk/middleware-logger": "npm:3.873.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.873.0"
"@aws-sdk/middleware-user-agent": "npm:3.873.0"
"@aws-sdk/region-config-resolver": "npm:3.873.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.873.0"
"@aws-sdk/types": "npm:3.862.0"
"@aws-sdk/util-endpoints": "npm:3.873.0"
"@aws-sdk/util-user-agent-browser": "npm:3.873.0"
"@aws-sdk/util-user-agent-node": "npm:3.873.0"
"@smithy/config-resolver": "npm:^4.1.5"
"@smithy/core": "npm:^3.8.0"
"@smithy/fetch-http-handler": "npm:^5.1.1"
"@smithy/hash-node": "npm:^4.0.5"
"@smithy/invalid-dependency": "npm:^4.0.5"
"@smithy/middleware-content-length": "npm:^4.0.5"
"@smithy/middleware-endpoint": "npm:^4.1.18"
"@smithy/middleware-retry": "npm:^4.1.19"
"@smithy/middleware-serde": "npm:^4.0.9"
"@smithy/middleware-stack": "npm:^4.0.5"
"@smithy/node-config-provider": "npm:^4.1.4"
"@smithy/node-http-handler": "npm:^4.1.1"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/smithy-client": "npm:^4.4.10"
"@smithy/types": "npm:^4.3.2"
"@smithy/url-parser": "npm:^4.0.5"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.26"
"@smithy/util-defaults-mode-node": "npm:^4.0.26"
"@smithy/util-endpoints": "npm:^3.0.7"
"@smithy/util-middleware": "npm:^4.0.5"
"@smithy/util-retry": "npm:^4.0.7"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/118f26b3c3fb52f37c75c0868dc0b0b860bef8ab76f129c3c89039ef33fc94cc5050afec8475adab0198f53a0434ae4a0e51df94a15f055b21b363a9ff62d6a1
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.873.0":
version: 3.873.0
resolution: "@aws-sdk/client-s3@npm:3.873.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.873.0"
"@aws-sdk/credential-provider-node": "npm:3.873.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.873.0"
"@aws-sdk/middleware-expect-continue": "npm:3.873.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.873.0"
"@aws-sdk/middleware-host-header": "npm:3.873.0"
"@aws-sdk/middleware-location-constraint": "npm:3.873.0"
"@aws-sdk/middleware-logger": "npm:3.873.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.873.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.873.0"
"@aws-sdk/middleware-ssec": "npm:3.873.0"
"@aws-sdk/middleware-user-agent": "npm:3.873.0"
"@aws-sdk/region-config-resolver": "npm:3.873.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.873.0"
"@aws-sdk/types": "npm:3.862.0"
"@aws-sdk/util-endpoints": "npm:3.873.0"
"@aws-sdk/util-user-agent-browser": "npm:3.873.0"
"@aws-sdk/util-user-agent-node": "npm:3.873.0"
"@aws-sdk/xml-builder": "npm:3.873.0"
"@smithy/config-resolver": "npm:^4.1.5"
"@smithy/core": "npm:^3.8.0"
"@smithy/eventstream-serde-browser": "npm:^4.0.5"
"@smithy/eventstream-serde-config-resolver": "npm:^4.1.3"
"@smithy/eventstream-serde-node": "npm:^4.0.5"
"@smithy/fetch-http-handler": "npm:^5.1.1"
"@smithy/hash-blob-browser": "npm:^4.0.5"
"@smithy/hash-node": "npm:^4.0.5"
"@smithy/hash-stream-node": "npm:^4.0.5"
"@smithy/invalid-dependency": "npm:^4.0.5"
"@smithy/md5-js": "npm:^4.0.5"
"@smithy/middleware-content-length": "npm:^4.0.5"
"@smithy/middleware-endpoint": "npm:^4.1.18"
"@smithy/middleware-retry": "npm:^4.1.19"
"@smithy/middleware-serde": "npm:^4.0.9"
"@smithy/middleware-stack": "npm:^4.0.5"
"@smithy/node-config-provider": "npm:^4.1.4"
"@smithy/node-http-handler": "npm:^4.1.1"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/smithy-client": "npm:^4.4.10"
"@smithy/types": "npm:^4.3.2"
"@smithy/url-parser": "npm:^4.0.5"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.26"
"@smithy/util-defaults-mode-node": "npm:^4.0.26"
"@smithy/util-endpoints": "npm:^3.0.7"
"@smithy/util-middleware": "npm:^4.0.5"
"@smithy/util-retry": "npm:^4.0.7"
"@smithy/util-stream": "npm:^4.2.4"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.7"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/054d8f5489f7c56422ac0c918cb3977dce7c17693dba756eebbd06a4df6bfcb2fc1acd94a3990357f17976589b3c09951f573677670bc74cd3d88e3b54dd1ba1
languageName: node
linkType: hard
"@aws-sdk/client-sqs@npm:^3.875.0":
version: 3.875.0
resolution: "@aws-sdk/client-sqs@npm:3.875.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.873.0"
"@aws-sdk/credential-provider-node": "npm:3.873.0"
"@aws-sdk/middleware-host-header": "npm:3.873.0"
"@aws-sdk/middleware-logger": "npm:3.873.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.873.0"
"@aws-sdk/middleware-sdk-sqs": "npm:3.873.0"
"@aws-sdk/middleware-user-agent": "npm:3.873.0"
"@aws-sdk/region-config-resolver": "npm:3.873.0"
"@aws-sdk/types": "npm:3.862.0"
"@aws-sdk/util-endpoints": "npm:3.873.0"
"@aws-sdk/util-user-agent-browser": "npm:3.873.0"
"@aws-sdk/util-user-agent-node": "npm:3.873.0"
"@smithy/config-resolver": "npm:^4.1.5"
"@smithy/core": "npm:^3.8.0"
"@smithy/fetch-http-handler": "npm:^5.1.1"
"@smithy/hash-node": "npm:^4.0.5"
"@smithy/invalid-dependency": "npm:^4.0.5"
"@smithy/md5-js": "npm:^4.0.5"
"@smithy/middleware-content-length": "npm:^4.0.5"
"@smithy/middleware-endpoint": "npm:^4.1.18"
"@smithy/middleware-retry": "npm:^4.1.19"
"@smithy/middleware-serde": "npm:^4.0.9"
"@smithy/middleware-stack": "npm:^4.0.5"
"@smithy/node-config-provider": "npm:^4.1.4"
"@smithy/node-http-handler": "npm:^4.1.1"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/smithy-client": "npm:^4.4.10"
"@smithy/types": "npm:^4.3.2"
"@smithy/url-parser": "npm:^4.0.5"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.26"
"@smithy/util-defaults-mode-node": "npm:^4.0.26"
"@smithy/util-endpoints": "npm:^3.0.7"
"@smithy/util-middleware": "npm:^4.0.5"
"@smithy/util-retry": "npm:^4.0.7"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/3cc0059d8f4605dfc25d370bf32c9489a0bae99ea8c34fb980a75338a12349e12577cccc09d65b0abcbdd3f1d5c73cd069844b055b71fcfeb60cdfb54caf7d0e
languageName: node
linkType: hard
"@aws-sdk/client-ssm@npm:^3.873.0":
version: 3.873.0
resolution: "@aws-sdk/client-ssm@npm:3.873.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.873.0"
"@aws-sdk/credential-provider-node": "npm:3.873.0"
"@aws-sdk/middleware-host-header": "npm:3.873.0"
"@aws-sdk/middleware-logger": "npm:3.873.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.873.0"
"@aws-sdk/middleware-user-agent": "npm:3.873.0"
"@aws-sdk/region-config-resolver": "npm:3.873.0"
"@aws-sdk/types": "npm:3.862.0"
"@aws-sdk/util-endpoints": "npm:3.873.0"
"@aws-sdk/util-user-agent-browser": "npm:3.873.0"
"@aws-sdk/util-user-agent-node": "npm:3.873.0"
"@smithy/config-resolver": "npm:^4.1.5"
"@smithy/core": "npm:^3.8.0"
"@smithy/fetch-http-handler": "npm:^5.1.1"
"@smithy/hash-node": "npm:^4.0.5"
"@smithy/invalid-dependency": "npm:^4.0.5"
"@smithy/middleware-content-length": "npm:^4.0.5"
"@smithy/middleware-endpoint": "npm:^4.1.18"
"@smithy/middleware-retry": "npm:^4.1.19"
"@smithy/middleware-serde": "npm:^4.0.9"
"@smithy/middleware-stack": "npm:^4.0.5"
"@smithy/node-config-provider": "npm:^4.1.4"
"@smithy/node-http-handler": "npm:^4.1.1"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/smithy-client": "npm:^4.4.10"
"@smithy/types": "npm:^4.3.2"
"@smithy/url-parser": "npm:^4.0.5"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.26"
"@smithy/util-defaults-mode-node": "npm:^4.0.26"
"@smithy/util-endpoints": "npm:^3.0.7"
"@smithy/util-middleware": "npm:^4.0.5"
"@smithy/util-retry": "npm:^4.0.7"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.7"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/79b952b2aed920be78b3044928062a6adedada8baef880b13bd07fc87e00d30b83be6b8d74f16e85d18d70a0284b9261eac42121fdf1d51bf8f3544dd9d6ad89
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.873.0":
version: 3.873.0
resolution: "@aws-sdk/client-sso@npm:3.873.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.873.0"
"@aws-sdk/middleware-host-header": "npm:3.873.0"
"@aws-sdk/middleware-logger": "npm:3.873.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.873.0"
"@aws-sdk/middleware-user-agent": "npm:3.873.0"
"@aws-sdk/region-config-resolver": "npm:3.873.0"
"@aws-sdk/types": "npm:3.862.0"
"@aws-sdk/util-endpoints": "npm:3.873.0"
"@aws-sdk/util-user-agent-browser": "npm:3.873.0"
"@aws-sdk/util-user-agent-node": "npm:3.873.0"
"@smithy/config-resolver": "npm:^4.1.5"
"@smithy/core": "npm:^3.8.0"
"@smithy/fetch-http-handler": "npm:^5.1.1"
"@smithy/hash-node": "npm:^4.0.5"
"@smithy/invalid-dependency": "npm:^4.0.5"
"@smithy/middleware-content-length": "npm:^4.0.5"
"@smithy/middleware-endpoint": "npm:^4.1.18"
"@smithy/middleware-retry": "npm:^4.1.19"
"@smithy/middleware-serde": "npm:^4.0.9"
"@smithy/middleware-stack": "npm:^4.0.5"
"@smithy/node-config-provider": "npm:^4.1.4"
"@smithy/node-http-handler": "npm:^4.1.1"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/smithy-client": "npm:^4.4.10"
"@smithy/types": "npm:^4.3.2"
"@smithy/url-parser": "npm:^4.0.5"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.26"
"@smithy/util-defaults-mode-node": "npm:^4.0.26"
"@smithy/util-endpoints": "npm:^3.0.7"
"@smithy/util-middleware": "npm:^4.0.5"
"@smithy/util-retry": "npm:^4.0.7"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/fe8e19572c128465162a39e68526fdc2eade75db81fbf30fdd2d4dc79679f108dc985c8e57e76565ee46d6179bef37347ad4d2c83bb8d9e021ca3f53c2d27f33
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.873.0":
version: 3.873.0
resolution: "@aws-sdk/core@npm:3.873.0"
dependencies:
"@aws-sdk/types": "npm:3.862.0"
"@aws-sdk/xml-builder": "npm:3.873.0"
"@smithy/core": "npm:^3.8.0"
"@smithy/node-config-provider": "npm:^4.1.4"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/signature-v4": "npm:^5.1.3"
"@smithy/smithy-client": "npm:^4.4.10"
"@smithy/types": "npm:^4.3.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.5"
"@smithy/util-utf8": "npm:^4.0.0"
fast-xml-parser: "npm:5.2.5"
tslib: "npm:^2.6.2"
checksum: 10c0/894af2a10e29ef37cf59854d3c52b7e0b3f040ba440a47a257258a43a1a0b39f959c72bfe4380e52a39ff3e947a3cafe0eabcd5b2fea26dccf9f6355d84f2595
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.873.0":
version: 3.873.0
resolution: "@aws-sdk/credential-provider-env@npm:3.873.0"
dependencies:
"@aws-sdk/core": "npm:3.873.0"
"@aws-sdk/types": "npm:3.862.0"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/2763cc38bfd9e516d3651024fe43320b0fb6dee144b7e6fed52661baec57aca661b8c9ee102662748e38ddc7c7fc4b6b20df782fcb5502c48170d7cb87e3ca29
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.873.0":
version: 3.873.0
resolution: "@aws-sdk/credential-provider-http@npm:3.873.0"
dependencies:
"@aws-sdk/core": "npm:3.873.0"
"@aws-sdk/types": "npm:3.862.0"
"@smithy/fetch-http-handler": "npm:^5.1.1"
"@smithy/node-http-handler": "npm:^4.1.1"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/smithy-client": "npm:^4.4.10"
"@smithy/types": "npm:^4.3.2"
"@smithy/util-stream": "npm:^4.2.4"
tslib: "npm:^2.6.2"
checksum: 10c0/50cc6f3fdbbfe518c3e7fd93a05fd54a24c6f30269b924465a5a8b391030f37769c742ddb5572e4a3ec9180043f1f07855d8d7d5a39698e2957e1bb1f91749df
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.873.0":
version: 3.873.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.873.0"
dependencies:
"@aws-sdk/core": "npm:3.873.0"
"@aws-sdk/credential-provider-env": "npm:3.873.0"
"@aws-sdk/credential-provider-http": "npm:3.873.0"
"@aws-sdk/credential-provider-process": "npm:3.873.0"
"@aws-sdk/credential-provider-sso": "npm:3.873.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.873.0"
"@aws-sdk/nested-clients": "npm:3.873.0"
"@aws-sdk/types": "npm:3.862.0"
"@smithy/credential-provider-imds": "npm:^4.0.7"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/shared-ini-file-loader": "npm:^4.0.5"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/5c314a7ae80eb7a05616186f9fd26b523b4e97b5df59cf3e8be501b3167335abb62f74f1153a73f601fbbe3588d8f182c585477b555b9f59db9a26e493440d4d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.873.0":
version: 3.873.0
resolution: "@aws-sdk/credential-provider-node@npm:3.873.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.873.0"
"@aws-sdk/credential-provider-http": "npm:3.873.0"
"@aws-sdk/credential-provider-ini": "npm:3.873.0"
"@aws-sdk/credential-provider-process": "npm:3.873.0"
"@aws-sdk/credential-provider-sso": "npm:3.873.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.873.0"
"@aws-sdk/types": "npm:3.862.0"
"@smithy/credential-provider-imds": "npm:^4.0.7"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/shared-ini-file-loader": "npm:^4.0.5"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/1a8129d392e5e7975419fa54fa6995efc75784daf3a8a367f4bce0bb088d87405ce35b6c3e3f28b96c1517fee44068aebc3707988dcafce19c825c4573a68ff3
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.873.0":
version: 3.873.0
resolution: "@aws-sdk/credential-provider-process@npm:3.873.0"
dependencies:
"@aws-sdk/core": "npm:3.873.0"
"@aws-sdk/types": "npm:3.862.0"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/shared-ini-file-loader": "npm:^4.0.5"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/d1502eb5af899dfa34dc7bf5f57702558b1483a1db17e5cc9191bdd784dd01f0cbd09a4e9c0bcff30c75ac903d043aecf774a546cf507f97cf658e617ab7ffeb
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.873.0":
version: 3.873.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.873.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.873.0"
"@aws-sdk/core": "npm:3.873.0"
"@aws-sdk/token-providers": "npm:3.873.0"
"@aws-sdk/types": "npm:3.862.0"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/shared-ini-file-loader": "npm:^4.0.5"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/6ec9c3b956ea24455045e400be8defcfb232fd4826664a3e7eb81540daedbc8a1c0ded2c77e94d2ae39e2613118f513ca71b55e126ee4ec157c4155b4cd9d653
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.873.0":
version: 3.873.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.873.0"
dependencies:
"@aws-sdk/core": "npm:3.873.0"
"@aws-sdk/nested-clients": "npm:3.873.0"
"@aws-sdk/types": "npm:3.862.0"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/d0a205a595face1e568d34448d7eeed5c39dc1b1c6d8d4a293ac70ac0f90e48837c9ec3c55320a403989ac8b5a831b8f7a78429d3843239fbfcc1e27be4fcdba
languageName: node
linkType: hard
"@aws-sdk/lib-storage@npm:^3.873.0":
version: 3.873.0
resolution: "@aws-sdk/lib-storage@npm:3.873.0"
dependencies:
"@smithy/abort-controller": "npm:^4.0.5"
"@smithy/middleware-endpoint": "npm:^4.1.18"
"@smithy/smithy-client": "npm:^4.4.10"
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.873.0
checksum: 10c0/32d0ce1c089d6223fcffaf7fcfec626021c86eeae1cd3a58ca88d269319b547426c74cbad6b7a378aa3d4d7a02529c3a73d5b479257b13acdc079390ecae374f
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.873.0":
version: 3.873.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.873.0"
dependencies:
"@aws-sdk/types": "npm:3.862.0"
"@aws-sdk/util-arn-parser": "npm:3.873.0"
"@smithy/node-config-provider": "npm:^4.1.4"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/types": "npm:^4.3.2"
"@smithy/util-config-provider": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/08b8c7204ab12f9ee877d2cdd1f8422bdf253731fcb1331c880f4d69872c15da0e076e996739e3d8ebb33f6da76da0d3ea42f4eca95955a7c5a004ee023ab284
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.873.0":
version: 3.873.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.873.0"
dependencies:
"@aws-sdk/types": "npm:3.862.0"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/738e1f33b47f91dc5b3cc8a2564e47d72b9e3add99e9336128545303fa01cf96c4b6a75bee5e477e6369fbe2ae4c7449aa754a246d5c0027c51c9e1bd7482bec
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.873.0":
version: 3.873.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.873.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.873.0"
"@aws-sdk/types": "npm:3.862.0"
"@smithy/is-array-buffer": "npm:^4.0.0"
"@smithy/node-config-provider": "npm:^4.1.4"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/types": "npm:^4.3.2"
"@smithy/util-middleware": "npm:^4.0.5"
"@smithy/util-stream": "npm:^4.2.4"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/4286a68d03157e98e84ca9bec530ef1c734c654984485db778a322749cf787af3f273eedaf38a7e43a72c4a538d22035b68c8b7cb562adaae798d5b0e054de8e
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.873.0":
version: 3.873.0
resolution: "@aws-sdk/middleware-host-header@npm:3.873.0"
dependencies:
"@aws-sdk/types": "npm:3.862.0"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/177f42c4342666ba8270a3a0f5de16e713b7245b8b5435f1b4863d46cbad9ea8930d23d9731d79ffc0b960be7f70a96693fa0b524a2dd24ca61d1ce8873c9b55
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.873.0":
version: 3.873.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.873.0"
dependencies:
"@aws-sdk/types": "npm:3.862.0"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/a76c3df86ba5ac393c9cfd4c4ff9db8b486ea299b5f27f73e12b8d73700bddd87b0c826b380c3ba02208f2e1f98aa7e0086109143ba984f2f96e0bf0cbc64d25
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.873.0":
version: 3.873.0
resolution: "@aws-sdk/middleware-logger@npm:3.873.0"
dependencies:
"@aws-sdk/types": "npm:3.862.0"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/12fbb3c98a5873807834d983189470cee8371ca34b9ba3bdca31e3a81c011b35be260278ae8b3baf64385d4741c001d0749c2686f0747f64a801825084351efb
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.873.0":
version: 3.873.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.873.0"
dependencies:
"@aws-sdk/types": "npm:3.862.0"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/ce8b10a9da07faf41246c581d342ac3a8e4373bd8c1e07e131573575fed8d6d379e15b4d8f0efebd84936bf4fc800ae7719e36b50931bcf4df2ac547bde31f61
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-ec2@npm:3.873.0":
version: 3.873.0
resolution: "@aws-sdk/middleware-sdk-ec2@npm:3.873.0"
dependencies:
"@aws-sdk/types": "npm:3.862.0"
"@aws-sdk/util-format-url": "npm:3.873.0"
"@smithy/middleware-endpoint": "npm:^4.1.18"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/signature-v4": "npm:^5.1.3"
"@smithy/smithy-client": "npm:^4.4.10"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/196a7fbc8d503f0749b4d31bf78718bec9836e12992ce5b6f773fec9634bcededa04a6e97945d49655c0293475edf6656b86e4439679b61f8d69b203a3e8e6a4
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.873.0":
version: 3.873.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.873.0"
dependencies:
"@aws-sdk/core": "npm:3.873.0"
"@aws-sdk/types": "npm:3.862.0"
"@aws-sdk/util-arn-parser": "npm:3.873.0"
"@smithy/core": "npm:^3.8.0"
"@smithy/node-config-provider": "npm:^4.1.4"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/signature-v4": "npm:^5.1.3"
"@smithy/smithy-client": "npm:^4.4.10"
"@smithy/types": "npm:^4.3.2"
"@smithy/util-config-provider": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.5"
"@smithy/util-stream": "npm:^4.2.4"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8bac428749123994b04e51ba2893a04e53022933a21fed4abbcef8f013014f7f1673fecb490285a123c484fa3e7c4d1e64fb8c679e6d1f259a1ecc03e0e553ef
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-sqs@npm:3.873.0":
version: 3.873.0
resolution: "@aws-sdk/middleware-sdk-sqs@npm:3.873.0"
dependencies:
"@aws-sdk/types": "npm:3.862.0"
"@smithy/smithy-client": "npm:^4.4.10"
"@smithy/types": "npm:^4.3.2"
"@smithy/util-hex-encoding": "npm:^4.0.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/896f61047bfd22f8fd361971ec59c4e2aa8e07484dc3d6cdd8effd098140bbba11bcbd0d007dae50e2f3e18f095f95428048edc97af18dada22ecf3339fa681e
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.873.0":
version: 3.873.0
resolution: "@aws-sdk/middleware-ssec@npm:3.873.0"
dependencies:
"@aws-sdk/types": "npm:3.862.0"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/87f0ecfff55b922c61016b802c5c41a82222beb072b66dee0bc9bb422a1297c92444444a25b3cf4ea416a1be3cd85401beebc929e6661473f778846685b95c35
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.873.0":
version: 3.873.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.873.0"
dependencies:
"@aws-sdk/core": "npm:3.873.0"
"@aws-sdk/types": "npm:3.862.0"
"@aws-sdk/util-endpoints": "npm:3.873.0"
"@smithy/core": "npm:^3.8.0"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/4cdd2d08f206099900dff674eda0a115e09b8a809d9a420baf720cc096949d82ca9f6e9f78d2a06534af9a7be3b59ac126f200ccd5dc61699fa1371422184e14
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.873.0":
version: 3.873.0
resolution: "@aws-sdk/nested-clients@npm:3.873.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.873.0"
"@aws-sdk/middleware-host-header": "npm:3.873.0"
"@aws-sdk/middleware-logger": "npm:3.873.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.873.0"
"@aws-sdk/middleware-user-agent": "npm:3.873.0"
"@aws-sdk/region-config-resolver": "npm:3.873.0"
"@aws-sdk/types": "npm:3.862.0"
"@aws-sdk/util-endpoints": "npm:3.873.0"
"@aws-sdk/util-user-agent-browser": "npm:3.873.0"
"@aws-sdk/util-user-agent-node": "npm:3.873.0"
"@smithy/config-resolver": "npm:^4.1.5"
"@smithy/core": "npm:^3.8.0"
"@smithy/fetch-http-handler": "npm:^5.1.1"
"@smithy/hash-node": "npm:^4.0.5"
"@smithy/invalid-dependency": "npm:^4.0.5"
"@smithy/middleware-content-length": "npm:^4.0.5"