@whereby.com/core 0.26.0 → 0.27.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -3,7 +3,7 @@ import { PayloadAction, ActionCreatorWithPayload, AsyncThunkPayloadCreator, Asyn
3
3
  import * as redux_thunk from 'redux-thunk';
4
4
  import * as redux from 'redux';
5
5
  import * as _whereby_com_media from '@whereby.com/media';
6
- import { RoleName, ChatMessage as ChatMessage$1, getDeviceData, RtcStreamAddedPayload, AudioEnableRequest, RtcEvents, RtcManager, RtcManagerDispatcher, RtcManagerCreatedPayload, AudioEnabledEvent, AudioEnableRequestedEvent, ClientLeftEvent, ClientKickedEvent, ClientMetadataReceivedEvent, ClientUnableToJoinEvent, CloudRecordingStartedEvent, KnockerLeftEvent, KnockAcceptedEvent, KnockRejectedEvent, NewClientEvent, RoomJoinedEvent, RoomKnockedEvent, RoomLockedEvent, RoomSessionEndedEvent, ScreenshareStartedEvent, ScreenshareStoppedEvent, SpotlightAddedEvent, SpotlightRemovedEvent, VideoEnabledEvent, LiveTranscriptionStartedEvent, LiveTranscriptionStoppedEvent, ServerSocket, Spotlight } from '@whereby.com/media';
6
+ import { RoleName, ChatMessage as ChatMessage$1, getDeviceData, RtcStreamAddedPayload, AudioEnableRequest, VideoEnableRequest, RtcEvents, RtcManager, RtcManagerDispatcher, RtcManagerCreatedPayload, AudioEnabledEvent, AudioEnableRequestedEvent, ClientLeftEvent, ClientKickedEvent, ClientMetadataReceivedEvent, ClientUnableToJoinEvent, CloudRecordingStartedEvent, KnockerLeftEvent, KnockAcceptedEvent, KnockRejectedEvent, NewClientEvent, RoomJoinedEvent, RoomKnockedEvent, RoomLockedEvent, RoomSessionEndedEvent, ScreenshareStartedEvent, ScreenshareStoppedEvent, SpotlightAddedEvent, SpotlightRemovedEvent, VideoEnabledEvent, VideoEnableRequestedEvent, LiveTranscriptionStartedEvent, LiveTranscriptionStoppedEvent, ServerSocket, Spotlight } from '@whereby.com/media';
7
7
  import * as reselect from 'reselect';
8
8
  import { AsyncThunkFulfilledActionCreator } from '@reduxjs/toolkit/dist/createAsyncThunk';
9
9
  import { EventEmitter as EventEmitter$1 } from 'events';
@@ -328,6 +328,11 @@ interface RequestAudioEventProps {
328
328
  enable: boolean;
329
329
  }
330
330
  type RequestAudioEvent = NotificationEvent<"requestAudioEnable" | "requestAudioDisable", RequestAudioEventProps>;
331
+ interface RequestVideoEventProps {
332
+ client: RemoteParticipant;
333
+ enable: boolean;
334
+ }
335
+ type RequestVideoEvent = NotificationEvent<"requestVideoEnable" | "requestVideoDisable", RequestVideoEventProps>;
331
336
  interface ChatMessageEventProps {
332
337
  client: RemoteParticipant;
333
338
  chatMessage: ChatMessage;
@@ -356,6 +361,8 @@ type NotificationEventTypes = {
356
361
  ["signalTrouble"]: SignalStatusEvent;
357
362
  ["signalOk"]: SignalStatusEvent;
358
363
  ["clientUnableToJoinFullRoom"]: SignalClientEvent;
364
+ ["requestVideoEnable"]: RequestVideoEvent;
365
+ ["requestVideoDisable"]: RequestVideoEvent;
359
366
  };
360
367
  type NotificationEvents = NotificationEventTypes[keyof NotificationEventTypes];
361
368
  type NotificationEventMap = {
@@ -382,6 +389,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
382
389
  signalTrouble: SignalStatusEvent;
383
390
  signalOk: SignalStatusEvent;
384
391
  clientUnableToJoinFullRoom: SignalClientEvent;
392
+ requestVideoEnable: RequestVideoEvent;
393
+ requestVideoDisable: RequestVideoEvent;
385
394
  } | K | "*", ...args: K extends keyof {
386
395
  requestAudioEnable: RequestAudioEvent;
387
396
  requestAudioDisable: RequestAudioEvent;
@@ -391,6 +400,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
391
400
  signalTrouble: SignalStatusEvent;
392
401
  signalOk: SignalStatusEvent;
393
402
  clientUnableToJoinFullRoom: SignalClientEvent;
403
+ requestVideoEnable: RequestVideoEvent;
404
+ requestVideoDisable: RequestVideoEvent;
394
405
  } | "*" ? NotificationEventMap[K] : never) => void) | undefined;
395
406
  addListener: <K_1>(eventName: keyof {
396
407
  requestAudioEnable: RequestAudioEvent;
@@ -401,6 +412,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
401
412
  signalTrouble: SignalStatusEvent;
402
413
  signalOk: SignalStatusEvent;
403
414
  clientUnableToJoinFullRoom: SignalClientEvent;
415
+ requestVideoEnable: RequestVideoEvent;
416
+ requestVideoDisable: RequestVideoEvent;
404
417
  } | "*" | K_1, listener: K_1 extends keyof {
405
418
  requestAudioEnable: RequestAudioEvent;
406
419
  requestAudioDisable: RequestAudioEvent;
@@ -410,6 +423,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
410
423
  signalTrouble: SignalStatusEvent;
411
424
  signalOk: SignalStatusEvent;
412
425
  clientUnableToJoinFullRoom: SignalClientEvent;
426
+ requestVideoEnable: RequestVideoEvent;
427
+ requestVideoDisable: RequestVideoEvent;
413
428
  } | "*" ? NotificationEventMap[K_1] extends unknown[] ? (...args: NotificationEventMap[K_1]) => void : never : never) => NotificationsEventEmitter;
414
429
  on: <K_2>(eventName: keyof {
415
430
  requestAudioEnable: RequestAudioEvent;
@@ -420,6 +435,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
420
435
  signalTrouble: SignalStatusEvent;
421
436
  signalOk: SignalStatusEvent;
422
437
  clientUnableToJoinFullRoom: SignalClientEvent;
438
+ requestVideoEnable: RequestVideoEvent;
439
+ requestVideoDisable: RequestVideoEvent;
423
440
  } | "*" | K_2, listener: K_2 extends keyof {
424
441
  requestAudioEnable: RequestAudioEvent;
425
442
  requestAudioDisable: RequestAudioEvent;
@@ -429,6 +446,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
429
446
  signalTrouble: SignalStatusEvent;
430
447
  signalOk: SignalStatusEvent;
431
448
  clientUnableToJoinFullRoom: SignalClientEvent;
449
+ requestVideoEnable: RequestVideoEvent;
450
+ requestVideoDisable: RequestVideoEvent;
432
451
  } | "*" ? NotificationEventMap[K_2] extends unknown[] ? (...args: NotificationEventMap[K_2]) => void : never : never) => NotificationsEventEmitter;
433
452
  once: <K_3>(eventName: keyof {
434
453
  requestAudioEnable: RequestAudioEvent;
@@ -439,6 +458,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
439
458
  signalTrouble: SignalStatusEvent;
440
459
  signalOk: SignalStatusEvent;
441
460
  clientUnableToJoinFullRoom: SignalClientEvent;
461
+ requestVideoEnable: RequestVideoEvent;
462
+ requestVideoDisable: RequestVideoEvent;
442
463
  } | "*" | K_3, listener: K_3 extends keyof {
443
464
  requestAudioEnable: RequestAudioEvent;
444
465
  requestAudioDisable: RequestAudioEvent;
@@ -448,6 +469,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
448
469
  signalTrouble: SignalStatusEvent;
449
470
  signalOk: SignalStatusEvent;
450
471
  clientUnableToJoinFullRoom: SignalClientEvent;
472
+ requestVideoEnable: RequestVideoEvent;
473
+ requestVideoDisable: RequestVideoEvent;
451
474
  } | "*" ? NotificationEventMap[K_3] extends unknown[] ? (...args: NotificationEventMap[K_3]) => void : never : never) => NotificationsEventEmitter;
452
475
  removeListener: <K_4>(eventName: keyof {
453
476
  requestAudioEnable: RequestAudioEvent;
@@ -458,6 +481,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
458
481
  signalTrouble: SignalStatusEvent;
459
482
  signalOk: SignalStatusEvent;
460
483
  clientUnableToJoinFullRoom: SignalClientEvent;
484
+ requestVideoEnable: RequestVideoEvent;
485
+ requestVideoDisable: RequestVideoEvent;
461
486
  } | "*" | K_4, listener: K_4 extends keyof {
462
487
  requestAudioEnable: RequestAudioEvent;
463
488
  requestAudioDisable: RequestAudioEvent;
@@ -467,6 +492,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
467
492
  signalTrouble: SignalStatusEvent;
468
493
  signalOk: SignalStatusEvent;
469
494
  clientUnableToJoinFullRoom: SignalClientEvent;
495
+ requestVideoEnable: RequestVideoEvent;
496
+ requestVideoDisable: RequestVideoEvent;
470
497
  } | "*" ? NotificationEventMap[K_4] extends unknown[] ? (...args: NotificationEventMap[K_4]) => void : never : never) => NotificationsEventEmitter;
471
498
  off: <K_5>(eventName: keyof {
472
499
  requestAudioEnable: RequestAudioEvent;
@@ -477,6 +504,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
477
504
  signalTrouble: SignalStatusEvent;
478
505
  signalOk: SignalStatusEvent;
479
506
  clientUnableToJoinFullRoom: SignalClientEvent;
507
+ requestVideoEnable: RequestVideoEvent;
508
+ requestVideoDisable: RequestVideoEvent;
480
509
  } | "*" | K_5, listener: K_5 extends keyof {
481
510
  requestAudioEnable: RequestAudioEvent;
482
511
  requestAudioDisable: RequestAudioEvent;
@@ -486,6 +515,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
486
515
  signalTrouble: SignalStatusEvent;
487
516
  signalOk: SignalStatusEvent;
488
517
  clientUnableToJoinFullRoom: SignalClientEvent;
518
+ requestVideoEnable: RequestVideoEvent;
519
+ requestVideoDisable: RequestVideoEvent;
489
520
  } | "*" ? NotificationEventMap[K_5] extends unknown[] ? (...args: NotificationEventMap[K_5]) => void : never : never) => NotificationsEventEmitter;
