@whereby.com/core 0.23.1 → 0.24.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.mts 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, 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, 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';
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';
@@ -336,6 +336,9 @@ type ChatMessageEvent = NotificationEvent<"chatMessageReceived", ChatMessageEven
336
336
  interface SignalStatusEventProps {
337
337
  }
338
338
  type SignalStatusEvent = NotificationEvent<"signalTrouble" | "signalOk", SignalStatusEventProps>;
339
+ interface SignalClientEventProps {
340
+ }
341
+ type SignalClientEvent = NotificationEvent<"clientUnableToJoinFullRoom", SignalClientEventProps>;
339
342
  interface StickyReactionEventProps {
340
343
  client: RemoteParticipant;
341
344
  stickyReaction?: {
@@ -352,6 +355,7 @@ type NotificationEventTypes = {
352
355
  ["remoteHandLowered"]: StickyReactionEvent;
353
356
  ["signalTrouble"]: SignalStatusEvent;
354
357
  ["signalOk"]: SignalStatusEvent;
358
+ ["clientUnableToJoinFullRoom"]: SignalClientEvent;
355
359
  };
356
360
  type NotificationEvents = NotificationEventTypes[keyof NotificationEventTypes];
357
361
  type NotificationEventMap = {
@@ -377,6 +381,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
377
381
  remoteHandLowered: StickyReactionEvent;
378
382
  signalTrouble: SignalStatusEvent;
379
383
  signalOk: SignalStatusEvent;
384
+ clientUnableToJoinFullRoom: SignalClientEvent;
380
385
  } | K | "*", ...args: K extends keyof {
381
386
  requestAudioEnable: RequestAudioEvent;
382
387
  requestAudioDisable: RequestAudioEvent;
@@ -385,6 +390,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
385
390
  remoteHandLowered: StickyReactionEvent;
386
391
  signalTrouble: SignalStatusEvent;
387
392
  signalOk: SignalStatusEvent;
393
+ clientUnableToJoinFullRoom: SignalClientEvent;
388
394
  } | "*" ? NotificationEventMap[K] : never) => void) | undefined;
389
395
  addListener: <K_1>(eventName: keyof {
390
396
  requestAudioEnable: RequestAudioEvent;
@@ -394,6 +400,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
394
400
  remoteHandLowered: StickyReactionEvent;
395
401
  signalTrouble: SignalStatusEvent;
396
402
  signalOk: SignalStatusEvent;
403
+ clientUnableToJoinFullRoom: SignalClientEvent;
397
404
  } | "*" | K_1, listener: K_1 extends keyof {
398
405
  requestAudioEnable: RequestAudioEvent;
399
406
  requestAudioDisable: RequestAudioEvent;
@@ -402,6 +409,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
402
409
  remoteHandLowered: StickyReactionEvent;
403
410
  signalTrouble: SignalStatusEvent;
404
411
  signalOk: SignalStatusEvent;
412
+ clientUnableToJoinFullRoom: SignalClientEvent;
405
413
  } | "*" ? NotificationEventMap[K_1] extends unknown[] ? (...args: NotificationEventMap[K_1]) => void : never : never) => NotificationsEventEmitter;
406
414
  on: <K_2>(eventName: keyof {
407
415
  requestAudioEnable: RequestAudioEvent;
@@ -411,6 +419,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
411
419
  remoteHandLowered: StickyReactionEvent;
412
420
  signalTrouble: SignalStatusEvent;
413
421
  signalOk: SignalStatusEvent;
422
+ clientUnableToJoinFullRoom: SignalClientEvent;
414
423
  } | "*" | K_2, listener: K_2 extends keyof {
415
424
  requestAudioEnable: RequestAudioEvent;
416
425
  requestAudioDisable: RequestAudioEvent;
@@ -419,6 +428,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
419
428
  remoteHandLowered: StickyReactionEvent;
420
429
  signalTrouble: SignalStatusEvent;
421
430
  signalOk: SignalStatusEvent;
431
+ clientUnableToJoinFullRoom: SignalClientEvent;
422
432
  } | "*" ? NotificationEventMap[K_2] extends unknown[] ? (...args: NotificationEventMap[K_2]) => void : never : never) => NotificationsEventEmitter;
423
433
  once: <K_3>(eventName: keyof {
424
434
  requestAudioEnable: RequestAudioEvent;
@@ -428,6 +438,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
428
438
  remoteHandLowered: StickyReactionEvent;
429
439
  signalTrouble: SignalStatusEvent;
430
440
  signalOk: SignalStatusEvent;
441
+ clientUnableToJoinFullRoom: SignalClientEvent;
431
442
  } | "*" | K_3, listener: K_3 extends keyof {
432
443
  requestAudioEnable: RequestAudioEvent;
433
444
  requestAudioDisable: RequestAudioEvent;
@@ -436,6 +447,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
436
447
  remoteHandLowered: StickyReactionEvent;
437
448
  signalTrouble: SignalStatusEvent;
438
449
  signalOk: SignalStatusEvent;
450
+ clientUnableToJoinFullRoom: SignalClientEvent;
439
451
  } | "*" ? NotificationEventMap[K_3] extends unknown[] ? (...args: NotificationEventMap[K_3]) => void : never : never) => NotificationsEventEmitter;
440
452
  removeListener: <K_4>(eventName: keyof {
441
453
  requestAudioEnable: RequestAudioEvent;
@@ -445,6 +457,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
445
457
  remoteHandLowered: StickyReactionEvent;
446
458
  signalTrouble: SignalStatusEvent;
447
459
  signalOk: SignalStatusEvent;
460
+ clientUnableToJoinFullRoom: SignalClientEvent;
448
461
  } | "*" | K_4, listener: K_4 extends keyof {
449
462
  requestAudioEnable: RequestAudioEvent;
450
463
  requestAudioDisable: RequestAudioEvent;
@@ -453,6 +466,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
453
466
  remoteHandLowered: StickyReactionEvent;
454
467
  signalTrouble: SignalStatusEvent;
455
468
  signalOk: SignalStatusEvent;
469
+ clientUnableToJoinFullRoom: SignalClientEvent;
456
470
  } | "*" ? NotificationEventMap[K_4] extends unknown[] ? (...args: NotificationEventMap[K_4]) => void : never : never) => NotificationsEventEmitter;
457
471
  off: <K_5>(eventName: keyof {
458
472
  requestAudioEnable: RequestAudioEvent;
@@ -462,6 +476,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
462
476
  remoteHandLowered: StickyReactionEvent;
463
477
  signalTrouble: SignalStatusEvent;
464
478
  signalOk: SignalStatusEvent;
479
+ clientUnableToJoinFullRoom: SignalClientEvent;
465
480
  } | "*" | K_5, listener: K_5 extends keyof {
466
481
  requestAudioEnable: RequestAudioEvent;
467
482
  requestAudioDisable: RequestAudioEvent;
@@ -470,6 +485,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
470
485
  remoteHandLowered: StickyReactionEvent;
471
486
  signalTrouble: SignalStatusEvent;
472
487
  signalOk: SignalStatusEvent;
488
+ clientUnableToJoinFullRoom: SignalClientEvent;
473
489
  } | "*" ? NotificationEventMap[K_5] extends unknown[] ? (...args: NotificationEventMap[K_5]) => void : never : never) => NotificationsEventEmitter;
