This repository has been archived by the owner on May 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pnp.cjs
executable file
·12096 lines (12000 loc) · 606 KB
/
.pnp.cjs
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
#!/usr/bin/env node
/* eslint-disable */
"use strict";
const RAW_RUNTIME_STATE =
'{\
"__info": [\
"This file is automatically generated. Do not touch it, or risk",\
"your modifications being lost."\
],\
"dependencyTreeRoots": [\
{\
"name": "@povio/ecs-deploy-cli",\
"reference": "workspace:."\
}\
],\
"enableTopLevelFallback": true,\
"ignorePatternData": "(^(?:\\\\.yarn\\\\/sdks(?:\\\\/(?!\\\\.{1,2}(?:\\\\/|$))(?:(?:(?!(?:^|\\\\/)\\\\.{1,2}(?:\\\\/|$)).)*?)|$))$)",\
"fallbackExclusionList": [\
["@povio/ecs-deploy-cli", ["workspace:."]]\
],\
"fallbackPool": [\
],\
"packageRegistryData": [\
[null, [\
[null, {\
"packageLocation": "./",\
"packageDependencies": [\
["@aws-sdk/client-ecr", "npm:3.509.0"],\
["@aws-sdk/client-ecs", "npm:3.509.0"],\
["@aws-sdk/client-ssm", "npm:3.509.0"],\
["@aws-sdk/client-sts", "virtual:48dcf7fc182cdaef4d4432419639f950455fb527e18e704272b60d7cf8b3b0537a55f67eeb88ec33411df807af7a5575070200d4a3bdcb4ed69194d56aaa86a3#npm:3.507.0"],\
["@aws-sdk/credential-provider-node", "npm:3.509.0"],\
["@aws-sdk/credential-providers", "npm:3.509.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@eslint/js", "npm:8.56.0"],\
["@smithy/node-config-provider", "npm:2.2.1"],\
["@types/diff", "npm:5.0.9"],\
["@types/eslint__js", "npm:8.42.3"],\
["@types/js-yaml", "npm:4.0.9"],\
["@types/lodash.merge", "npm:4.6.9"],\
["@types/node", "npm:20.11.17"],\
["@types/prettier", "npm:3.0.0"],\
["@types/prompt-sync", "npm:4.2.3"],\
["@types/semver", "npm:7.5.6"],\
["@types/yargs", "npm:17.0.32"],\
["@typescript-eslint/eslint-plugin", "virtual:1d8f0750cc3e2a7952d9dc293e5ab5adfaef245dd6e250a535ac119860f638982e78d0c82652e1073553fdea3bb1278a3d0ee1f7dde46dce9d2ebaa68f044a05#npm:6.21.0"],\
["@typescript-eslint/parser", "virtual:1d8f0750cc3e2a7952d9dc293e5ab5adfaef245dd6e250a535ac119860f638982e78d0c82652e1073553fdea3bb1278a3d0ee1f7dde46dce9d2ebaa68f044a05#npm:6.21.0"],\
["chalk", "npm:5.3.0"],\
["cosmiconfig", "virtual:1d8f0750cc3e2a7952d9dc293e5ab5adfaef245dd6e250a535ac119860f638982e78d0c82652e1073553fdea3bb1278a3d0ee1f7dde46dce9d2ebaa68f044a05#npm:9.0.0"],\
["diff", "npm:5.1.0"],\
["esbuild", "npm:0.19.12"],\
["eslint", "npm:8.56.0"],\
["eslint-config-prettier", "virtual:1d8f0750cc3e2a7952d9dc293e5ab5adfaef245dd6e250a535ac119860f638982e78d0c82652e1073553fdea3bb1278a3d0ee1f7dde46dce9d2ebaa68f044a05#npm:9.1.0"],\
["eslint-plugin-prettier", "virtual:1d8f0750cc3e2a7952d9dc293e5ab5adfaef245dd6e250a535ac119860f638982e78d0c82652e1073553fdea3bb1278a3d0ee1f7dde46dce9d2ebaa68f044a05#npm:5.1.3"],\
["js-yaml", "npm:4.1.0"],\
["lodash.merge", "npm:4.6.2"],\
["prettier", "npm:3.2.5"],\
["prompt-sync", "npm:4.2.0"],\
["reflect-metadata", "npm:0.2.1"],\
["semver", "npm:7.6.0"],\
["simple-git", "npm:3.22.0"],\
["tsx", "npm:4.7.0"],\
["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin<compat/typescript>::version=5.3.3&hash=e012d7"],\
["yargs", "npm:17.7.2"],\
["zod", "npm:3.22.4"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@aashutoshrathi/word-wrap", [\
["npm:1.2.6", {\
"packageLocation": "../../../.yarn/berry/cache/@aashutoshrathi-word-wrap-npm-1.2.6-5b1d95e487-10c0.zip/node_modules/@aashutoshrathi/word-wrap/",\
"packageDependencies": [\
["@aashutoshrathi/word-wrap", "npm:1.2.6"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-crypto/crc32", [\
["npm:3.0.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-crypto-crc32-npm-3.0.0-10d83e85b0-10c0.zip/node_modules/@aws-crypto/crc32/",\
"packageDependencies": [\
["@aws-crypto/crc32", "npm:3.0.0"],\
["@aws-crypto/util", "npm:3.0.0"],\
["@aws-sdk/types", "npm:3.408.0"],\
["tslib", "npm:1.14.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-crypto/ie11-detection", [\
["npm:3.0.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-crypto-ie11-detection-npm-3.0.0-71f24dcf6a-10c0.zip/node_modules/@aws-crypto/ie11-detection/",\
"packageDependencies": [\
["@aws-crypto/ie11-detection", "npm:3.0.0"],\
["tslib", "npm:1.14.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-crypto/sha256-browser", [\
["npm:3.0.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-crypto-sha256-browser-npm-3.0.0-467f48a447-10c0.zip/node_modules/@aws-crypto/sha256-browser/",\
"packageDependencies": [\
["@aws-crypto/sha256-browser", "npm:3.0.0"],\
["@aws-crypto/ie11-detection", "npm:3.0.0"],\
["@aws-crypto/sha256-js", "npm:3.0.0"],\
["@aws-crypto/supports-web-crypto", "npm:3.0.0"],\
["@aws-crypto/util", "npm:3.0.0"],\
["@aws-sdk/types", "npm:3.408.0"],\
["@aws-sdk/util-locate-window", "npm:3.55.0"],\
["@aws-sdk/util-utf8-browser", "npm:3.109.0"],\
["tslib", "npm:1.14.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-crypto/sha256-js", [\
["npm:3.0.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-crypto-sha256-js-npm-3.0.0-2ba1013fd6-10c0.zip/node_modules/@aws-crypto/sha256-js/",\
"packageDependencies": [\
["@aws-crypto/sha256-js", "npm:3.0.0"],\
["@aws-crypto/util", "npm:3.0.0"],\
["@aws-sdk/types", "npm:3.408.0"],\
["tslib", "npm:1.14.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-crypto/supports-web-crypto", [\
["npm:3.0.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-crypto-supports-web-crypto-npm-3.0.0-55222d294a-10c0.zip/node_modules/@aws-crypto/supports-web-crypto/",\
"packageDependencies": [\
["@aws-crypto/supports-web-crypto", "npm:3.0.0"],\
["tslib", "npm:1.14.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-crypto/util", [\
["npm:3.0.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-crypto-util-npm-3.0.0-6c4b38c78e-10c0.zip/node_modules/@aws-crypto/util/",\
"packageDependencies": [\
["@aws-crypto/util", "npm:3.0.0"],\
["@aws-sdk/types", "npm:3.408.0"],\
["@aws-sdk/util-utf8-browser", "npm:3.109.0"],\
["tslib", "npm:1.14.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/client-cognito-identity", [\
["npm:3.509.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-client-cognito-identity-npm-3.509.0-102302facd-10c0.zip/node_modules/@aws-sdk/client-cognito-identity/",\
"packageDependencies": [\
["@aws-sdk/client-cognito-identity", "npm:3.509.0"],\
["@aws-crypto/sha256-browser", "npm:3.0.0"],\
["@aws-crypto/sha256-js", "npm:3.0.0"],\
["@aws-sdk/client-sts", "virtual:48dcf7fc182cdaef4d4432419639f950455fb527e18e704272b60d7cf8b3b0537a55f67eeb88ec33411df807af7a5575070200d4a3bdcb4ed69194d56aaa86a3#npm:3.507.0"],\
["@aws-sdk/core", "npm:3.496.0"],\
["@aws-sdk/credential-provider-node", "npm:3.509.0"],\
["@aws-sdk/middleware-host-header", "npm:3.502.0"],\
["@aws-sdk/middleware-logger", "npm:3.502.0"],\
["@aws-sdk/middleware-recursion-detection", "npm:3.502.0"],\
["@aws-sdk/middleware-signing", "npm:3.502.0"],\
["@aws-sdk/middleware-user-agent", "npm:3.502.0"],\
["@aws-sdk/region-config-resolver", "npm:3.502.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@aws-sdk/util-endpoints", "npm:3.502.0"],\
["@aws-sdk/util-user-agent-browser", "npm:3.502.0"],\
["@aws-sdk/util-user-agent-node", "virtual:09996bc998754d3644d9f93ee46f94a65e1e78bc24830355c614ab6b2bd2c567686dee02ded35c889da5040dabb83c37af9b0b5f64f9aadcd5c774c90932ecc8#npm:3.502.0"],\
["@smithy/config-resolver", "npm:2.1.1"],\
["@smithy/core", "npm:1.3.2"],\
["@smithy/fetch-http-handler", "npm:2.4.1"],\
["@smithy/hash-node", "npm:2.1.1"],\
["@smithy/invalid-dependency", "npm:2.1.1"],\
["@smithy/middleware-content-length", "npm:2.1.1"],\
["@smithy/middleware-endpoint", "npm:2.4.1"],\
["@smithy/middleware-retry", "npm:2.1.1"],\
["@smithy/middleware-serde", "npm:2.1.1"],\
["@smithy/middleware-stack", "npm:2.1.1"],\
["@smithy/node-config-provider", "npm:2.2.1"],\
["@smithy/node-http-handler", "npm:2.3.1"],\
["@smithy/protocol-http", "npm:3.1.1"],\
["@smithy/smithy-client", "npm:2.3.1"],\
["@smithy/types", "npm:2.9.1"],\
["@smithy/url-parser", "npm:2.1.1"],\
["@smithy/util-base64", "npm:2.1.1"],\
["@smithy/util-body-length-browser", "npm:2.1.1"],\
["@smithy/util-body-length-node", "npm:2.2.1"],\
["@smithy/util-defaults-mode-browser", "npm:2.1.1"],\
["@smithy/util-defaults-mode-node", "npm:2.2.0"],\
["@smithy/util-endpoints", "npm:1.1.1"],\
["@smithy/util-retry", "npm:2.1.1"],\
["@smithy/util-utf8", "npm:2.1.1"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/client-ecr", [\
["npm:3.509.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-client-ecr-npm-3.509.0-48dcf7fc18-10c0.zip/node_modules/@aws-sdk/client-ecr/",\
"packageDependencies": [\
["@aws-sdk/client-ecr", "npm:3.509.0"],\
["@aws-crypto/sha256-browser", "npm:3.0.0"],\
["@aws-crypto/sha256-js", "npm:3.0.0"],\
["@aws-sdk/client-sts", "virtual:48dcf7fc182cdaef4d4432419639f950455fb527e18e704272b60d7cf8b3b0537a55f67eeb88ec33411df807af7a5575070200d4a3bdcb4ed69194d56aaa86a3#npm:3.507.0"],\
["@aws-sdk/core", "npm:3.496.0"],\
["@aws-sdk/credential-provider-node", "npm:3.509.0"],\
["@aws-sdk/middleware-host-header", "npm:3.502.0"],\
["@aws-sdk/middleware-logger", "npm:3.502.0"],\
["@aws-sdk/middleware-recursion-detection", "npm:3.502.0"],\
["@aws-sdk/middleware-signing", "npm:3.502.0"],\
["@aws-sdk/middleware-user-agent", "npm:3.502.0"],\
["@aws-sdk/region-config-resolver", "npm:3.502.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@aws-sdk/util-endpoints", "npm:3.502.0"],\
["@aws-sdk/util-user-agent-browser", "npm:3.502.0"],\
["@aws-sdk/util-user-agent-node", "virtual:09996bc998754d3644d9f93ee46f94a65e1e78bc24830355c614ab6b2bd2c567686dee02ded35c889da5040dabb83c37af9b0b5f64f9aadcd5c774c90932ecc8#npm:3.502.0"],\
["@smithy/config-resolver", "npm:2.1.1"],\
["@smithy/core", "npm:1.3.2"],\
["@smithy/fetch-http-handler", "npm:2.4.1"],\
["@smithy/hash-node", "npm:2.1.1"],\
["@smithy/invalid-dependency", "npm:2.1.1"],\
["@smithy/middleware-content-length", "npm:2.1.1"],\
["@smithy/middleware-endpoint", "npm:2.4.1"],\
["@smithy/middleware-retry", "npm:2.1.1"],\
["@smithy/middleware-serde", "npm:2.1.1"],\
["@smithy/middleware-stack", "npm:2.1.1"],\
["@smithy/node-config-provider", "npm:2.2.1"],\
["@smithy/node-http-handler", "npm:2.3.1"],\
["@smithy/protocol-http", "npm:3.1.1"],\
["@smithy/smithy-client", "npm:2.3.1"],\
["@smithy/types", "npm:2.9.1"],\
["@smithy/url-parser", "npm:2.1.1"],\
["@smithy/util-base64", "npm:2.1.1"],\
["@smithy/util-body-length-browser", "npm:2.1.1"],\
["@smithy/util-body-length-node", "npm:2.2.1"],\
["@smithy/util-defaults-mode-browser", "npm:2.1.1"],\
["@smithy/util-defaults-mode-node", "npm:2.2.0"],\
["@smithy/util-endpoints", "npm:1.1.1"],\
["@smithy/util-retry", "npm:2.1.1"],\
["@smithy/util-utf8", "npm:2.1.1"],\
["@smithy/util-waiter", "npm:2.1.1"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/client-ecs", [\
["npm:3.509.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-client-ecs-npm-3.509.0-6b0f50e878-10c0.zip/node_modules/@aws-sdk/client-ecs/",\
"packageDependencies": [\
["@aws-sdk/client-ecs", "npm:3.509.0"],\
["@aws-crypto/sha256-browser", "npm:3.0.0"],\
["@aws-crypto/sha256-js", "npm:3.0.0"],\
["@aws-sdk/client-sts", "virtual:48dcf7fc182cdaef4d4432419639f950455fb527e18e704272b60d7cf8b3b0537a55f67eeb88ec33411df807af7a5575070200d4a3bdcb4ed69194d56aaa86a3#npm:3.507.0"],\
["@aws-sdk/core", "npm:3.496.0"],\
["@aws-sdk/credential-provider-node", "npm:3.509.0"],\
["@aws-sdk/middleware-host-header", "npm:3.502.0"],\
["@aws-sdk/middleware-logger", "npm:3.502.0"],\
["@aws-sdk/middleware-recursion-detection", "npm:3.502.0"],\
["@aws-sdk/middleware-signing", "npm:3.502.0"],\
["@aws-sdk/middleware-user-agent", "npm:3.502.0"],\
["@aws-sdk/region-config-resolver", "npm:3.502.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@aws-sdk/util-endpoints", "npm:3.502.0"],\
["@aws-sdk/util-user-agent-browser", "npm:3.502.0"],\
["@aws-sdk/util-user-agent-node", "virtual:09996bc998754d3644d9f93ee46f94a65e1e78bc24830355c614ab6b2bd2c567686dee02ded35c889da5040dabb83c37af9b0b5f64f9aadcd5c774c90932ecc8#npm:3.502.0"],\
["@smithy/config-resolver", "npm:2.1.1"],\
["@smithy/core", "npm:1.3.2"],\
["@smithy/fetch-http-handler", "npm:2.4.1"],\
["@smithy/hash-node", "npm:2.1.1"],\
["@smithy/invalid-dependency", "npm:2.1.1"],\
["@smithy/middleware-content-length", "npm:2.1.1"],\
["@smithy/middleware-endpoint", "npm:2.4.1"],\
["@smithy/middleware-retry", "npm:2.1.1"],\
["@smithy/middleware-serde", "npm:2.1.1"],\
["@smithy/middleware-stack", "npm:2.1.1"],\
["@smithy/node-config-provider", "npm:2.2.1"],\
["@smithy/node-http-handler", "npm:2.3.1"],\
["@smithy/protocol-http", "npm:3.1.1"],\
["@smithy/smithy-client", "npm:2.3.1"],\
["@smithy/types", "npm:2.9.1"],\
["@smithy/url-parser", "npm:2.1.1"],\
["@smithy/util-base64", "npm:2.1.1"],\
["@smithy/util-body-length-browser", "npm:2.1.1"],\
["@smithy/util-body-length-node", "npm:2.2.1"],\
["@smithy/util-defaults-mode-browser", "npm:2.1.1"],\
["@smithy/util-defaults-mode-node", "npm:2.2.0"],\
["@smithy/util-endpoints", "npm:1.1.1"],\
["@smithy/util-retry", "npm:2.1.1"],\
["@smithy/util-utf8", "npm:2.1.1"],\
["@smithy/util-waiter", "npm:2.1.1"],\
["tslib", "npm:2.6.2"],\
["uuid", "npm:8.3.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/client-ssm", [\
["npm:3.509.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-client-ssm-npm-3.509.0-9d44ae2a6a-10c0.zip/node_modules/@aws-sdk/client-ssm/",\
"packageDependencies": [\
["@aws-sdk/client-ssm", "npm:3.509.0"],\
["@aws-crypto/sha256-browser", "npm:3.0.0"],\
["@aws-crypto/sha256-js", "npm:3.0.0"],\
["@aws-sdk/client-sts", "virtual:48dcf7fc182cdaef4d4432419639f950455fb527e18e704272b60d7cf8b3b0537a55f67eeb88ec33411df807af7a5575070200d4a3bdcb4ed69194d56aaa86a3#npm:3.507.0"],\
["@aws-sdk/core", "npm:3.496.0"],\
["@aws-sdk/credential-provider-node", "npm:3.509.0"],\
["@aws-sdk/middleware-host-header", "npm:3.502.0"],\
["@aws-sdk/middleware-logger", "npm:3.502.0"],\
["@aws-sdk/middleware-recursion-detection", "npm:3.502.0"],\
["@aws-sdk/middleware-signing", "npm:3.502.0"],\
["@aws-sdk/middleware-user-agent", "npm:3.502.0"],\
["@aws-sdk/region-config-resolver", "npm:3.502.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@aws-sdk/util-endpoints", "npm:3.502.0"],\
["@aws-sdk/util-user-agent-browser", "npm:3.502.0"],\
["@aws-sdk/util-user-agent-node", "virtual:09996bc998754d3644d9f93ee46f94a65e1e78bc24830355c614ab6b2bd2c567686dee02ded35c889da5040dabb83c37af9b0b5f64f9aadcd5c774c90932ecc8#npm:3.502.0"],\
["@smithy/config-resolver", "npm:2.1.1"],\
["@smithy/core", "npm:1.3.2"],\
["@smithy/fetch-http-handler", "npm:2.4.1"],\
["@smithy/hash-node", "npm:2.1.1"],\
["@smithy/invalid-dependency", "npm:2.1.1"],\
["@smithy/middleware-content-length", "npm:2.1.1"],\
["@smithy/middleware-endpoint", "npm:2.4.1"],\
["@smithy/middleware-retry", "npm:2.1.1"],\
["@smithy/middleware-serde", "npm:2.1.1"],\
["@smithy/middleware-stack", "npm:2.1.1"],\
["@smithy/node-config-provider", "npm:2.2.1"],\
["@smithy/node-http-handler", "npm:2.3.1"],\
["@smithy/protocol-http", "npm:3.1.1"],\
["@smithy/smithy-client", "npm:2.3.1"],\
["@smithy/types", "npm:2.9.1"],\
["@smithy/url-parser", "npm:2.1.1"],\
["@smithy/util-base64", "npm:2.1.1"],\
["@smithy/util-body-length-browser", "npm:2.1.1"],\
["@smithy/util-body-length-node", "npm:2.2.1"],\
["@smithy/util-defaults-mode-browser", "npm:2.1.1"],\
["@smithy/util-defaults-mode-node", "npm:2.2.0"],\
["@smithy/util-endpoints", "npm:1.1.1"],\
["@smithy/util-retry", "npm:2.1.1"],\
["@smithy/util-utf8", "npm:2.1.1"],\
["@smithy/util-waiter", "npm:2.1.1"],\
["tslib", "npm:2.6.2"],\
["uuid", "npm:8.3.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/client-sso", [\
["npm:3.507.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-client-sso-npm-3.507.0-09996bc998-10c0.zip/node_modules/@aws-sdk/client-sso/",\
"packageDependencies": [\
["@aws-sdk/client-sso", "npm:3.507.0"],\
["@aws-crypto/sha256-browser", "npm:3.0.0"],\
["@aws-crypto/sha256-js", "npm:3.0.0"],\
["@aws-sdk/core", "npm:3.496.0"],\
["@aws-sdk/middleware-host-header", "npm:3.502.0"],\
["@aws-sdk/middleware-logger", "npm:3.502.0"],\
["@aws-sdk/middleware-recursion-detection", "npm:3.502.0"],\
["@aws-sdk/middleware-user-agent", "npm:3.502.0"],\
["@aws-sdk/region-config-resolver", "npm:3.502.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@aws-sdk/util-endpoints", "npm:3.502.0"],\
["@aws-sdk/util-user-agent-browser", "npm:3.502.0"],\
["@aws-sdk/util-user-agent-node", "virtual:09996bc998754d3644d9f93ee46f94a65e1e78bc24830355c614ab6b2bd2c567686dee02ded35c889da5040dabb83c37af9b0b5f64f9aadcd5c774c90932ecc8#npm:3.502.0"],\
["@smithy/config-resolver", "npm:2.1.1"],\
["@smithy/core", "npm:1.3.2"],\
["@smithy/fetch-http-handler", "npm:2.4.1"],\
["@smithy/hash-node", "npm:2.1.1"],\
["@smithy/invalid-dependency", "npm:2.1.1"],\
["@smithy/middleware-content-length", "npm:2.1.1"],\
["@smithy/middleware-endpoint", "npm:2.4.1"],\
["@smithy/middleware-retry", "npm:2.1.1"],\
["@smithy/middleware-serde", "npm:2.1.1"],\
["@smithy/middleware-stack", "npm:2.1.1"],\
["@smithy/node-config-provider", "npm:2.2.1"],\
["@smithy/node-http-handler", "npm:2.3.1"],\
["@smithy/protocol-http", "npm:3.1.1"],\
["@smithy/smithy-client", "npm:2.3.1"],\
["@smithy/types", "npm:2.9.1"],\
["@smithy/url-parser", "npm:2.1.1"],\
["@smithy/util-base64", "npm:2.1.1"],\
["@smithy/util-body-length-browser", "npm:2.1.1"],\
["@smithy/util-body-length-node", "npm:2.2.1"],\
["@smithy/util-defaults-mode-browser", "npm:2.1.1"],\
["@smithy/util-defaults-mode-node", "npm:2.2.0"],\
["@smithy/util-endpoints", "npm:1.1.1"],\
["@smithy/util-retry", "npm:2.1.1"],\
["@smithy/util-utf8", "npm:2.1.1"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/client-sso-oidc", [\
["npm:3.507.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-client-sso-oidc-npm-3.507.0-02ce5a0b6f-10c0.zip/node_modules/@aws-sdk/client-sso-oidc/",\
"packageDependencies": [\
["@aws-sdk/client-sso-oidc", "npm:3.507.0"]\
],\
"linkType": "SOFT"\
}],\
["virtual:37f292a1287fdcc73e87ef92961f9a459007ac00d24ca6375d02be3402b13ebb0ce07d194a3538234800bb48094798e22721e0301e6e41d9dd600e6582c4670f#npm:3.507.0", {\
"packageLocation": "./.yarn/__virtual__/@aws-sdk-client-sso-oidc-virtual-56c9b5046c/4/.yarn/berry/cache/@aws-sdk-client-sso-oidc-npm-3.507.0-02ce5a0b6f-10c0.zip/node_modules/@aws-sdk/client-sso-oidc/",\
"packageDependencies": [\
["@aws-sdk/client-sso-oidc", "virtual:37f292a1287fdcc73e87ef92961f9a459007ac00d24ca6375d02be3402b13ebb0ce07d194a3538234800bb48094798e22721e0301e6e41d9dd600e6582c4670f#npm:3.507.0"],\
["@aws-crypto/sha256-browser", "npm:3.0.0"],\
["@aws-crypto/sha256-js", "npm:3.0.0"],\
["@aws-sdk/client-sts", "virtual:56c9b5046c056e9f130e0975990be23a2e3f078df5d2f6826bbd6b3090fd3ceeae012cb38107584a2b08e79963b0f651b6ae934e060b5634b50cb302c4d0a27e#npm:3.507.0"],\
["@aws-sdk/core", "npm:3.496.0"],\
["@aws-sdk/credential-provider-node", null],\
["@aws-sdk/middleware-host-header", "npm:3.502.0"],\
["@aws-sdk/middleware-logger", "npm:3.502.0"],\
["@aws-sdk/middleware-recursion-detection", "npm:3.502.0"],\
["@aws-sdk/middleware-signing", "npm:3.502.0"],\
["@aws-sdk/middleware-user-agent", "npm:3.502.0"],\
["@aws-sdk/region-config-resolver", "npm:3.502.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@aws-sdk/util-endpoints", "npm:3.502.0"],\
["@aws-sdk/util-user-agent-browser", "npm:3.502.0"],\
["@aws-sdk/util-user-agent-node", "virtual:09996bc998754d3644d9f93ee46f94a65e1e78bc24830355c614ab6b2bd2c567686dee02ded35c889da5040dabb83c37af9b0b5f64f9aadcd5c774c90932ecc8#npm:3.502.0"],\
["@smithy/config-resolver", "npm:2.1.1"],\
["@smithy/core", "npm:1.3.2"],\
["@smithy/fetch-http-handler", "npm:2.4.1"],\
["@smithy/hash-node", "npm:2.1.1"],\
["@smithy/invalid-dependency", "npm:2.1.1"],\
["@smithy/middleware-content-length", "npm:2.1.1"],\
["@smithy/middleware-endpoint", "npm:2.4.1"],\
["@smithy/middleware-retry", "npm:2.1.1"],\
["@smithy/middleware-serde", "npm:2.1.1"],\
["@smithy/middleware-stack", "npm:2.1.1"],\
["@smithy/node-config-provider", "npm:2.2.1"],\
["@smithy/node-http-handler", "npm:2.3.1"],\
["@smithy/protocol-http", "npm:3.1.1"],\
["@smithy/smithy-client", "npm:2.3.1"],\
["@smithy/types", "npm:2.9.1"],\
["@smithy/url-parser", "npm:2.1.1"],\
["@smithy/util-base64", "npm:2.1.1"],\
["@smithy/util-body-length-browser", "npm:2.1.1"],\
["@smithy/util-body-length-node", "npm:2.2.1"],\
["@smithy/util-defaults-mode-browser", "npm:2.1.1"],\
["@smithy/util-defaults-mode-node", "npm:2.2.0"],\
["@smithy/util-endpoints", "npm:1.1.1"],\
["@smithy/util-retry", "npm:2.1.1"],\
["@smithy/util-utf8", "npm:2.1.1"],\
["@types/aws-sdk__credential-provider-node", null],\
["tslib", "npm:2.6.2"]\
],\
"packagePeers": [\
"@aws-sdk/credential-provider-node",\
"@types/aws-sdk__credential-provider-node"\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/client-sts", [\
["npm:3.507.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-client-sts-npm-3.507.0-aab5f790f5-10c0.zip/node_modules/@aws-sdk/client-sts/",\
"packageDependencies": [\
["@aws-sdk/client-sts", "npm:3.507.0"]\
],\
"linkType": "SOFT"\
}],\
["virtual:48dcf7fc182cdaef4d4432419639f950455fb527e18e704272b60d7cf8b3b0537a55f67eeb88ec33411df807af7a5575070200d4a3bdcb4ed69194d56aaa86a3#npm:3.507.0", {\
"packageLocation": "./.yarn/__virtual__/@aws-sdk-client-sts-virtual-b3b80a86ce/4/.yarn/berry/cache/@aws-sdk-client-sts-npm-3.507.0-aab5f790f5-10c0.zip/node_modules/@aws-sdk/client-sts/",\
"packageDependencies": [\
["@aws-sdk/client-sts", "virtual:48dcf7fc182cdaef4d4432419639f950455fb527e18e704272b60d7cf8b3b0537a55f67eeb88ec33411df807af7a5575070200d4a3bdcb4ed69194d56aaa86a3#npm:3.507.0"],\
["@aws-crypto/sha256-browser", "npm:3.0.0"],\
["@aws-crypto/sha256-js", "npm:3.0.0"],\
["@aws-sdk/core", "npm:3.496.0"],\
["@aws-sdk/credential-provider-node", "npm:3.509.0"],\
["@aws-sdk/middleware-host-header", "npm:3.502.0"],\
["@aws-sdk/middleware-logger", "npm:3.502.0"],\
["@aws-sdk/middleware-recursion-detection", "npm:3.502.0"],\
["@aws-sdk/middleware-user-agent", "npm:3.502.0"],\
["@aws-sdk/region-config-resolver", "npm:3.502.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@aws-sdk/util-endpoints", "npm:3.502.0"],\
["@aws-sdk/util-user-agent-browser", "npm:3.502.0"],\
["@aws-sdk/util-user-agent-node", "virtual:09996bc998754d3644d9f93ee46f94a65e1e78bc24830355c614ab6b2bd2c567686dee02ded35c889da5040dabb83c37af9b0b5f64f9aadcd5c774c90932ecc8#npm:3.502.0"],\
["@smithy/config-resolver", "npm:2.1.1"],\
["@smithy/core", "npm:1.3.2"],\
["@smithy/fetch-http-handler", "npm:2.4.1"],\
["@smithy/hash-node", "npm:2.1.1"],\
["@smithy/invalid-dependency", "npm:2.1.1"],\
["@smithy/middleware-content-length", "npm:2.1.1"],\
["@smithy/middleware-endpoint", "npm:2.4.1"],\
["@smithy/middleware-retry", "npm:2.1.1"],\
["@smithy/middleware-serde", "npm:2.1.1"],\
["@smithy/middleware-stack", "npm:2.1.1"],\
["@smithy/node-config-provider", "npm:2.2.1"],\
["@smithy/node-http-handler", "npm:2.3.1"],\
["@smithy/protocol-http", "npm:3.1.1"],\
["@smithy/smithy-client", "npm:2.3.1"],\
["@smithy/types", "npm:2.9.1"],\
["@smithy/url-parser", "npm:2.1.1"],\
["@smithy/util-base64", "npm:2.1.1"],\
["@smithy/util-body-length-browser", "npm:2.1.1"],\
["@smithy/util-body-length-node", "npm:2.2.1"],\
["@smithy/util-defaults-mode-browser", "npm:2.1.1"],\
["@smithy/util-defaults-mode-node", "npm:2.2.0"],\
["@smithy/util-endpoints", "npm:1.1.1"],\
["@smithy/util-middleware", "npm:2.1.1"],\
["@smithy/util-retry", "npm:2.1.1"],\
["@smithy/util-utf8", "npm:2.1.1"],\
["@types/aws-sdk__credential-provider-node", null],\
["fast-xml-parser", "npm:4.2.5"],\
["tslib", "npm:2.6.2"]\
],\
"packagePeers": [\
"@aws-sdk/credential-provider-node",\
"@types/aws-sdk__credential-provider-node"\
],\
"linkType": "HARD"\
}],\
["virtual:56c9b5046c056e9f130e0975990be23a2e3f078df5d2f6826bbd6b3090fd3ceeae012cb38107584a2b08e79963b0f651b6ae934e060b5634b50cb302c4d0a27e#npm:3.507.0", {\
"packageLocation": "./.yarn/__virtual__/@aws-sdk-client-sts-virtual-41596472d3/4/.yarn/berry/cache/@aws-sdk-client-sts-npm-3.507.0-aab5f790f5-10c0.zip/node_modules/@aws-sdk/client-sts/",\
"packageDependencies": [\
["@aws-sdk/client-sts", "virtual:56c9b5046c056e9f130e0975990be23a2e3f078df5d2f6826bbd6b3090fd3ceeae012cb38107584a2b08e79963b0f651b6ae934e060b5634b50cb302c4d0a27e#npm:3.507.0"],\
["@aws-crypto/sha256-browser", "npm:3.0.0"],\
["@aws-crypto/sha256-js", "npm:3.0.0"],\
["@aws-sdk/core", "npm:3.496.0"],\
["@aws-sdk/credential-provider-node", null],\
["@aws-sdk/middleware-host-header", "npm:3.502.0"],\
["@aws-sdk/middleware-logger", "npm:3.502.0"],\
["@aws-sdk/middleware-recursion-detection", "npm:3.502.0"],\
["@aws-sdk/middleware-user-agent", "npm:3.502.0"],\
["@aws-sdk/region-config-resolver", "npm:3.502.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@aws-sdk/util-endpoints", "npm:3.502.0"],\
["@aws-sdk/util-user-agent-browser", "npm:3.502.0"],\
["@aws-sdk/util-user-agent-node", "virtual:09996bc998754d3644d9f93ee46f94a65e1e78bc24830355c614ab6b2bd2c567686dee02ded35c889da5040dabb83c37af9b0b5f64f9aadcd5c774c90932ecc8#npm:3.502.0"],\
["@smithy/config-resolver", "npm:2.1.1"],\
["@smithy/core", "npm:1.3.2"],\
["@smithy/fetch-http-handler", "npm:2.4.1"],\
["@smithy/hash-node", "npm:2.1.1"],\
["@smithy/invalid-dependency", "npm:2.1.1"],\
["@smithy/middleware-content-length", "npm:2.1.1"],\
["@smithy/middleware-endpoint", "npm:2.4.1"],\
["@smithy/middleware-retry", "npm:2.1.1"],\
["@smithy/middleware-serde", "npm:2.1.1"],\
["@smithy/middleware-stack", "npm:2.1.1"],\
["@smithy/node-config-provider", "npm:2.2.1"],\
["@smithy/node-http-handler", "npm:2.3.1"],\
["@smithy/protocol-http", "npm:3.1.1"],\
["@smithy/smithy-client", "npm:2.3.1"],\
["@smithy/types", "npm:2.9.1"],\
["@smithy/url-parser", "npm:2.1.1"],\
["@smithy/util-base64", "npm:2.1.1"],\
["@smithy/util-body-length-browser", "npm:2.1.1"],\
["@smithy/util-body-length-node", "npm:2.2.1"],\
["@smithy/util-defaults-mode-browser", "npm:2.1.1"],\
["@smithy/util-defaults-mode-node", "npm:2.2.0"],\
["@smithy/util-endpoints", "npm:1.1.1"],\
["@smithy/util-middleware", "npm:2.1.1"],\
["@smithy/util-retry", "npm:2.1.1"],\
["@smithy/util-utf8", "npm:2.1.1"],\
["@types/aws-sdk__credential-provider-node", null],\
["fast-xml-parser", "npm:4.2.5"],\
["tslib", "npm:2.6.2"]\
],\
"packagePeers": [\
"@aws-sdk/credential-provider-node",\
"@types/aws-sdk__credential-provider-node"\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/core", [\
["npm:3.496.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-core-npm-3.496.0-48e559d564-10c0.zip/node_modules/@aws-sdk/core/",\
"packageDependencies": [\
["@aws-sdk/core", "npm:3.496.0"],\
["@smithy/core", "npm:1.3.2"],\
["@smithy/protocol-http", "npm:3.1.1"],\
["@smithy/signature-v4", "npm:2.1.1"],\
["@smithy/smithy-client", "npm:2.3.1"],\
["@smithy/types", "npm:2.9.1"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/credential-provider-cognito-identity", [\
["npm:3.509.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-credential-provider-cognito-identity-npm-3.509.0-83188274c9-10c0.zip/node_modules/@aws-sdk/credential-provider-cognito-identity/",\
"packageDependencies": [\
["@aws-sdk/credential-provider-cognito-identity", "npm:3.509.0"],\
["@aws-sdk/client-cognito-identity", "npm:3.509.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@smithy/property-provider", "npm:2.1.1"],\
["@smithy/types", "npm:2.9.1"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/credential-provider-env", [\
["npm:3.502.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-credential-provider-env-npm-3.502.0-70a6f60692-10c0.zip/node_modules/@aws-sdk/credential-provider-env/",\
"packageDependencies": [\
["@aws-sdk/credential-provider-env", "npm:3.502.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@smithy/property-provider", "npm:2.1.1"],\
["@smithy/types", "npm:2.9.1"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/credential-provider-http", [\
["npm:3.503.1", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-credential-provider-http-npm-3.503.1-01a62dbb2e-10c0.zip/node_modules/@aws-sdk/credential-provider-http/",\
"packageDependencies": [\
["@aws-sdk/credential-provider-http", "npm:3.503.1"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@smithy/fetch-http-handler", "npm:2.4.1"],\
["@smithy/node-http-handler", "npm:2.3.1"],\
["@smithy/property-provider", "npm:2.1.1"],\
["@smithy/protocol-http", "npm:3.1.1"],\
["@smithy/smithy-client", "npm:2.3.1"],\
["@smithy/types", "npm:2.9.1"],\
["@smithy/util-stream", "npm:2.1.1"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/credential-provider-ini", [\
["npm:3.507.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-credential-provider-ini-npm-3.507.0-0252575008-10c0.zip/node_modules/@aws-sdk/credential-provider-ini/",\
"packageDependencies": [\
["@aws-sdk/credential-provider-ini", "npm:3.507.0"],\
["@aws-sdk/client-sts", "virtual:56c9b5046c056e9f130e0975990be23a2e3f078df5d2f6826bbd6b3090fd3ceeae012cb38107584a2b08e79963b0f651b6ae934e060b5634b50cb302c4d0a27e#npm:3.507.0"],\
["@aws-sdk/credential-provider-env", "npm:3.502.0"],\
["@aws-sdk/credential-provider-process", "npm:3.502.0"],\
["@aws-sdk/credential-provider-sso", "npm:3.507.0"],\
["@aws-sdk/credential-provider-web-identity", "npm:3.507.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@smithy/credential-provider-imds", "npm:2.2.1"],\
["@smithy/property-provider", "npm:2.1.1"],\
["@smithy/shared-ini-file-loader", "npm:2.3.1"],\
["@smithy/types", "npm:2.9.1"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/credential-provider-node", [\
["npm:3.509.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-credential-provider-node-npm-3.509.0-03ecfa67b6-10c0.zip/node_modules/@aws-sdk/credential-provider-node/",\
"packageDependencies": [\
["@aws-sdk/credential-provider-node", "npm:3.509.0"],\
["@aws-sdk/credential-provider-env", "npm:3.502.0"],\
["@aws-sdk/credential-provider-http", "npm:3.503.1"],\
["@aws-sdk/credential-provider-ini", "npm:3.507.0"],\
["@aws-sdk/credential-provider-process", "npm:3.502.0"],\
["@aws-sdk/credential-provider-sso", "npm:3.507.0"],\
["@aws-sdk/credential-provider-web-identity", "npm:3.507.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@smithy/credential-provider-imds", "npm:2.2.1"],\
["@smithy/property-provider", "npm:2.1.1"],\
["@smithy/shared-ini-file-loader", "npm:2.3.1"],\
["@smithy/types", "npm:2.9.1"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/credential-provider-process", [\
["npm:3.502.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-credential-provider-process-npm-3.502.0-597a9be5c4-10c0.zip/node_modules/@aws-sdk/credential-provider-process/",\
"packageDependencies": [\
["@aws-sdk/credential-provider-process", "npm:3.502.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@smithy/property-provider", "npm:2.1.1"],\
["@smithy/shared-ini-file-loader", "npm:2.3.1"],\
["@smithy/types", "npm:2.9.1"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/credential-provider-sso", [\
["npm:3.507.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-credential-provider-sso-npm-3.507.0-82cfbd5013-10c0.zip/node_modules/@aws-sdk/credential-provider-sso/",\
"packageDependencies": [\
["@aws-sdk/credential-provider-sso", "npm:3.507.0"],\
["@aws-sdk/client-sso", "npm:3.507.0"],\
["@aws-sdk/token-providers", "npm:3.507.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@smithy/property-provider", "npm:2.1.1"],\
["@smithy/shared-ini-file-loader", "npm:2.3.1"],\
["@smithy/types", "npm:2.9.1"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/credential-provider-web-identity", [\
["npm:3.507.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-credential-provider-web-identity-npm-3.507.0-cd057477b2-10c0.zip/node_modules/@aws-sdk/credential-provider-web-identity/",\
"packageDependencies": [\
["@aws-sdk/credential-provider-web-identity", "npm:3.507.0"],\
["@aws-sdk/client-sts", "virtual:56c9b5046c056e9f130e0975990be23a2e3f078df5d2f6826bbd6b3090fd3ceeae012cb38107584a2b08e79963b0f651b6ae934e060b5634b50cb302c4d0a27e#npm:3.507.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@smithy/property-provider", "npm:2.1.1"],\
["@smithy/types", "npm:2.9.1"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/credential-providers", [\
["npm:3.509.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-credential-providers-npm-3.509.0-2aafb9a338-10c0.zip/node_modules/@aws-sdk/credential-providers/",\
"packageDependencies": [\
["@aws-sdk/credential-providers", "npm:3.509.0"],\
["@aws-sdk/client-cognito-identity", "npm:3.509.0"],\
["@aws-sdk/client-sso", "npm:3.507.0"],\
["@aws-sdk/client-sts", "virtual:48dcf7fc182cdaef4d4432419639f950455fb527e18e704272b60d7cf8b3b0537a55f67eeb88ec33411df807af7a5575070200d4a3bdcb4ed69194d56aaa86a3#npm:3.507.0"],\
["@aws-sdk/credential-provider-cognito-identity", "npm:3.509.0"],\
["@aws-sdk/credential-provider-env", "npm:3.502.0"],\
["@aws-sdk/credential-provider-http", "npm:3.503.1"],\
["@aws-sdk/credential-provider-ini", "npm:3.507.0"],\
["@aws-sdk/credential-provider-node", "npm:3.509.0"],\
["@aws-sdk/credential-provider-process", "npm:3.502.0"],\
["@aws-sdk/credential-provider-sso", "npm:3.507.0"],\
["@aws-sdk/credential-provider-web-identity", "npm:3.507.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@smithy/credential-provider-imds", "npm:2.2.1"],\
["@smithy/property-provider", "npm:2.1.1"],\
["@smithy/types", "npm:2.9.1"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/middleware-host-header", [\
["npm:3.502.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-middleware-host-header-npm-3.502.0-d2fc03f68a-10c0.zip/node_modules/@aws-sdk/middleware-host-header/",\
"packageDependencies": [\
["@aws-sdk/middleware-host-header", "npm:3.502.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@smithy/protocol-http", "npm:3.1.1"],\
["@smithy/types", "npm:2.9.1"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/middleware-logger", [\
["npm:3.502.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-middleware-logger-npm-3.502.0-315deeeaa9-10c0.zip/node_modules/@aws-sdk/middleware-logger/",\
"packageDependencies": [\
["@aws-sdk/middleware-logger", "npm:3.502.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@smithy/types", "npm:2.9.1"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/middleware-recursion-detection", [\
["npm:3.502.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-middleware-recursion-detection-npm-3.502.0-fa6f479afd-10c0.zip/node_modules/@aws-sdk/middleware-recursion-detection/",\
"packageDependencies": [\
["@aws-sdk/middleware-recursion-detection", "npm:3.502.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@smithy/protocol-http", "npm:3.1.1"],\
["@smithy/types", "npm:2.9.1"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/middleware-signing", [\
["npm:3.502.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-middleware-signing-npm-3.502.0-bb9666bc47-10c0.zip/node_modules/@aws-sdk/middleware-signing/",\
"packageDependencies": [\
["@aws-sdk/middleware-signing", "npm:3.502.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@smithy/property-provider", "npm:2.1.1"],\
["@smithy/protocol-http", "npm:3.1.1"],\
["@smithy/signature-v4", "npm:2.1.1"],\
["@smithy/types", "npm:2.9.1"],\
["@smithy/util-middleware", "npm:2.1.1"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/middleware-user-agent", [\
["npm:3.502.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-middleware-user-agent-npm-3.502.0-74a49e5ebc-10c0.zip/node_modules/@aws-sdk/middleware-user-agent/",\
"packageDependencies": [\
["@aws-sdk/middleware-user-agent", "npm:3.502.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@aws-sdk/util-endpoints", "npm:3.502.0"],\
["@smithy/protocol-http", "npm:3.1.1"],\
["@smithy/types", "npm:2.9.1"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/region-config-resolver", [\
["npm:3.502.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-region-config-resolver-npm-3.502.0-83c55a0c26-10c0.zip/node_modules/@aws-sdk/region-config-resolver/",\
"packageDependencies": [\
["@aws-sdk/region-config-resolver", "npm:3.502.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@smithy/node-config-provider", "npm:2.2.1"],\
["@smithy/types", "npm:2.9.1"],\
["@smithy/util-config-provider", "npm:2.2.1"],\
["@smithy/util-middleware", "npm:2.1.1"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/token-providers", [\
["npm:3.507.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-token-providers-npm-3.507.0-37f292a128-10c0.zip/node_modules/@aws-sdk/token-providers/",\
"packageDependencies": [\
["@aws-sdk/token-providers", "npm:3.507.0"],\
["@aws-sdk/client-sso-oidc", "virtual:37f292a1287fdcc73e87ef92961f9a459007ac00d24ca6375d02be3402b13ebb0ce07d194a3538234800bb48094798e22721e0301e6e41d9dd600e6582c4670f#npm:3.507.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@smithy/property-provider", "npm:2.1.1"],\
["@smithy/shared-ini-file-loader", "npm:2.3.1"],\
["@smithy/types", "npm:2.9.1"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/types", [\
["npm:3.408.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-types-npm-3.408.0-e7d2482e5c-10c0.zip/node_modules/@aws-sdk/types/",\
"packageDependencies": [\
["@aws-sdk/types", "npm:3.408.0"],\
["@smithy/types", "npm:2.3.0"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}],\
["npm:3.502.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-types-npm-3.502.0-23f5667720-10c0.zip/node_modules/@aws-sdk/types/",\
"packageDependencies": [\
["@aws-sdk/types", "npm:3.502.0"],\
["@smithy/types", "npm:2.9.1"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/util-endpoints", [\
["npm:3.502.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-util-endpoints-npm-3.502.0-d8dd789d22-10c0.zip/node_modules/@aws-sdk/util-endpoints/",\
"packageDependencies": [\
["@aws-sdk/util-endpoints", "npm:3.502.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@smithy/types", "npm:2.9.1"],\
["@smithy/util-endpoints", "npm:1.1.1"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/util-locate-window", [\
["npm:3.55.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-util-locate-window-npm-3.55.0-f1db5c68a1-10c0.zip/node_modules/@aws-sdk/util-locate-window/",\
"packageDependencies": [\
["@aws-sdk/util-locate-window", "npm:3.55.0"],\
["tslib", "npm:2.4.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/util-user-agent-browser", [\
["npm:3.502.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-util-user-agent-browser-npm-3.502.0-96dadf7c37-10c0.zip/node_modules/@aws-sdk/util-user-agent-browser/",\
"packageDependencies": [\
["@aws-sdk/util-user-agent-browser", "npm:3.502.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@smithy/types", "npm:2.9.1"],\
["bowser", "npm:2.11.0"],\
["tslib", "npm:2.6.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/util-user-agent-node", [\
["npm:3.502.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-util-user-agent-node-npm-3.502.0-705d03b29d-10c0.zip/node_modules/@aws-sdk/util-user-agent-node/",\
"packageDependencies": [\
["@aws-sdk/util-user-agent-node", "npm:3.502.0"]\
],\
"linkType": "SOFT"\
}],\
["virtual:09996bc998754d3644d9f93ee46f94a65e1e78bc24830355c614ab6b2bd2c567686dee02ded35c889da5040dabb83c37af9b0b5f64f9aadcd5c774c90932ecc8#npm:3.502.0", {\
"packageLocation": "./.yarn/__virtual__/@aws-sdk-util-user-agent-node-virtual-c70a4148e3/4/.yarn/berry/cache/@aws-sdk-util-user-agent-node-npm-3.502.0-705d03b29d-10c0.zip/node_modules/@aws-sdk/util-user-agent-node/",\
"packageDependencies": [\
["@aws-sdk/util-user-agent-node", "virtual:09996bc998754d3644d9f93ee46f94a65e1e78bc24830355c614ab6b2bd2c567686dee02ded35c889da5040dabb83c37af9b0b5f64f9aadcd5c774c90932ecc8#npm:3.502.0"],\
["@aws-sdk/types", "npm:3.502.0"],\
["@smithy/node-config-provider", "npm:2.2.1"],\
["@smithy/types", "npm:2.9.1"],\
["@types/aws-crt", null],\
["aws-crt", null],\
["tslib", "npm:2.6.2"]\
],\
"packagePeers": [\
"@types/aws-crt",\
"aws-crt"\
],\
"linkType": "HARD"\
}]\
]],\
["@aws-sdk/util-utf8-browser", [\
["npm:3.109.0", {\
"packageLocation": "../../../.yarn/berry/cache/@aws-sdk-util-utf8-browser-npm-3.109.0-93ff6e3fd7-10c0.zip/node_modules/@aws-sdk/util-utf8-browser/",\
"packageDependencies": [\
["@aws-sdk/util-utf8-browser", "npm:3.109.0"],\
["tslib", "npm:2.4.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/code-frame", [\
["npm:7.22.13", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-code-frame-npm-7.22.13-2782581d20-10c0.zip/node_modules/@babel/code-frame/",\
"packageDependencies": [\
["@babel/code-frame", "npm:7.22.13"],\
["@babel/highlight", "npm:7.22.13"],\
["chalk", "npm:2.4.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-validator-identifier", [\
["npm:7.22.15", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-helper-validator-identifier-npm-7.22.15-d99c246e11-10c0.zip/node_modules/@babel/helper-validator-identifier/",\
"packageDependencies": [\
["@babel/helper-validator-identifier", "npm:7.22.15"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/highlight", [\
["npm:7.22.13", {\
"packageLocation": "../../../.yarn/berry/cache/@babel-highlight-npm-7.22.13-7849944df2-10c0.zip/node_modules/@babel/highlight/",\
"packageDependencies": [\
["@babel/highlight", "npm:7.22.13"],\
["@babel/helper-validator-identifier", "npm:7.22.15"],\
["chalk", "npm:2.4.2"],\
["js-tokens", "npm:4.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/aix-ppc64", [\
["npm:0.19.12", {\
"packageLocation": "./.yarn/unplugged/@esbuild-aix-ppc64-npm-0.19.12-20acbc4c27/node_modules/@esbuild/aix-ppc64/",\
"packageDependencies": [\
["@esbuild/aix-ppc64", "npm:0.19.12"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/android-arm", [\
["npm:0.19.12", {\
"packageLocation": "./.yarn/unplugged/@esbuild-android-arm-npm-0.19.12-007d87d00d/node_modules/@esbuild/android-arm/",\
"packageDependencies": [\
["@esbuild/android-arm", "npm:0.19.12"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/android-arm64", [\
["npm:0.19.12", {\
"packageLocation": "./.yarn/unplugged/@esbuild-android-arm64-npm-0.19.12-639e34c5cb/node_modules/@esbuild/android-arm64/",\
"packageDependencies": [\
["@esbuild/android-arm64", "npm:0.19.12"]\
],\
"linkType": "HARD"\
}]\
]],\
["@esbuild/android-x64", [\
["npm:0.19.12", {\
"packageLocation": "./.yarn/unplugged/@esbuild-android-x64-npm-0.19.12-eb12dd0e96/node_modules/@esbuild/android-x64/",\
"packageDependencies": [\
["@esbuild/android-x64", "npm:0.19.12"]\
],\
"linkType": "HARD"\
}]\