490
521
  removeAllListeners: (eventName?: unknown) => NotificationsEventEmitter;
491
522
  setMaxListeners: (n: number) => NotificationsEventEmitter;
@@ -499,6 +530,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
499
530
  signalTrouble: SignalStatusEvent;
500
531
  signalOk: SignalStatusEvent;
501
532
  clientUnableToJoinFullRoom: SignalClientEvent;
533
+ requestVideoEnable: RequestVideoEvent;
534
+ requestVideoDisable: RequestVideoEvent;
502
535
  } | "*" | K_6) => (K_6 extends keyof {
503
536
  requestAudioEnable: RequestAudioEvent;
504
537
  requestAudioDisable: RequestAudioEvent;
@@ -508,6 +541,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
508
541
  signalTrouble: SignalStatusEvent;
509
542
  signalOk: SignalStatusEvent;
510
543
  clientUnableToJoinFullRoom: SignalClientEvent;
544
+ requestVideoEnable: RequestVideoEvent;
545
+ requestVideoDisable: RequestVideoEvent;
511
546
  } | "*" ? NotificationEventMap[K_6] extends unknown[] ? (...args: NotificationEventMap[K_6]) => void : never : never)[];
512
547
  rawListeners: <K_7>(eventName: keyof {
513
548
  requestAudioEnable: RequestAudioEvent;
@@ -518,6 +553,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
518
553
  signalTrouble: SignalStatusEvent;
519
554
  signalOk: SignalStatusEvent;
520
555
  clientUnableToJoinFullRoom: SignalClientEvent;
556
+ requestVideoEnable: RequestVideoEvent;
557
+ requestVideoDisable: RequestVideoEvent;
521
558
  } | "*" | K_7) => (K_7 extends keyof {
522
559
  requestAudioEnable: RequestAudioEvent;
523
560
  requestAudioDisable: RequestAudioEvent;
@@ -527,6 +564,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
527
564
  signalTrouble: SignalStatusEvent;
528
565
  signalOk: SignalStatusEvent;
529
566
  clientUnableToJoinFullRoom: SignalClientEvent;
567
+ requestVideoEnable: RequestVideoEvent;
568
+ requestVideoDisable: RequestVideoEvent;
530
569
  } | "*" ? NotificationEventMap[K_7] extends unknown[] ? (...args: NotificationEventMap[K_7]) => void : never : never)[];
531
570
  emit: <K_8>(eventName: keyof {
532
571
  requestAudioEnable: RequestAudioEvent;
@@ -537,6 +576,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
537
576
  signalTrouble: SignalStatusEvent;
538
577
  signalOk: SignalStatusEvent;
539
578
  clientUnableToJoinFullRoom: SignalClientEvent;
579
+ requestVideoEnable: RequestVideoEvent;
580
+ requestVideoDisable: RequestVideoEvent;
540
581
  } | "*" | K_8, ...args: K_8 extends keyof {
541
582
  requestAudioEnable: RequestAudioEvent;
542
583
  requestAudioDisable: RequestAudioEvent;
@@ -546,6 +587,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
546
587
  signalTrouble: SignalStatusEvent;
547
588
  signalOk: SignalStatusEvent;
548
589
  clientUnableToJoinFullRoom: SignalClientEvent;
590
+ requestVideoEnable: RequestVideoEvent;
591
+ requestVideoDisable: RequestVideoEvent;
549
592
  } | "*" ? NotificationEventMap[K_8] : never) => boolean;
550
593
  listenerCount: <K_9>(eventName: keyof {
551
594
  requestAudioEnable: RequestAudioEvent;
@@ -556,6 +599,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
556
599
  signalTrouble: SignalStatusEvent;
557
600
  signalOk: SignalStatusEvent;
558
601
  clientUnableToJoinFullRoom: SignalClientEvent;
602
+ requestVideoEnable: RequestVideoEvent;
603
+ requestVideoDisable: RequestVideoEvent;
559
604
  } | "*" | K_9, listener?: (K_9 extends keyof {
560
605
  requestAudioEnable: RequestAudioEvent;
561
606
  requestAudioDisable: RequestAudioEvent;
@@ -565,6 +610,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
565
610
  signalTrouble: SignalStatusEvent;
566
611
  signalOk: SignalStatusEvent;
567
612
  clientUnableToJoinFullRoom: SignalClientEvent;
613
+ requestVideoEnable: RequestVideoEvent;
614
+ requestVideoDisable: RequestVideoEvent;
568
615
  } | "*" ? NotificationEventMap[K_9] extends unknown[] ? (...args: NotificationEventMap[K_9]) => void : never : never) | undefined) => number;
569
616
  prependListener: <K_10>(eventName: keyof {
570
617
  requestAudioEnable: RequestAudioEvent;
@@ -575,6 +622,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
575
622
  signalTrouble: SignalStatusEvent;
576
623
  signalOk: SignalStatusEvent;
577
624
  clientUnableToJoinFullRoom: SignalClientEvent;
625
+ requestVideoEnable: RequestVideoEvent;
626
+ requestVideoDisable: RequestVideoEvent;
578
627
  } | "*" | K_10, listener: K_10 extends keyof {
579
628
  requestAudioEnable: RequestAudioEvent;
580
629
  requestAudioDisable: RequestAudioEvent;
@@ -584,6 +633,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
584
633
  signalTrouble: SignalStatusEvent;
585
634
  signalOk: SignalStatusEvent;
586
635
  clientUnableToJoinFullRoom: SignalClientEvent;
636
+ requestVideoEnable: RequestVideoEvent;
637
+ requestVideoDisable: RequestVideoEvent;
587
638
  } | "*" ? NotificationEventMap[K_10] extends unknown[] ? (...args: NotificationEventMap[K_10]) => void : never : never) => NotificationsEventEmitter;
588
639
  prependOnceListener: <K_11>(eventName: keyof {
589
640
  requestAudioEnable: RequestAudioEvent;
@@ -594,6 +645,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
594
645
  signalTrouble: SignalStatusEvent;
595
646
  signalOk: SignalStatusEvent;
596
647
  clientUnableToJoinFullRoom: SignalClientEvent;
648
+ requestVideoEnable: RequestVideoEvent;
649
+ requestVideoDisable: RequestVideoEvent;
597
650
  } | "*" | K_11, listener: K_11 extends keyof {
598
651
  requestAudioEnable: RequestAudioEvent;
599
652
  requestAudioDisable: RequestAudioEvent;
@@ -603,8 +656,10 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
603
656
  signalTrouble: SignalStatusEvent;
604
657
  signalOk: SignalStatusEvent;
605
658
  clientUnableToJoinFullRoom: SignalClientEvent;
659
+ requestVideoEnable: RequestVideoEvent;
660
+ requestVideoDisable: RequestVideoEvent;
606
661
  } | "*" ? NotificationEventMap[K_11] extends unknown[] ? (...args: NotificationEventMap[K_11]) => void : never : never) => NotificationsEventEmitter;
607
- eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "clientUnableToJoinFullRoom" | "*")[];
662
+ eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "clientUnableToJoinFullRoom" | "requestVideoEnable" | "requestVideoDisable" | "*")[];
608
663
  };
609
664
  events: {
610
665
  type: string;
@@ -629,6 +684,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
629
684
  signalTrouble: SignalStatusEvent;
630
685
  signalOk: SignalStatusEvent;
631
686
  clientUnableToJoinFullRoom: SignalClientEvent;
687
+ requestVideoEnable: RequestVideoEvent;
688
+ requestVideoDisable: RequestVideoEvent;
632
689
  } | K | "*", ...args: K extends keyof {
633
690
  requestAudioEnable: RequestAudioEvent;
634
691
  requestAudioDisable: RequestAudioEvent;
@@ -638,6 +695,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
638
695
  signalTrouble: SignalStatusEvent;
639
696
  signalOk: SignalStatusEvent;
640
697
  clientUnableToJoinFullRoom: SignalClientEvent;
698
+ requestVideoEnable: RequestVideoEvent;
699
+ requestVideoDisable: RequestVideoEvent;
641
700
  } | "*" ? NotificationEventMap[K] : never) => void) | undefined;
642
701
  addListener: <K_1>(eventName: keyof {
643
702
  requestAudioEnable: RequestAudioEvent;
@@ -648,6 +707,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
648
707
  signalTrouble: SignalStatusEvent;
649
708
  signalOk: SignalStatusEvent;
650
709
  clientUnableToJoinFullRoom: SignalClientEvent;
710
+ requestVideoEnable: RequestVideoEvent;
711
+ requestVideoDisable: RequestVideoEvent;
651
712
  } | "*" | K_1, listener: K_1 extends keyof {
652
713
  requestAudioEnable: RequestAudioEvent;
653
714
  requestAudioDisable: RequestAudioEvent;
@@ -657,6 +718,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
657
718
  signalTrouble: SignalStatusEvent;
658
719
  signalOk: SignalStatusEvent;
659
720
  clientUnableToJoinFullRoom: SignalClientEvent;
721
+ requestVideoEnable: RequestVideoEvent;
722
+ requestVideoDisable: RequestVideoEvent;
660
723
  } | "*" ? NotificationEventMap[K_1] extends unknown[] ? (...args: NotificationEventMap[K_1]) => void : never : never) => NotificationsEventEmitter;
661
724
  on: <K_2>(eventName: keyof {
662
725
  requestAudioEnable: RequestAudioEvent;
@@ -667,6 +730,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
667
730
  signalTrouble: SignalStatusEvent;
668
731
  signalOk: SignalStatusEvent;
669
732
  clientUnableToJoinFullRoom: SignalClientEvent;
733
+ requestVideoEnable: RequestVideoEvent;
734
+ requestVideoDisable: RequestVideoEvent;
670
735
  } | "*" | K_2, listener: K_2 extends keyof {
671
736
  requestAudioEnable: RequestAudioEvent;
672
737
  requestAudioDisable: RequestAudioEvent;
@@ -676,6 +741,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
676
741
  signalTrouble: SignalStatusEvent;
677
742
  signalOk: SignalStatusEvent;
678
743
  clientUnableToJoinFullRoom: SignalClientEvent;
744
+ requestVideoEnable: RequestVideoEvent;
745
+ requestVideoDisable: RequestVideoEvent;
679
746
  } | "*" ? NotificationEventMap[K_2] extends unknown[] ? (...args: NotificationEventMap[K_2]) => void : never : never) => NotificationsEventEmitter;