474
490
  removeAllListeners: (eventName?: unknown) => NotificationsEventEmitter;
475
491
  setMaxListeners: (n: number) => NotificationsEventEmitter;
@@ -482,6 +498,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
482
498
  remoteHandLowered: StickyReactionEvent;
483
499
  signalTrouble: SignalStatusEvent;
484
500
  signalOk: SignalStatusEvent;
501
+ clientUnableToJoinFullRoom: SignalClientEvent;
485
502
  } | "*" | K_6) => (K_6 extends keyof {
486
503
  requestAudioEnable: RequestAudioEvent;
487
504
  requestAudioDisable: RequestAudioEvent;
@@ -490,6 +507,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
490
507
  remoteHandLowered: StickyReactionEvent;
491
508
  signalTrouble: SignalStatusEvent;
492
509
  signalOk: SignalStatusEvent;
510
+ clientUnableToJoinFullRoom: SignalClientEvent;
493
511
  } | "*" ? NotificationEventMap[K_6] extends unknown[] ? (...args: NotificationEventMap[K_6]) => void : never : never)[];
494
512
  rawListeners: <K_7>(eventName: keyof {
495
513
  requestAudioEnable: RequestAudioEvent;
@@ -499,6 +517,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
499
517
  remoteHandLowered: StickyReactionEvent;
500
518
  signalTrouble: SignalStatusEvent;
501
519
  signalOk: SignalStatusEvent;
520
+ clientUnableToJoinFullRoom: SignalClientEvent;
502
521
  } | "*" | K_7) => (K_7 extends keyof {
503
522
  requestAudioEnable: RequestAudioEvent;
504
523
  requestAudioDisable: RequestAudioEvent;
@@ -507,6 +526,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
507
526
  remoteHandLowered: StickyReactionEvent;
508
527
  signalTrouble: SignalStatusEvent;
509
528
  signalOk: SignalStatusEvent;
529
+ clientUnableToJoinFullRoom: SignalClientEvent;
510
530
  } | "*" ? NotificationEventMap[K_7] extends unknown[] ? (...args: NotificationEventMap[K_7]) => void : never : never)[];
511
531
  emit: <K_8>(eventName: keyof {
512
532
  requestAudioEnable: RequestAudioEvent;
@@ -516,6 +536,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
516
536
  remoteHandLowered: StickyReactionEvent;
517
537
  signalTrouble: SignalStatusEvent;
518
538
  signalOk: SignalStatusEvent;
539
+ clientUnableToJoinFullRoom: SignalClientEvent;
519
540
  } | "*" | K_8, ...args: K_8 extends keyof {
520
541
  requestAudioEnable: RequestAudioEvent;
521
542
  requestAudioDisable: RequestAudioEvent;
@@ -524,6 +545,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
524
545
  remoteHandLowered: StickyReactionEvent;
525
546
  signalTrouble: SignalStatusEvent;
526
547
  signalOk: SignalStatusEvent;
548
+ clientUnableToJoinFullRoom: SignalClientEvent;
527
549
  } | "*" ? NotificationEventMap[K_8] : never) => boolean;
528
550
  listenerCount: <K_9>(eventName: keyof {
529
551
  requestAudioEnable: RequestAudioEvent;
@@ -533,6 +555,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
533
555
  remoteHandLowered: StickyReactionEvent;
534
556
  signalTrouble: SignalStatusEvent;
535
557
  signalOk: SignalStatusEvent;
558
+ clientUnableToJoinFullRoom: SignalClientEvent;
536
559
  } | "*" | K_9, listener?: (K_9 extends keyof {
537
560
  requestAudioEnable: RequestAudioEvent;
538
561
  requestAudioDisable: RequestAudioEvent;
@@ -541,6 +564,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
541
564
  remoteHandLowered: StickyReactionEvent;
542
565
  signalTrouble: SignalStatusEvent;
543
566
  signalOk: SignalStatusEvent;
567
+ clientUnableToJoinFullRoom: SignalClientEvent;
544
568
  } | "*" ? NotificationEventMap[K_9] extends unknown[] ? (...args: NotificationEventMap[K_9]) => void : never : never) | undefined) => number;
545
569
  prependListener: <K_10>(eventName: keyof {
546
570
  requestAudioEnable: RequestAudioEvent;
@@ -550,6 +574,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
550
574
  remoteHandLowered: StickyReactionEvent;
551
575
  signalTrouble: SignalStatusEvent;
552
576
  signalOk: SignalStatusEvent;
577
+ clientUnableToJoinFullRoom: SignalClientEvent;
553
578
  } | "*" | K_10, listener: K_10 extends keyof {
554
579
  requestAudioEnable: RequestAudioEvent;
555
580
  requestAudioDisable: RequestAudioEvent;
@@ -558,6 +583,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
558
583
  remoteHandLowered: StickyReactionEvent;
559
584
  signalTrouble: SignalStatusEvent;
560
585
  signalOk: SignalStatusEvent;
586
+ clientUnableToJoinFullRoom: SignalClientEvent;
561
587
  } | "*" ? NotificationEventMap[K_10] extends unknown[] ? (...args: NotificationEventMap[K_10]) => void : never : never) => NotificationsEventEmitter;
562
588
  prependOnceListener: <K_11>(eventName: keyof {
563
589
  requestAudioEnable: RequestAudioEvent;
@@ -567,6 +593,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
567
593
  remoteHandLowered: StickyReactionEvent;
568
594
  signalTrouble: SignalStatusEvent;
569
595
  signalOk: SignalStatusEvent;
596
+ clientUnableToJoinFullRoom: SignalClientEvent;
570
597
  } | "*" | K_11, listener: K_11 extends keyof {
571
598
  requestAudioEnable: RequestAudioEvent;
572
599
  requestAudioDisable: RequestAudioEvent;
@@ -575,8 +602,9 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
575
602
  remoteHandLowered: StickyReactionEvent;
576
603
  signalTrouble: SignalStatusEvent;
577
604
  signalOk: SignalStatusEvent;
605
+ clientUnableToJoinFullRoom: SignalClientEvent;
578
606
  } | "*" ? NotificationEventMap[K_11] extends unknown[] ? (...args: NotificationEventMap[K_11]) => void : never : never) => NotificationsEventEmitter;
