-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathyarn.lock
More file actions
12464 lines (11325 loc) · 443 KB
/
yarn.lock
File metadata and controls
12464 lines (11325 loc) · 443 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@aligent/app@workspace:.":
version: 0.0.0-use.local
resolution: "@aligent/app@workspace:."
dependencies:
"@aligent/ts-code-standards": "npm:^4.0.2"
"@aws-lambda-powertools/logger": "npm:^2.24.1"
"@aws-sdk/client-s3": "npm:^3.888.0"
"@nx/devkit": "npm:21.5.2"
"@nx/esbuild": "npm:21.5.2"
"@nx/eslint": "npm:21.5.2"
"@nx/eslint-plugin": "npm:21.5.2"
"@nx/js": "npm:21.5.2"
"@nx/rsbuild": "npm:21.5.2"
"@nx/vite": "npm:21.5.2"
"@nx/web": "npm:21.5.2"
"@rsbuild/core": "npm:^1.5.6"
"@swc-node/register": "npm:^1.10.10"
"@swc/core": "npm:^1.13.3"
"@swc/helpers": "npm:^0.5.17"
"@types/aws-lambda": "npm:^8.10.152"
"@types/node": "npm:^22.17.0"
"@typescript-eslint/eslint-plugin": "npm:8.44.0"
"@typescript-eslint/parser": "npm:8.44.0"
"@vitest/coverage-v8": "npm:^3.2.4"
"@vitest/ui": "npm:^3.2.4"
arktype: "npm:^2.1.20"
aws-cdk: "npm:^2.1023.0"
aws-cdk-lib: "npm:^2.211.0"
cdk-nag: "npm:^2.36.54"
constructs: "npm:^10.4.2"
esbuild: "npm:~0.25.8"
esbuild-visualizer: "npm:^0.7.0"
eslint: "npm:^9.32.0"
eslint-config-prettier: "npm:10.1.8"
fast-glob: "npm:^3.3.3"
jiti: "npm:2.5.1"
jsonc-eslint-parser: "npm:^2.4.0"
nx: "npm:21.5.2"
open: "npm:^10.2.0"
prettier: "npm:^3.6.2"
store-parameters: "npm:^1.0.6"
tslib: "npm:^2.8.1"
typescript: "npm:~5.9.2"
vite: "npm:7.1.6"
vitest: "npm:^3.2.4"
languageName: unknown
linkType: soft
"@aligent/ts-code-standards@npm:^4.0.2":
version: 4.0.2
resolution: "@aligent/ts-code-standards@npm:4.0.2"
dependencies:
"@eslint/compat": "npm:^1.3.1"
"@eslint/js": "npm:^9.30.0"
eslint-config-prettier: "npm:^10.1.8"
eslint-plugin-jsx-a11y: "npm:^6.10.2"
eslint-plugin-prettier: "npm:^5.5.3"
eslint-plugin-react: "npm:^7.37.5"
eslint-plugin-react-hooks: "npm:^5.2.0"
prettier-plugin-organize-imports: "npm:^4.1.0"
prettier-plugin-tailwindcss: "npm:^0.6.13"
typescript-eslint: "npm:^8.35.1"
checksum: 10c0/a1f0e78f3aa7c700df67efafd59a8b67eb16158733721c86140ee4648ce2a98cf91061ca10ddaa87a1d326f6df06d9ea6b5ade2ab3486ef9ad57cf8942874ceb
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.0, @ampproject/remapping@npm:^2.3.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10c0/81d63cca5443e0f0c72ae18b544cc28c7c0ec2cea46e7cb888bb0e0f411a1191d0d6b7af798d54e30777d8d1488b2ec0732aac2be342d3d7d3ffd271c6f489ed
languageName: node
linkType: hard
"@applications/core@workspace:applications/core":
version: 0.0.0-use.local
resolution: "@applications/core@workspace:applications/core"
languageName: unknown
linkType: soft
"@ark/schema@npm:0.46.0":
version: 0.46.0
resolution: "@ark/schema@npm:0.46.0"
dependencies:
"@ark/util": "npm:0.46.0"
checksum: 10c0/5f9b0256689daa8c39868328ee57c4d091917376cba0b4b0607982d0dcd4f8b9dd840caf5877bf766af8ecc81756f780718077860f0e030c024fc75972e4d041
languageName: node
linkType: hard
"@ark/util@npm:0.46.0":
version: 0.46.0
resolution: "@ark/util@npm:0.46.0"
checksum: 10c0/18fb146510856191ba1924f8ee50aa650b2f8795de7df85301cdd068b4bb9bd6f1548d6f3a8f99e75c3d9036d4c4b6ca245c964ceb4d3fa431ea53653faa2aa8
languageName: node
linkType: hard
"@aws-cdk/asset-awscli-v1@npm:2.2.242":
version: 2.2.242
resolution: "@aws-cdk/asset-awscli-v1@npm:2.2.242"
checksum: 10c0/bf0d1694de559accb4dc28257eccbd959d37d5d2c5572aa77bc3a01612796b6fcf616e6b5fbb52f0212f61ee36e7eba333ba3a387142789eaf6b3a98e819c814
languageName: node
linkType: hard
"@aws-cdk/asset-node-proxy-agent-v6@npm:^2.1.0":
version: 2.1.0
resolution: "@aws-cdk/asset-node-proxy-agent-v6@npm:2.1.0"
checksum: 10c0/1ac7bccf82afee69c05241a5ad66345fbd468678ce633bb43c5921c7241a3186231b3b65f9ac6b9924933349c826a9470c79a3ddf14a03fbfce43f14c4d957f2
languageName: node
linkType: hard
"@aws-cdk/cloud-assembly-schema@npm:^48.2.0":
version: 48.4.0
resolution: "@aws-cdk/cloud-assembly-schema@npm:48.4.0"
dependencies:
jsonschema: "npm:~1.4.1"
semver: "npm:^7.7.2"
checksum: 10c0/3a06dce2da73aee790f1cbad02f71a2dcba1a3289919d06e589afd3665713f782f4161135db9c2f35e525940e61b563b88840b6ff9703775ab52752f6fc33e34
languageName: node
linkType: hard
"@aws-crypto/crc32@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10c0/eab9581d3363af5ea498ae0e72de792f54d8890360e14a9d8261b7b5c55ebe080279fb2556e07994d785341cdaa99ab0b1ccf137832b53b5904cd6928f2b094b
languageName: node
linkType: hard
"@aws-crypto/crc32c@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32c@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10c0/223efac396cdebaf5645568fa9a38cd0c322c960ae1f4276bedfe2e1031d0112e49d7d39225d386354680ecefae29f39af469a84b2ddfa77cb6692036188af77
languageName: node
linkType: hard
"@aws-crypto/sha1-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha1-browser@npm:5.2.0"
dependencies:
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/51fed0bf078c10322d910af179871b7d299dde5b5897873ffbeeb036f427e5d11d23db9794439226544b73901920fd19f4d86bbc103ed73cc0cfdea47a83c6ac
languageName: node
linkType: hard
"@aws-crypto/sha256-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-browser@npm:5.2.0"
dependencies:
"@aws-crypto/sha256-js": "npm:^5.2.0"
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/05f6d256794df800fe9aef5f52f2ac7415f7f3117d461f85a6aecaa4e29e91527b6fd503681a17136fa89e9dd3d916e9c7e4cfb5eba222875cb6c077bdc1d00d
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:5.2.0, @aws-crypto/sha256-js@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-js@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6c48701f8336341bb104dfde3d0050c89c288051f6b5e9bdfeb8091cf3ffc86efcd5c9e6ff2a4a134406b019c07aca9db608128f8d9267c952578a3108db9fd1
languageName: node
linkType: hard
"@aws-crypto/supports-web-crypto@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/supports-web-crypto@npm:5.2.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/4d2118e29d68ca3f5947f1e37ce1fbb3239a0c569cc938cdc8ab8390d595609b5caf51a07c9e0535105b17bf5c52ea256fed705a07e9681118120ab64ee73af2
languageName: node
linkType: hard
"@aws-crypto/util@npm:5.2.0, @aws-crypto/util@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/util@npm:5.2.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0362d4c197b1fd64b423966945130207d1fe23e1bb2878a18e361f7743c8d339dad3f8729895a29aa34fff6a86c65f281cf5167c4bf253f21627ae80b6dd2951
languageName: node
linkType: hard
"@aws-lambda-powertools/commons@npm:2.24.1":
version: 2.24.1
resolution: "@aws-lambda-powertools/commons@npm:2.24.1"
checksum: 10c0/03e9c7f29387006cda9e1fc0a549aa622a8cdc8ee65b462c0151ea89635782a6956e561fcb2df492d5fbed40141138e6dc0a24e4c7d18eaeaa7d9ec658ab6f5f
languageName: node
linkType: hard
"@aws-lambda-powertools/logger@npm:^2.24.1":
version: 2.24.1
resolution: "@aws-lambda-powertools/logger@npm:2.24.1"
dependencies:
"@aws-lambda-powertools/commons": "npm:2.24.1"
lodash.merge: "npm:^4.6.2"
peerDependencies:
"@aws-lambda-powertools/jmespath": 2.24.1
"@middy/core": 4.x || 5.x || 6.x
peerDependenciesMeta:
"@aws-lambda-powertools/jmespath":
optional: true
"@middy/core":
optional: true
checksum: 10c0/302dcc5655a3337ae34219de4ebb3e3038f9bbd400ec4d2fd60ec4095f26d8585c226186c56871f9962981d8539d648b4ad7f9b977fbf907a69463ec6b7efbd1
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.864.0":
version: 3.864.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.864.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.864.0"
"@aws-sdk/credential-provider-node": "npm:3.864.0"
"@aws-sdk/middleware-host-header": "npm:3.862.0"
"@aws-sdk/middleware-logger": "npm:3.862.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.862.0"
"@aws-sdk/middleware-user-agent": "npm:3.864.0"
"@aws-sdk/region-config-resolver": "npm:3.862.0"
"@aws-sdk/types": "npm:3.862.0"
"@aws-sdk/util-endpoints": "npm:3.862.0"
"@aws-sdk/util-user-agent-browser": "npm:3.862.0"
"@aws-sdk/util-user-agent-node": "npm:3.864.0"
"@smithy/config-resolver": "npm:^4.1.5"
"@smithy/core": "npm:^3.8.0"
"@smithy/fetch-http-handler": "npm:^5.1.1"
"@smithy/hash-node": "npm:^4.0.5"
"@smithy/invalid-dependency": "npm:^4.0.5"
"@smithy/middleware-content-length": "npm:^4.0.5"
"@smithy/middleware-endpoint": "npm:^4.1.18"
"@smithy/middleware-retry": "npm:^4.1.19"
"@smithy/middleware-serde": "npm:^4.0.9"
"@smithy/middleware-stack": "npm:^4.0.5"
"@smithy/node-config-provider": "npm:^4.1.4"
"@smithy/node-http-handler": "npm:^4.1.1"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/smithy-client": "npm:^4.4.10"
"@smithy/types": "npm:^4.3.2"
"@smithy/url-parser": "npm:^4.0.5"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.26"
"@smithy/util-defaults-mode-node": "npm:^4.0.26"
"@smithy/util-endpoints": "npm:^3.0.7"
"@smithy/util-middleware": "npm:^4.0.5"
"@smithy/util-retry": "npm:^4.0.7"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8e34f813b9f1ababb42f9b2666c29f8de908ac9c54dd1f0bd3befc36bf9675ba0d28c2d092171b444ffb7c7d5ae950afb1e687665fffc492cd93b609c389e894
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.888.0":
version: 3.888.0
resolution: "@aws-sdk/client-s3@npm:3.888.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:5.2.0"
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.888.0"
"@aws-sdk/credential-provider-node": "npm:3.888.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.887.0"
"@aws-sdk/middleware-expect-continue": "npm:3.887.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.888.0"
"@aws-sdk/middleware-host-header": "npm:3.887.0"
"@aws-sdk/middleware-location-constraint": "npm:3.887.0"
"@aws-sdk/middleware-logger": "npm:3.887.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.887.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.888.0"
"@aws-sdk/middleware-ssec": "npm:3.887.0"
"@aws-sdk/middleware-user-agent": "npm:3.888.0"
"@aws-sdk/region-config-resolver": "npm:3.887.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.888.0"
"@aws-sdk/types": "npm:3.887.0"
"@aws-sdk/util-endpoints": "npm:3.887.0"
"@aws-sdk/util-user-agent-browser": "npm:3.887.0"
"@aws-sdk/util-user-agent-node": "npm:3.888.0"
"@aws-sdk/xml-builder": "npm:3.887.0"
"@smithy/config-resolver": "npm:^4.2.1"
"@smithy/core": "npm:^3.11.0"
"@smithy/eventstream-serde-browser": "npm:^4.1.1"
"@smithy/eventstream-serde-config-resolver": "npm:^4.2.1"
"@smithy/eventstream-serde-node": "npm:^4.1.1"
"@smithy/fetch-http-handler": "npm:^5.2.1"
"@smithy/hash-blob-browser": "npm:^4.1.1"
"@smithy/hash-node": "npm:^4.1.1"
"@smithy/hash-stream-node": "npm:^4.1.1"
"@smithy/invalid-dependency": "npm:^4.1.1"
"@smithy/md5-js": "npm:^4.1.1"
"@smithy/middleware-content-length": "npm:^4.1.1"
"@smithy/middleware-endpoint": "npm:^4.2.1"
"@smithy/middleware-retry": "npm:^4.2.1"
"@smithy/middleware-serde": "npm:^4.1.1"
"@smithy/middleware-stack": "npm:^4.1.1"
"@smithy/node-config-provider": "npm:^4.2.1"
"@smithy/node-http-handler": "npm:^4.2.1"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/smithy-client": "npm:^4.6.1"
"@smithy/types": "npm:^4.5.0"
"@smithy/url-parser": "npm:^4.1.1"
"@smithy/util-base64": "npm:^4.1.0"
"@smithy/util-body-length-browser": "npm:^4.1.0"
"@smithy/util-body-length-node": "npm:^4.1.0"
"@smithy/util-defaults-mode-browser": "npm:^4.1.1"
"@smithy/util-defaults-mode-node": "npm:^4.1.1"
"@smithy/util-endpoints": "npm:^3.1.1"
"@smithy/util-middleware": "npm:^4.1.1"
"@smithy/util-retry": "npm:^4.1.1"
"@smithy/util-stream": "npm:^4.3.1"
"@smithy/util-utf8": "npm:^4.1.0"
"@smithy/util-waiter": "npm:^4.1.1"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/62e620bfeb496b6e8be2682f5b8a806c6b302b82b0e0c65232729ac342f113b2fc9c3982a247fa5f272dfa223e661380f9461d76306aad509152cca666dc3f1d
languageName: node
linkType: hard
"@aws-sdk/client-ssm@npm:^3.864.0":
version: 3.864.0
resolution: "@aws-sdk/client-ssm@npm:3.864.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.864.0"
"@aws-sdk/credential-provider-node": "npm:3.864.0"
"@aws-sdk/middleware-host-header": "npm:3.862.0"
"@aws-sdk/middleware-logger": "npm:3.862.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.862.0"
"@aws-sdk/middleware-user-agent": "npm:3.864.0"
"@aws-sdk/region-config-resolver": "npm:3.862.0"
"@aws-sdk/types": "npm:3.862.0"
"@aws-sdk/util-endpoints": "npm:3.862.0"
"@aws-sdk/util-user-agent-browser": "npm:3.862.0"
"@aws-sdk/util-user-agent-node": "npm:3.864.0"
"@smithy/config-resolver": "npm:^4.1.5"
"@smithy/core": "npm:^3.8.0"
"@smithy/fetch-http-handler": "npm:^5.1.1"
"@smithy/hash-node": "npm:^4.0.5"
"@smithy/invalid-dependency": "npm:^4.0.5"
"@smithy/middleware-content-length": "npm:^4.0.5"
"@smithy/middleware-endpoint": "npm:^4.1.18"
"@smithy/middleware-retry": "npm:^4.1.19"
"@smithy/middleware-serde": "npm:^4.0.9"
"@smithy/middleware-stack": "npm:^4.0.5"
"@smithy/node-config-provider": "npm:^4.1.4"
"@smithy/node-http-handler": "npm:^4.1.1"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/smithy-client": "npm:^4.4.10"
"@smithy/types": "npm:^4.3.2"
"@smithy/url-parser": "npm:^4.0.5"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.26"
"@smithy/util-defaults-mode-node": "npm:^4.0.26"
"@smithy/util-endpoints": "npm:^3.0.7"
"@smithy/util-middleware": "npm:^4.0.5"
"@smithy/util-retry": "npm:^4.0.7"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.7"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/b9a27e3a136597eddffc735dfeda79180fa85e64a1c241d37627217f82d5bdd3110c7540ffcef0a0df5d93f41abf5674396d0ea01a82378c6bbc03fd6111ad69
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.864.0":
version: 3.864.0
resolution: "@aws-sdk/client-sso@npm:3.864.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.864.0"
"@aws-sdk/middleware-host-header": "npm:3.862.0"
"@aws-sdk/middleware-logger": "npm:3.862.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.862.0"
"@aws-sdk/middleware-user-agent": "npm:3.864.0"
"@aws-sdk/region-config-resolver": "npm:3.862.0"
"@aws-sdk/types": "npm:3.862.0"
"@aws-sdk/util-endpoints": "npm:3.862.0"
"@aws-sdk/util-user-agent-browser": "npm:3.862.0"
"@aws-sdk/util-user-agent-node": "npm:3.864.0"
"@smithy/config-resolver": "npm:^4.1.5"
"@smithy/core": "npm:^3.8.0"
"@smithy/fetch-http-handler": "npm:^5.1.1"
"@smithy/hash-node": "npm:^4.0.5"
"@smithy/invalid-dependency": "npm:^4.0.5"
"@smithy/middleware-content-length": "npm:^4.0.5"
"@smithy/middleware-endpoint": "npm:^4.1.18"
"@smithy/middleware-retry": "npm:^4.1.19"
"@smithy/middleware-serde": "npm:^4.0.9"
"@smithy/middleware-stack": "npm:^4.0.5"
"@smithy/node-config-provider": "npm:^4.1.4"
"@smithy/node-http-handler": "npm:^4.1.1"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/smithy-client": "npm:^4.4.10"
"@smithy/types": "npm:^4.3.2"
"@smithy/url-parser": "npm:^4.0.5"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.26"
"@smithy/util-defaults-mode-node": "npm:^4.0.26"
"@smithy/util-endpoints": "npm:^3.0.7"
"@smithy/util-middleware": "npm:^4.0.5"
"@smithy/util-retry": "npm:^4.0.7"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/3f18d13ef59a19c636f6fa4e7c5142936f724906d9bcf5754bdb8bad9b65f215db25b565c65959fb12989c2eaf0861683babd67bb3391de391d51b75f64d269e
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.888.0":
version: 3.888.0
resolution: "@aws-sdk/client-sso@npm:3.888.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.888.0"
"@aws-sdk/middleware-host-header": "npm:3.887.0"
"@aws-sdk/middleware-logger": "npm:3.887.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.887.0"
"@aws-sdk/middleware-user-agent": "npm:3.888.0"
"@aws-sdk/region-config-resolver": "npm:3.887.0"
"@aws-sdk/types": "npm:3.887.0"
"@aws-sdk/util-endpoints": "npm:3.887.0"
"@aws-sdk/util-user-agent-browser": "npm:3.887.0"
"@aws-sdk/util-user-agent-node": "npm:3.888.0"
"@smithy/config-resolver": "npm:^4.2.1"
"@smithy/core": "npm:^3.11.0"
"@smithy/fetch-http-handler": "npm:^5.2.1"
"@smithy/hash-node": "npm:^4.1.1"
"@smithy/invalid-dependency": "npm:^4.1.1"
"@smithy/middleware-content-length": "npm:^4.1.1"
"@smithy/middleware-endpoint": "npm:^4.2.1"
"@smithy/middleware-retry": "npm:^4.2.1"
"@smithy/middleware-serde": "npm:^4.1.1"
"@smithy/middleware-stack": "npm:^4.1.1"
"@smithy/node-config-provider": "npm:^4.2.1"
"@smithy/node-http-handler": "npm:^4.2.1"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/smithy-client": "npm:^4.6.1"
"@smithy/types": "npm:^4.5.0"
"@smithy/url-parser": "npm:^4.1.1"
"@smithy/util-base64": "npm:^4.1.0"
"@smithy/util-body-length-browser": "npm:^4.1.0"
"@smithy/util-body-length-node": "npm:^4.1.0"
"@smithy/util-defaults-mode-browser": "npm:^4.1.1"
"@smithy/util-defaults-mode-node": "npm:^4.1.1"
"@smithy/util-endpoints": "npm:^3.1.1"
"@smithy/util-middleware": "npm:^4.1.1"
"@smithy/util-retry": "npm:^4.1.1"
"@smithy/util-utf8": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8798cad059c5f29baf191d240c9b49a2dd7dce855e151de2e3532b8c8cff7b717fdebc93689ec37759baf89e8cfdaa6029803206cba4cfb59eb7a2848873ac58
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.864.0":
version: 3.864.0
resolution: "@aws-sdk/core@npm:3.864.0"
dependencies:
"@aws-sdk/types": "npm:3.862.0"
"@aws-sdk/xml-builder": "npm:3.862.0"
"@smithy/core": "npm:^3.8.0"
"@smithy/node-config-provider": "npm:^4.1.4"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/signature-v4": "npm:^5.1.3"
"@smithy/smithy-client": "npm:^4.4.10"
"@smithy/types": "npm:^4.3.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.5"
"@smithy/util-utf8": "npm:^4.0.0"
fast-xml-parser: "npm:5.2.5"
tslib: "npm:^2.6.2"
checksum: 10c0/83eae93e22408750abcd5225650945f5b9a2a4e4b9477d62e97c982b0d573d6f7b1a5ba4979a85947299d71898bf2ce68a9b87a0864c2697272eb74a817b4d97
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.888.0":
version: 3.888.0
resolution: "@aws-sdk/core@npm:3.888.0"
dependencies:
"@aws-sdk/types": "npm:3.887.0"
"@aws-sdk/xml-builder": "npm:3.887.0"
"@smithy/core": "npm:^3.11.0"
"@smithy/node-config-provider": "npm:^4.2.1"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/signature-v4": "npm:^5.1.3"
"@smithy/smithy-client": "npm:^4.6.1"
"@smithy/types": "npm:^4.5.0"
"@smithy/util-base64": "npm:^4.1.0"
"@smithy/util-body-length-browser": "npm:^4.1.0"
"@smithy/util-middleware": "npm:^4.1.1"
"@smithy/util-utf8": "npm:^4.1.0"
fast-xml-parser: "npm:5.2.5"
tslib: "npm:^2.6.2"
checksum: 10c0/48e904a79b85cf5bceeb88b73c632c140750e6c9643c78bc38229168d7609207f3bc8c98801783a2a0457fc6da148f5ba96226201d9bda12df6fa1b11d8b68dd
languageName: node
linkType: hard
"@aws-sdk/credential-provider-cognito-identity@npm:3.864.0":
version: 3.864.0
resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.864.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.864.0"
"@aws-sdk/types": "npm:3.862.0"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/31d60d9133663afb83af79669aa93f7f895b2d4845de2c141ab60fa0e998c57bc0d8596ee69a5513400d5520a0f2332287338332383cfa6d69988595735c1a6f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.864.0":
version: 3.864.0
resolution: "@aws-sdk/credential-provider-env@npm:3.864.0"
dependencies:
"@aws-sdk/core": "npm:3.864.0"
"@aws-sdk/types": "npm:3.862.0"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/6ffa5ba6787b976181aac62fcd510bade27a38685fb89d9824cf0ad4d34e6e8e82466438bdd35fd2d5bec1d60bbede0f7a60f836fc3ddb8d0d02a01e11e84704
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.888.0":
version: 3.888.0
resolution: "@aws-sdk/credential-provider-env@npm:3.888.0"
dependencies:
"@aws-sdk/core": "npm:3.888.0"
"@aws-sdk/types": "npm:3.887.0"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/09c4fb216031ba9695a0966692bacf8bce6e65fa52454293bcf87533cf5c872e5f322922fd72bfa180a69ab53df33d58aafd8aa93ddb419c83b12f020bf0c78f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.864.0":
version: 3.864.0
resolution: "@aws-sdk/credential-provider-http@npm:3.864.0"
dependencies:
"@aws-sdk/core": "npm:3.864.0"
"@aws-sdk/types": "npm:3.862.0"
"@smithy/fetch-http-handler": "npm:^5.1.1"
"@smithy/node-http-handler": "npm:^4.1.1"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/smithy-client": "npm:^4.4.10"
"@smithy/types": "npm:^4.3.2"
"@smithy/util-stream": "npm:^4.2.4"
tslib: "npm:^2.6.2"
checksum: 10c0/430f13e13cbe35e306c312e63b9c88187134593c03cc0d68bdaee19103b8e48535c45b63fb95888d61b35348afe1dc83a32aa4db73f5a2918eed12f58ff220f3
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.888.0":
version: 3.888.0
resolution: "@aws-sdk/credential-provider-http@npm:3.888.0"
dependencies:
"@aws-sdk/core": "npm:3.888.0"
"@aws-sdk/types": "npm:3.887.0"
"@smithy/fetch-http-handler": "npm:^5.2.1"
"@smithy/node-http-handler": "npm:^4.2.1"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/smithy-client": "npm:^4.6.1"
"@smithy/types": "npm:^4.5.0"
"@smithy/util-stream": "npm:^4.3.1"
tslib: "npm:^2.6.2"
checksum: 10c0/b8f66d2b80b1118ac047c54c2d6607dc9e042c904080f52926ae8a38e10b9571837e433be94a763cfb560dd9011e5078bdf15cd06ef5074d6dd2303819a445ab
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.864.0":
version: 3.864.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.864.0"
dependencies:
"@aws-sdk/core": "npm:3.864.0"
"@aws-sdk/credential-provider-env": "npm:3.864.0"
"@aws-sdk/credential-provider-http": "npm:3.864.0"
"@aws-sdk/credential-provider-process": "npm:3.864.0"
"@aws-sdk/credential-provider-sso": "npm:3.864.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.864.0"
"@aws-sdk/nested-clients": "npm:3.864.0"
"@aws-sdk/types": "npm:3.862.0"
"@smithy/credential-provider-imds": "npm:^4.0.7"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/shared-ini-file-loader": "npm:^4.0.5"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/e0124557eff3617b0816b498f65d8082a17a3946795f5876a00d62edec06de58aba0a1bdbf63c697e7c20af79c4f4669db44578a946ea3d7edd20873e34228ae
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.888.0":
version: 3.888.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.888.0"
dependencies:
"@aws-sdk/core": "npm:3.888.0"
"@aws-sdk/credential-provider-env": "npm:3.888.0"
"@aws-sdk/credential-provider-http": "npm:3.888.0"
"@aws-sdk/credential-provider-process": "npm:3.888.0"
"@aws-sdk/credential-provider-sso": "npm:3.888.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.888.0"
"@aws-sdk/nested-clients": "npm:3.888.0"
"@aws-sdk/types": "npm:3.887.0"
"@smithy/credential-provider-imds": "npm:^4.0.7"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/shared-ini-file-loader": "npm:^4.0.5"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/89eeba91cec2f083519dc82c3ecace3ff338326964ff67a647b542f762bf629c0f25d9cce5d978e207c64629e2456ba1c099688bcd9058346ae8f3024e6e47a8
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.864.0":
version: 3.864.0
resolution: "@aws-sdk/credential-provider-node@npm:3.864.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.864.0"
"@aws-sdk/credential-provider-http": "npm:3.864.0"
"@aws-sdk/credential-provider-ini": "npm:3.864.0"
"@aws-sdk/credential-provider-process": "npm:3.864.0"
"@aws-sdk/credential-provider-sso": "npm:3.864.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.864.0"
"@aws-sdk/types": "npm:3.862.0"
"@smithy/credential-provider-imds": "npm:^4.0.7"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/shared-ini-file-loader": "npm:^4.0.5"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/4fda02b247dc54d2df2667f67b0b73bcb71a83d82ce921d94260a12717d11f76872b30074e8c435d8009a6b32d5cb92452026c4344d74ce34f7edae50aa5c714
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.888.0":
version: 3.888.0
resolution: "@aws-sdk/credential-provider-node@npm:3.888.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.888.0"
"@aws-sdk/credential-provider-http": "npm:3.888.0"
"@aws-sdk/credential-provider-ini": "npm:3.888.0"
"@aws-sdk/credential-provider-process": "npm:3.888.0"
"@aws-sdk/credential-provider-sso": "npm:3.888.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.888.0"
"@aws-sdk/types": "npm:3.887.0"
"@smithy/credential-provider-imds": "npm:^4.0.7"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/shared-ini-file-loader": "npm:^4.0.5"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a920c4c21bfc084db9ea02b32220a784f59d50cb1126ca9197c3c1b44c13cbe3638c0fa74fe384f06965c4c4e0b63eed2c2add371b55c44807a9cd5a3edda981
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.864.0":
version: 3.864.0
resolution: "@aws-sdk/credential-provider-process@npm:3.864.0"
dependencies:
"@aws-sdk/core": "npm:3.864.0"
"@aws-sdk/types": "npm:3.862.0"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/shared-ini-file-loader": "npm:^4.0.5"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/74bb1906ac48187aa4639675423f6bface1447286ce4e904d0f5e5932f8bee271397f85d7dccb45c909b25d43d943531a124fe3c1fdd137df581010aa5fe3d03
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.888.0":
version: 3.888.0
resolution: "@aws-sdk/credential-provider-process@npm:3.888.0"
dependencies:
"@aws-sdk/core": "npm:3.888.0"
"@aws-sdk/types": "npm:3.887.0"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/shared-ini-file-loader": "npm:^4.0.5"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/117d6e2cb50bb064a3cf7b0f051d554981d7a4db514828d31ed9a44f5c4a0b83eed639a7bacaf64fdbe2e7bca705c71c590fa52e0d31ff5546a4745caaa0906c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.864.0":
version: 3.864.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.864.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.864.0"
"@aws-sdk/core": "npm:3.864.0"
"@aws-sdk/token-providers": "npm:3.864.0"
"@aws-sdk/types": "npm:3.862.0"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/shared-ini-file-loader": "npm:^4.0.5"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/706532dc10c49d0988789426a32abc556feece6a2cf967f5f93a0fc9a78a67dd6b3601f086c36838323f66b270789767add61906eb42acc904eb532c06a14de3
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.888.0":
version: 3.888.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.888.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.888.0"
"@aws-sdk/core": "npm:3.888.0"
"@aws-sdk/token-providers": "npm:3.888.0"
"@aws-sdk/types": "npm:3.887.0"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/shared-ini-file-loader": "npm:^4.0.5"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/2c5df695b2d4a7e2561e7fdba2ff456941e5fdb2bbf788d2c59f31fdc6ddab5f897ccc9e469c16be0688cd9edc3db0a6b010036a0d3d824c495c668a4238b312
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.864.0":
version: 3.864.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.864.0"
dependencies:
"@aws-sdk/core": "npm:3.864.0"
"@aws-sdk/nested-clients": "npm:3.864.0"
"@aws-sdk/types": "npm:3.862.0"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/3f1596e848ae1ecdbd731496f239e90be16a4956d2ba85bcf2603e825a9928c9aa9414952dee6efde437614ac7f189add56950d6e027dd5a30ff0ebf7db2491f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.888.0":
version: 3.888.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.888.0"
dependencies:
"@aws-sdk/core": "npm:3.888.0"
"@aws-sdk/nested-clients": "npm:3.888.0"
"@aws-sdk/types": "npm:3.887.0"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1508729df48d0426b661652ed0e333eacb3ec9732d64a92e95a325e30cdc82cdf56cc03713ea090c2648078e79188077865ba7093f00e8354f7b6b15ee96cf4e
languageName: node
linkType: hard
"@aws-sdk/credential-providers@npm:^3.864.0":
version: 3.864.0
resolution: "@aws-sdk/credential-providers@npm:3.864.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.864.0"
"@aws-sdk/core": "npm:3.864.0"
"@aws-sdk/credential-provider-cognito-identity": "npm:3.864.0"
"@aws-sdk/credential-provider-env": "npm:3.864.0"
"@aws-sdk/credential-provider-http": "npm:3.864.0"
"@aws-sdk/credential-provider-ini": "npm:3.864.0"
"@aws-sdk/credential-provider-node": "npm:3.864.0"
"@aws-sdk/credential-provider-process": "npm:3.864.0"
"@aws-sdk/credential-provider-sso": "npm:3.864.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.864.0"
"@aws-sdk/nested-clients": "npm:3.864.0"
"@aws-sdk/types": "npm:3.862.0"
"@smithy/config-resolver": "npm:^4.1.5"
"@smithy/core": "npm:^3.8.0"
"@smithy/credential-provider-imds": "npm:^4.0.7"
"@smithy/node-config-provider": "npm:^4.1.4"
"@smithy/property-provider": "npm:^4.0.5"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/636d358083f83a5da1c672890b6698c6b21df7a13b06459d2404d6112af7f5b5c1d75b0e666c83f641f8a3f81c1c4a9be18a83b3911f4b2c266ae867884d7f39
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.887.0":
version: 3.887.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.887.0"
dependencies:
"@aws-sdk/types": "npm:3.887.0"
"@aws-sdk/util-arn-parser": "npm:3.873.0"
"@smithy/node-config-provider": "npm:^4.2.1"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/types": "npm:^4.5.0"
"@smithy/util-config-provider": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/bb93a2a0d0695f579bde9547a72814c6434d0e3979dee7522320336771a46751474778acb78590ccadaac2349adc0a9d0f4b1dcb21db38f09ce6051b003c87ed
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.887.0":
version: 3.887.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.887.0"
dependencies:
"@aws-sdk/types": "npm:3.887.0"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c64b397ddde2597019396c37b1103413490424149cf1b09a5974b728297ad1e8ff37d89a9f75e493e922bd01f001d6b68dff171dd348f12fa37b662884c731be
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.888.0":
version: 3.888.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.888.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-crypto/util": "npm:5.2.0"
"@aws-sdk/core": "npm:3.888.0"
"@aws-sdk/types": "npm:3.887.0"
"@smithy/is-array-buffer": "npm:^4.0.0"
"@smithy/node-config-provider": "npm:^4.2.1"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/types": "npm:^4.5.0"
"@smithy/util-middleware": "npm:^4.1.1"
"@smithy/util-stream": "npm:^4.3.1"
"@smithy/util-utf8": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/50af4401046a824d70d9b7deb526658e672e65c7b6b5c29774633ddd70ebdb9ccebae7cd3c09c4af77f2b898603750303c348580bab957c8496f8e44de9e386b
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.862.0":
version: 3.862.0
resolution: "@aws-sdk/middleware-host-header@npm:3.862.0"
dependencies:
"@aws-sdk/types": "npm:3.862.0"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/1a71a7fb8e678fbe7b57028e952c30ee7e6d3f9a213e99742befd008d42df772f5a6e43403c0501f86e4b3f42ff076ce068cbae040e146c1438d1f4e7643c948
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.887.0":
version: 3.887.0
resolution: "@aws-sdk/middleware-host-header@npm:3.887.0"
dependencies:
"@aws-sdk/types": "npm:3.887.0"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/2fcd88f9e4bd06a37f7e6d53cd86d8e031decedaf036e4d76f044b034808042b6713af88c86d4d9d981c41ac6c52c6d3d420644283a56b58d0243b59b465a17a
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.887.0":
version: 3.887.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.887.0"
dependencies:
"@aws-sdk/types": "npm:3.887.0"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c8b70e145c054534be4a409608aa9821e709bd726d60dd642298b2a008b52264215783b15ded513289d64217a512777f3a11046eb9222f37cc24c0b6d0ab63c7
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.862.0":
version: 3.862.0
resolution: "@aws-sdk/middleware-logger@npm:3.862.0"
dependencies:
"@aws-sdk/types": "npm:3.862.0"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/b1e7026ae941435b066530b37acf2291d96530bf5c1a5a47fa32f32caf3a336f1b2f6223d0ad2a61115f1846d63b632a6104fe0dd761c239067c780efa90b297
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.887.0":
version: 3.887.0
resolution: "@aws-sdk/middleware-logger@npm:3.887.0"
dependencies:
"@aws-sdk/types": "npm:3.887.0"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/025e37a0945fe3c34ac49c34d420b5b66d3258d425039fcec150a0180e6f5cce744017256dfdbb773d860aaaf6f541de90e623bc0cd84ef3a99c0313d7d941b9
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.862.0":
version: 3.862.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.862.0"
dependencies:
"@aws-sdk/types": "npm:3.862.0"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/ed186d07cf5733ccc899168f83767e428ca9d2e7394e315e43f4f2522ed9a9aac6e5477e47aa4710775e724730dcb25a6699784aa5e63153e102c001ea96ab7f
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.887.0":
version: 3.887.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.887.0"
dependencies:
"@aws-sdk/types": "npm:3.887.0"
"@aws/lambda-invoke-store": "npm:^0.0.1"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a10fdf1ed626f7bcd8b8cc91145723611be8d5fc8d9127d8be6fe90bb0d4164914e74bc5946baad48bfd09352ac0810204f7be69df450da9c71391fda853d191
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.888.0":
version: 3.888.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.888.0"
dependencies:
"@aws-sdk/core": "npm:3.888.0"
"@aws-sdk/types": "npm:3.887.0"
"@aws-sdk/util-arn-parser": "npm:3.873.0"
"@smithy/core": "npm:^3.11.0"
"@smithy/node-config-provider": "npm:^4.2.1"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/signature-v4": "npm:^5.1.3"
"@smithy/smithy-client": "npm:^4.6.1"
"@smithy/types": "npm:^4.5.0"
"@smithy/util-config-provider": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.1.1"
"@smithy/util-stream": "npm:^4.3.1"
"@smithy/util-utf8": "npm:^4.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1758ede7e6f539593c57dd8056c2dd1d14a90f7f0ac6bbcce8169f48f48efa3606c7bec4a40e72c288ecb251fdf5283a500961136da90803eb0729b1378b8337
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.887.0":
version: 3.887.0
resolution: "@aws-sdk/middleware-ssec@npm:3.887.0"
dependencies:
"@aws-sdk/types": "npm:3.887.0"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/182d240d172719c1098f78af73835a9b4e649a336dfebf91078506a67f8438a84510d1f7836888d12db95626a824e5dd64991f7e489673e90a59a4191262067d
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.864.0":
version: 3.864.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.864.0"
dependencies:
"@aws-sdk/core": "npm:3.864.0"
"@aws-sdk/types": "npm:3.862.0"
"@aws-sdk/util-endpoints": "npm:3.862.0"
"@smithy/core": "npm:^3.8.0"
"@smithy/protocol-http": "npm:^5.1.3"
"@smithy/types": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/638401786dfb365cd4e890e4b4d18ddf48e267faf8842c53feaad37f25f38615fc8fb710c721f7ca8e1de9c4b1c74f411d437b544385fe739d129b5c03958a16
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.888.0":
version: 3.888.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.888.0"
dependencies:
"@aws-sdk/core": "npm:3.888.0"
"@aws-sdk/types": "npm:3.887.0"
"@aws-sdk/util-endpoints": "npm:3.887.0"
"@smithy/core": "npm:^3.11.0"
"@smithy/protocol-http": "npm:^5.2.1"
"@smithy/types": "npm:^4.5.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b11b4ab11cfaeb3a788de2a55c780bac0786684da371c662ace33641fabd04397f4bd88dd6958fcff8eab60422733c47781e90e79a7882f7f5a0761340ee093a
languageName: node