680
747
  once: <K_3>(eventName: keyof {
681
748
  requestAudioEnable: RequestAudioEvent;
@@ -686,6 +753,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
686
753
  signalTrouble: SignalStatusEvent;
687
754
  signalOk: SignalStatusEvent;
688
755
  clientUnableToJoinFullRoom: SignalClientEvent;
756
+ requestVideoEnable: RequestVideoEvent;
757
+ requestVideoDisable: RequestVideoEvent;
689
758
  } | "*" | K_3, listener: K_3 extends keyof {
690
759
  requestAudioEnable: RequestAudioEvent;
691
760
  requestAudioDisable: RequestAudioEvent;
@@ -695,6 +764,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
695
764
  signalTrouble: SignalStatusEvent;
696
765
  signalOk: SignalStatusEvent;
697
766
  clientUnableToJoinFullRoom: SignalClientEvent;
767
+ requestVideoEnable: RequestVideoEvent;
768
+ requestVideoDisable: RequestVideoEvent;
698
769
  } | "*" ? NotificationEventMap[K_3] extends unknown[] ? (...args: NotificationEventMap[K_3]) => void : never : never) => NotificationsEventEmitter;
699
770
  removeListener: <K_4>(eventName: keyof {
700
771
  requestAudioEnable: RequestAudioEvent;
@@ -705,6 +776,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
705
776
  signalTrouble: SignalStatusEvent;
706
777
  signalOk: SignalStatusEvent;
707
778
  clientUnableToJoinFullRoom: SignalClientEvent;
779
+ requestVideoEnable: RequestVideoEvent;
780
+ requestVideoDisable: RequestVideoEvent;
708
781
  } | "*" | K_4, listener: K_4 extends keyof {
709
782
  requestAudioEnable: RequestAudioEvent;
710
783
  requestAudioDisable: RequestAudioEvent;
@@ -714,6 +787,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
714
787
  signalTrouble: SignalStatusEvent;
715
788
  signalOk: SignalStatusEvent;
716
789
  clientUnableToJoinFullRoom: SignalClientEvent;
790
+ requestVideoEnable: RequestVideoEvent;
791
+ requestVideoDisable: RequestVideoEvent;
717
792
  } | "*" ? NotificationEventMap[K_4] extends unknown[] ? (...args: NotificationEventMap[K_4]) => void : never : never) => NotificationsEventEmitter;
718
793
  off: <K_5>(eventName: keyof {
719
794
  requestAudioEnable: RequestAudioEvent;
@@ -724,6 +799,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
724
799
  signalTrouble: SignalStatusEvent;
725
800
  signalOk: SignalStatusEvent;
726
801
  clientUnableToJoinFullRoom: SignalClientEvent;
802
+ requestVideoEnable: RequestVideoEvent;
803
+ requestVideoDisable: RequestVideoEvent;
727
804
  } | "*" | K_5, listener: K_5 extends keyof {
728
805
  requestAudioEnable: RequestAudioEvent;
729
806
  requestAudioDisable: RequestAudioEvent;
@@ -733,6 +810,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
733
810
  signalTrouble: SignalStatusEvent;
734
811
  signalOk: SignalStatusEvent;
735
812
  clientUnableToJoinFullRoom: SignalClientEvent;
813
+ requestVideoEnable: RequestVideoEvent;
814
+ requestVideoDisable: RequestVideoEvent;
736
815
  } | "*" ? NotificationEventMap[K_5] extends unknown[] ? (...args: NotificationEventMap[K_5]) => void : never : never) => NotificationsEventEmitter;
737
816
  removeAllListeners: (eventName?: unknown) => NotificationsEventEmitter;
738
817
  setMaxListeners: (n: number) => NotificationsEventEmitter;
@@ -746,6 +825,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
746
825
  signalTrouble: SignalStatusEvent;
747
826
  signalOk: SignalStatusEvent;
748
827
  clientUnableToJoinFullRoom: SignalClientEvent;
828
+ requestVideoEnable: RequestVideoEvent;
829
+ requestVideoDisable: RequestVideoEvent;
749
830
  } | "*" | K_6) => (K_6 extends keyof {
750
831
  requestAudioEnable: RequestAudioEvent;
751
832
  requestAudioDisable: RequestAudioEvent;
@@ -755,6 +836,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
755
836
  signalTrouble: SignalStatusEvent;
756
837
  signalOk: SignalStatusEvent;
757
838
  clientUnableToJoinFullRoom: SignalClientEvent;
839
+ requestVideoEnable: RequestVideoEvent;
840
+ requestVideoDisable: RequestVideoEvent;
758
841
  } | "*" ? NotificationEventMap[K_6] extends unknown[] ? (...args: NotificationEventMap[K_6]) => void : never : never)[];
759
842
  rawListeners: <K_7>(eventName: keyof {
760
843
  requestAudioEnable: RequestAudioEvent;
@@ -765,6 +848,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
765
848
  signalTrouble: SignalStatusEvent;
766
849
  signalOk: SignalStatusEvent;
767
850
  clientUnableToJoinFullRoom: SignalClientEvent;
851
+ requestVideoEnable: RequestVideoEvent;
852
+ requestVideoDisable: RequestVideoEvent;
768
853
  } | "*" | K_7) => (K_7 extends keyof {
769
854
  requestAudioEnable: RequestAudioEvent;
770
855
  requestAudioDisable: RequestAudioEvent;
@@ -774,6 +859,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
774
859
  signalTrouble: SignalStatusEvent;
775
860
  signalOk: SignalStatusEvent;
776
861
  clientUnableToJoinFullRoom: SignalClientEvent;
862
+ requestVideoEnable: RequestVideoEvent;
863
+ requestVideoDisable: RequestVideoEvent;
777
864
  } | "*" ? NotificationEventMap[K_7] extends unknown[] ? (...args: NotificationEventMap[K_7]) => void : never : never)[];
778
865
  emit: <K_8>(eventName: keyof {
779
866
  requestAudioEnable: RequestAudioEvent;
@@ -784,6 +871,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
784
871
  signalTrouble: SignalStatusEvent;
785
872
  signalOk: SignalStatusEvent;
786
873
  clientUnableToJoinFullRoom: SignalClientEvent;
874
+ requestVideoEnable: RequestVideoEvent;
875
+ requestVideoDisable: RequestVideoEvent;
787
876
  } | "*" | K_8, ...args: K_8 extends keyof {
788
877
  requestAudioEnable: RequestAudioEvent;
789
878
  requestAudioDisable: RequestAudioEvent;
@@ -793,6 +882,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
793
882
  signalTrouble: SignalStatusEvent;
794
883
  signalOk: SignalStatusEvent;
795
884
  clientUnableToJoinFullRoom: SignalClientEvent;
885
+ requestVideoEnable: RequestVideoEvent;
886
+ requestVideoDisable: RequestVideoEvent;
796
887
  } | "*" ? NotificationEventMap[K_8] : never) => boolean;
797
888
  listenerCount: <K_9>(eventName: keyof {
798
889
  requestAudioEnable: RequestAudioEvent;
@@ -803,6 +894,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
803
894
  signalTrouble: SignalStatusEvent;
804
895
  signalOk: SignalStatusEvent;
805
896
  clientUnableToJoinFullRoom: SignalClientEvent;
897
+ requestVideoEnable: RequestVideoEvent;
898
+ requestVideoDisable: RequestVideoEvent;
806
899
  } | "*" | K_9, listener?: (K_9 extends keyof {
807
900
  requestAudioEnable: RequestAudioEvent;
808
901
  requestAudioDisable: RequestAudioEvent;
@@ -812,6 +905,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
812
905
  signalTrouble: SignalStatusEvent;
813
906
  signalOk: SignalStatusEvent;
814
907
  clientUnableToJoinFullRoom: SignalClientEvent;
908
+ requestVideoEnable: RequestVideoEvent;
909
+ requestVideoDisable: RequestVideoEvent;
815
910
  } | "*" ? NotificationEventMap[K_9] extends unknown[] ? (...args: NotificationEventMap[K_9]) => void : never : never) | undefined) => number;
816
911
  prependListener: <K_10>(eventName: keyof {
817
912
  requestAudioEnable: RequestAudioEvent;
@@ -822,6 +917,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
822
917
  signalTrouble: SignalStatusEvent;
823
918
  signalOk: SignalStatusEvent;
824
919
  clientUnableToJoinFullRoom: SignalClientEvent;
920
+ requestVideoEnable: RequestVideoEvent;
921
+ requestVideoDisable: RequestVideoEvent;
825
922
  } | "*" | K_10, listener: K_10 extends keyof {
826
923
  requestAudioEnable: RequestAudioEvent;
827
924
  requestAudioDisable: RequestAudioEvent;
@@ -831,6 +928,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
831
928
  signalTrouble: SignalStatusEvent;
832
929
  signalOk: SignalStatusEvent;
833
930
  clientUnableToJoinFullRoom: SignalClientEvent;
931
+ requestVideoEnable: RequestVideoEvent;
932
+ requestVideoDisable: RequestVideoEvent;
834
933
  } | "*" ? NotificationEventMap[K_10] extends unknown[] ? (...args: NotificationEventMap[K_10]) => void : never : never) => NotificationsEventEmitter;
835
934
  prependOnceListener: <K_11>(eventName: keyof {
836
935
  requestAudioEnable: RequestAudioEvent;
@@ -841,6 +940,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
841
940
  signalTrouble: SignalStatusEvent;
842
941
  signalOk: SignalStatusEvent;
843
942
  clientUnableToJoinFullRoom: SignalClientEvent;
943
+ requestVideoEnable: RequestVideoEvent;
944
+ requestVideoDisable: RequestVideoEvent;
844
945
  } | "*" | K_11, listener: K_11 extends keyof {
845
946
  requestAudioEnable: RequestAudioEvent;
846
947
  requestAudioDisable: RequestAudioEvent;
@@ -850,8 +951,10 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
850
951
  signalTrouble: SignalStatusEvent;
851
952
  signalOk: SignalStatusEvent;
852
953
  clientUnableToJoinFullRoom: SignalClientEvent;
954
+ requestVideoEnable: RequestVideoEvent;
955
+ requestVideoDisable: RequestVideoEvent;
853
956
  } | "*" ? NotificationEventMap[K_11] extends unknown[] ? (...args: NotificationEventMap[K_11]) => void : never : never) => NotificationsEventEmitter;