579
- eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "*")[];
607
+ eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "clientUnableToJoinFullRoom" | "*")[];
580
608
  };
581
609
  events: {
582
610
  type: string;
@@ -600,6 +628,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
600
628
  remoteHandLowered: StickyReactionEvent;
601
629
  signalTrouble: SignalStatusEvent;
602
630
  signalOk: SignalStatusEvent;
631
+ clientUnableToJoinFullRoom: SignalClientEvent;
603
632
  } | K | "*", ...args: K extends keyof {
604
633
  requestAudioEnable: RequestAudioEvent;
605
634
  requestAudioDisable: RequestAudioEvent;
@@ -608,6 +637,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
608
637
  remoteHandLowered: StickyReactionEvent;
609
638
  signalTrouble: SignalStatusEvent;
610
639
  signalOk: SignalStatusEvent;
640
+ clientUnableToJoinFullRoom: SignalClientEvent;
611
641
  } | "*" ? NotificationEventMap[K] : never) => void) | undefined;
612
642
  addListener: <K_1>(eventName: keyof {
613
643
  requestAudioEnable: RequestAudioEvent;
@@ -617,6 +647,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
617
647
  remoteHandLowered: StickyReactionEvent;
618
648
  signalTrouble: SignalStatusEvent;
619
649
  signalOk: SignalStatusEvent;
650
+ clientUnableToJoinFullRoom: SignalClientEvent;
620
651
  } | "*" | K_1, listener: K_1 extends keyof {
621
652
  requestAudioEnable: RequestAudioEvent;
622
653
  requestAudioDisable: RequestAudioEvent;
@@ -625,6 +656,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
625
656
  remoteHandLowered: StickyReactionEvent;
626
657
  signalTrouble: SignalStatusEvent;
627
658
  signalOk: SignalStatusEvent;
659
+ clientUnableToJoinFullRoom: SignalClientEvent;
628
660
  } | "*" ? NotificationEventMap[K_1] extends unknown[] ? (...args: NotificationEventMap[K_1]) => void : never : never) => NotificationsEventEmitter;
629
661
  on: <K_2>(eventName: keyof {
630
662
  requestAudioEnable: RequestAudioEvent;
@@ -634,6 +666,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
634
666
  remoteHandLowered: StickyReactionEvent;
635
667
  signalTrouble: SignalStatusEvent;
636
668
  signalOk: SignalStatusEvent;
669
+ clientUnableToJoinFullRoom: SignalClientEvent;
637
670
  } | "*" | K_2, listener: K_2 extends keyof {
638
671
  requestAudioEnable: RequestAudioEvent;
639
672
  requestAudioDisable: RequestAudioEvent;
@@ -642,6 +675,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
642
675
  remoteHandLowered: StickyReactionEvent;
643
676
  signalTrouble: SignalStatusEvent;
644
677
  signalOk: SignalStatusEvent;
678
+ clientUnableToJoinFullRoom: SignalClientEvent;
645
679
  } | "*" ? NotificationEventMap[K_2] extends unknown[] ? (...args: NotificationEventMap[K_2]) => void : never : never) => NotificationsEventEmitter;
646
680
  once: <K_3>(eventName: keyof {
647
681
  requestAudioEnable: RequestAudioEvent;
@@ -651,6 +685,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
651
685
  remoteHandLowered: StickyReactionEvent;
652
686
  signalTrouble: SignalStatusEvent;
653
687
  signalOk: SignalStatusEvent;
688
+ clientUnableToJoinFullRoom: SignalClientEvent;
654
689
  } | "*" | K_3, listener: K_3 extends keyof {
655
690
  requestAudioEnable: RequestAudioEvent;
656
691
  requestAudioDisable: RequestAudioEvent;
@@ -659,6 +694,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
659
694
  remoteHandLowered: StickyReactionEvent;
660
695
  signalTrouble: SignalStatusEvent;
661
696
  signalOk: SignalStatusEvent;
697
+ clientUnableToJoinFullRoom: SignalClientEvent;
662
698
  } | "*" ? NotificationEventMap[K_3] extends unknown[] ? (...args: NotificationEventMap[K_3]) => void : never : never) => NotificationsEventEmitter;
663
699
  removeListener: <K_4>(eventName: keyof {
664
700
  requestAudioEnable: RequestAudioEvent;
@@ -668,6 +704,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
668
704
  remoteHandLowered: StickyReactionEvent;
669
705
  signalTrouble: SignalStatusEvent;
670
706
  signalOk: SignalStatusEvent;
707
+ clientUnableToJoinFullRoom: SignalClientEvent;
671
708
  } | "*" | K_4, listener: K_4 extends keyof {
672
709
  requestAudioEnable: RequestAudioEvent;
673
710
  requestAudioDisable: RequestAudioEvent;
@@ -676,6 +713,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
676
713
  remoteHandLowered: StickyReactionEvent;
677
714
  signalTrouble: SignalStatusEvent;
678
715
  signalOk: SignalStatusEvent;
716
+ clientUnableToJoinFullRoom: SignalClientEvent;
679
717
  } | "*" ? NotificationEventMap[K_4] extends unknown[] ? (...args: NotificationEventMap[K_4]) => void : never : never) => NotificationsEventEmitter;
680
718
  off: <K_5>(eventName: keyof {
681
719
  requestAudioEnable: RequestAudioEvent;
@@ -685,6 +723,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
685
723
  remoteHandLowered: StickyReactionEvent;
686
724
  signalTrouble: SignalStatusEvent;
687
725
  signalOk: SignalStatusEvent;
726
+ clientUnableToJoinFullRoom: SignalClientEvent;
688
727
  } | "*" | K_5, listener: K_5 extends keyof {
689
728
  requestAudioEnable: RequestAudioEvent;
690
729
  requestAudioDisable: RequestAudioEvent;
@@ -693,6 +732,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
693
732
  remoteHandLowered: StickyReactionEvent;
694
733
  signalTrouble: SignalStatusEvent;
695
734
  signalOk: SignalStatusEvent;
735
+ clientUnableToJoinFullRoom: SignalClientEvent;
696
736
  } | "*" ? NotificationEventMap[K_5] extends unknown[] ? (...args: NotificationEventMap[K_5]) => void : never : never) => NotificationsEventEmitter;
697
737
  removeAllListeners: (eventName?: unknown) => NotificationsEventEmitter;
698
738
  setMaxListeners: (n: number) => NotificationsEventEmitter;
@@ -705,6 +745,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
705
745
  remoteHandLowered: StickyReactionEvent;
706
746
  signalTrouble: SignalStatusEvent;
707
747
  signalOk: SignalStatusEvent;
