-
Notifications
You must be signed in to change notification settings - Fork 212
/
Copy pathpnpm-lock.yaml
24899 lines (19924 loc) · 826 KB
/
pnpm-lock.yaml
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
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
dependencies:
'@mui/icons-material':
specifier: ^5.11.0
version: 5.16.5(@mui/material@5.16.5(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)
'@mui/lab':
specifier: ^5.0.0-alpha.115
version: 5.0.0-alpha.173(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@mui/material@5.16.5(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mui/material':
specifier: ^5.14.18
version: 5.16.5(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mui/system':
specifier: ^5.10.16
version: 5.16.5(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)
'@mui/x-date-pickers':
specifier: ^5.0.10
version: 5.0.20(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@mui/material@5.16.5(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.16.5(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(date-fns@2.30.0)(dayjs@1.11.12)(luxon@3.4.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@sentry/vite-plugin':
specifier: ^2.10.2
version: 2.21.1
'@types/aws-lambda':
specifier: ^8.10.109
version: 8.10.142
'@types/fhir':
specifier: ^0.0.35
version: 0.0.35
'@types/inquirer':
specifier: ^8.0.0
version: 8.2.10
'@types/luxon':
specifier: ^3.1.0
version: 3.4.2
'@types/mixpanel-browser':
specifier: ^2.38.1
version: 2.49.1
'@types/node-fetch':
specifier: ^2.6.2
version: 2.6.11
'@types/react':
specifier: ^18.0.17
version: 18.3.3
'@types/react-dom':
specifier: ^18.0.6
version: 18.3.0
'@types/react-window':
specifier: 1.8.8
version: 1.8.8
'@typescript-eslint/eslint-plugin':
specifier: ^7.1.1
version: 7.17.0(@typescript-eslint/parser@7.17.0(eslint@8.57.0)(typescript@4.9.5))(eslint@8.57.0)(typescript@4.9.5)
'@typescript-eslint/parser':
specifier: ^7.1.1
version: 7.17.0(eslint@8.57.0)(typescript@4.9.5)
'@vitest/coverage-v8':
specifier: ^0.34.6
version: 0.34.6(vitest@0.34.6(happy-dom@12.10.3)(jsdom@16.7.0)(playwright@1.45.3)(terser@5.31.3))
'@zapehr/sdk':
specifier: 1.0.15
version: 1.0.15
aws-lambda:
specifier: ^1.0.7
version: 1.0.7
axios:
specifier: 1.5.1
version: 1.5.1
dotenv:
specifier: 16.4.5
version: 16.4.5
env-cmd:
specifier: ^10.1.0
version: 10.1.0
eslint:
specifier: ^8.51.0
version: 8.57.0
eslint-config-prettier:
specifier: ^9.0.0
version: 9.1.0(eslint@8.57.0)
eslint-plugin-prettier:
specifier: ^5.0.1
version: 5.2.1(@types/eslint@9.6.0)(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.3.3)
eslint-plugin-react-hooks:
specifier: ^4.6.0
version: 4.6.2(eslint@8.57.0)
happy-dom:
specifier: ^12.10.3
version: 12.10.3
html-entities:
specifier: 2.5.2
version: 2.5.2
husky:
specifier: ^8.0.0
version: 8.0.3
inquirer:
specifier: ^8.0.0
version: 8.2.6
jest:
specifier: ^29.7.0
version: 29.7.0(@types/node@18.19.42)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.42)(typescript@4.9.5))
jose:
specifier: 5.2.0
version: 5.2.0
jsonpath-plus:
specifier: 9.0.0
version: 9.0.0
jsonwebtoken:
specifier: 9.0.2
version: 9.0.2
lint-staged:
specifier: ^15.0.2
version: 15.2.7
pdf-lib:
specifier: 1.17.1
version: 1.17.1
prettier:
specifier: ^3.0.0
version: 3.3.3
react:
specifier: ^18.2.0
version: 18.3.1
react-dom:
specifier: ^18.2.0
version: 18.3.1(react@18.3.1)
react-scripts:
specifier: ^5.0.1
version: 5.0.1(@babel/plugin-syntax-flow@7.24.7(@babel/core@7.24.9))(@babel/plugin-transform-react-jsx@7.24.7(@babel/core@7.24.9))(@types/babel__core@7.20.5)(esbuild@0.18.20)(eslint@8.57.0)(react@18.3.1)(ts-node@10.9.2(@types/node@18.19.42)(typescript@4.9.5))(type-fest@3.13.1)(typescript@4.9.5)
react-window:
specifier: 1.8.10
version: 1.8.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
serverless:
specifier: ^3.26.0
version: 3.39.0
serverless-esbuild:
specifier: ^1.45.1
version: 1.52.1(esbuild@0.18.20)
serverless-offline:
specifier: ^12.0.3
version: 12.0.4(serverless@3.39.0)
serverless-plugin-typescript:
specifier: ^2.1.5
version: 2.1.5(serverless@3.39.0)(typescript@4.9.5)
ts-node:
specifier: ^10.9.1
version: 10.9.2(@types/node@18.19.42)(typescript@4.9.5)
turbo:
specifier: ^1.11.3
version: 1.13.4
typeface-rubik:
specifier: 1.1.13
version: 1.1.13
typescript:
specifier: ^4.9.5
version: 4.9.5
vite-plugin-node-polyfills:
specifier: ^0.16.0
version: 0.16.0(rollup@2.79.1)(vite@4.5.3(@types/node@18.19.42)(terser@5.31.3))
vitest:
specifier: ^0.34.6
version: 0.34.6(happy-dom@12.10.3)(jsdom@16.7.0)(playwright@1.45.3)(terser@5.31.3)
web-vitals:
specifier: ^2.1.4
version: 2.1.4
devDependencies:
'@auth0/auth0-react':
specifier: ^1.12.1
version: 1.12.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@aws-sdk/client-s3':
specifier: ^3.272.0
version: 3.617.0
'@changesets/cli':
specifier: 2.26.2
version: 2.26.2
'@emotion/react':
specifier: ^11.10.5
version: 11.13.0(@types/react@18.3.3)(react@18.3.1)
'@emotion/styled':
specifier: ^11.10.5
version: 11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)
'@hookform/resolvers':
specifier: ^2.9.10
version: 2.9.11(react-hook-form@7.52.1(react@18.3.1))
'@sendgrid/mail':
specifier: ^7.7.0
version: 7.7.0
'@sentry/react':
specifier: ^7.80.1
version: 7.118.0(react@18.3.1)
'@testing-library/jest-dom':
specifier: 6.4.6
version: 6.4.6(@jest/globals@29.7.0)(@types/jest@27.5.2)(jest@29.7.0(@types/node@18.19.42)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.42)(typescript@4.9.5)))(vitest@0.34.6(happy-dom@12.10.3)(jsdom@16.7.0)(playwright@1.45.3)(terser@5.31.3))
'@testing-library/react':
specifier: 16.0.0
version: 16.0.0(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@twilio/conversations':
specifier: ^2.4.1
version: 2.5.0
'@types/jest':
specifier: ^27.5.2
version: 27.5.2
'@types/jsonpath-plus':
specifier: 5.0.5
version: 5.0.5
'@types/jsonwebtoken':
specifier: 9.0.4
version: 9.0.4
'@types/node':
specifier: ^18.19.34
version: 18.19.42
'@types/uuid':
specifier: 9.0.7
version: 9.0.7
'@vitejs/plugin-react':
specifier: ^4.1.1
version: 4.3.1(vite@4.5.3(@types/node@18.19.42)(terser@5.31.3))
browserslist-to-esbuild:
specifier: ^1.2.0
version: 1.2.0
concurrently:
specifier: 8.2.2
version: 8.2.2
eslint-plugin-react:
specifier: ^7.33.2
version: 7.35.0(eslint@8.57.0)
eslint-plugin-typescript-sort-keys:
specifier: ^3.1.0
version: 3.2.0(@typescript-eslint/parser@7.17.0(eslint@8.57.0)(typescript@4.9.5))(eslint@8.57.0)(typescript@4.9.5)
fast-json-patch:
specifier: ^3.1.1
version: 3.1.1
i18next:
specifier: ^23.8.2
version: 23.12.2
i18next-browser-languagedetector:
specifier: ^7.0.1
version: 7.2.1
luxon:
specifier: ^3.1.1
version: 3.4.4
mixpanel-browser:
specifier: ^2.45.0
version: 2.54.0
node-fetch:
specifier: 2.6.1
version: 2.6.1
query-string:
specifier: ^7.1.3
version: 7.1.3
react-hook-form:
specifier: ^7.40.0
version: 7.52.1(react@18.3.1)
react-i18next:
specifier: ^14.0.0
version: 14.1.3(i18next@23.12.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-imask:
specifier: ^6.4.3
version: 6.6.3(react@18.3.1)
react-markdown:
specifier: ^9.0.0
version: 9.0.1(@types/react@18.3.3)(react@18.3.1)
react-query:
specifier: ^3.39.3
version: 3.39.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-router-dom:
specifier: ^6.3.0
version: 6.25.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
short-uuid:
specifier: ^4.2.2
version: 4.2.2
simple-zustand-devtools:
specifier: ^1.1.0
version: 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(zustand@4.5.4(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1))
twilio:
specifier: ^4.18.0
version: 4.23.0
uuid:
specifier: 9.0.1
version: 9.0.1
vite:
specifier: ^4.5.0
version: 4.5.3(@types/node@18.19.42)(terser@5.31.3)
vite-plugin-istanbul:
specifier: 5.0.0
version: 5.0.0(vite@4.5.3(@types/node@18.19.42)(terser@5.31.3))
vite-plugin-svgr:
specifier: ^4.1.0
version: 4.2.0(rollup@2.79.1)(typescript@4.9.5)(vite@4.5.3(@types/node@18.19.42)(terser@5.31.3))
vite-tsconfig-paths:
specifier: ^4.2.1
version: 4.3.2(typescript@4.9.5)(vite@4.5.3(@types/node@18.19.42)(terser@5.31.3))
yup:
specifier: ^0.32.11
version: 0.32.11
zustand:
specifier: ^4.4.6
version: 4.5.4(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)
packages/ehr-utils:
dependencies:
ottehr-utils:
specifier: workspace:*
version: link:../utils
devDependencies:
'@types/fhir':
specifier: ^0.0.35
version: 0.0.35
vite:
specifier: ^4.3.9
version: 4.5.3(@types/node@20.14.12)(terser@5.31.3)
packages/ottehr-components:
dependencies:
ottehr-utils:
specifier: workspace:*
version: link:../utils
tsconfig:
specifier: '*'
version: 7.0.0
packages/telemed-ehr/app:
dependencies:
'@mui/icons-material':
specifier: ^5.14.9
version: 5.16.5(@mui/material@5.16.5(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)
'@mui/x-data-grid-pro':
specifier: ^6.3.0
version: 6.20.4(@mui/material@5.16.5(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.16.5(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mui/x-date-pickers':
specifier: ^5.0.20
version: 5.0.20(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@mui/material@5.16.5(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.16.5(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(date-fns@2.30.0)(dayjs@1.11.12)(luxon@3.4.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mui/x-date-pickers-pro':
specifier: ^5.0.20
version: 5.0.20(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@mui/material@5.16.5(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.16.5(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(date-fns@2.30.0)(dayjs@1.11.12)(luxon@3.4.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@photonhealth/elements':
specifier: ^0.9.1-rc.1
version: 0.9.2(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(solid-js@1.8.19)(ts-node@10.9.2(@types/node@18.19.42)(typescript@4.9.5))
'@twilio/conversations':
specifier: ^2.4.1
version: 2.5.0
'@zapehr/sdk':
specifier: 1.0.15
version: 1.0.15
amazon-chime-sdk-component-library-react:
specifier: ^3.7.0
version: 3.8.0(amazon-chime-sdk-js@3.23.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@5.3.11(@babel/core@7.24.9)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1))(styled-system@5.1.5)
amazon-chime-sdk-js:
specifier: ^3.20.0
version: 3.23.0
chart.js:
specifier: ^4.4.1
version: 4.4.3
ehr-utils:
specifier: '*'
version: link:../../ehr-utils
fast-json-patch:
specifier: ^3.1.1
version: 3.1.1
react-chartjs-2:
specifier: ^5.2.0
version: 5.2.0(chart.js@4.4.3)(react@18.3.1)
react-draggable:
specifier: ^4.4.6
version: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-i18next:
specifier: ^13.5.0
version: 13.5.0(i18next@23.12.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-imask:
specifier: ^7.4.0
version: 7.6.1(react@18.3.1)
react-number-format:
specifier: ^5.3.1
version: 5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-page-visibility:
specifier: ^7.0.0
version: 7.0.0(react@18.3.1)
react-query:
specifier: ^3.39.3
version: 3.39.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-toastify:
specifier: ^9.1.3
version: 9.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
styled-components:
specifier: ^5.3.11
version: 5.3.11(@babel/core@7.24.9)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)
styled-system:
specifier: ^5.1.5
version: 5.1.5
tsconfig:
specifier: '*'
version: 7.0.0
devDependencies:
'@types/react-page-visibility':
specifier: ^6.4.4
version: 6.4.4
'@types/styled-components':
specifier: ^5.1.34
version: 5.1.34
packages/telemed-ehr/zambdas:
dependencies:
'@aws-sdk/client-s3':
specifier: ^3.272.0
version: 3.617.0
'@sendgrid/mail':
specifier: ^7.7.0
version: 7.7.0
'@zapehr/sdk':
specifier: 1.0.15
version: 1.0.15
ehr-utils:
specifier: '*'
version: link:../../ehr-utils
fast-json-patch:
specifier: ^3.1.1
version: 3.1.1
luxon:
specifier: ^3.4.3
version: 3.4.4
query-string:
specifier: ^8.1.0
version: 8.2.0
short-uuid:
specifier: ^4.2.2
version: 4.2.2
devDependencies:
'@types/luxon':
specifier: ^3.3.2
version: 3.4.2
esbuild:
specifier: ^0.18.14
version: 0.18.20
serverless-esbuild:
specifier: ^1.48.0
version: 1.52.1(esbuild@0.18.20)
packages/telemed-intake:
dependencies:
amazon-chime-sdk-component-library-react:
specifier: ^3.7.0
version: 3.8.0(amazon-chime-sdk-js@3.23.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@5.3.11(@babel/core@7.24.9)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1))(styled-system@5.1.5)
amazon-chime-sdk-js:
specifier: ^3.20.0
version: 3.23.0
ottehr-components:
specifier: '*'
version: link:../ottehr-components
ottehr-utils:
specifier: '*'
version: link:../utils
styled-components:
specifier: ^5.3.11
version: 5.3.11(@babel/core@7.24.9)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)
styled-system:
specifier: ^5.1.5
version: 5.1.5
tsconfig:
specifier: '*'
version: 7.0.0
devDependencies:
'@playwright/test':
specifier: ^1.45.1
version: 1.45.3
'@types/styled-components':
specifier: ^5.1.34
version: 5.1.34
packages/telemed-intake/app:
dependencies:
'@mui/x-date-pickers':
specifier: ^7.7.0
version: 7.11.1(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@mui/material@5.16.5(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(date-fns@2.30.0)(dayjs@1.11.12)(luxon@3.4.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
amazon-chime-sdk-component-library-react:
specifier: ^3.7.0
version: 3.8.0(amazon-chime-sdk-js@3.23.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@5.3.11(@babel/core@7.24.9)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1))(styled-system@5.1.5)
amazon-chime-sdk-js:
specifier: ^3.20.0
version: 3.23.0
ottehr-components:
specifier: '*'
version: link:../../ottehr-components
ottehr-utils:
specifier: '*'
version: link:../../utils
styled-components:
specifier: ^5.3.11
version: 5.3.11(@babel/core@7.24.9)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)
styled-system:
specifier: ^5.1.5
version: 5.1.5
tsconfig:
specifier: '*'
version: 7.0.0
devDependencies:
'@types/styled-components':
specifier: ^5.1.34
version: 5.1.34
packages/telemed-intake/zambdas:
dependencies:
'@zapehr/sdk':
specifier: 1.0.15
version: 1.0.15
ottehr-utils:
specifier: '*'
version: link:../../utils
packages/telemed-intake/zambdas/src:
dependencies:
dotenv-json:
specifier: ^1.0.0
version: 1.0.0
devDependencies:
'@playwright/test':
specifier: ^1.45.1
version: 1.45.3
packages/tsconfig: {}
packages/urgent-care-intake/app:
dependencies:
'@mui/icons-material':
specifier: ^5.14.10
version: 5.16.5(@mui/material@5.16.5(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)
'@zapehr/sdk':
specifier: 1.0.15
version: 1.0.15
ottehr-components:
specifier: '*'
version: link:../../ottehr-components
ottehr-utils:
specifier: '*'
version: link:../../utils
react-markdown:
specifier: ^9.0.0
version: 9.0.1(@types/react@18.3.3)(react@18.3.1)
tsconfig:
specifier: '*'
version: 7.0.0
packages/urgent-care-intake/zambdas:
dependencies:
'@zapehr/sdk':
specifier: 1.0.15
version: 1.0.15
ottehr-utils:
specifier: '*'
version: link:../../utils
devDependencies:
serverless-esbuild:
specifier: ^1.51.0
version: 1.52.1(esbuild@0.18.20)
packages/utils:
dependencies:
'@zapehr/sdk':
specifier: 1.0.15
version: 1.0.15
axios:
specifier: 1.6.2
version: 1.6.2
devDependencies:
vite:
specifier: ^4.3.9
version: 4.5.3(@types/node@20.14.12)(terser@5.31.3)
packages:
2-thenable@1.0.0:
resolution: {integrity: sha512-HqiDzaLDFCXkcCO/SwoyhRwqYtINFHF7t9BDRq4x90TOKNAJpiqUt9X5lQ08bwxYzc067HUywDjGySpebHcUpw==}
'@adobe/css-tools@4.4.0':
resolution: {integrity: sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==}
'@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
'@apideck/better-ajv-errors@0.3.6':
resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==}
engines: {node: '>=10'}
peerDependencies:
ajv: '>=8'
'@apollo/client@3.11.1':
resolution: {integrity: sha512-fVuAi7ufRt2apIEYV18upvykw5JD+CwHAThxZkclby4phWCXtO4LD39Z0sk0+4i+j7oZ+jOofEkO1XGDDomZvQ==}
peerDependencies:
graphql: ^15.0.0 || ^16.0.0
graphql-ws: ^5.5.5
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc <19.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc <19.0.0
subscriptions-transport-ws: ^0.9.0 || ^0.11.0
peerDependenciesMeta:
graphql-ws:
optional: true
react:
optional: true
react-dom:
optional: true
subscriptions-transport-ws:
optional: true
'@auth0/auth0-react@1.12.1':
resolution: {integrity: sha512-8+ecK/4rE0AGsxLW2IDcr1oPbT55tuE6cQEzEIOkQjB6QGQxxWMzQy0D4nMKw3JUAc7nYcFVOABNFNbc471n9Q==}
peerDependencies:
react: ^16.11.0 || ^17 || ^18
react-dom: ^16.11.0 || ^17 || ^18
'@auth0/auth0-spa-js@1.22.6':
resolution: {integrity: sha512-iL3O0vWanfKFVgy1J2ZHDPlAUK6EVHWEHWS6mUXwHEuPiK39tjlQtyUKQIJI1F5YsZB75ijGgRWMTawSDXlwCA==}
'@auth0/auth0-spa-js@2.1.3':
resolution: {integrity: sha512-NMTBNuuG4g3rame1aCnNS5qFYIzsTUV5qTFPRfTyYFS1feS6jsCBR+eTq9YkxCp1yuoM2UIcjunPaoPl77U9xQ==}
'@aws-crypto/crc32@5.2.0':
resolution: {integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==}
engines: {node: '>=16.0.0'}
'@aws-crypto/crc32c@5.2.0':
resolution: {integrity: sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==}
'@aws-crypto/sha1-browser@5.2.0':
resolution: {integrity: sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg==}
'@aws-crypto/sha256-browser@5.2.0':
resolution: {integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==}
'@aws-crypto/sha256-js@2.0.2':
resolution: {integrity: sha512-iXLdKH19qPmIC73fVCrHWCSYjN/sxaAvZ3jNNyw6FclmHyjLKg0f69WlC9KTnyElxCR5MO9SKaG00VwlJwyAkQ==}
'@aws-crypto/sha256-js@5.2.0':
resolution: {integrity: sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==}
engines: {node: '>=16.0.0'}
'@aws-crypto/supports-web-crypto@5.2.0':
resolution: {integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==}
'@aws-crypto/util@2.0.2':
resolution: {integrity: sha512-Lgu5v/0e/BcrZ5m/IWqzPUf3UYFTy/PpeED+uc9SWUR1iZQL8XXbGQg10UfllwwBryO3hFF5dizK+78aoXC1eA==}
'@aws-crypto/util@5.2.0':
resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
'@aws-sdk/client-api-gateway@3.616.0':
resolution: {integrity: sha512-r5PKz/e9SXMcrbxRZrZJroxAvZ3nnJdQW2gjIsCmePgoZsLrCoMxT6HRvv0HfLOQwXCvMSPQsNgkTjyjWb9YBg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/client-chime-sdk-messaging@3.616.0':
resolution: {integrity: sha512-aTwzyttC01vNqGE622JAlWTSCT+Y7+8t69zZRd5RayY1EaLbCGZnHsh8FnLUlDSc9kmGd78p9nBqAs0WmT22sg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/client-cloudformation@3.616.0':
resolution: {integrity: sha512-NcCC5gLX5saHrHNrJKd63zGHYXKjoHxNHGbI4lE8jlqWB8xj8xtSxhYzAxeEy8c8UpPIvKJoj36NtYxxuXNfxA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/client-cognito-identity-provider@3.616.0':
resolution: {integrity: sha512-jkNXOvbKzk3linrTHo6wZqw6eL21leFOIDOmdJGyEX8srxEPey2mbFm9mo17PVIFtbjkrN52W4WP6USheg3EGg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/client-eventbridge@3.617.0':
resolution: {integrity: sha512-kNEA8VivIwEeXJfqeKXdVbgCF4JGyG8GhB7vq4Wmsh66JiG3LUzRXV9vsb3L2MJTNEQPpG/AiCB5wI8YT9OYlw==}
engines: {node: '>=16.0.0'}
'@aws-sdk/client-iam@3.616.0':
resolution: {integrity: sha512-JUJBDRjMdY8aAc3xnnIhrH8FPfCUPHJL5zMLpjKc+74oAZBQMv2NoMRupfzTngcQ/wygkdRb2r/DUCeE4FojMA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/client-lambda@3.616.0':
resolution: {integrity: sha512-ap7wPwpQEsuoY49Ksj8VoldTevlrWSlEMDnJghcYt3q/Kru9cACMVvI8Tkqwl03zt2nfES+2jR2o4ciUKcsItw==}
engines: {node: '>=16.0.0'}
'@aws-sdk/client-s3@3.617.0':
resolution: {integrity: sha512-0f954CU42BhPFVRQCCBc1jAvV9N4XW9I3D4h7tJ8tzxft7fS62MSJkgxRIXNKgWKLeGR7DUbz+XGZ1R5e7pyjA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/client-sso-oidc@3.616.0':
resolution: {integrity: sha512-YY1hpYS/G1uRGjQf88dL8VLHkP/IjGxKeXdhy+JnzMdCkAWl3V9j0fEALw40NZe0x79gr6R2KUOUH/IKYQfUmg==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@aws-sdk/client-sts': ^3.616.0
'@aws-sdk/client-sso@3.616.0':
resolution: {integrity: sha512-hwW0u1f8U4dSloAe61/eupUiGd5Q13B72BuzGxvRk0cIpYX/2m0KBG8DDl7jW1b2QQ+CflTLpG2XUf2+vRJxGA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/client-sts@3.616.0':
resolution: {integrity: sha512-FP7i7hS5FpReqnysQP1ukQF1OUWy8lkomaOnbu15H415YUrfCp947SIx6+BItjmx+esKxPkEjh/fbCVzw2D6hQ==}
engines: {node: '>=16.0.0'}
'@aws-sdk/core@3.616.0':
resolution: {integrity: sha512-O/urkh2kECs/IqZIVZxyeyHZ7OR2ZWhLNK7btsVQBQvJKrEspLrk/Fp20Qfg5JDerQfBN83ZbyRXLJOOucdZpw==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-env@3.609.0':
resolution: {integrity: sha512-v69ZCWcec2iuV9vLVJMa6fAb5xwkzN4jYIT8yjo2c4Ia/j976Q+TPf35Pnz5My48Xr94EFcaBazrWedF+kwfuQ==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-http@3.616.0':
resolution: {integrity: sha512-1rgCkr7XvEMBl7qWCo5BKu3yAxJs71dRaZ55Xnjte/0ZHH6Oc93ZrHzyYy6UH6t0nZrH+FAuw7Yko2YtDDwDeg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-ini@3.616.0':
resolution: {integrity: sha512-5gQdMr9cca3xV7FF2SxpxWGH2t6+t4o+XBGiwsHm8muEjf4nUmw7Ij863x25Tjt2viPYV0UStczSb5Sihp7bkA==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@aws-sdk/client-sts': ^3.616.0
'@aws-sdk/credential-provider-node@3.616.0':
resolution: {integrity: sha512-Se+u6DAxjDPjKE3vX1X2uxjkWgGq69BTo0uTB0vDUiWwBVgh16s9BsBhSAlKEH1CCbbJHvOg4YdTrzjwzqyClg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-process@3.614.0':
resolution: {integrity: sha512-Q0SI0sTRwi8iNODLs5+bbv8vgz8Qy2QdxbCHnPk/6Cx6LMf7i3dqmWquFbspqFRd8QiqxStrblwxrUYZi09tkA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-sso@3.616.0':
resolution: {integrity: sha512-3rsWs9GBi8Z8Gps5ROwqguxtw+J6OIg1vawZMLRNMqqZoBvbOToe9wEnpid8ylU+27+oG8uibJNlNuRyXApUjw==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-web-identity@3.609.0':
resolution: {integrity: sha512-U+PG8NhlYYF45zbr1km3ROtBMYqyyj/oK8NRp++UHHeuavgrP+4wJ4wQnlEaKvJBjevfo3+dlIBcaeQ7NYejWg==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@aws-sdk/client-sts': ^3.609.0
'@aws-sdk/middleware-bucket-endpoint@3.616.0':
resolution: {integrity: sha512-KZv78s8UE7+s3qZCfG3pE9U9XV5WTP478aNWis5gDXmsb5LF7QWzEeR8kve5dnjNlK6qVQ33v+mUZa6lR5PwMw==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-expect-continue@3.616.0':
resolution: {integrity: sha512-IM1pfJPm7pDUXa55js9bnGjS8o3ldzDwf95mL9ZAYdEsm10q6i0ZxZbbro2gTq25Ap5ykdeeS34lOSzIqPiW1A==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-flexible-checksums@3.616.0':
resolution: {integrity: sha512-Mrco/dURoTXVqwcnYRcyrFaPTIg36ifg2PK0kUYfSVTGEOClZOQXlVG5zYCZoo3yEMgy/gLT907FjUQxwoifIw==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-host-header@3.616.0':
resolution: {integrity: sha512-mhNfHuGhCDZwYCABebaOvTgOM44UCZZRq2cBpgPZLVKP0ydAv5aFHXv01goexxXHqgHoEGx0uXWxlw0s2EpFDg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-location-constraint@3.609.0':
resolution: {integrity: sha512-xzsdoTkszGVqGVPjUmgoP7TORiByLueMHieI1fhQL888WPdqctwAx3ES6d/bA9Q/i8jnc6hs+Fjhy8UvBTkE9A==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-logger@3.609.0':
resolution: {integrity: sha512-S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-recursion-detection@3.616.0':
resolution: {integrity: sha512-LQKAcrZRrR9EGez4fdCIVjdn0Ot2HMN12ChnoMGEU6oIxnQ2aSC7iASFFCV39IYfeMh7iSCPj7Wopqw8rAouzg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-sdk-api-gateway@3.616.0':
resolution: {integrity: sha512-GsyrQhcTzdtIUACLnkXonbirQVh7rGwl8hR9V98T84EVlPjk5W+0s5gon75Y3uxpPDa4yFtEZRZ4AKy6J6hvnA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-sdk-s3@3.617.0':
resolution: {integrity: sha512-zVOS6sNGcLGhq7i+5POmVqmSPNmrQYDFsynpnWMSLsNaej+xvkdSOnytLrUvag3Du4kAxfO5NNIC0GuNj9lcCg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-signing@3.616.0':
resolution: {integrity: sha512-wwzZFlXyURwo40oz1NmufreQa5DqwnCF8hR8tIP5+oKCyhbkmlmv8xG4Wn51bzY2WEbQhvFebgZSFTEvelCoCg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-ssec@3.609.0':
resolution: {integrity: sha512-GZSD1s7+JswWOTamVap79QiDaIV7byJFssBW68GYjyRS5EBjNfwA/8s+6uE6g39R3ojyTbYOmvcANoZEhSULXg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-user-agent@3.616.0':
resolution: {integrity: sha512-iMcAb4E+Z3vuEcrDsG6T2OBNiqWAquwahP9qepHqfmnmJqHr1mSHtXDYTGBNid31+621sUQmneUQ+fagpGAe4w==}
engines: {node: '>=16.0.0'}
'@aws-sdk/region-config-resolver@3.614.0':
resolution: {integrity: sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g==}
engines: {node: '>=16.0.0'}
'@aws-sdk/signature-v4-multi-region@3.617.0':
resolution: {integrity: sha512-kGbLs9q0/ziuzA1huf0BBh05ChxDeZ8ZWc/kedb80ocq6izOLaGgeqqUR8oB0ianwjel4AQq/iv1fsOIt3wmAA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/token-providers@3.614.0':
resolution: {integrity: sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@aws-sdk/client-sso-oidc': ^3.614.0
'@aws-sdk/types@3.609.0':
resolution: {integrity: sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q==}
engines: {node: '>=16.0.0'}
'@aws-sdk/util-arn-parser@3.568.0':
resolution: {integrity: sha512-XUKJWWo+KOB7fbnPP0+g/o5Ulku/X53t7i/h+sPHr5xxYTJJ9CYnbToo95mzxe7xWvkLrsNtJ8L+MnNn9INs2w==}
engines: {node: '>=16.0.0'}
'@aws-sdk/util-endpoints@3.614.0':
resolution: {integrity: sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw==}
engines: {node: '>=16.0.0'}
'@aws-sdk/util-hex-encoding@3.374.0':
resolution: {integrity: sha512-14X7MDYCFle2Cuq0/Hvz2CHQoYVeoKKBY2Uf+wn0lKnKU+f0K81xRObUM/A7bLmZX4jFRk83gyE8Rj3BOqBdfA==}
engines: {node: '>=14.0.0'}
deprecated: This package has moved to @smithy/util-hex-encoding
'@aws-sdk/util-locate-window@3.568.0':
resolution: {integrity: sha512-3nh4TINkXYr+H41QaPelCceEB2FXP3fxp93YZXB/kqJvX0U9j0N0Uk45gvsjmEPzG8XxkPEeLIfT2I1M7A6Lig==}
engines: {node: '>=16.0.0'}
'@aws-sdk/util-user-agent-browser@3.609.0':
resolution: {integrity: sha512-fojPU+mNahzQ0YHYBsx0ZIhmMA96H+ZIZ665ObU9tl+SGdbLneVZVikGve+NmHTQwHzwkFsZYYnVKAkreJLAtA==}
'@aws-sdk/util-user-agent-node@3.614.0':
resolution: {integrity: sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA==}
engines: {node: '>=16.0.0'}
peerDependencies:
aws-crt: '>=1.0.0'
peerDependenciesMeta:
aws-crt:
optional: true
'@aws-sdk/util-utf8-browser@3.259.0':
resolution: {integrity: sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==}
'@aws-sdk/xml-builder@3.609.0':
resolution: {integrity: sha512-l9XxNcA4HX98rwCC2/KoiWcmEiRfZe4G+mYwDbCFT87JIMj6GBhLDkAzr/W8KAaA2IDr8Vc6J8fZPgVulxxfMA==}
engines: {node: '>=16.0.0'}
'@babel/code-frame@7.24.7':
resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.24.9':
resolution: {integrity: sha512-e701mcfApCJqMMueQI0Fb68Amflj83+dvAvHawoBpAz+GDjCIyGHzNwnefjsWJ3xiYAqqiQFoWbspGYBdb2/ng==}
engines: {node: '>=6.9.0'}
'@babel/core@7.24.9':
resolution: {integrity: sha512-5e3FI4Q3M3Pbr21+5xJwCv6ZT6KmGkI0vw3Tozy5ODAQFTIWe37iT8Cr7Ice2Ntb+M3iSKCEWMB1MBgKrW3whg==}
engines: {node: '>=6.9.0'}
'@babel/eslint-parser@7.24.8':
resolution: {integrity: sha512-nYAikI4XTGokU2QX7Jx+v4rxZKhKivaQaREZjuW3mrJrbdWJ5yUfohnoUULge+zEEaKjPYNxhoRgUKktjXtbwA==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
'@babel/core': ^7.11.0
eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
'@babel/generator@7.24.10':
resolution: {integrity: sha512-o9HBZL1G2129luEUlG1hB4N/nlYNWHnpwlND9eOMclRqqu1YDy2sSYVCFUZwl8I1Gxh+QSRrP2vD7EpUmFVXxg==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.24.7':
resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
engines: {node: '>=6.9.0'}
'@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.24.8':
resolution: {integrity: sha512-oU+UoqCHdp+nWVDkpldqIQL/i/bvAv53tRqLG/s+cOXxe66zOYLU7ar/Xs3LdmBihrUMEUhwu6dMZwbNOYDwvw==}
engines: {node: '>=6.9.0'}
'@babel/helper-create-class-features-plugin@7.24.8':
resolution: {integrity: sha512-4f6Oqnmyp2PP3olgUMmOwC3akxSm5aBYraQ6YDdKy7NcAMkDECHWG0DEnV6M2UAkERgIBhYt8S27rURPg7SxWA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-create-regexp-features-plugin@7.24.7':
resolution: {integrity: sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-define-polyfill-provider@0.6.2':
resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
'@babel/helper-environment-visitor@7.24.7':
resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-function-name@7.24.7':
resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==}
engines: {node: '>=6.9.0'}
'@babel/helper-hoist-variables@7.24.7':
resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-member-expression-to-functions@7.24.8':
resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.24.7':
resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-transforms@7.24.9':
resolution: {integrity: sha512-oYbh+rtFKj/HwBQkFlUzvcybzklmVdVV3UU+mN7n2t/q3yGHbuVdNxyFvSBO1tfvjyArpHNcWMAzsSPdyI46hw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-optimise-call-expression@7.24.7':
resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==}
engines: {node: '>=6.9.0'}
'@babel/helper-plugin-utils@7.24.8':
resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==}
engines: {node: '>=6.9.0'}
'@babel/helper-remap-async-to-generator@7.24.7':
resolution: {integrity: sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-replace-supers@7.24.7':
resolution: {integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-simple-access@7.24.7':
resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
engines: {node: '>=6.9.0'}
'@babel/helper-skip-transparent-expression-wrappers@7.24.7':
resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-split-export-declaration@7.24.7':
resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.24.8':
resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.24.7':
resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.24.8':
resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
engines: {node: '>=6.9.0'}
'@babel/helper-wrap-function@7.24.7':
resolution: {integrity: sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.24.8':
resolution: {integrity: sha512-gV2265Nkcz7weJJfvDoAEVzC1e2OTDpkGbEsebse8koXUJUXPsCMi7sRo/+SPMuMZ9MtUPnGwITTnQnU5YjyaQ==}
engines: {node: '>=6.9.0'}
'@babel/highlight@7.24.7':
resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.24.8':
resolution: {integrity: sha512-WzfbgXOkGzZiXXCqk43kKwZjzwx4oulxZi3nq2TYL9mOjQv6kYwul9mz6ID36njuL7Xkp6nJEfok848Zj10j/w==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7':
resolution: {integrity: sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7':
resolution: {integrity: sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7':
resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7':
resolution: {integrity: sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/plugin-proposal-class-properties@7.18.6':