854
- eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "clientUnableToJoinFullRoom" | "*")[];
957
+ eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "clientUnableToJoinFullRoom" | "requestVideoEnable" | "requestVideoDisable" | "*")[];
855
958
  };
856
959
  };
857
960
  doClearNotifications: (state: {
@@ -865,6 +968,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
865
968
  signalTrouble: SignalStatusEvent;
866
969
  signalOk: SignalStatusEvent;
867
970
  clientUnableToJoinFullRoom: SignalClientEvent;
971
+ requestVideoEnable: RequestVideoEvent;
972
+ requestVideoDisable: RequestVideoEvent;
868
973
  } | K | "*", ...args: K extends keyof {
869
974
  requestAudioEnable: RequestAudioEvent;
870
975
  requestAudioDisable: RequestAudioEvent;
@@ -874,6 +979,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
874
979
  signalTrouble: SignalStatusEvent;
875
980
  signalOk: SignalStatusEvent;
876
981
  clientUnableToJoinFullRoom: SignalClientEvent;
982
+ requestVideoEnable: RequestVideoEvent;
983
+ requestVideoDisable: RequestVideoEvent;
877
984
  } | "*" ? NotificationEventMap[K] : never) => void) | undefined;
878
985
  addListener: <K_1>(eventName: keyof {
879
986
  requestAudioEnable: RequestAudioEvent;
@@ -884,6 +991,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
884
991
  signalTrouble: SignalStatusEvent;
885
992
  signalOk: SignalStatusEvent;
886
993
  clientUnableToJoinFullRoom: SignalClientEvent;
994
+ requestVideoEnable: RequestVideoEvent;
995
+ requestVideoDisable: RequestVideoEvent;
887
996
  } | "*" | K_1, listener: K_1 extends keyof {
888
997
  requestAudioEnable: RequestAudioEvent;
889
998
  requestAudioDisable: RequestAudioEvent;
@@ -893,6 +1002,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
893
1002
  signalTrouble: SignalStatusEvent;
894
1003
  signalOk: SignalStatusEvent;
895
1004
  clientUnableToJoinFullRoom: SignalClientEvent;
1005
+ requestVideoEnable: RequestVideoEvent;
1006
+ requestVideoDisable: RequestVideoEvent;
896
1007
  } | "*" ? NotificationEventMap[K_1] extends unknown[] ? (...args: NotificationEventMap[K_1]) => void : never : never) => NotificationsEventEmitter;
897
1008
  on: <K_2>(eventName: keyof {
898
1009
  requestAudioEnable: RequestAudioEvent;
@@ -903,6 +1014,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
903
1014
  signalTrouble: SignalStatusEvent;
904
1015
  signalOk: SignalStatusEvent;
905
1016
  clientUnableToJoinFullRoom: SignalClientEvent;
1017
+ requestVideoEnable: RequestVideoEvent;
1018
+ requestVideoDisable: RequestVideoEvent;
906
1019
  } | "*" | K_2, listener: K_2 extends keyof {
907
1020
  requestAudioEnable: RequestAudioEvent;
908
1021
  requestAudioDisable: RequestAudioEvent;
@@ -912,6 +1025,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
912
1025
  signalTrouble: SignalStatusEvent;
913
1026
  signalOk: SignalStatusEvent;
914
1027
  clientUnableToJoinFullRoom: SignalClientEvent;
1028
+ requestVideoEnable: RequestVideoEvent;
1029
+ requestVideoDisable: RequestVideoEvent;
915
1030
  } | "*" ? NotificationEventMap[K_2] extends unknown[] ? (...args: NotificationEventMap[K_2]) => void : never : never) => NotificationsEventEmitter;
916
1031
  once: <K_3>(eventName: keyof {
917
1032
  requestAudioEnable: RequestAudioEvent;
@@ -922,6 +1037,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
922
1037
  signalTrouble: SignalStatusEvent;
923
1038
  signalOk: SignalStatusEvent;
924
1039
  clientUnableToJoinFullRoom: SignalClientEvent;
1040
+ requestVideoEnable: RequestVideoEvent;
1041
+ requestVideoDisable: RequestVideoEvent;
925
1042
  } | "*" | K_3, listener: K_3 extends keyof {
926
1043
  requestAudioEnable: RequestAudioEvent;
927
1044
  requestAudioDisable: RequestAudioEvent;
@@ -931,6 +1048,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
931
1048
  signalTrouble: SignalStatusEvent;
932
1049
  signalOk: SignalStatusEvent;
933
1050
  clientUnableToJoinFullRoom: SignalClientEvent;
1051
+ requestVideoEnable: RequestVideoEvent;
1052
+ requestVideoDisable: RequestVideoEvent;
934
1053
  } | "*" ? NotificationEventMap[K_3] extends unknown[] ? (...args: NotificationEventMap[K_3]) => void : never : never) => NotificationsEventEmitter;
935
1054
  removeListener: <K_4>(eventName: keyof {
936
1055
  requestAudioEnable: RequestAudioEvent;
@@ -941,6 +1060,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
941
1060
  signalTrouble: SignalStatusEvent;
942
1061
  signalOk: SignalStatusEvent;
943
1062
  clientUnableToJoinFullRoom: SignalClientEvent;
1063
+ requestVideoEnable: RequestVideoEvent;
1064
+ requestVideoDisable: RequestVideoEvent;
944
1065
  } | "*" | K_4, listener: K_4 extends keyof {
945
1066
  requestAudioEnable: RequestAudioEvent;
946
1067
  requestAudioDisable: RequestAudioEvent;
@@ -950,6 +1071,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
950
1071
  signalTrouble: SignalStatusEvent;
951
1072
  signalOk: SignalStatusEvent;
952
1073
  clientUnableToJoinFullRoom: SignalClientEvent;
1074
+ requestVideoEnable: RequestVideoEvent;
1075
+ requestVideoDisable: RequestVideoEvent;
953
1076
  } | "*" ? NotificationEventMap[K_4] extends unknown[] ? (...args: NotificationEventMap[K_4]) => void : never : never) => NotificationsEventEmitter;
954
1077
  off: <K_5>(eventName: keyof {
955
1078
  requestAudioEnable: RequestAudioEvent;
@@ -960,6 +1083,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
960
1083
  signalTrouble: SignalStatusEvent;
961
1084
  signalOk: SignalStatusEvent;
962
1085
  clientUnableToJoinFullRoom: SignalClientEvent;
1086
+ requestVideoEnable: RequestVideoEvent;
1087
+ requestVideoDisable: RequestVideoEvent;
963
1088
  } | "*" | K_5, listener: K_5 extends keyof {
964
1089
  requestAudioEnable: RequestAudioEvent;
965
1090
  requestAudioDisable: RequestAudioEvent;
@@ -969,6 +1094,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
969
1094
  signalTrouble: SignalStatusEvent;
970
1095
  signalOk: SignalStatusEvent;
971
1096
  clientUnableToJoinFullRoom: SignalClientEvent;
1097
+ requestVideoEnable: RequestVideoEvent;
1098
+ requestVideoDisable: RequestVideoEvent;
972
1099
  } | "*" ? NotificationEventMap[K_5] extends unknown[] ? (...args: NotificationEventMap[K_5]) => void : never : never) => NotificationsEventEmitter;
973
1100
  removeAllListeners: (eventName?: unknown) => NotificationsEventEmitter;
974
1101
  setMaxListeners: (n: number) => NotificationsEventEmitter;
@@ -982,6 +1109,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
982
1109
  signalTrouble: SignalStatusEvent;
983
1110
  signalOk: SignalStatusEvent;
984
1111
  clientUnableToJoinFullRoom: SignalClientEvent;
1112
+ requestVideoEnable: RequestVideoEvent;
1113
+ requestVideoDisable: RequestVideoEvent;
985
1114
  } | "*" | K_6) => (K_6 extends keyof {
986
1115
  requestAudioEnable: RequestAudioEvent;
987
1116
  requestAudioDisable: RequestAudioEvent;
@@ -991,6 +1120,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
991
1120
  signalTrouble: SignalStatusEvent;
992
1121
  signalOk: SignalStatusEvent;
993
1122
  clientUnableToJoinFullRoom: SignalClientEvent;
1123
+ requestVideoEnable: RequestVideoEvent;
1124
+ requestVideoDisable: RequestVideoEvent;
994
1125
  } | "*" ? NotificationEventMap[K_6] extends unknown[] ? (...args: NotificationEventMap[K_6]) => void : never : never)[];
995
1126
  rawListeners: <K_7>(eventName: keyof {
996
1127
  requestAudioEnable: RequestAudioEvent;
@@ -1001,6 +1132,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1001
1132
  signalTrouble: SignalStatusEvent;
1002
1133
  signalOk: SignalStatusEvent;
1003
1134
  clientUnableToJoinFullRoom: SignalClientEvent;
1135
+ requestVideoEnable: RequestVideoEvent;
1136
+ requestVideoDisable: RequestVideoEvent;
1004
1137
  } | "*" | K_7) => (K_7 extends keyof {
1005
1138
  requestAudioEnable: RequestAudioEvent;
1006
1139
  requestAudioDisable: RequestAudioEvent;
@@ -1010,6 +1143,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1010
1143
  signalTrouble: SignalStatusEvent;
1011
1144
  signalOk: SignalStatusEvent;
1012
1145
  clientUnableToJoinFullRoom: SignalClientEvent;
1146
+ requestVideoEnable: RequestVideoEvent;
1147
+ requestVideoDisable: RequestVideoEvent;
1013
1148
  } | "*" ? NotificationEventMap[K_7] extends unknown[] ? (...args: NotificationEventMap[K_7]) => void : never : never)[];