748
+ clientUnableToJoinFullRoom: SignalClientEvent;
708
749
  } | "*" | K_6) => (K_6 extends keyof {
709
750
  requestAudioEnable: RequestAudioEvent;
710
751
  requestAudioDisable: RequestAudioEvent;
@@ -713,6 +754,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
713
754
  remoteHandLowered: StickyReactionEvent;
714
755
  signalTrouble: SignalStatusEvent;
715
756
  signalOk: SignalStatusEvent;
757
+ clientUnableToJoinFullRoom: SignalClientEvent;
716
758
  } | "*" ? NotificationEventMap[K_6] extends unknown[] ? (...args: NotificationEventMap[K_6]) => void : never : never)[];
717
759
  rawListeners: <K_7>(eventName: keyof {
718
760
  requestAudioEnable: RequestAudioEvent;
@@ -722,6 +764,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
722
764
  remoteHandLowered: StickyReactionEvent;
723
765
  signalTrouble: SignalStatusEvent;
724
766
  signalOk: SignalStatusEvent;
767
+ clientUnableToJoinFullRoom: SignalClientEvent;
725
768
  } | "*" | K_7) => (K_7 extends keyof {
726
769
  requestAudioEnable: RequestAudioEvent;
727
770
  requestAudioDisable: RequestAudioEvent;
@@ -730,6 +773,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
730
773
  remoteHandLowered: StickyReactionEvent;
731
774
  signalTrouble: SignalStatusEvent;
732
775
  signalOk: SignalStatusEvent;
776
+ clientUnableToJoinFullRoom: SignalClientEvent;
733
777
  } | "*" ? NotificationEventMap[K_7] extends unknown[] ? (...args: NotificationEventMap[K_7]) => void : never : never)[];
734
778
  emit: <K_8>(eventName: keyof {
735
779
  requestAudioEnable: RequestAudioEvent;
@@ -739,6 +783,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
739
783
  remoteHandLowered: StickyReactionEvent;
740
784
  signalTrouble: SignalStatusEvent;
741
785
  signalOk: SignalStatusEvent;
786
+ clientUnableToJoinFullRoom: SignalClientEvent;
742
787
  } | "*" | K_8, ...args: K_8 extends keyof {
743
788
  requestAudioEnable: RequestAudioEvent;
744
789
  requestAudioDisable: RequestAudioEvent;
@@ -747,6 +792,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
747
792
  remoteHandLowered: StickyReactionEvent;
748
793
  signalTrouble: SignalStatusEvent;
749
794
  signalOk: SignalStatusEvent;
795
+ clientUnableToJoinFullRoom: SignalClientEvent;
750
796
  } | "*" ? NotificationEventMap[K_8] : never) => boolean;
751
797
  listenerCount: <K_9>(eventName: keyof {
752
798
  requestAudioEnable: RequestAudioEvent;
@@ -756,6 +802,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
756
802
  remoteHandLowered: StickyReactionEvent;
757
803
  signalTrouble: SignalStatusEvent;
758
804
  signalOk: SignalStatusEvent;
805
+ clientUnableToJoinFullRoom: SignalClientEvent;
759
806
  } | "*" | K_9, listener?: (K_9 extends keyof {
760
807
  requestAudioEnable: RequestAudioEvent;
761
808
  requestAudioDisable: RequestAudioEvent;
@@ -764,6 +811,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
764
811
  remoteHandLowered: StickyReactionEvent;
765
812
  signalTrouble: SignalStatusEvent;
766
813
  signalOk: SignalStatusEvent;
814
+ clientUnableToJoinFullRoom: SignalClientEvent;
767
815
  } | "*" ? NotificationEventMap[K_9] extends unknown[] ? (...args: NotificationEventMap[K_9]) => void : never : never) | undefined) => number;
768
816
  prependListener: <K_10>(eventName: keyof {
769
817
  requestAudioEnable: RequestAudioEvent;
@@ -773,6 +821,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
773
821
  remoteHandLowered: StickyReactionEvent;
774
822
  signalTrouble: SignalStatusEvent;
775
823
  signalOk: SignalStatusEvent;
824
+ clientUnableToJoinFullRoom: SignalClientEvent;
776
825
  } | "*" | K_10, listener: K_10 extends keyof {
777
826
  requestAudioEnable: RequestAudioEvent;
778
827
  requestAudioDisable: RequestAudioEvent;
@@ -781,6 +830,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
781
830
  remoteHandLowered: StickyReactionEvent;
782
831
  signalTrouble: SignalStatusEvent;
783
832
  signalOk: SignalStatusEvent;
833
+ clientUnableToJoinFullRoom: SignalClientEvent;
784
834
  } | "*" ? NotificationEventMap[K_10] extends unknown[] ? (...args: NotificationEventMap[K_10]) => void : never : never) => NotificationsEventEmitter;
785
835
  prependOnceListener: <K_11>(eventName: keyof {
786
836
  requestAudioEnable: RequestAudioEvent;
@@ -790,6 +840,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
790
840
  remoteHandLowered: StickyReactionEvent;
791
841
  signalTrouble: SignalStatusEvent;
792
842
  signalOk: SignalStatusEvent;
843
+ clientUnableToJoinFullRoom: SignalClientEvent;
793
844
  } | "*" | K_11, listener: K_11 extends keyof {
794
845
  requestAudioEnable: RequestAudioEvent;
795
846
  requestAudioDisable: RequestAudioEvent;
@@ -798,8 +849,9 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
798
849
  remoteHandLowered: StickyReactionEvent;
799
850
  signalTrouble: SignalStatusEvent;
800
851
  signalOk: SignalStatusEvent;
852
+ clientUnableToJoinFullRoom: SignalClientEvent;
801
853
  } | "*" ? NotificationEventMap[K_11] extends unknown[] ? (...args: NotificationEventMap[K_11]) => void : never : never) => NotificationsEventEmitter;
802
- eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "*")[];
854
+ eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "clientUnableToJoinFullRoom" | "*")[];
803
855
  };
804
856
  };
805
857
  doClearNotifications: (state: {
@@ -812,6 +864,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
812
864
  remoteHandLowered: StickyReactionEvent;
813
865
  signalTrouble: SignalStatusEvent;
814
866
  signalOk: SignalStatusEvent;
867
+ clientUnableToJoinFullRoom: SignalClientEvent;
815
868
  } | K | "*", ...args: K extends keyof {
816
869
  requestAudioEnable: RequestAudioEvent;
817
870
  requestAudioDisable: RequestAudioEvent;
@@ -820,6 +873,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
820
873
  remoteHandLowered: StickyReactionEvent;
821
874
  signalTrouble: SignalStatusEvent;
822
875
  signalOk: SignalStatusEvent;
876
+ clientUnableToJoinFullRoom: SignalClientEvent;
823
877
  } | "*" ? NotificationEventMap[K] : never) => void) | undefined;
