-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
5527 lines (5527 loc) · 300 KB
/
.gitignore
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
node_modules/.package-lock.json
node_modules/.bin/color-support
node_modules/.bin/color-support.cmd
node_modules/.bin/color-support.ps1
node_modules/.bin/fxparser
node_modules/.bin/fxparser.cmd
node_modules/.bin/fxparser.ps1
node_modules/.bin/loose-envify
node_modules/.bin/loose-envify.cmd
node_modules/.bin/loose-envify.ps1
node_modules/.bin/mime
node_modules/.bin/mime.cmd
node_modules/.bin/mime.ps1
node_modules/.bin/mkdirp
node_modules/.bin/mkdirp.cmd
node_modules/.bin/mkdirp.ps1
node_modules/.bin/node-pre-gyp
node_modules/.bin/node-pre-gyp.cmd
node_modules/.bin/node-pre-gyp.ps1
node_modules/.bin/nodemon
node_modules/.bin/nodemon.cmd
node_modules/.bin/nodemon.ps1
node_modules/.bin/nodetouch
node_modules/.bin/nodetouch.cmd
node_modules/.bin/nodetouch.ps1
node_modules/.bin/nopt
node_modules/.bin/nopt.cmd
node_modules/.bin/nopt.ps1
node_modules/.bin/rimraf
node_modules/.bin/rimraf.cmd
node_modules/.bin/rimraf.ps1
node_modules/.bin/semver
node_modules/.bin/semver.cmd
node_modules/.bin/semver.ps1
node_modules/.bin/uuid
node_modules/.bin/uuid.cmd
node_modules/.bin/uuid.ps1
node_modules/@aws-crypto/crc32/CHANGELOG.md
node_modules/@aws-crypto/crc32/LICENSE
node_modules/@aws-crypto/crc32/package.json
node_modules/@aws-crypto/crc32/README.md
node_modules/@aws-crypto/crc32/tsconfig.json
node_modules/@aws-crypto/crc32/build/aws_crc32.d.ts
node_modules/@aws-crypto/crc32/build/aws_crc32.js
node_modules/@aws-crypto/crc32/build/aws_crc32.js.map
node_modules/@aws-crypto/crc32/build/index.d.ts
node_modules/@aws-crypto/crc32/build/index.js
node_modules/@aws-crypto/crc32/build/index.js.map
node_modules/@aws-crypto/crc32/node_modules/tslib/CopyrightNotice.txt
node_modules/@aws-crypto/crc32/node_modules/tslib/LICENSE.txt
node_modules/@aws-crypto/crc32/node_modules/tslib/package.json
node_modules/@aws-crypto/crc32/node_modules/tslib/README.md
node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.d.ts
node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.es6.html
node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.es6.js
node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.html
node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.js
node_modules/@aws-crypto/crc32/node_modules/tslib/modules/index.js
node_modules/@aws-crypto/crc32/node_modules/tslib/modules/package.json
node_modules/@aws-crypto/crc32/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js
node_modules/@aws-crypto/crc32/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json
node_modules/@aws-crypto/crc32/src/aws_crc32.ts
node_modules/@aws-crypto/crc32/src/index.ts
node_modules/@aws-crypto/ie11-detection/CHANGELOG.md
node_modules/@aws-crypto/ie11-detection/LICENSE
node_modules/@aws-crypto/ie11-detection/package.json
node_modules/@aws-crypto/ie11-detection/README.md
node_modules/@aws-crypto/ie11-detection/tsconfig.json
node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.d.ts
node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js
node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js.map
node_modules/@aws-crypto/ie11-detection/build/index.d.ts
node_modules/@aws-crypto/ie11-detection/build/index.js
node_modules/@aws-crypto/ie11-detection/build/index.js.map
node_modules/@aws-crypto/ie11-detection/build/Key.d.ts
node_modules/@aws-crypto/ie11-detection/build/Key.js
node_modules/@aws-crypto/ie11-detection/build/Key.js.map
node_modules/@aws-crypto/ie11-detection/build/KeyOperation.d.ts
node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js
node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js.map
node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.d.ts
node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js
node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js.map
node_modules/@aws-crypto/ie11-detection/build/MsWindow.d.ts
node_modules/@aws-crypto/ie11-detection/build/MsWindow.js
node_modules/@aws-crypto/ie11-detection/build/MsWindow.js.map
node_modules/@aws-crypto/ie11-detection/node_modules/tslib/CopyrightNotice.txt
node_modules/@aws-crypto/ie11-detection/node_modules/tslib/LICENSE.txt
node_modules/@aws-crypto/ie11-detection/node_modules/tslib/package.json
node_modules/@aws-crypto/ie11-detection/node_modules/tslib/README.md
node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.d.ts
node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.html
node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.js
node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.html
node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.js
node_modules/@aws-crypto/ie11-detection/node_modules/tslib/modules/index.js
node_modules/@aws-crypto/ie11-detection/node_modules/tslib/modules/package.json
node_modules/@aws-crypto/ie11-detection/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js
node_modules/@aws-crypto/ie11-detection/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json
node_modules/@aws-crypto/ie11-detection/src/CryptoOperation.ts
node_modules/@aws-crypto/ie11-detection/src/index.ts
node_modules/@aws-crypto/ie11-detection/src/Key.ts
node_modules/@aws-crypto/ie11-detection/src/KeyOperation.ts
node_modules/@aws-crypto/ie11-detection/src/MsSubtleCrypto.ts
node_modules/@aws-crypto/ie11-detection/src/MsWindow.ts
node_modules/@aws-crypto/sha256-browser/CHANGELOG.md
node_modules/@aws-crypto/sha256-browser/LICENSE
node_modules/@aws-crypto/sha256-browser/package.json
node_modules/@aws-crypto/sha256-browser/README.md
node_modules/@aws-crypto/sha256-browser/tsconfig.json
node_modules/@aws-crypto/sha256-browser/build/constants.d.ts
node_modules/@aws-crypto/sha256-browser/build/constants.js
node_modules/@aws-crypto/sha256-browser/build/constants.js.map
node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.d.ts
node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js
node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js.map
node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.d.ts
node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js
node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js.map
node_modules/@aws-crypto/sha256-browser/build/index.d.ts
node_modules/@aws-crypto/sha256-browser/build/index.js
node_modules/@aws-crypto/sha256-browser/build/index.js.map
node_modules/@aws-crypto/sha256-browser/build/isEmptyData.d.ts
node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js
node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js.map
node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.d.ts
node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js
node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js.map
node_modules/@aws-crypto/sha256-browser/node_modules/tslib/CopyrightNotice.txt
node_modules/@aws-crypto/sha256-browser/node_modules/tslib/LICENSE.txt
node_modules/@aws-crypto/sha256-browser/node_modules/tslib/package.json
node_modules/@aws-crypto/sha256-browser/node_modules/tslib/README.md
node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.d.ts
node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.html
node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.js
node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.html
node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.js
node_modules/@aws-crypto/sha256-browser/node_modules/tslib/modules/index.js
node_modules/@aws-crypto/sha256-browser/node_modules/tslib/modules/package.json
node_modules/@aws-crypto/sha256-browser/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js
node_modules/@aws-crypto/sha256-browser/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json
node_modules/@aws-crypto/sha256-browser/src/constants.ts
node_modules/@aws-crypto/sha256-browser/src/crossPlatformSha256.ts
node_modules/@aws-crypto/sha256-browser/src/ie11Sha256.ts
node_modules/@aws-crypto/sha256-browser/src/index.ts
node_modules/@aws-crypto/sha256-browser/src/isEmptyData.ts
node_modules/@aws-crypto/sha256-browser/src/webCryptoSha256.ts
node_modules/@aws-crypto/sha256-js/CHANGELOG.md
node_modules/@aws-crypto/sha256-js/LICENSE
node_modules/@aws-crypto/sha256-js/package.json
node_modules/@aws-crypto/sha256-js/README.md
node_modules/@aws-crypto/sha256-js/tsconfig.json
node_modules/@aws-crypto/sha256-js/build/constants.d.ts
node_modules/@aws-crypto/sha256-js/build/constants.js
node_modules/@aws-crypto/sha256-js/build/constants.js.map
node_modules/@aws-crypto/sha256-js/build/index.d.ts
node_modules/@aws-crypto/sha256-js/build/index.js
node_modules/@aws-crypto/sha256-js/build/index.js.map
node_modules/@aws-crypto/sha256-js/build/jsSha256.d.ts
node_modules/@aws-crypto/sha256-js/build/jsSha256.js
node_modules/@aws-crypto/sha256-js/build/jsSha256.js.map
node_modules/@aws-crypto/sha256-js/build/knownHashes.fixture.d.ts
node_modules/@aws-crypto/sha256-js/build/knownHashes.fixture.js
node_modules/@aws-crypto/sha256-js/build/knownHashes.fixture.js.map
node_modules/@aws-crypto/sha256-js/build/RawSha256.d.ts
node_modules/@aws-crypto/sha256-js/build/RawSha256.js
node_modules/@aws-crypto/sha256-js/build/RawSha256.js.map
node_modules/@aws-crypto/sha256-js/node_modules/tslib/CopyrightNotice.txt
node_modules/@aws-crypto/sha256-js/node_modules/tslib/LICENSE.txt
node_modules/@aws-crypto/sha256-js/node_modules/tslib/package.json
node_modules/@aws-crypto/sha256-js/node_modules/tslib/README.md
node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.d.ts
node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.html
node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.js
node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.html
node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.js
node_modules/@aws-crypto/sha256-js/node_modules/tslib/modules/index.js
node_modules/@aws-crypto/sha256-js/node_modules/tslib/modules/package.json
node_modules/@aws-crypto/sha256-js/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js
node_modules/@aws-crypto/sha256-js/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json
node_modules/@aws-crypto/sha256-js/src/constants.ts
node_modules/@aws-crypto/sha256-js/src/index.ts
node_modules/@aws-crypto/sha256-js/src/jsSha256.ts
node_modules/@aws-crypto/sha256-js/src/knownHashes.fixture.ts
node_modules/@aws-crypto/sha256-js/src/RawSha256.ts
node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md
node_modules/@aws-crypto/supports-web-crypto/LICENSE
node_modules/@aws-crypto/supports-web-crypto/package.json
node_modules/@aws-crypto/supports-web-crypto/README.md
node_modules/@aws-crypto/supports-web-crypto/tsconfig.json
node_modules/@aws-crypto/supports-web-crypto/build/index.d.ts
node_modules/@aws-crypto/supports-web-crypto/build/index.js
node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.d.ts
node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js
node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/CopyrightNotice.txt
node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/LICENSE.txt
node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/package.json
node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/README.md
node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.d.ts
node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.html
node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.js
node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.html
node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.js
node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/modules/index.js
node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/modules/package.json
node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js
node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json
node_modules/@aws-crypto/supports-web-crypto/src/index.ts
node_modules/@aws-crypto/supports-web-crypto/src/supportsWebCrypto.ts
node_modules/@aws-crypto/util/CHANGELOG.md
node_modules/@aws-crypto/util/LICENSE
node_modules/@aws-crypto/util/package.json
node_modules/@aws-crypto/util/README.md
node_modules/@aws-crypto/util/tsconfig.json
node_modules/@aws-crypto/util/build/convertToBuffer.d.ts
node_modules/@aws-crypto/util/build/convertToBuffer.js
node_modules/@aws-crypto/util/build/convertToBuffer.js.map
node_modules/@aws-crypto/util/build/index.d.ts
node_modules/@aws-crypto/util/build/index.js
node_modules/@aws-crypto/util/build/index.js.map
node_modules/@aws-crypto/util/build/isEmptyData.d.ts
node_modules/@aws-crypto/util/build/isEmptyData.js
node_modules/@aws-crypto/util/build/isEmptyData.js.map
node_modules/@aws-crypto/util/build/numToUint8.d.ts
node_modules/@aws-crypto/util/build/numToUint8.js
node_modules/@aws-crypto/util/build/numToUint8.js.map
node_modules/@aws-crypto/util/build/uint32ArrayFrom.d.ts
node_modules/@aws-crypto/util/build/uint32ArrayFrom.js
node_modules/@aws-crypto/util/build/uint32ArrayFrom.js.map
node_modules/@aws-crypto/util/node_modules/tslib/CopyrightNotice.txt
node_modules/@aws-crypto/util/node_modules/tslib/LICENSE.txt
node_modules/@aws-crypto/util/node_modules/tslib/package.json
node_modules/@aws-crypto/util/node_modules/tslib/README.md
node_modules/@aws-crypto/util/node_modules/tslib/tslib.d.ts
node_modules/@aws-crypto/util/node_modules/tslib/tslib.es6.html
node_modules/@aws-crypto/util/node_modules/tslib/tslib.es6.js
node_modules/@aws-crypto/util/node_modules/tslib/tslib.html
node_modules/@aws-crypto/util/node_modules/tslib/tslib.js
node_modules/@aws-crypto/util/node_modules/tslib/modules/index.js
node_modules/@aws-crypto/util/node_modules/tslib/modules/package.json
node_modules/@aws-crypto/util/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js
node_modules/@aws-crypto/util/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json
node_modules/@aws-crypto/util/src/convertToBuffer.ts
node_modules/@aws-crypto/util/src/index.ts
node_modules/@aws-crypto/util/src/isEmptyData.ts
node_modules/@aws-crypto/util/src/numToUint8.ts
node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts
node_modules/@aws-sdk/client-cognito-identity/LICENSE
node_modules/@aws-sdk/client-cognito-identity/package.json
node_modules/@aws-sdk/client-cognito-identity/README.md
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/CognitoIdentity.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/CognitoIdentityClient.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/extensionConfiguration.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/index.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/runtimeConfig.browser.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/runtimeConfig.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/runtimeConfig.native.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/runtimeConfig.shared.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/runtimeExtensions.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/CreateIdentityPoolCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/DeleteIdentitiesCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/DeleteIdentityPoolCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/DescribeIdentityCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/DescribeIdentityPoolCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/GetCredentialsForIdentityCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/GetIdCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/GetIdentityPoolRolesCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/GetOpenIdTokenCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/GetOpenIdTokenForDeveloperIdentityCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/GetPrincipalTagAttributeMapCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/index.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/ListIdentitiesCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/ListIdentityPoolsCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/ListTagsForResourceCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/LookupDeveloperIdentityCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/MergeDeveloperIdentitiesCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/SetIdentityPoolRolesCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/SetPrincipalTagAttributeMapCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/TagResourceCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/UnlinkDeveloperIdentityCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/UnlinkIdentityCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/UntagResourceCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/commands/UpdateIdentityPoolCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/endpoint/EndpointParameters.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/endpoint/endpointResolver.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/endpoint/ruleset.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/models/CognitoIdentityServiceException.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/models/index.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/models/models_0.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/pagination/index.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/pagination/Interfaces.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/pagination/ListIdentityPoolsPaginator.js
node_modules/@aws-sdk/client-cognito-identity/dist-cjs/protocols/Aws_json1_1.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/CognitoIdentity.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/CognitoIdentityClient.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/extensionConfiguration.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/index.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/runtimeConfig.browser.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/runtimeConfig.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/runtimeConfig.native.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/runtimeConfig.shared.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/runtimeExtensions.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/CreateIdentityPoolCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/DeleteIdentitiesCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/DeleteIdentityPoolCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/DescribeIdentityCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/DescribeIdentityPoolCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/GetCredentialsForIdentityCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/GetIdCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/GetIdentityPoolRolesCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/GetOpenIdTokenCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/GetOpenIdTokenForDeveloperIdentityCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/GetPrincipalTagAttributeMapCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/index.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/ListIdentitiesCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/ListIdentityPoolsCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/ListTagsForResourceCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/LookupDeveloperIdentityCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/MergeDeveloperIdentitiesCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/SetIdentityPoolRolesCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/SetPrincipalTagAttributeMapCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/TagResourceCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/UnlinkDeveloperIdentityCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/UnlinkIdentityCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/UntagResourceCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/commands/UpdateIdentityPoolCommand.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/endpoint/EndpointParameters.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/endpoint/endpointResolver.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/endpoint/ruleset.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/models/CognitoIdentityServiceException.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/models/index.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/models/models_0.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/pagination/index.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/pagination/Interfaces.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/pagination/ListIdentityPoolsPaginator.js
node_modules/@aws-sdk/client-cognito-identity/dist-es/protocols/Aws_json1_1.js
node_modules/@aws-sdk/client-cognito-identity/dist-types/CognitoIdentity.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/CognitoIdentityClient.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/extensionConfiguration.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/index.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/runtimeConfig.browser.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/runtimeConfig.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/runtimeConfig.native.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/runtimeConfig.shared.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/runtimeExtensions.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/CreateIdentityPoolCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/DeleteIdentitiesCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/DeleteIdentityPoolCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/DescribeIdentityCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/DescribeIdentityPoolCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/GetCredentialsForIdentityCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/GetIdCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/GetIdentityPoolRolesCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/GetOpenIdTokenCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/GetOpenIdTokenForDeveloperIdentityCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/GetPrincipalTagAttributeMapCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/index.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/ListIdentitiesCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/ListIdentityPoolsCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/ListTagsForResourceCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/LookupDeveloperIdentityCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/MergeDeveloperIdentitiesCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/SetIdentityPoolRolesCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/SetPrincipalTagAttributeMapCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/TagResourceCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/UnlinkDeveloperIdentityCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/UnlinkIdentityCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/UntagResourceCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/commands/UpdateIdentityPoolCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/endpoint/EndpointParameters.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/endpoint/endpointResolver.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/endpoint/ruleset.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/models/CognitoIdentityServiceException.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/models/index.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/models/models_0.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/pagination/index.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/pagination/Interfaces.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/pagination/ListIdentityPoolsPaginator.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/protocols/Aws_json1_1.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/CognitoIdentity.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/CognitoIdentityClient.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/extensionConfiguration.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/index.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/runtimeConfig.browser.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/runtimeConfig.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/runtimeConfig.native.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/runtimeConfig.shared.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/runtimeExtensions.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/CreateIdentityPoolCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/DeleteIdentitiesCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/DeleteIdentityPoolCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/DescribeIdentityCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/DescribeIdentityPoolCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetCredentialsForIdentityCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetIdCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetIdentityPoolRolesCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetOpenIdTokenCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetOpenIdTokenForDeveloperIdentityCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetPrincipalTagAttributeMapCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/index.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/ListIdentitiesCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/ListIdentityPoolsCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/LookupDeveloperIdentityCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/MergeDeveloperIdentitiesCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/SetIdentityPoolRolesCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/SetPrincipalTagAttributeMapCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/TagResourceCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/UnlinkDeveloperIdentityCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/UnlinkIdentityCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/UntagResourceCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/UpdateIdentityPoolCommand.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/endpoint/EndpointParameters.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/endpoint/endpointResolver.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/endpoint/ruleset.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/models/CognitoIdentityServiceException.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/models/index.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/models/models_0.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/pagination/index.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/pagination/Interfaces.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/pagination/ListIdentityPoolsPaginator.d.ts
node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/protocols/Aws_json1_1.d.ts
node_modules/@aws-sdk/client-sso/LICENSE
node_modules/@aws-sdk/client-sso/package.json
node_modules/@aws-sdk/client-sso/README.md
node_modules/@aws-sdk/client-sso/dist-cjs/extensionConfiguration.js
node_modules/@aws-sdk/client-sso/dist-cjs/index.js
node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js
node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js
node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.native.js
node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js
node_modules/@aws-sdk/client-sso/dist-cjs/runtimeExtensions.js
node_modules/@aws-sdk/client-sso/dist-cjs/SSO.js
node_modules/@aws-sdk/client-sso/dist-cjs/SSOClient.js
node_modules/@aws-sdk/client-sso/dist-cjs/commands/GetRoleCredentialsCommand.js
node_modules/@aws-sdk/client-sso/dist-cjs/commands/index.js
node_modules/@aws-sdk/client-sso/dist-cjs/commands/ListAccountRolesCommand.js
node_modules/@aws-sdk/client-sso/dist-cjs/commands/ListAccountsCommand.js
node_modules/@aws-sdk/client-sso/dist-cjs/commands/LogoutCommand.js
node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/EndpointParameters.js
node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/endpointResolver.js
node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/ruleset.js
node_modules/@aws-sdk/client-sso/dist-cjs/models/index.js
node_modules/@aws-sdk/client-sso/dist-cjs/models/models_0.js
node_modules/@aws-sdk/client-sso/dist-cjs/models/SSOServiceException.js
node_modules/@aws-sdk/client-sso/dist-cjs/pagination/index.js
node_modules/@aws-sdk/client-sso/dist-cjs/pagination/Interfaces.js
node_modules/@aws-sdk/client-sso/dist-cjs/pagination/ListAccountRolesPaginator.js
node_modules/@aws-sdk/client-sso/dist-cjs/pagination/ListAccountsPaginator.js
node_modules/@aws-sdk/client-sso/dist-cjs/protocols/Aws_restJson1.js
node_modules/@aws-sdk/client-sso/dist-es/extensionConfiguration.js
node_modules/@aws-sdk/client-sso/dist-es/index.js
node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js
node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js
node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.native.js
node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.shared.js
node_modules/@aws-sdk/client-sso/dist-es/runtimeExtensions.js
node_modules/@aws-sdk/client-sso/dist-es/SSO.js
node_modules/@aws-sdk/client-sso/dist-es/SSOClient.js
node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js
node_modules/@aws-sdk/client-sso/dist-es/commands/index.js
node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js
node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js
node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js
node_modules/@aws-sdk/client-sso/dist-es/endpoint/EndpointParameters.js
node_modules/@aws-sdk/client-sso/dist-es/endpoint/endpointResolver.js
node_modules/@aws-sdk/client-sso/dist-es/endpoint/ruleset.js
node_modules/@aws-sdk/client-sso/dist-es/models/index.js
node_modules/@aws-sdk/client-sso/dist-es/models/models_0.js
node_modules/@aws-sdk/client-sso/dist-es/models/SSOServiceException.js
node_modules/@aws-sdk/client-sso/dist-es/pagination/index.js
node_modules/@aws-sdk/client-sso/dist-es/pagination/Interfaces.js
node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountRolesPaginator.js
node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountsPaginator.js
node_modules/@aws-sdk/client-sso/dist-es/protocols/Aws_restJson1.js
node_modules/@aws-sdk/client-sso/dist-types/extensionConfiguration.d.ts
node_modules/@aws-sdk/client-sso/dist-types/index.d.ts
node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.browser.d.ts
node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.d.ts
node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.native.d.ts
node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.shared.d.ts
node_modules/@aws-sdk/client-sso/dist-types/runtimeExtensions.d.ts
node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts
node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts
node_modules/@aws-sdk/client-sso/dist-types/commands/GetRoleCredentialsCommand.d.ts
node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts
node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts
node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts
node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts
node_modules/@aws-sdk/client-sso/dist-types/endpoint/EndpointParameters.d.ts
node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointResolver.d.ts
node_modules/@aws-sdk/client-sso/dist-types/endpoint/ruleset.d.ts
node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts
node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts
node_modules/@aws-sdk/client-sso/dist-types/models/SSOServiceException.d.ts
node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts
node_modules/@aws-sdk/client-sso/dist-types/pagination/Interfaces.d.ts
node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountRolesPaginator.d.ts
node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountsPaginator.d.ts
node_modules/@aws-sdk/client-sso/dist-types/protocols/Aws_restJson1.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/extensionConfiguration.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeExtensions.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/index.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountsCommand.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/LogoutCommand.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/EndpointParameters.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/endpointResolver.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/ruleset.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/index.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/SSOServiceException.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/index.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/Interfaces.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts
node_modules/@aws-sdk/client-sso/dist-types/ts3.4/protocols/Aws_restJson1.d.ts
node_modules/@aws-sdk/client-sts/LICENSE
node_modules/@aws-sdk/client-sts/package.json
node_modules/@aws-sdk/client-sts/README.md
node_modules/@aws-sdk/client-sts/dist-cjs/defaultRoleAssumers.js
node_modules/@aws-sdk/client-sts/dist-cjs/defaultStsRoleAssumers.js
node_modules/@aws-sdk/client-sts/dist-cjs/extensionConfiguration.js
node_modules/@aws-sdk/client-sts/dist-cjs/index.js
node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.browser.js
node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js
node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.native.js
node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.shared.js
node_modules/@aws-sdk/client-sts/dist-cjs/runtimeExtensions.js
node_modules/@aws-sdk/client-sts/dist-cjs/STS.js
node_modules/@aws-sdk/client-sts/dist-cjs/STSClient.js
node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleCommand.js
node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleWithSAMLCommand.js
node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleWithWebIdentityCommand.js
node_modules/@aws-sdk/client-sts/dist-cjs/commands/DecodeAuthorizationMessageCommand.js
node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetAccessKeyInfoCommand.js
node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetCallerIdentityCommand.js
node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetFederationTokenCommand.js
node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetSessionTokenCommand.js
node_modules/@aws-sdk/client-sts/dist-cjs/commands/index.js
node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/EndpointParameters.js
node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/endpointResolver.js
node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/ruleset.js
node_modules/@aws-sdk/client-sts/dist-cjs/models/index.js
node_modules/@aws-sdk/client-sts/dist-cjs/models/models_0.js
node_modules/@aws-sdk/client-sts/dist-cjs/models/STSServiceException.js
node_modules/@aws-sdk/client-sts/dist-cjs/protocols/Aws_query.js
node_modules/@aws-sdk/client-sts/dist-es/defaultRoleAssumers.js
node_modules/@aws-sdk/client-sts/dist-es/defaultStsRoleAssumers.js
node_modules/@aws-sdk/client-sts/dist-es/extensionConfiguration.js
node_modules/@aws-sdk/client-sts/dist-es/index.js
node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.browser.js
node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.js
node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.native.js
node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.shared.js
node_modules/@aws-sdk/client-sts/dist-es/runtimeExtensions.js
node_modules/@aws-sdk/client-sts/dist-es/STS.js
node_modules/@aws-sdk/client-sts/dist-es/STSClient.js
node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleCommand.js
node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithSAMLCommand.js
node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithWebIdentityCommand.js
node_modules/@aws-sdk/client-sts/dist-es/commands/DecodeAuthorizationMessageCommand.js
node_modules/@aws-sdk/client-sts/dist-es/commands/GetAccessKeyInfoCommand.js
node_modules/@aws-sdk/client-sts/dist-es/commands/GetCallerIdentityCommand.js
node_modules/@aws-sdk/client-sts/dist-es/commands/GetFederationTokenCommand.js
node_modules/@aws-sdk/client-sts/dist-es/commands/GetSessionTokenCommand.js
node_modules/@aws-sdk/client-sts/dist-es/commands/index.js
node_modules/@aws-sdk/client-sts/dist-es/endpoint/EndpointParameters.js
node_modules/@aws-sdk/client-sts/dist-es/endpoint/endpointResolver.js
node_modules/@aws-sdk/client-sts/dist-es/endpoint/ruleset.js
node_modules/@aws-sdk/client-sts/dist-es/models/index.js
node_modules/@aws-sdk/client-sts/dist-es/models/models_0.js
node_modules/@aws-sdk/client-sts/dist-es/models/STSServiceException.js
node_modules/@aws-sdk/client-sts/dist-es/protocols/Aws_query.js
node_modules/@aws-sdk/client-sts/dist-types/defaultRoleAssumers.d.ts
node_modules/@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers.d.ts
node_modules/@aws-sdk/client-sts/dist-types/extensionConfiguration.d.ts
node_modules/@aws-sdk/client-sts/dist-types/index.d.ts
node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.browser.d.ts
node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.d.ts
node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.native.d.ts
node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.shared.d.ts
node_modules/@aws-sdk/client-sts/dist-types/runtimeExtensions.d.ts
node_modules/@aws-sdk/client-sts/dist-types/STS.d.ts
node_modules/@aws-sdk/client-sts/dist-types/STSClient.d.ts
node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleCommand.d.ts
node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithSAMLCommand.d.ts
node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithWebIdentityCommand.d.ts
node_modules/@aws-sdk/client-sts/dist-types/commands/DecodeAuthorizationMessageCommand.d.ts
node_modules/@aws-sdk/client-sts/dist-types/commands/GetAccessKeyInfoCommand.d.ts
node_modules/@aws-sdk/client-sts/dist-types/commands/GetCallerIdentityCommand.d.ts
node_modules/@aws-sdk/client-sts/dist-types/commands/GetFederationTokenCommand.d.ts
node_modules/@aws-sdk/client-sts/dist-types/commands/GetSessionTokenCommand.d.ts
node_modules/@aws-sdk/client-sts/dist-types/commands/index.d.ts
node_modules/@aws-sdk/client-sts/dist-types/endpoint/EndpointParameters.d.ts
node_modules/@aws-sdk/client-sts/dist-types/endpoint/endpointResolver.d.ts
node_modules/@aws-sdk/client-sts/dist-types/endpoint/ruleset.d.ts
node_modules/@aws-sdk/client-sts/dist-types/models/index.d.ts
node_modules/@aws-sdk/client-sts/dist-types/models/models_0.d.ts
node_modules/@aws-sdk/client-sts/dist-types/models/STSServiceException.d.ts
node_modules/@aws-sdk/client-sts/dist-types/protocols/Aws_query.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultRoleAssumers.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultStsRoleAssumers.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/extensionConfiguration.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/index.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.browser.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.native.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.shared.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeExtensions.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STS.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STSClient.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleCommand.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithSAMLCommand.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithWebIdentityCommand.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/DecodeAuthorizationMessageCommand.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetAccessKeyInfoCommand.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetCallerIdentityCommand.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetFederationTokenCommand.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetSessionTokenCommand.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/index.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/EndpointParameters.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/endpointResolver.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/ruleset.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/index.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/models_0.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/STSServiceException.d.ts
node_modules/@aws-sdk/client-sts/dist-types/ts3.4/protocols/Aws_query.d.ts
node_modules/@aws-sdk/credential-provider-cognito-identity/LICENSE
node_modules/@aws-sdk/credential-provider-cognito-identity/package.json
node_modules/@aws-sdk/credential-provider-cognito-identity/README.md
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-cjs/CognitoProviderParameters.js
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-cjs/fromCognitoIdentity.js
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-cjs/fromCognitoIdentityPool.js
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-cjs/index.js
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-cjs/IndexedDbStorage.js
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-cjs/InMemoryStorage.js
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-cjs/localStorage.js
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-cjs/Logins.js
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-cjs/resolveLogins.js
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-cjs/Storage.js
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-es/CognitoProviderParameters.js
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-es/fromCognitoIdentity.js
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-es/fromCognitoIdentityPool.js
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-es/index.js
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-es/IndexedDbStorage.js
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-es/InMemoryStorage.js
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-es/localStorage.js
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-es/Logins.js
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-es/resolveLogins.js
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-es/Storage.js
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/CognitoProviderParameters.d.ts
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/fromCognitoIdentity.d.ts
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/fromCognitoIdentityPool.d.ts
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/index.d.ts
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/IndexedDbStorage.d.ts
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/InMemoryStorage.d.ts
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/localStorage.d.ts
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/Logins.d.ts
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/resolveLogins.d.ts
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/Storage.d.ts
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/CognitoProviderParameters.d.ts
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/fromCognitoIdentity.d.ts
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/fromCognitoIdentityPool.d.ts
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/index.d.ts
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/IndexedDbStorage.d.ts
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/InMemoryStorage.d.ts
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/localStorage.d.ts
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/Logins.d.ts
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/resolveLogins.d.ts
node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/Storage.d.ts
node_modules/@aws-sdk/credential-provider-env/LICENSE
node_modules/@aws-sdk/credential-provider-env/package.json
node_modules/@aws-sdk/credential-provider-env/README.md
node_modules/@aws-sdk/credential-provider-env/dist-cjs/fromEnv.js
node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js
node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js
node_modules/@aws-sdk/credential-provider-env/dist-es/index.js
node_modules/@aws-sdk/credential-provider-env/dist-types/fromEnv.d.ts
node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts
node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/fromEnv.d.ts
node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts
node_modules/@aws-sdk/credential-provider-ini/LICENSE
node_modules/@aws-sdk/credential-provider-ini/package.json
node_modules/@aws-sdk/credential-provider-ini/README.md
node_modules/@aws-sdk/credential-provider-ini/dist-cjs/fromIni.js
node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js
node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveAssumeRoleCredentials.js
node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveCredentialSource.js
node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveProcessCredentials.js
node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveProfileData.js
node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveSsoCredentials.js
node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveStaticCredentials.js
node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveWebIdentityCredentials.js
node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js
node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js
node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js
node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js
node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js
node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js
node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js
node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js
node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js
node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts
node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts
node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts
node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveCredentialSource.d.ts
node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProcessCredentials.d.ts
node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts
node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts
node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveStaticCredentials.d.ts
node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveWebIdentityCredentials.d.ts
node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts
node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts
node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts
node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts
node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProcessCredentials.d.ts
node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts
node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts
node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts
node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveWebIdentityCredentials.d.ts
node_modules/@aws-sdk/credential-provider-node/LICENSE
node_modules/@aws-sdk/credential-provider-node/package.json
node_modules/@aws-sdk/credential-provider-node/README.md
node_modules/@aws-sdk/credential-provider-node/dist-cjs/defaultProvider.js
node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js
node_modules/@aws-sdk/credential-provider-node/dist-cjs/remoteProvider.js
node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js
node_modules/@aws-sdk/credential-provider-node/dist-es/index.js
node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js
node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts
node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts
node_modules/@aws-sdk/credential-provider-node/dist-types/remoteProvider.d.ts
node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts
node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts
node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/remoteProvider.d.ts
node_modules/@aws-sdk/credential-provider-process/LICENSE
node_modules/@aws-sdk/credential-provider-process/package.json
node_modules/@aws-sdk/credential-provider-process/README.md
node_modules/@aws-sdk/credential-provider-process/dist-cjs/fromProcess.js
node_modules/@aws-sdk/credential-provider-process/dist-cjs/getValidatedProcessCredentials.js
node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js
node_modules/@aws-sdk/credential-provider-process/dist-cjs/ProcessCredentials.js
node_modules/@aws-sdk/credential-provider-process/dist-cjs/resolveProcessCredentials.js
node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js
node_modules/@aws-sdk/credential-provider-process/dist-es/getValidatedProcessCredentials.js
node_modules/@aws-sdk/credential-provider-process/dist-es/index.js
node_modules/@aws-sdk/credential-provider-process/dist-es/ProcessCredentials.js
node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js
node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts
node_modules/@aws-sdk/credential-provider-process/dist-types/getValidatedProcessCredentials.d.ts
node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts
node_modules/@aws-sdk/credential-provider-process/dist-types/ProcessCredentials.d.ts
node_modules/@aws-sdk/credential-provider-process/dist-types/resolveProcessCredentials.d.ts
node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts
node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/getValidatedProcessCredentials.d.ts
node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts
node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/ProcessCredentials.d.ts
node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/resolveProcessCredentials.d.ts
node_modules/@aws-sdk/credential-provider-sso/LICENSE
node_modules/@aws-sdk/credential-provider-sso/package.json
node_modules/@aws-sdk/credential-provider-sso/README.md
node_modules/@aws-sdk/credential-provider-sso/dist-cjs/fromSSO.js
node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js
node_modules/@aws-sdk/credential-provider-sso/dist-cjs/isSsoProfile.js
node_modules/@aws-sdk/credential-provider-sso/dist-cjs/resolveSSOCredentials.js
node_modules/@aws-sdk/credential-provider-sso/dist-cjs/types.js
node_modules/@aws-sdk/credential-provider-sso/dist-cjs/validateSsoProfile.js
node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js
node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js
node_modules/@aws-sdk/credential-provider-sso/dist-es/isSsoProfile.js
node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js
node_modules/@aws-sdk/credential-provider-sso/dist-es/types.js
node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js
node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts
node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts
node_modules/@aws-sdk/credential-provider-sso/dist-types/isSsoProfile.d.ts
node_modules/@aws-sdk/credential-provider-sso/dist-types/resolveSSOCredentials.d.ts
node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts
node_modules/@aws-sdk/credential-provider-sso/dist-types/validateSsoProfile.d.ts
node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts
node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts
node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/isSsoProfile.d.ts
node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts
node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/types.d.ts
node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/validateSsoProfile.d.ts
node_modules/@aws-sdk/credential-provider-web-identity/LICENSE
node_modules/@aws-sdk/credential-provider-web-identity/package.json
node_modules/@aws-sdk/credential-provider-web-identity/README.md
node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js
node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js
node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js
node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js
node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js
node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js
node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts
node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromWebToken.d.ts
node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts
node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts
node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts
node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts
node_modules/@aws-sdk/credential-providers/LICENSE
node_modules/@aws-sdk/credential-providers/package.json
node_modules/@aws-sdk/credential-providers/README.md
node_modules/@aws-sdk/credential-providers/dist-cjs/fromCognitoIdentity.js
node_modules/@aws-sdk/credential-providers/dist-cjs/fromCognitoIdentityPool.js
node_modules/@aws-sdk/credential-providers/dist-cjs/fromContainerMetadata.js
node_modules/@aws-sdk/credential-providers/dist-cjs/fromEnv.js
node_modules/@aws-sdk/credential-providers/dist-cjs/fromIni.js
node_modules/@aws-sdk/credential-providers/dist-cjs/fromInstanceMetadata.js
node_modules/@aws-sdk/credential-providers/dist-cjs/fromNodeProviderChain.js
node_modules/@aws-sdk/credential-providers/dist-cjs/fromProcess.js
node_modules/@aws-sdk/credential-providers/dist-cjs/fromSSO.js
node_modules/@aws-sdk/credential-providers/dist-cjs/fromTemporaryCredentials.js
node_modules/@aws-sdk/credential-providers/dist-cjs/fromTokenFile.js
node_modules/@aws-sdk/credential-providers/dist-cjs/fromWebToken.js
node_modules/@aws-sdk/credential-providers/dist-cjs/index.browser.js
node_modules/@aws-sdk/credential-providers/dist-cjs/index.js
node_modules/@aws-sdk/credential-providers/dist-es/fromCognitoIdentity.js
node_modules/@aws-sdk/credential-providers/dist-es/fromCognitoIdentityPool.js
node_modules/@aws-sdk/credential-providers/dist-es/fromContainerMetadata.js
node_modules/@aws-sdk/credential-providers/dist-es/fromEnv.js
node_modules/@aws-sdk/credential-providers/dist-es/fromIni.js
node_modules/@aws-sdk/credential-providers/dist-es/fromInstanceMetadata.js
node_modules/@aws-sdk/credential-providers/dist-es/fromNodeProviderChain.js
node_modules/@aws-sdk/credential-providers/dist-es/fromProcess.js
node_modules/@aws-sdk/credential-providers/dist-es/fromSSO.js
node_modules/@aws-sdk/credential-providers/dist-es/fromTemporaryCredentials.js
node_modules/@aws-sdk/credential-providers/dist-es/fromTokenFile.js
node_modules/@aws-sdk/credential-providers/dist-es/fromWebToken.js
node_modules/@aws-sdk/credential-providers/dist-es/index.browser.js
node_modules/@aws-sdk/credential-providers/dist-es/index.js
node_modules/@aws-sdk/credential-providers/dist-types/fromCognitoIdentity.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/fromCognitoIdentityPool.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/fromContainerMetadata.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/fromEnv.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/fromIni.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/fromInstanceMetadata.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/fromNodeProviderChain.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/fromProcess.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/fromSSO.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/fromTemporaryCredentials.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/fromTokenFile.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/fromWebToken.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/index.browser.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/index.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromCognitoIdentity.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromCognitoIdentityPool.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromContainerMetadata.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromEnv.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromIni.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromInstanceMetadata.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromNodeProviderChain.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromProcess.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromSSO.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromTemporaryCredentials.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromTokenFile.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromWebToken.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/index.browser.d.ts
node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/index.d.ts
node_modules/@aws-sdk/middleware-host-header/LICENSE
node_modules/@aws-sdk/middleware-host-header/package.json
node_modules/@aws-sdk/middleware-host-header/README.md
node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js
node_modules/@aws-sdk/middleware-host-header/dist-es/index.js
node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts
node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts
node_modules/@aws-sdk/middleware-logger/LICENSE
node_modules/@aws-sdk/middleware-logger/package.json
node_modules/@aws-sdk/middleware-logger/README.md
node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js
node_modules/@aws-sdk/middleware-logger/dist-cjs/loggerMiddleware.js
node_modules/@aws-sdk/middleware-logger/dist-es/index.js
node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js
node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts
node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts
node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts
node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts
node_modules/@aws-sdk/middleware-recursion-detection/LICENSE
node_modules/@aws-sdk/middleware-recursion-detection/package.json
node_modules/@aws-sdk/middleware-recursion-detection/README.md
node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js
node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js
node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts
node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts
node_modules/@aws-sdk/middleware-sdk-sts/LICENSE
node_modules/@aws-sdk/middleware-sdk-sts/package.json
node_modules/@aws-sdk/middleware-sdk-sts/README.md
node_modules/@aws-sdk/middleware-sdk-sts/dist-cjs/index.js
node_modules/@aws-sdk/middleware-sdk-sts/dist-es/index.js
node_modules/@aws-sdk/middleware-sdk-sts/dist-types/index.d.ts
node_modules/@aws-sdk/middleware-sdk-sts/dist-types/ts3.4/index.d.ts
node_modules/@aws-sdk/middleware-signing/LICENSE
node_modules/@aws-sdk/middleware-signing/package.json
node_modules/@aws-sdk/middleware-signing/README.md
node_modules/@aws-sdk/middleware-signing/dist-cjs/awsAuthConfiguration.js
node_modules/@aws-sdk/middleware-signing/dist-cjs/awsAuthMiddleware.js
node_modules/@aws-sdk/middleware-signing/dist-cjs/index.js
node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/getSkewCorrectedDate.js
node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/getUpdatedSystemClockOffset.js
node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/isClockSkewed.js
node_modules/@aws-sdk/middleware-signing/dist-es/awsAuthConfiguration.js
node_modules/@aws-sdk/middleware-signing/dist-es/awsAuthMiddleware.js
node_modules/@aws-sdk/middleware-signing/dist-es/index.js
node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js
node_modules/@aws-sdk/middleware-signing/dist-es/utils/getUpdatedSystemClockOffset.js
node_modules/@aws-sdk/middleware-signing/dist-es/utils/isClockSkewed.js
node_modules/@aws-sdk/middleware-signing/dist-types/awsAuthConfiguration.d.ts
node_modules/@aws-sdk/middleware-signing/dist-types/awsAuthMiddleware.d.ts
node_modules/@aws-sdk/middleware-signing/dist-types/index.d.ts
node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/awsAuthConfiguration.d.ts
node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/awsAuthMiddleware.d.ts
node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/index.d.ts
node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getSkewCorrectedDate.d.ts
node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getUpdatedSystemClockOffset.d.ts
node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/isClockSkewed.d.ts
node_modules/@aws-sdk/middleware-signing/dist-types/utils/getSkewCorrectedDate.d.ts
node_modules/@aws-sdk/middleware-signing/dist-types/utils/getUpdatedSystemClockOffset.d.ts
node_modules/@aws-sdk/middleware-signing/dist-types/utils/isClockSkewed.d.ts
node_modules/@aws-sdk/middleware-user-agent/LICENSE
node_modules/@aws-sdk/middleware-user-agent/package.json
node_modules/@aws-sdk/middleware-user-agent/README.md
node_modules/@aws-sdk/middleware-user-agent/dist-cjs/configurations.js
node_modules/@aws-sdk/middleware-user-agent/dist-cjs/constants.js
node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js
node_modules/@aws-sdk/middleware-user-agent/dist-cjs/user-agent-middleware.js
node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js
node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js
node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js
node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js
node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts
node_modules/@aws-sdk/middleware-user-agent/dist-types/constants.d.ts
node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts
node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts
node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts
node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts
node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts
node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts
node_modules/@aws-sdk/region-config-resolver/LICENSE
node_modules/@aws-sdk/region-config-resolver/package.json
node_modules/@aws-sdk/region-config-resolver/README.md
node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js
node_modules/@aws-sdk/region-config-resolver/dist-cjs/extensions/index.js
node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/config.js
node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/getRealRegion.js
node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/index.js
node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/isFipsRegion.js
node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js
node_modules/@aws-sdk/region-config-resolver/dist-es/index.js
node_modules/@aws-sdk/region-config-resolver/dist-es/extensions/index.js
node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/config.js
node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/getRealRegion.js
node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/index.js
node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/isFipsRegion.js
node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/resolveRegionConfig.js
node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts
node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts
node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/config.d.ts
node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/getRealRegion.d.ts
node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/index.d.ts
node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/isFipsRegion.d.ts
node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts
node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts
node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/extensions/index.d.ts
node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/config.d.ts
node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts
node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/index.d.ts
node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts
node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts
node_modules/@aws-sdk/token-providers/LICENSE
node_modules/@aws-sdk/token-providers/package.json
node_modules/@aws-sdk/token-providers/README.md
node_modules/@aws-sdk/token-providers/dist-cjs/constants.js
node_modules/@aws-sdk/token-providers/dist-cjs/fromSso.js
node_modules/@aws-sdk/token-providers/dist-cjs/fromStatic.js
node_modules/@aws-sdk/token-providers/dist-cjs/getNewSsoOidcToken.js
node_modules/@aws-sdk/token-providers/dist-cjs/getSsoOidcClient.js
node_modules/@aws-sdk/token-providers/dist-cjs/index.js
node_modules/@aws-sdk/token-providers/dist-cjs/nodeProvider.js
node_modules/@aws-sdk/token-providers/dist-cjs/validateTokenExpiry.js
node_modules/@aws-sdk/token-providers/dist-cjs/validateTokenKey.js
node_modules/@aws-sdk/token-providers/dist-cjs/writeSSOTokenToFile.js
node_modules/@aws-sdk/token-providers/dist-cjs/bundle/client-sso-oidc-browser.js
node_modules/@aws-sdk/token-providers/dist-cjs/bundle/client-sso-oidc-node.js
node_modules/@aws-sdk/token-providers/dist-es/constants.js
node_modules/@aws-sdk/token-providers/dist-es/fromSso.js
node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js
node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js
node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js
node_modules/@aws-sdk/token-providers/dist-es/index.js
node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js
node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js