1014
1149
  emit: <K_8>(eventName: keyof {
1015
1150
  requestAudioEnable: RequestAudioEvent;
@@ -1020,6 +1155,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1020
1155
  signalTrouble: SignalStatusEvent;
1021
1156
  signalOk: SignalStatusEvent;
1022
1157
  clientUnableToJoinFullRoom: SignalClientEvent;
1158
+ requestVideoEnable: RequestVideoEvent;
1159
+ requestVideoDisable: RequestVideoEvent;
1023
1160
  } | "*" | K_8, ...args: K_8 extends keyof {
1024
1161
  requestAudioEnable: RequestAudioEvent;
1025
1162
  requestAudioDisable: RequestAudioEvent;
@@ -1029,6 +1166,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1029
1166
  signalTrouble: SignalStatusEvent;
1030
1167
  signalOk: SignalStatusEvent;
1031
1168
  clientUnableToJoinFullRoom: SignalClientEvent;
1169
+ requestVideoEnable: RequestVideoEvent;
1170
+ requestVideoDisable: RequestVideoEvent;
1032
1171
  } | "*" ? NotificationEventMap[K_8] : never) => boolean;
1033
1172
  listenerCount: <K_9>(eventName: keyof {
1034
1173
  requestAudioEnable: RequestAudioEvent;
@@ -1039,6 +1178,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1039
1178
  signalTrouble: SignalStatusEvent;
1040
1179
  signalOk: SignalStatusEvent;
1041
1180
  clientUnableToJoinFullRoom: SignalClientEvent;
1181
+ requestVideoEnable: RequestVideoEvent;
1182
+ requestVideoDisable: RequestVideoEvent;
1042
1183
  } | "*" | K_9, listener?: (K_9 extends keyof {
1043
1184
  requestAudioEnable: RequestAudioEvent;
1044
1185
  requestAudioDisable: RequestAudioEvent;
@@ -1048,6 +1189,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1048
1189
  signalTrouble: SignalStatusEvent;
1049
1190
  signalOk: SignalStatusEvent;
1050
1191
  clientUnableToJoinFullRoom: SignalClientEvent;
1192
+ requestVideoEnable: RequestVideoEvent;
1193
+ requestVideoDisable: RequestVideoEvent;
1051
1194
  } | "*" ? NotificationEventMap[K_9] extends unknown[] ? (...args: NotificationEventMap[K_9]) => void : never : never) | undefined) => number;
1052
1195
  prependListener: <K_10>(eventName: keyof {
1053
1196
  requestAudioEnable: RequestAudioEvent;
@@ -1058,6 +1201,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1058
1201
  signalTrouble: SignalStatusEvent;
1059
1202
  signalOk: SignalStatusEvent;
1060
1203
  clientUnableToJoinFullRoom: SignalClientEvent;
1204
+ requestVideoEnable: RequestVideoEvent;
1205
+ requestVideoDisable: RequestVideoEvent;
1061
1206
  } | "*" | K_10, listener: K_10 extends keyof {
1062
1207
  requestAudioEnable: RequestAudioEvent;
1063
1208
  requestAudioDisable: RequestAudioEvent;
@@ -1067,6 +1212,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1067
1212
  signalTrouble: SignalStatusEvent;
1068
1213
  signalOk: SignalStatusEvent;
1069
1214
  clientUnableToJoinFullRoom: SignalClientEvent;
1215
+ requestVideoEnable: RequestVideoEvent;
1216
+ requestVideoDisable: RequestVideoEvent;
1070
1217
  } | "*" ? NotificationEventMap[K_10] extends unknown[] ? (...args: NotificationEventMap[K_10]) => void : never : never) => NotificationsEventEmitter;
1071
1218
  prependOnceListener: <K_11>(eventName: keyof {
1072
1219
  requestAudioEnable: RequestAudioEvent;
@@ -1077,6 +1224,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1077
1224
  signalTrouble: SignalStatusEvent;
1078
1225
  signalOk: SignalStatusEvent;
1079
1226
  clientUnableToJoinFullRoom: SignalClientEvent;
1227
+ requestVideoEnable: RequestVideoEvent;
1228
+ requestVideoDisable: RequestVideoEvent;
1080
1229
  } | "*" | K_11, listener: K_11 extends keyof {
1081
1230
  requestAudioEnable: RequestAudioEvent;
1082
1231
  requestAudioDisable: RequestAudioEvent;
@@ -1086,8 +1235,10 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1086
1235
  signalTrouble: SignalStatusEvent;
1087
1236
  signalOk: SignalStatusEvent;
1088
1237
  clientUnableToJoinFullRoom: SignalClientEvent;
1238
+ requestVideoEnable: RequestVideoEvent;
1239
+ requestVideoDisable: RequestVideoEvent;
1089
1240
  } | "*" ? NotificationEventMap[K_11] extends unknown[] ? (...args: NotificationEventMap[K_11]) => void : never : never) => NotificationsEventEmitter;
1090
- eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "clientUnableToJoinFullRoom" | "*")[];
1241
+ eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "clientUnableToJoinFullRoom" | "requestVideoEnable" | "requestVideoDisable" | "*")[];
1091
1242
  };
1092
1243
  events: {
1093
1244
  type: string;
@@ -1107,6 +1258,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1107
1258
  signalTrouble: SignalStatusEvent;
1108
1259
  signalOk: SignalStatusEvent;
1109
1260
  clientUnableToJoinFullRoom: SignalClientEvent;
1261
+ requestVideoEnable: RequestVideoEvent;
1262
+ requestVideoDisable: RequestVideoEvent;
1110
1263
  } | K | "*", ...args: K extends keyof {
1111
1264
  requestAudioEnable: RequestAudioEvent;
1112
1265
  requestAudioDisable: RequestAudioEvent;
@@ -1116,6 +1269,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1116
1269
  signalTrouble: SignalStatusEvent;
1117
1270
  signalOk: SignalStatusEvent;
1118
1271
  clientUnableToJoinFullRoom: SignalClientEvent;
1272
+ requestVideoEnable: RequestVideoEvent;
1273
+ requestVideoDisable: RequestVideoEvent;
1119
1274
  } | "*" ? NotificationEventMap[K] : never) => void) | undefined;
1120
1275
  addListener: <K_1>(eventName: keyof {
1121
1276
  requestAudioEnable: RequestAudioEvent;
@@ -1126,6 +1281,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1126
1281
  signalTrouble: SignalStatusEvent;
1127
1282
  signalOk: SignalStatusEvent;
1128
1283
  clientUnableToJoinFullRoom: SignalClientEvent;
1284
+ requestVideoEnable: RequestVideoEvent;
1285
+ requestVideoDisable: RequestVideoEvent;
1129
1286
  } | "*" | K_1, listener: K_1 extends keyof {
1130
1287
  requestAudioEnable: RequestAudioEvent;
1131
1288
  requestAudioDisable: RequestAudioEvent;
@@ -1135,6 +1292,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1135
1292
  signalTrouble: SignalStatusEvent;
1136
1293
  signalOk: SignalStatusEvent;
1137
1294
  clientUnableToJoinFullRoom: SignalClientEvent;
1295
+ requestVideoEnable: RequestVideoEvent;
1296
+ requestVideoDisable: RequestVideoEvent;
1138
1297
  } | "*" ? NotificationEventMap[K_1] extends unknown[] ? (...args: NotificationEventMap[K_1]) => void : never : never) => NotificationsEventEmitter;
1139
1298
  on: <K_2>(eventName: keyof {
1140
1299
  requestAudioEnable: RequestAudioEvent;
@@ -1145,6 +1304,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1145
1304
  signalTrouble: SignalStatusEvent;
1146
1305
  signalOk: SignalStatusEvent;
1147
1306
  clientUnableToJoinFullRoom: SignalClientEvent;
1307
+ requestVideoEnable: RequestVideoEvent;
1308
+ requestVideoDisable: RequestVideoEvent;
1148
1309
  } | "*" | K_2, listener: K_2 extends keyof {
1149
1310
  requestAudioEnable: RequestAudioEvent;
1150
1311
  requestAudioDisable: RequestAudioEvent;
@@ -1154,6 +1315,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1154
1315
  signalTrouble: SignalStatusEvent;
1155
1316
  signalOk: SignalStatusEvent;
1156
1317
  clientUnableToJoinFullRoom: SignalClientEvent;
1318
+ requestVideoEnable: RequestVideoEvent;
1319
+ requestVideoDisable: RequestVideoEvent;
1157
1320
  } | "*" ? NotificationEventMap[K_2] extends unknown[] ? (...args: NotificationEventMap[K_2]) => void : never : never) => NotificationsEventEmitter;
1158
1321
  once: <K_3>(eventName: keyof {
1159
1322
  requestAudioEnable: RequestAudioEvent;
@@ -1164,6 +1327,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1164
1327
  signalTrouble: SignalStatusEvent;
1165
1328
  signalOk: SignalStatusEvent;
1166
1329
  clientUnableToJoinFullRoom: SignalClientEvent;
1330
+ requestVideoEnable: RequestVideoEvent;
1331
+ requestVideoDisable: RequestVideoEvent;
1167
1332
  } | "*" | K_3, listener: K_3 extends keyof {
1168
1333
  requestAudioEnable: RequestAudioEvent;
1169
1334
  requestAudioDisable: RequestAudioEvent;
@@ -1173,6 +1338,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1173
1338
  signalTrouble: SignalStatusEvent;
1174
1339
  signalOk: SignalStatusEvent;
1175
1340
  clientUnableToJoinFullRoom: SignalClientEvent;
1341
+ requestVideoEnable: RequestVideoEvent;
1342
+ requestVideoDisable: RequestVideoEvent;
1176
1343
  } | "*" ? NotificationEventMap[K_3] extends unknown[] ? (...args: NotificationEventMap[K_3]) => void : never : never) => NotificationsEventEmitter;
1177
1344
  removeListener: <K_4>(eventName: keyof {
1178
1345
  requestAudioEnable: RequestAudioEvent;
@@ -1183,6 +1350,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1183
1350
  signalTrouble: SignalStatusEvent;
1184
1351
  signalOk: SignalStatusEvent;
1185
1352
  clientUnableToJoinFullRoom: SignalClientEvent;
1353
+ requestVideoEnable: RequestVideoEvent;
1354
+ requestVideoDisable: RequestVideoEvent;
1186
1355
  } | "*" | K_4, listener: K_4 extends keyof {
1187
1356
  requestAudioEnable: RequestAudioEvent;
1188
1357
  requestAudioDisable: RequestAudioEvent;
@@ -1192,6 +1361,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1192
1361
  signalTrouble: SignalStatusEvent;
1193
1362
  signalOk: SignalStatusEvent;
1194
1363
  clientUnableToJoinFullRoom: SignalClientEvent;
1364
+ requestVideoEnable: RequestVideoEvent;
1365
+ requestVideoDisable: RequestVideoEvent;
1195
1366
  } | "*" ? NotificationEventMap[K_4] extends unknown[] ? (...args: NotificationEventMap[K_4]) => void : never : never) => NotificationsEventEmitter;