824
878
  addListener: <K_1>(eventName: keyof {
825
879
  requestAudioEnable: RequestAudioEvent;
@@ -829,6 +883,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
829
883
  remoteHandLowered: StickyReactionEvent;
830
884
  signalTrouble: SignalStatusEvent;
831
885
  signalOk: SignalStatusEvent;
886
+ clientUnableToJoinFullRoom: SignalClientEvent;
832
887
  } | "*" | K_1, listener: K_1 extends keyof {
833
888
  requestAudioEnable: RequestAudioEvent;
834
889
  requestAudioDisable: RequestAudioEvent;
@@ -837,6 +892,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
837
892
  remoteHandLowered: StickyReactionEvent;
838
893
  signalTrouble: SignalStatusEvent;
839
894
  signalOk: SignalStatusEvent;
895
+ clientUnableToJoinFullRoom: SignalClientEvent;
840
896
  } | "*" ? NotificationEventMap[K_1] extends unknown[] ? (...args: NotificationEventMap[K_1]) => void : never : never) => NotificationsEventEmitter;
841
897
  on: <K_2>(eventName: keyof {
842
898
  requestAudioEnable: RequestAudioEvent;
@@ -846,6 +902,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
846
902
  remoteHandLowered: StickyReactionEvent;
847
903
  signalTrouble: SignalStatusEvent;
848
904
  signalOk: SignalStatusEvent;
905
+ clientUnableToJoinFullRoom: SignalClientEvent;
849
906
  } | "*" | K_2, listener: K_2 extends keyof {
850
907
  requestAudioEnable: RequestAudioEvent;
851
908
  requestAudioDisable: RequestAudioEvent;
@@ -854,6 +911,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
854
911
  remoteHandLowered: StickyReactionEvent;
855
912
  signalTrouble: SignalStatusEvent;
856
913
  signalOk: SignalStatusEvent;
914
+ clientUnableToJoinFullRoom: SignalClientEvent;
857
915
  } | "*" ? NotificationEventMap[K_2] extends unknown[] ? (...args: NotificationEventMap[K_2]) => void : never : never) => NotificationsEventEmitter;
858
916
  once: <K_3>(eventName: keyof {
859
917
  requestAudioEnable: RequestAudioEvent;
@@ -863,6 +921,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
863
921
  remoteHandLowered: StickyReactionEvent;
864
922
  signalTrouble: SignalStatusEvent;
865
923
  signalOk: SignalStatusEvent;
924
+ clientUnableToJoinFullRoom: SignalClientEvent;
866
925
  } | "*" | K_3, listener: K_3 extends keyof {
867
926
  requestAudioEnable: RequestAudioEvent;
868
927
  requestAudioDisable: RequestAudioEvent;
@@ -871,6 +930,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
871
930
  remoteHandLowered: StickyReactionEvent;
872
931
  signalTrouble: SignalStatusEvent;
873
932
  signalOk: SignalStatusEvent;
933
+ clientUnableToJoinFullRoom: SignalClientEvent;
874
934
  } | "*" ? NotificationEventMap[K_3] extends unknown[] ? (...args: NotificationEventMap[K_3]) => void : never : never) => NotificationsEventEmitter;
875
935
  removeListener: <K_4>(eventName: keyof {
876
936
  requestAudioEnable: RequestAudioEvent;
@@ -880,6 +940,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
880
940
  remoteHandLowered: StickyReactionEvent;
881
941
  signalTrouble: SignalStatusEvent;
882
942
  signalOk: SignalStatusEvent;
943
+ clientUnableToJoinFullRoom: SignalClientEvent;
883
944
  } | "*" | K_4, listener: K_4 extends keyof {
884
945
  requestAudioEnable: RequestAudioEvent;
885
946
  requestAudioDisable: RequestAudioEvent;
@@ -888,6 +949,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
888
949
  remoteHandLowered: StickyReactionEvent;
889
950
  signalTrouble: SignalStatusEvent;
890
951
  signalOk: SignalStatusEvent;
952
+ clientUnableToJoinFullRoom: SignalClientEvent;
891
953
  } | "*" ? NotificationEventMap[K_4] extends unknown[] ? (...args: NotificationEventMap[K_4]) => void : never : never) => NotificationsEventEmitter;
892
954
  off: <K_5>(eventName: keyof {
893
955
  requestAudioEnable: RequestAudioEvent;
@@ -897,6 +959,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
897
959
  remoteHandLowered: StickyReactionEvent;
898
960
  signalTrouble: SignalStatusEvent;
899
961
  signalOk: SignalStatusEvent;
962
+ clientUnableToJoinFullRoom: SignalClientEvent;
900
963
  } | "*" | K_5, listener: K_5 extends keyof {
901
964
  requestAudioEnable: RequestAudioEvent;
902
965
  requestAudioDisable: RequestAudioEvent;
@@ -905,6 +968,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
905
968
  remoteHandLowered: StickyReactionEvent;
906
969
  signalTrouble: SignalStatusEvent;
907
970
  signalOk: SignalStatusEvent;
971
+ clientUnableToJoinFullRoom: SignalClientEvent;
908
972
  } | "*" ? NotificationEventMap[K_5] extends unknown[] ? (...args: NotificationEventMap[K_5]) => void : never : never) => NotificationsEventEmitter;
909
973
  removeAllListeners: (eventName?: unknown) => NotificationsEventEmitter;
910
974
  setMaxListeners: (n: number) => NotificationsEventEmitter;
@@ -917,6 +981,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
917
981
  remoteHandLowered: StickyReactionEvent;
918
982
  signalTrouble: SignalStatusEvent;
919
983
  signalOk: SignalStatusEvent;
984
+ clientUnableToJoinFullRoom: SignalClientEvent;
920
985
  } | "*" | K_6) => (K_6 extends keyof {
921
986
  requestAudioEnable: RequestAudioEvent;
922
987
  requestAudioDisable: RequestAudioEvent;
@@ -925,6 +990,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
925
990
  remoteHandLowered: StickyReactionEvent;
926
991
  signalTrouble: SignalStatusEvent;
927
992
  signalOk: SignalStatusEvent;
993
+ clientUnableToJoinFullRoom: SignalClientEvent;
928
994
  } | "*" ? NotificationEventMap[K_6] extends unknown[] ? (...args: NotificationEventMap[K_6]) => void : never : never)[];
929
995
  rawListeners: <K_7>(eventName: keyof {
930
996
  requestAudioEnable: RequestAudioEvent;
@@ -934,6 +1000,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
934
1000
  remoteHandLowered: StickyReactionEvent;
935
1001
  signalTrouble: SignalStatusEvent;
936
1002
  signalOk: SignalStatusEvent;
1003
+ clientUnableToJoinFullRoom: SignalClientEvent;
937
1004
  } | "*" | K_7) => (K_7 extends keyof {
938
1005
  requestAudioEnable: RequestAudioEvent;
939
1006
  requestAudioDisable: RequestAudioEvent;
@@ -942,6 +1009,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
942
1009
  remoteHandLowered: StickyReactionEvent;
943
1010
  signalTrouble: SignalStatusEvent;
944
1011
  signalOk: SignalStatusEvent;
1012
+ clientUnableToJoinFullRoom: SignalClientEvent;
945
1013
  } | "*" ? NotificationEventMap[K_7] extends unknown[] ? (...args: NotificationEventMap[K_7]) => void : never : never)[];
946
1014
  emit: <K_8>(eventName: keyof {
947
1015
  requestAudioEnable: RequestAudioEvent;
@@ -951,6 +1019,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
951
1019
  remoteHandLowered: StickyReactionEvent;
952
1020
  signalTrouble: SignalStatusEvent;
953
1021
  signalOk: SignalStatusEvent;
1022
+ clientUnableToJoinFullRoom: SignalClientEvent;
954
1023
  } | "*" | K_8, ...args: K_8 extends keyof {
955
1024
  requestAudioEnable: RequestAudioEvent;
956
1025
  requestAudioDisable: RequestAudioEvent;
@@ -959,6 +1028,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
959
1028
  remoteHandLowered: StickyReactionEvent;
960
1029
  signalTrouble: SignalStatusEvent;
961
1030
  signalOk: SignalStatusEvent;
1031
+ clientUnableToJoinFullRoom: SignalClientEvent;
962
1032
  } | "*" ? NotificationEventMap[K_8] : never) => boolean;
963
1033
  listenerCount: <K_9>(eventName: keyof {
964
1034
  requestAudioEnable: RequestAudioEvent;
@@ -968,6 +1038,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
968
1038
  remoteHandLowered: StickyReactionEvent;
969
1039
  signalTrouble: SignalStatusEvent;
970
1040
  signalOk: SignalStatusEvent;
1041
+ clientUnableToJoinFullRoom: SignalClientEvent;
971
1042
  } | "*" | K_9, listener?: (K_9 extends keyof {
972
1043
  requestAudioEnable: RequestAudioEvent;
973
1044
  requestAudioDisable: RequestAudioEvent;
@@ -976,6 +1047,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
976
1047
  remoteHandLowered: StickyReactionEvent;
977
1048
  signalTrouble: SignalStatusEvent;
978
1049
  signalOk: SignalStatusEvent;
1050
+ clientUnableToJoinFullRoom: SignalClientEvent;
979
1051
  } | "*" ? NotificationEventMap[K_9] extends unknown[] ? (...args: NotificationEventMap[K_9]) => void : never : never) | undefined) => number;
980
1052
  prependListener: <K_10>(eventName: keyof {
981
1053
  requestAudioEnable: RequestAudioEvent;
@@ -985,6 +1057,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
985
1057
  remoteHandLowered: StickyReactionEvent;
986
1058
  signalTrouble: SignalStatusEvent;
987
1059
  signalOk: SignalStatusEvent;
1060
+ clientUnableToJoinFullRoom: SignalClientEvent;
988
1061
  } | "*" | K_10, listener: K_10 extends keyof {
989
1062
  requestAudioEnable: RequestAudioEvent;
990
1063
  requestAudioDisable: RequestAudioEvent;
@@ -993,6 +1066,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
993
1066
  remoteHandLowered: StickyReactionEvent;
994
1067
  signalTrouble: SignalStatusEvent;
995
1068
  signalOk: SignalStatusEvent;
1069
+ clientUnableToJoinFullRoom: SignalClientEvent;
996
1070
  } | "*" ? NotificationEventMap[K_10] extends unknown[] ? (...args: NotificationEventMap[K_10]) => void : never : never) => NotificationsEventEmitter;
997
1071
  prependOnceListener: <K_11>(eventName: keyof {
998
1072
  requestAudioEnable: RequestAudioEvent;
@@ -1002,6 +1076,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1002
1076
  remoteHandLowered: StickyReactionEvent;
1003
1077
  signalTrouble: SignalStatusEvent;
1004
1078
  signalOk: SignalStatusEvent;
1079
+ clientUnableToJoinFullRoom: SignalClientEvent;
1005
1080
  } | "*" | K_11, listener: K_11 extends keyof {
1006
1081
  requestAudioEnable: RequestAudioEvent;
1007
1082
  requestAudioDisable: RequestAudioEvent;
@@ -1010,8 +1085,9 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1010
1085
  remoteHandLowered: StickyReactionEvent;
1011
1086
  signalTrouble: SignalStatusEvent;
1012
1087
  signalOk: SignalStatusEvent;
1088
+ clientUnableToJoinFullRoom: SignalClientEvent;
1013
1089
  } | "*" ? NotificationEventMap[K_11] extends unknown[] ? (...args: NotificationEventMap[K_11]) => void : never : never) => NotificationsEventEmitter;
1014
- eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "*")[];
1090
+ eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "clientUnableToJoinFullRoom" | "*")[];
1015
1091
  };
1016
1092
  events: {
1017
1093
  type: string;
@@ -1030,6 +1106,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1030
1106
  remoteHandLowered: StickyReactionEvent;
1031
1107
  signalTrouble: SignalStatusEvent;
1032
1108
  signalOk: SignalStatusEvent;
1109
+ clientUnableToJoinFullRoom: SignalClientEvent;
1033
1110
  } | K | "*", ...args: K extends keyof {
1034
1111
  requestAudioEnable: RequestAudioEvent;
1035
1112
  requestAudioDisable: RequestAudioEvent;
@@ -1038,6 +1115,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1038
1115
  remoteHandLowered: StickyReactionEvent;
1039
1116
  signalTrouble: SignalStatusEvent;
1040
1117
  signalOk: SignalStatusEvent;
1118
+ clientUnableToJoinFullRoom: SignalClientEvent;
1041
1119
  } | "*" ? NotificationEventMap[K] : never) => void) | undefined;
1042
1120
  addListener: <K_1>(eventName: keyof {
1043
1121
  requestAudioEnable: RequestAudioEvent;
@@ -1047,6 +1125,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1047
1125
  remoteHandLowered: StickyReactionEvent;
1048
1126
  signalTrouble: SignalStatusEvent;
1049
1127
  signalOk: SignalStatusEvent;
1128
+ clientUnableToJoinFullRoom: SignalClientEvent;
1050
1129
  } | "*" | K_1, listener: K_1 extends keyof {
1051
1130
  requestAudioEnable: RequestAudioEvent;
1052
1131
  requestAudioDisable: RequestAudioEvent;
@@ -1055,6 +1134,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1055
1134
  remoteHandLowered: StickyReactionEvent;
1056
1135
  signalTrouble: SignalStatusEvent;
1057
1136
  signalOk: SignalStatusEvent;
1137
+ clientUnableToJoinFullRoom: SignalClientEvent;
1058
1138
  } | "*" ? NotificationEventMap[K_1] extends unknown[] ? (...args: NotificationEventMap[K_1]) => void : never : never) => NotificationsEventEmitter;