1196
1367
  off: <K_5>(eventName: keyof {
1197
1368
  requestAudioEnable: RequestAudioEvent;
@@ -1202,6 +1373,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1202
1373
  signalTrouble: SignalStatusEvent;
1203
1374
  signalOk: SignalStatusEvent;
1204
1375
  clientUnableToJoinFullRoom: SignalClientEvent;
1376
+ requestVideoEnable: RequestVideoEvent;
1377
+ requestVideoDisable: RequestVideoEvent;
1205
1378
  } | "*" | K_5, listener: K_5 extends keyof {
1206
1379
  requestAudioEnable: RequestAudioEvent;
1207
1380
  requestAudioDisable: RequestAudioEvent;
@@ -1211,6 +1384,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1211
1384
  signalTrouble: SignalStatusEvent;
1212
1385
  signalOk: SignalStatusEvent;
1213
1386
  clientUnableToJoinFullRoom: SignalClientEvent;
1387
+ requestVideoEnable: RequestVideoEvent;
1388
+ requestVideoDisable: RequestVideoEvent;
1214
1389
  } | "*" ? NotificationEventMap[K_5] extends unknown[] ? (...args: NotificationEventMap[K_5]) => void : never : never) => NotificationsEventEmitter;
1215
1390
  removeAllListeners: (eventName?: unknown) => NotificationsEventEmitter;
1216
1391
  setMaxListeners: (n: number) => NotificationsEventEmitter;
@@ -1224,6 +1399,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1224
1399
  signalTrouble: SignalStatusEvent;
1225
1400
  signalOk: SignalStatusEvent;
1226
1401
  clientUnableToJoinFullRoom: SignalClientEvent;
1402
+ requestVideoEnable: RequestVideoEvent;
1403
+ requestVideoDisable: RequestVideoEvent;
1227
1404
  } | "*" | K_6) => (K_6 extends keyof {
1228
1405
  requestAudioEnable: RequestAudioEvent;
1229
1406
  requestAudioDisable: RequestAudioEvent;
@@ -1233,6 +1410,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1233
1410
  signalTrouble: SignalStatusEvent;
1234
1411
  signalOk: SignalStatusEvent;
1235
1412
  clientUnableToJoinFullRoom: SignalClientEvent;
1413
+ requestVideoEnable: RequestVideoEvent;
1414
+ requestVideoDisable: RequestVideoEvent;
1236
1415
  } | "*" ? NotificationEventMap[K_6] extends unknown[] ? (...args: NotificationEventMap[K_6]) => void : never : never)[];
1237
1416
  rawListeners: <K_7>(eventName: keyof {
1238
1417
  requestAudioEnable: RequestAudioEvent;
@@ -1243,6 +1422,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1243
1422
  signalTrouble: SignalStatusEvent;
1244
1423
  signalOk: SignalStatusEvent;
1245
1424
  clientUnableToJoinFullRoom: SignalClientEvent;
1425
+ requestVideoEnable: RequestVideoEvent;
1426
+ requestVideoDisable: RequestVideoEvent;
1246
1427
  } | "*" | K_7) => (K_7 extends keyof {
1247
1428
  requestAudioEnable: RequestAudioEvent;
1248
1429
  requestAudioDisable: RequestAudioEvent;
@@ -1252,6 +1433,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1252
1433
  signalTrouble: SignalStatusEvent;
1253
1434
  signalOk: SignalStatusEvent;
1254
1435
  clientUnableToJoinFullRoom: SignalClientEvent;
1436
+ requestVideoEnable: RequestVideoEvent;
1437
+ requestVideoDisable: RequestVideoEvent;
1255
1438
  } | "*" ? NotificationEventMap[K_7] extends unknown[] ? (...args: NotificationEventMap[K_7]) => void : never : never)[];
1256
1439
  emit: <K_8>(eventName: keyof {
1257
1440
  requestAudioEnable: RequestAudioEvent;
@@ -1262,6 +1445,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1262
1445
  signalTrouble: SignalStatusEvent;
1263
1446
  signalOk: SignalStatusEvent;
1264
1447
  clientUnableToJoinFullRoom: SignalClientEvent;
1448
+ requestVideoEnable: RequestVideoEvent;
1449
+ requestVideoDisable: RequestVideoEvent;
1265
1450
  } | "*" | K_8, ...args: K_8 extends keyof {
1266
1451
  requestAudioEnable: RequestAudioEvent;
1267
1452
  requestAudioDisable: RequestAudioEvent;
@@ -1271,6 +1456,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1271
1456
  signalTrouble: SignalStatusEvent;
1272
1457
  signalOk: SignalStatusEvent;
1273
1458
  clientUnableToJoinFullRoom: SignalClientEvent;
1459
+ requestVideoEnable: RequestVideoEvent;
1460
+ requestVideoDisable: RequestVideoEvent;
1274
1461
  } | "*" ? NotificationEventMap[K_8] : never) => boolean;
1275
1462
  listenerCount: <K_9>(eventName: keyof {
1276
1463
  requestAudioEnable: RequestAudioEvent;
@@ -1281,6 +1468,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1281
1468
  signalTrouble: SignalStatusEvent;
1282
1469
  signalOk: SignalStatusEvent;
1283
1470
  clientUnableToJoinFullRoom: SignalClientEvent;
1471
+ requestVideoEnable: RequestVideoEvent;
1472
+ requestVideoDisable: RequestVideoEvent;
1284
1473
  } | "*" | K_9, listener?: (K_9 extends keyof {
1285
1474
  requestAudioEnable: RequestAudioEvent;
1286
1475
  requestAudioDisable: RequestAudioEvent;
@@ -1290,6 +1479,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1290
1479
  signalTrouble: SignalStatusEvent;
1291
1480
  signalOk: SignalStatusEvent;
1292
1481
  clientUnableToJoinFullRoom: SignalClientEvent;
1482
+ requestVideoEnable: RequestVideoEvent;
1483
+ requestVideoDisable: RequestVideoEvent;
1293
1484
  } | "*" ? NotificationEventMap[K_9] extends unknown[] ? (...args: NotificationEventMap[K_9]) => void : never : never) | undefined) => number;
1294
1485
  prependListener: <K_10>(eventName: keyof {
1295
1486
  requestAudioEnable: RequestAudioEvent;
@@ -1300,6 +1491,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1300
1491
  signalTrouble: SignalStatusEvent;
1301
1492
  signalOk: SignalStatusEvent;
1302
1493
  clientUnableToJoinFullRoom: SignalClientEvent;
1494
+ requestVideoEnable: RequestVideoEvent;
1495
+ requestVideoDisable: RequestVideoEvent;
1303
1496
  } | "*" | K_10, listener: K_10 extends keyof {
1304
1497
  requestAudioEnable: RequestAudioEvent;
1305
1498
  requestAudioDisable: RequestAudioEvent;
@@ -1309,6 +1502,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1309
1502
  signalTrouble: SignalStatusEvent;
1310
1503
  signalOk: SignalStatusEvent;
1311
1504
  clientUnableToJoinFullRoom: SignalClientEvent;
1505
+ requestVideoEnable: RequestVideoEvent;
1506
+ requestVideoDisable: RequestVideoEvent;
1312
1507
  } | "*" ? NotificationEventMap[K_10] extends unknown[] ? (...args: NotificationEventMap[K_10]) => void : never : never) => NotificationsEventEmitter;
1313
1508
  prependOnceListener: <K_11>(eventName: keyof {
1314
1509
  requestAudioEnable: RequestAudioEvent;
@@ -1319,6 +1514,8 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1319
1514
  signalTrouble: SignalStatusEvent;
1320
1515
  signalOk: SignalStatusEvent;
1321
1516
  clientUnableToJoinFullRoom: SignalClientEvent;
1517
+ requestVideoEnable: RequestVideoEvent;
1518
+ requestVideoDisable: RequestVideoEvent;
1322
1519
  } | "*" | K_11, listener: K_11 extends keyof {
1323
1520
  requestAudioEnable: RequestAudioEvent;
1324
1521
  requestAudioDisable: RequestAudioEvent;
@@ -1328,8 +1525,10 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1328
1525
  signalTrouble: SignalStatusEvent;
1329
1526
  signalOk: SignalStatusEvent;
1330
1527
  clientUnableToJoinFullRoom: SignalClientEvent;
1528
+ requestVideoEnable: RequestVideoEvent;
1529
+ requestVideoDisable: RequestVideoEvent;
1331
1530
  } | "*" ? NotificationEventMap[K_11] extends unknown[] ? (...args: NotificationEventMap[K_11]) => void : never : never) => NotificationsEventEmitter;
1332
- eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "clientUnableToJoinFullRoom" | "*")[];
1531
+ eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "clientUnableToJoinFullRoom" | "requestVideoEnable" | "requestVideoDisable" | "*")[];
1333
1532
  };
1334
1533
  };
1335
1534
  }, "notifications", "notifications", _reduxjs_toolkit.SliceSelectors<NotificationsState>>;