1059
1139
  on: <K_2>(eventName: keyof {
1060
1140
  requestAudioEnable: RequestAudioEvent;
@@ -1064,6 +1144,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1064
1144
  remoteHandLowered: StickyReactionEvent;
1065
1145
  signalTrouble: SignalStatusEvent;
1066
1146
  signalOk: SignalStatusEvent;
1147
+ clientUnableToJoinFullRoom: SignalClientEvent;
1067
1148
  } | "*" | K_2, listener: K_2 extends keyof {
1068
1149
  requestAudioEnable: RequestAudioEvent;
1069
1150
  requestAudioDisable: RequestAudioEvent;
@@ -1072,6 +1153,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1072
1153
  remoteHandLowered: StickyReactionEvent;
1073
1154
  signalTrouble: SignalStatusEvent;
1074
1155
  signalOk: SignalStatusEvent;
1156
+ clientUnableToJoinFullRoom: SignalClientEvent;
1075
1157
  } | "*" ? NotificationEventMap[K_2] extends unknown[] ? (...args: NotificationEventMap[K_2]) => void : never : never) => NotificationsEventEmitter;
1076
1158
  once: <K_3>(eventName: keyof {
1077
1159
  requestAudioEnable: RequestAudioEvent;
@@ -1081,6 +1163,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1081
1163
  remoteHandLowered: StickyReactionEvent;
1082
1164
  signalTrouble: SignalStatusEvent;
1083
1165
  signalOk: SignalStatusEvent;
1166
+ clientUnableToJoinFullRoom: SignalClientEvent;
1084
1167
  } | "*" | K_3, listener: K_3 extends keyof {
1085
1168
  requestAudioEnable: RequestAudioEvent;
1086
1169
  requestAudioDisable: RequestAudioEvent;
@@ -1089,6 +1172,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1089
1172
  remoteHandLowered: StickyReactionEvent;
1090
1173
  signalTrouble: SignalStatusEvent;
1091
1174
  signalOk: SignalStatusEvent;
1175
+ clientUnableToJoinFullRoom: SignalClientEvent;
1092
1176
  } | "*" ? NotificationEventMap[K_3] extends unknown[] ? (...args: NotificationEventMap[K_3]) => void : never : never) => NotificationsEventEmitter;
1093
1177
  removeListener: <K_4>(eventName: keyof {
1094
1178
  requestAudioEnable: RequestAudioEvent;
@@ -1098,6 +1182,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1098
1182
  remoteHandLowered: StickyReactionEvent;
1099
1183
  signalTrouble: SignalStatusEvent;
1100
1184
  signalOk: SignalStatusEvent;
1185
+ clientUnableToJoinFullRoom: SignalClientEvent;
1101
1186
  } | "*" | K_4, listener: K_4 extends keyof {
1102
1187
  requestAudioEnable: RequestAudioEvent;
1103
1188
  requestAudioDisable: RequestAudioEvent;
@@ -1106,6 +1191,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1106
1191
  remoteHandLowered: StickyReactionEvent;
1107
1192
  signalTrouble: SignalStatusEvent;
1108
1193
  signalOk: SignalStatusEvent;
1194
+ clientUnableToJoinFullRoom: SignalClientEvent;
1109
1195
  } | "*" ? NotificationEventMap[K_4] extends unknown[] ? (...args: NotificationEventMap[K_4]) => void : never : never) => NotificationsEventEmitter;
1110
1196
  off: <K_5>(eventName: keyof {
1111
1197
  requestAudioEnable: RequestAudioEvent;
@@ -1115,6 +1201,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1115
1201
  remoteHandLowered: StickyReactionEvent;
1116
1202
  signalTrouble: SignalStatusEvent;
1117
1203
  signalOk: SignalStatusEvent;
1204
+ clientUnableToJoinFullRoom: SignalClientEvent;
1118
1205
  } | "*" | K_5, listener: K_5 extends keyof {
1119
1206
  requestAudioEnable: RequestAudioEvent;
1120
1207
  requestAudioDisable: RequestAudioEvent;
@@ -1123,6 +1210,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1123
1210
  remoteHandLowered: StickyReactionEvent;
1124
1211
  signalTrouble: SignalStatusEvent;
1125
1212
  signalOk: SignalStatusEvent;
1213
+ clientUnableToJoinFullRoom: SignalClientEvent;
1126
1214
  } | "*" ? NotificationEventMap[K_5] extends unknown[] ? (...args: NotificationEventMap[K_5]) => void : never : never) => NotificationsEventEmitter;
1127
1215
  removeAllListeners: (eventName?: unknown) => NotificationsEventEmitter;
1128
1216
  setMaxListeners: (n: number) => NotificationsEventEmitter;
@@ -1135,6 +1223,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1135
1223
  remoteHandLowered: StickyReactionEvent;
1136
1224
  signalTrouble: SignalStatusEvent;
1137
1225
  signalOk: SignalStatusEvent;
1226
+ clientUnableToJoinFullRoom: SignalClientEvent;
1138
1227
  } | "*" | K_6) => (K_6 extends keyof {
1139
1228
  requestAudioEnable: RequestAudioEvent;
1140
1229
  requestAudioDisable: RequestAudioEvent;
@@ -1143,6 +1232,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1143
1232
  remoteHandLowered: StickyReactionEvent;
1144
1233
  signalTrouble: SignalStatusEvent;
1145
1234
  signalOk: SignalStatusEvent;
1235
+ clientUnableToJoinFullRoom: SignalClientEvent;
1146
1236
  } | "*" ? NotificationEventMap[K_6] extends unknown[] ? (...args: NotificationEventMap[K_6]) => void : never : never)[];
1147
1237
  rawListeners: <K_7>(eventName: keyof {
1148
1238
  requestAudioEnable: RequestAudioEvent;
@@ -1152,6 +1242,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1152
1242
  remoteHandLowered: StickyReactionEvent;
1153
1243
  signalTrouble: SignalStatusEvent;
1154
1244
  signalOk: SignalStatusEvent;
1245
+ clientUnableToJoinFullRoom: SignalClientEvent;
1155
1246
  } | "*" | K_7) => (K_7 extends keyof {
1156
1247
  requestAudioEnable: RequestAudioEvent;
1157
1248
  requestAudioDisable: RequestAudioEvent;
@@ -1160,6 +1251,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1160
1251
  remoteHandLowered: StickyReactionEvent;
1161
1252
  signalTrouble: SignalStatusEvent;
1162
1253
  signalOk: SignalStatusEvent;
1254
+ clientUnableToJoinFullRoom: SignalClientEvent;
1163
1255
  } | "*" ? NotificationEventMap[K_7] extends unknown[] ? (...args: NotificationEventMap[K_7]) => void : never : never)[];
1164
1256
  emit: <K_8>(eventName: keyof {
1165
1257
  requestAudioEnable: RequestAudioEvent;
@@ -1169,6 +1261,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1169
1261
  remoteHandLowered: StickyReactionEvent;
1170
1262
  signalTrouble: SignalStatusEvent;
1171
1263
  signalOk: SignalStatusEvent;
1264
+ clientUnableToJoinFullRoom: SignalClientEvent;
1172
1265
  } | "*" | K_8, ...args: K_8 extends keyof {
1173
1266
  requestAudioEnable: RequestAudioEvent;
1174
1267
  requestAudioDisable: RequestAudioEvent;
@@ -1177,6 +1270,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1177
1270
  remoteHandLowered: StickyReactionEvent;
1178
1271
  signalTrouble: SignalStatusEvent;
1179
1272
  signalOk: SignalStatusEvent;
1273
+ clientUnableToJoinFullRoom: SignalClientEvent;
1180
1274
  } | "*" ? NotificationEventMap[K_8] : never) => boolean;
1181
1275
  listenerCount: <K_9>(eventName: keyof {
1182
1276
  requestAudioEnable: RequestAudioEvent;
@@ -1186,6 +1280,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1186
1280
  remoteHandLowered: StickyReactionEvent;
1187
1281
  signalTrouble: SignalStatusEvent;
1188
1282
  signalOk: SignalStatusEvent;
1283
+ clientUnableToJoinFullRoom: SignalClientEvent;
1189
1284
  } | "*" | K_9, listener?: (K_9 extends keyof {
1190
1285
  requestAudioEnable: RequestAudioEvent;
1191
1286
  requestAudioDisable: RequestAudioEvent;
@@ -1194,6 +1289,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1194
1289
  remoteHandLowered: StickyReactionEvent;
1195
1290
  signalTrouble: SignalStatusEvent;
1196
1291
  signalOk: SignalStatusEvent;
1292
+ clientUnableToJoinFullRoom: SignalClientEvent;
1197
1293
  } | "*" ? NotificationEventMap[K_9] extends unknown[] ? (...args: NotificationEventMap[K_9]) => void : never : never) | undefined) => number;
1198
1294
  prependListener: <K_10>(eventName: keyof {
1199
1295
  requestAudioEnable: RequestAudioEvent;
@@ -1203,6 +1299,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1203
1299
  remoteHandLowered: StickyReactionEvent;
1204
1300
  signalTrouble: SignalStatusEvent;
1205
1301
  signalOk: SignalStatusEvent;
1302
+ clientUnableToJoinFullRoom: SignalClientEvent;
1206
1303
  } | "*" | K_10, listener: K_10 extends keyof {
1207
1304
  requestAudioEnable: RequestAudioEvent;
1208
1305
  requestAudioDisable: RequestAudioEvent;
@@ -1211,6 +1308,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1211
1308
  remoteHandLowered: StickyReactionEvent;
1212
1309
  signalTrouble: SignalStatusEvent;
1213
1310
  signalOk: SignalStatusEvent;
1311
+ clientUnableToJoinFullRoom: SignalClientEvent;
1214
1312
  } | "*" ? NotificationEventMap[K_10] extends unknown[] ? (...args: NotificationEventMap[K_10]) => void : never : never) => NotificationsEventEmitter;
1215
1313
  prependOnceListener: <K_11>(eventName: keyof {
1216
1314
  requestAudioEnable: RequestAudioEvent;
@@ -1220,6 +1318,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1220
1318
  remoteHandLowered: StickyReactionEvent;
1221
1319
  signalTrouble: SignalStatusEvent;
1222
1320
  signalOk: SignalStatusEvent;
1321
+ clientUnableToJoinFullRoom: SignalClientEvent;
1223
1322
  } | "*" | K_11, listener: K_11 extends keyof {
1224
1323
  requestAudioEnable: RequestAudioEvent;
1225
1324
  requestAudioDisable: RequestAudioEvent;
@@ -1228,8 +1327,9 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
1228
1327
  remoteHandLowered: StickyReactionEvent;
1229
1328
  signalTrouble: SignalStatusEvent;
1230
1329
  signalOk: SignalStatusEvent;
1330
+ clientUnableToJoinFullRoom: SignalClientEvent;
1231
1331
  } | "*" ? NotificationEventMap[K_11] extends unknown[] ? (...args: NotificationEventMap[K_11]) => void : never : never) => NotificationsEventEmitter;
1232
- eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "*")[];
1332
+ eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "clientUnableToJoinFullRoom" | "*")[];
1233
1333
  };
1234
1334
  };
1235
1335
  }, "notifications", "notifications", _reduxjs_toolkit.SliceSelectors<NotificationsState>>;
@@ -6312,6 +6412,7 @@ declare const signalEvents: {
6312
6412
  clientLeft: _reduxjs_toolkit.ActionCreatorWithPayload<ClientLeftEvent, string>;
6313
6413
  clientKicked: _reduxjs_toolkit.ActionCreatorWithPayload<ClientKickedEvent, string>;
6314
6414
  clientMetadataReceived: _reduxjs_toolkit.ActionCreatorWithPayload<ClientMetadataReceivedEvent, string>;
6415
+ clientUnableToJoin: _reduxjs_toolkit.ActionCreatorWithPayload<ClientUnableToJoinEvent, string>;
6315
6416
  cloudRecordingStarted: _reduxjs_toolkit.ActionCreatorWithPayload<CloudRecordingStartedEvent, string>;
6316
6417
  cloudRecordingStopped: _reduxjs_toolkit.ActionCreatorWithoutPayload<string>;
6317
6418
  disconnect: _reduxjs_toolkit.ActionCreatorWithoutPayload<string>;
@@ -8295,4 +8396,4 @@ declare function parseRoomUrlAndSubdomain(roomAttribute?: string, subdomainAttri
8295
8396
 
8296
8397
  declare function parseUnverifiedRoomKeyData(roomKey: string): any;
8297
8398
 
8298
- 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 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 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, 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, doStartLocalMedia, doStartScreenshare, doStopCloudRecording, 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, 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, selectSignalConnectionDeviceIdentified, selectSignalConnectionRaw, selectSignalConnectionSocket, selectSignalIsIdentifyingDevice, selectSignalStatus, selectSpeakerDevices, selectSpotlightedClientViews, selectSpotlights, selectSpotlightsRaw, 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 };
8399
+ 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 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, 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, doStartLocalMedia, doStartScreenshare, doStopCloudRecording, 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, 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, selectSignalConnectionDeviceIdentified, selectSignalConnectionRaw, selectSignalConnectionSocket, selectSignalIsIdentifyingDevice, selectSignalStatus, selectSpeakerDevices, selectSpotlightedClientViews, selectSpotlights, selectSpotlightsRaw, 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 };