@@ -1644,6 +1843,48 @@ declare const selectIsAuthorizedToRequestAudioEnable: ((state: {
1644
1843
  argsMemoize: typeof reselect.weakMapMemoize;
1645
1844
  memoize: typeof reselect.weakMapMemoize;
1646
1845
  };
1846
+ declare const selectIsAuthorizedToRequestVideoEnable: ((state: {
1847
+ app: AppState;
1848
+ authorization: AuthorizationState;
1849
+ chat: ChatState;
1850
+ cloudRecording: CloudRecordingState;
1851
+ connectionMonitor: ConnectionMonitorState;
1852
+ deviceCredentials: DeviceCredentialsState;
1853
+ localMedia: LocalMediaState;
1854
+ localParticipant: LocalParticipantState;
1855
+ localScreenshare: LocalScreenshareState;
1856
+ notifications: NotificationsState;
1857
+ organization: OrganizationState;
1858
+ remoteParticipants: RemoteParticipantState;
1859
+ room: RoomState;
1860
+ roomConnection: RoomConnectionState;
1861
+ rtcAnalytics: rtcAnalyticsState;
1862
+ rtcConnection: RtcConnectionState;
1863
+ signalConnection: SignalConnectionState;
1864
+ spotlights: SpotlightsState;
1865
+ streaming: StreamingState;
1866
+ waitingParticipants: WaitingParticipantsState;
1867
+ }) => boolean) & {
1868
+ clearCache: () => void;
1869
+ resultsCount: () => number;
1870
+ resetResultsCount: () => void;
1871
+ } & {
1872
+ resultFunc: (resultFuncArgs_0: RoleName) => boolean;
1873
+ memoizedResultFunc: ((resultFuncArgs_0: RoleName) => boolean) & {
1874
+ clearCache: () => void;
1875
+ resultsCount: () => number;
1876
+ resetResultsCount: () => void;
1877
+ };
1878
+ lastResult: () => boolean;
1879
+ dependencies: [(state: RootState) => RoleName];
1880
+ recomputations: () => number;
1881
+ resetRecomputations: () => void;
1882
+ dependencyRecomputations: () => number;
1883
+ resetDependencyRecomputations: () => void;
1884
+ } & {
1885
+ argsMemoize: typeof reselect.weakMapMemoize;
1886
+ memoize: typeof reselect.weakMapMemoize;
1887
+ };
1647
1888
  declare const selectIsAuthorizedToKickClient: ((state: {
1648
1889
  app: AppState;
1649
1890
  authorization: AuthorizationState;
@@ -4058,7 +4299,7 @@ interface LocalParticipantState extends LocalParticipant {
4058
4299
  clientClaim?: string;
4059
4300
  }
4060
4301
  declare const localParticipantSlice: _reduxjs_toolkit.Slice<LocalParticipantState, {
4061
- doSetDisplayName: (state: {
4302
+ setDisplayName: (state: {
4062
4303
  isScreenSharing: boolean;
4063
4304
  roleName: RoleName;
4064
4305
  clientClaim?: string | undefined;
@@ -4134,9 +4375,12 @@ declare const localParticipantSlice: _reduxjs_toolkit.Slice<LocalParticipantStat
4134
4375
  isDialIn: boolean;
4135
4376
  };
4136
4377
  }, "localParticipant", "localParticipant", _reduxjs_toolkit.SliceSelectors<LocalParticipantState>>;
4137
- declare const doSetDisplayName: _reduxjs_toolkit.ActionCreatorWithPayload<{
4378
+ declare const setDisplayName: _reduxjs_toolkit.ActionCreatorWithPayload<{
4138
4379
  displayName: string;
4139
- }, "localParticipant/doSetDisplayName">;
4380
+ }, "localParticipant/setDisplayName">;
4381
+ declare const doSetDisplayName: (args: {
4382
+ displayName: string;
4383
+ }) => AppThunk<void>;
4140
4384
  declare const doEnableAudio: _reduxjs_toolkit.AsyncThunk<boolean, {
4141
4385
  enabled: boolean;
4142
4386
  }, ThunkConfig>;
@@ -4602,6 +4846,7 @@ declare const participantStreamIdAdded: _reduxjs_toolkit.ActionCreatorWithPayloa
4602
4846
  }, "remoteParticipants/participantStreamIdAdded">;
4603
4847
  declare const streamStatusUpdated: _reduxjs_toolkit.ActionCreatorWithPayload<StreamStatusUpdate[], "remoteParticipants/streamStatusUpdated">;
4604
4848
  declare const doRequestAudioEnable: (args: AudioEnableRequest) => AppThunk<void>;
4849
+ declare const doRequestVideoEnable: (args: VideoEnableRequest) => AppThunk<void>;
4605
4850
  declare const selectRemoteParticipantsRaw: (state: RootState) => RemoteParticipantState;
4606
4851
  declare const selectRemoteClients: (state: RootState) => RemoteParticipant[];
4607
4852
  declare const selectRemoteParticipants: ((state: {
@@ -6726,6 +6971,7 @@ declare const signalEvents: {
6726
6971
  spotlightRemoved: _reduxjs_toolkit.ActionCreatorWithPayload<SpotlightRemovedEvent, string>;
6727
6972
  streamingStopped: _reduxjs_toolkit.ActionCreatorWithoutPayload<string>;
6728
6973
  videoEnabled: _reduxjs_toolkit.ActionCreatorWithPayload<VideoEnabledEvent, string>;
6974
+ videoEnableRequested: _reduxjs_toolkit.ActionCreatorWithPayload<VideoEnableRequestedEvent, string>;
6729
6975
  liveTranscriptionStarted: _reduxjs_toolkit.ActionCreatorWithPayload<LiveTranscriptionStartedEvent, string>;
6730
6976
  liveTranscriptionStopped: _reduxjs_toolkit.ActionCreatorWithPayload<LiveTranscriptionStoppedEvent, string>;
6731
6977
  };
@@ -8579,6 +8825,9 @@ type AppThunk<R = void> = (dispatch: AppDispatch, getState: () => RootState, ext
8579
8825
  }) => R;
8580
8826
  declare function createAppThunk<A = void>(thunk: (args: A) => AppThunk): (args: A) => AppThunk;
8581
8827
  declare function createAppAuthorizedThunk<A = void>(authorizationSelector: (state: RootState) => boolean, thunk: (args: A) => AppThunk): (args: A) => AppThunk<void>;
8828
+ declare function createRoomConnectedThunk<A = void>(thunk: (args: A) => AppThunk): (args: A) => AppThunk<void>;
8829
+ declare function createAsyncRoomConnectedThunk<ReturnType, ArgType = undefined>(typePrefix: string, payloadCreator: AsyncThunkPayloadCreator<ReturnType, ArgType, ThunkConfig>): AsyncThunk<ReturnType, ArgType, ThunkConfig>;
8830
+ declare function createAuthorizedRoomConnectedThunk<A = void>(authorizationSelector: (state: RootState) => boolean, thunk: (args: A) => AppThunk): (args: A) => AppThunk<void>;
8582
8831
 
8583
8832
  declare const listenerMiddleware: _reduxjs_toolkit.ListenerMiddlewareInstance<unknown, redux_thunk.ThunkDispatch<unknown, unknown, redux.UnknownAction>, unknown>;
8584
8833
  type AppStartListening = TypedStartListening<RootState, AppDispatch, ReturnType<typeof createServices>>;
@@ -8679,4 +8928,4 @@ declare function parseRoomUrlAndSubdomain(roomAttribute?: string, subdomainAttri
8679
8928
 
8680
8929
  declare function parseUnverifiedRoomKeyData(roomKey: string): any;
8681
8930
 
8682
- export { ApiClient, type AppConfig, type AppDispatch, type AppReducer, type AppStartListening, type AppState, type AppThunk, type AuthorizationState, type ChatMessage, type ChatMessageEvent, type ChatMessageEventProps, type ChatState, type ClientView, type CloudRecordingState, type ConnectionMonitorStart, type ConnectionMonitorState, type ConnectionStatus, Credentials, CredentialsService, type DeviceCredentialsState, type FullOrganizationPermissions, type LocalMediaOptions, type LocalMediaState, LocalParticipant, type LocalParticipantState, type LocalScreenshareState, type Notification, type NotificationEvent, type NotificationEventMap, type NotificationEvents, type NotificationsEventEmitter, type NotificationsState, OrganizationApiClient, type OrganizationLimits, type OrganizationOnboardingSurvey, type OrganizationPermissionAction, type OrganizationPermissions, type OrganizationPreferences, OrganizationService, OrganizationServiceCache, type OrganizationState, type RemoteParticipant, type RemoteParticipantData, type RemoteParticipantState, type RequestAudioEvent, type RequestAudioEventProps, type RoomConnectionState, RoomService, type RoomState, type RootState, type RtcConnectionState, type Screenshare, type SignalClientEvent, type SignalClientEventProps, type SignalConnectionState, type SignalStatusEvent, type SignalStatusEventProps, type SpotlightsState, type StickyReaction, type StickyReactionEvent, type StickyReactionEventProps, type Store, type StreamState, type StreamingState, type ThunkConfig, type WaitingParticipant, type WaitingParticipantsState, addAppListener, addSpotlight, appSlice, authorizationSlice, chatSlice, cloudRecordingSlice, connectionMonitorSlice, connectionMonitorStarted, connectionMonitorStopped, createAppAsyncThunk, createAppAuthorizedThunk, createAppThunk, createReactor, createServices, createStore, createWebRtcEmitter, debounce, deviceBusy, deviceCredentialsSlice, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLockRoom, doOrganizationFetch, doRejectWaitingParticipant, doRemoveSpotlight, doRequestAudioEnable, doRtcAnalyticsCustomEventsInitialize, doRtcManagerCreated, doRtcManagerInitialize, doRtcReportStreamResolution, doSendChatMessage, doSendClientMetadata, doSetDevice, doSetDisplayName, doSetLocalStickyReaction, doSetNotification, doSignalConnect, doSignalDisconnect, doSignalIdentifyDevice, doSpotlightParticipant, doStartCloudRecording, doStartConnectionMonitor, doStartLocalMedia, doStartScreenshare, doStopCloudRecording, doStopConnectionMonitor, doStopLocalMedia, doStopScreenshare, doSwitchLocalStream, doToggleCamera, doToggleLowDataMode, doUpdateDeviceList, getAudioTrack, getFakeMediaStream, getVideoTrack, hasValue, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, initialState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localScreenshareSlice, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, parseRoomUrlAndSubdomain, parseUnverifiedRoomKeyData, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, removeSpotlight, resolutionReported, roomConnectionSlice, roomSlice, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, type rtcAnalyticsState, rtcConnectionSlice, rtcDisconnected, rtcDispatcherCreated, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAppDisplayName, selectAppExternalId, selectAppInitialConfig, selectAppIsActive, selectAppIsDialIn, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAuthorizationRoleName, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingRaw, selectCloudRecordingStartedAt, selectCloudRecordingStatus, selectConnectionMonitorIsRunning, selectCurrentCameraDeviceId, selectCurrentMicrophoneDeviceId, selectCurrentSpeakerDeviceId, selectDeviceCredentialsRaw, selectDeviceId, selectHasFetchedDeviceCredentials, selectIsAcceptingStreams, selectIsAuthorizedToAskToSpeak, selectIsAuthorizedToEndMeeting, selectIsAuthorizedToKickClient, selectIsAuthorizedToLockRoom, selectIsAuthorizedToRequestAudioEnable, selectIsAuthorizedToSpotlight, selectIsCameraEnabled, selectIsCloudRecording, selectIsLocalMediaStarting, selectIsLocalParticipantSpotlighted, selectIsLowDataModeEnabled, selectIsMicrophoneEnabled, selectIsSettingCameraDevice, selectIsSettingMicrophoneDevice, selectIsToggleCamera, selectLocalMediaConstraintsOptions, selectLocalMediaDevices, selectLocalMediaIsSwitchingStream, selectLocalMediaOptions, selectLocalMediaOwnsStream, selectLocalMediaRaw, selectLocalMediaShouldStartWithOptions, selectLocalMediaShouldStop, selectLocalMediaStartError, selectLocalMediaStatus, selectLocalMediaStream, selectLocalParticipantClientClaim, selectLocalParticipantDisplayName, selectLocalParticipantIsScreenSharing, selectLocalParticipantRaw, selectLocalParticipantStickyReaction, selectLocalParticipantView, selectLocalScreenshareRaw, selectLocalScreenshareStatus, selectLocalScreenshareStream, selectMicrophoneDeviceError, selectMicrophoneDevices, selectNotificationsEmitter, selectNotificationsEvents, selectNotificationsRaw, selectNumClients, selectNumParticipants, selectOrganizationId, selectOrganizationRaw, selectRemoteClientViews, selectRemoteClients, selectRemoteParticipants, selectRemoteParticipantsRaw, selectRoomConnectionError, selectRoomConnectionRaw, selectRoomConnectionSession, selectRoomConnectionSessionId, selectRoomConnectionStatus, selectRoomIsLocked, selectRoomKey, selectRtcConnectionRaw, selectRtcDispatcherCreated, selectRtcIsCreatingDispatcher, selectRtcManager, selectRtcManagerInitialized, selectRtcStatus, selectScreenshares, selectSelfId, selectShouldConnectRoom, selectShouldConnectRtc, selectShouldConnectSignal, selectShouldDisconnectRtc, selectShouldFetchDeviceCredentials, selectShouldFetchOrganization, selectShouldIdentifyDevice, selectShouldInitializeRtc, selectShouldStartConnectionMonitor, selectShouldStopConnectionMonitor, selectSignalConnectionDeviceIdentified, selectSignalConnectionRaw, selectSignalConnectionSocket, selectSignalIsIdentifyingDevice, selectSignalStatus, selectSpeakerDevices, selectSpotlightedClientViews, selectSpotlights, selectSpotlightsRaw, selectStopCallbackFunction, selectStreamingRaw, selectStreamsToAccept, selectWaitingParticipants, selectWaitingParticipantsRaw, setCurrentCameraDeviceId, setCurrentMicrophoneDeviceId, setCurrentSpeakerDeviceId, setLocalMediaOptions, setLocalMediaStream, setRoomKey, signalConnectionSlice, signalEvents, socketConnected, socketConnecting, socketDisconnected, socketReconnecting, spotlightsSlice, startAppListening, stopScreenshare, streamIdForClient, streamStatusUpdated, streamingSlice, toggleCameraEnabled, toggleLowDataModeEnabled, toggleMicrophoneEnabled, updateReportedValues, waitingParticipantsSlice };
8931
+ export { ApiClient, type AppConfig, type AppDispatch, type AppReducer, type AppStartListening, type AppState, type AppThunk, type AuthorizationState, type ChatMessage, type ChatMessageEvent, type ChatMessageEventProps, type ChatState, type ClientView, type CloudRecordingState, type ConnectionMonitorStart, type ConnectionMonitorState, type ConnectionStatus, Credentials, CredentialsService, type DeviceCredentialsState, type FullOrganizationPermissions, type LocalMediaOptions, type LocalMediaState, LocalParticipant, type LocalParticipantState, type LocalScreenshareState, type Notification, type NotificationEvent, type NotificationEventMap, type NotificationEvents, type NotificationsEventEmitter, type NotificationsState, OrganizationApiClient, type OrganizationLimits, type OrganizationOnboardingSurvey, type OrganizationPermissionAction, type OrganizationPermissions, type OrganizationPreferences, OrganizationService, OrganizationServiceCache, type OrganizationState, type RemoteParticipant, type RemoteParticipantData, type RemoteParticipantState, type RequestAudioEvent, type RequestAudioEventProps, type RequestVideoEvent, type RequestVideoEventProps, type RoomConnectionState, RoomService, type RoomState, type RootState, type RtcConnectionState, type Screenshare, type SignalClientEvent, type SignalClientEventProps, type SignalConnectionState, type SignalStatusEvent, type SignalStatusEventProps, type SpotlightsState, type StickyReaction, type StickyReactionEvent, type StickyReactionEventProps, type Store, type StreamState, type StreamingState, type ThunkConfig, type WaitingParticipant, type WaitingParticipantsState, addAppListener, addSpotlight, appSlice, authorizationSlice, chatSlice, cloudRecordingSlice, connectionMonitorSlice, connectionMonitorStarted, connectionMonitorStopped, createAppAsyncThunk, createAppAuthorizedThunk, createAppThunk, createAsyncRoomConnectedThunk, createAuthorizedRoomConnectedThunk, createReactor, createRoomConnectedThunk, createServices, createStore, createWebRtcEmitter, debounce, deviceBusy, deviceCredentialsSlice, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLockRoom, doOrganizationFetch, doRejectWaitingParticipant, doRemoveSpotlight, doRequestAudioEnable, doRequestVideoEnable, doRtcAnalyticsCustomEventsInitialize, doRtcManagerCreated, doRtcManagerInitialize, doRtcReportStreamResolution, doSendChatMessage, doSendClientMetadata, doSetDevice, doSetDisplayName, doSetLocalStickyReaction, doSetNotification, doSignalConnect, doSignalDisconnect, doSignalIdentifyDevice, doSpotlightParticipant, doStartCloudRecording, doStartConnectionMonitor, doStartLocalMedia, doStartScreenshare, doStopCloudRecording, doStopConnectionMonitor, doStopLocalMedia, doStopScreenshare, doSwitchLocalStream, doToggleCamera, doToggleLowDataMode, doUpdateDeviceList, getAudioTrack, getFakeMediaStream, getVideoTrack, hasValue, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, initialState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localScreenshareSlice, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, parseRoomUrlAndSubdomain, parseUnverifiedRoomKeyData, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, removeSpotlight, resolutionReported, roomConnectionSlice, roomSlice, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, type rtcAnalyticsState, rtcConnectionSlice, rtcDisconnected, rtcDispatcherCreated, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAppDisplayName, selectAppExternalId, selectAppInitialConfig, selectAppIsActive, selectAppIsDialIn, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAuthorizationRoleName, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingRaw, selectCloudRecordingStartedAt, selectCloudRecordingStatus, selectConnectionMonitorIsRunning, selectCurrentCameraDeviceId, selectCurrentMicrophoneDeviceId, selectCurrentSpeakerDeviceId, selectDeviceCredentialsRaw, selectDeviceId, selectHasFetchedDeviceCredentials, selectIsAcceptingStreams, selectIsAuthorizedToAskToSpeak, selectIsAuthorizedToEndMeeting, selectIsAuthorizedToKickClient, selectIsAuthorizedToLockRoom, selectIsAuthorizedToRequestAudioEnable, selectIsAuthorizedToRequestVideoEnable, selectIsAuthorizedToSpotlight, selectIsCameraEnabled, selectIsCloudRecording, selectIsLocalMediaStarting, selectIsLocalParticipantSpotlighted, selectIsLowDataModeEnabled, selectIsMicrophoneEnabled, selectIsSettingCameraDevice, selectIsSettingMicrophoneDevice, selectIsToggleCamera, selectLocalMediaConstraintsOptions, selectLocalMediaDevices, selectLocalMediaIsSwitchingStream, selectLocalMediaOptions, selectLocalMediaOwnsStream, selectLocalMediaRaw, selectLocalMediaShouldStartWithOptions, selectLocalMediaShouldStop, selectLocalMediaStartError, selectLocalMediaStatus, selectLocalMediaStream, selectLocalParticipantClientClaim, selectLocalParticipantDisplayName, selectLocalParticipantIsScreenSharing, selectLocalParticipantRaw, selectLocalParticipantStickyReaction, selectLocalParticipantView, selectLocalScreenshareRaw, selectLocalScreenshareStatus, selectLocalScreenshareStream, selectMicrophoneDeviceError, selectMicrophoneDevices, selectNotificationsEmitter, selectNotificationsEvents, selectNotificationsRaw, selectNumClients, selectNumParticipants, selectOrganizationId, selectOrganizationRaw, selectRemoteClientViews, selectRemoteClients, selectRemoteParticipants, selectRemoteParticipantsRaw, selectRoomConnectionError, selectRoomConnectionRaw, selectRoomConnectionSession, selectRoomConnectionSessionId, selectRoomConnectionStatus, selectRoomIsLocked, selectRoomKey, selectRtcConnectionRaw, selectRtcDispatcherCreated, selectRtcIsCreatingDispatcher, selectRtcManager, selectRtcManagerInitialized, selectRtcStatus, selectScreenshares, selectSelfId, selectShouldConnectRoom, selectShouldConnectRtc, selectShouldConnectSignal, selectShouldDisconnectRtc, selectShouldFetchDeviceCredentials, selectShouldFetchOrganization, selectShouldIdentifyDevice, selectShouldInitializeRtc, selectShouldStartConnectionMonitor, selectShouldStopConnectionMonitor, selectSignalConnectionDeviceIdentified, selectSignalConnectionRaw, selectSignalConnectionSocket, selectSignalIsIdentifyingDevice, selectSignalStatus, selectSpeakerDevices, selectSpotlightedClientViews, selectSpotlights, selectSpotlightsRaw, selectStopCallbackFunction, selectStreamingRaw, selectStreamsToAccept, selectWaitingParticipants, selectWaitingParticipantsRaw, setCurrentCameraDeviceId, setCurrentMicrophoneDeviceId, setCurrentSpeakerDeviceId, setDisplayName, setLocalMediaOptions, setLocalMediaStream, setRoomKey, signalConnectionSlice, signalEvents, socketConnected, socketConnecting, socketDisconnected, socketReconnecting, spotlightsSlice, startAppListening, stopScreenshare, streamIdForClient, streamStatusUpdated, streamingSlice, toggleCameraEnabled, toggleLowDataModeEnabled, toggleMicrophoneEnabled, updateReportedValues, waitingParticipantsSlice };