@whereby.com/core 0.25.1 → 0.27.0
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.cjs +862 -661
- package/dist/index.d.cts +550 -115
- package/dist/index.d.mts +550 -115
- package/dist/index.d.ts +550 -115
- package/dist/index.mjs +848 -662
- package/package.json +2 -2
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, 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>>;
|
|
@@ -1565,6 +1764,7 @@ declare const selectIsAuthorizedToLockRoom: ((state: {
|
|
|
1565
1764
|
authorization: AuthorizationState;
|
|
1566
1765
|
chat: ChatState;
|
|
1567
1766
|
cloudRecording: CloudRecordingState;
|
|
1767
|
+
connectionMonitor: ConnectionMonitorState;
|
|
1568
1768
|
deviceCredentials: DeviceCredentialsState;
|
|
1569
1769
|
localMedia: LocalMediaState;
|
|
1570
1770
|
localParticipant: LocalParticipantState;
|
|
@@ -1606,6 +1806,49 @@ declare const selectIsAuthorizedToRequestAudioEnable: ((state: {
|
|
|
1606
1806
|
authorization: AuthorizationState;
|
|
1607
1807
|
chat: ChatState;
|
|
1608
1808
|
cloudRecording: CloudRecordingState;
|
|
1809
|
+
connectionMonitor: ConnectionMonitorState;
|
|
1810
|
+
deviceCredentials: DeviceCredentialsState;
|
|
1811
|
+
localMedia: LocalMediaState;
|
|
1812
|
+
localParticipant: LocalParticipantState;
|
|
1813
|
+
localScreenshare: LocalScreenshareState;
|
|
1814
|
+
notifications: NotificationsState;
|
|
1815
|
+
organization: OrganizationState;
|
|
1816
|
+
remoteParticipants: RemoteParticipantState;
|
|
1817
|
+
room: RoomState;
|
|
1818
|
+
roomConnection: RoomConnectionState;
|
|
1819
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
1820
|
+
rtcConnection: RtcConnectionState;
|
|
1821
|
+
signalConnection: SignalConnectionState;
|
|
1822
|
+
spotlights: SpotlightsState;
|
|
1823
|
+
streaming: StreamingState;
|
|
1824
|
+
waitingParticipants: WaitingParticipantsState;
|
|
1825
|
+
}) => boolean) & {
|
|
1826
|
+
clearCache: () => void;
|
|
1827
|
+
resultsCount: () => number;
|
|
1828
|
+
resetResultsCount: () => void;
|
|
1829
|
+
} & {
|
|
1830
|
+
resultFunc: (resultFuncArgs_0: RoleName) => boolean;
|
|
1831
|
+
memoizedResultFunc: ((resultFuncArgs_0: RoleName) => boolean) & {
|
|
1832
|
+
clearCache: () => void;
|
|
1833
|
+
resultsCount: () => number;
|
|
1834
|
+
resetResultsCount: () => void;
|
|
1835
|
+
};
|
|
1836
|
+
lastResult: () => boolean;
|
|
1837
|
+
dependencies: [(state: RootState) => RoleName];
|
|
1838
|
+
recomputations: () => number;
|
|
1839
|
+
resetRecomputations: () => void;
|
|
1840
|
+
dependencyRecomputations: () => number;
|
|
1841
|
+
resetDependencyRecomputations: () => void;
|
|
1842
|
+
} & {
|
|
1843
|
+
argsMemoize: typeof reselect.weakMapMemoize;
|
|
1844
|
+
memoize: typeof reselect.weakMapMemoize;
|
|
1845
|
+
};
|
|
1846
|
+
declare const selectIsAuthorizedToRequestVideoEnable: ((state: {
|
|
1847
|
+
app: AppState;
|
|
1848
|
+
authorization: AuthorizationState;
|
|
1849
|
+
chat: ChatState;
|
|
1850
|
+
cloudRecording: CloudRecordingState;
|
|
1851
|
+
connectionMonitor: ConnectionMonitorState;
|
|
1609
1852
|
deviceCredentials: DeviceCredentialsState;
|
|
1610
1853
|
localMedia: LocalMediaState;
|
|
1611
1854
|
localParticipant: LocalParticipantState;
|
|
@@ -1647,6 +1890,7 @@ declare const selectIsAuthorizedToKickClient: ((state: {
|
|
|
1647
1890
|
authorization: AuthorizationState;
|
|
1648
1891
|
chat: ChatState;
|
|
1649
1892
|
cloudRecording: CloudRecordingState;
|
|
1893
|
+
connectionMonitor: ConnectionMonitorState;
|
|
1650
1894
|
deviceCredentials: DeviceCredentialsState;
|
|
1651
1895
|
localMedia: LocalMediaState;
|
|
1652
1896
|
localParticipant: LocalParticipantState;
|
|
@@ -1688,6 +1932,7 @@ declare const selectIsAuthorizedToEndMeeting: ((state: {
|
|
|
1688
1932
|
authorization: AuthorizationState;
|
|
1689
1933
|
chat: ChatState;
|
|
1690
1934
|
cloudRecording: CloudRecordingState;
|
|
1935
|
+
connectionMonitor: ConnectionMonitorState;
|
|
1691
1936
|
deviceCredentials: DeviceCredentialsState;
|
|
1692
1937
|
localMedia: LocalMediaState;
|
|
1693
1938
|
localParticipant: LocalParticipantState;
|
|
@@ -1729,6 +1974,7 @@ declare const selectIsAuthorizedToAskToSpeak: ((state: {
|
|
|
1729
1974
|
authorization: AuthorizationState;
|
|
1730
1975
|
chat: ChatState;
|
|
1731
1976
|
cloudRecording: CloudRecordingState;
|
|
1977
|
+
connectionMonitor: ConnectionMonitorState;
|
|
1732
1978
|
deviceCredentials: DeviceCredentialsState;
|
|
1733
1979
|
localMedia: LocalMediaState;
|
|
1734
1980
|
localParticipant: LocalParticipantState;
|
|
@@ -1770,6 +2016,7 @@ declare const selectIsAuthorizedToSpotlight: ((state: {
|
|
|
1770
2016
|
authorization: AuthorizationState;
|
|
1771
2017
|
chat: ChatState;
|
|
1772
2018
|
cloudRecording: CloudRecordingState;
|
|
2019
|
+
connectionMonitor: ConnectionMonitorState;
|
|
1773
2020
|
deviceCredentials: DeviceCredentialsState;
|
|
1774
2021
|
localMedia: LocalMediaState;
|
|
1775
2022
|
localParticipant: LocalParticipantState;
|
|
@@ -1807,6 +2054,159 @@ declare const selectIsAuthorizedToSpotlight: ((state: {
|
|
|
1807
2054
|
memoize: typeof reselect.weakMapMemoize;
|
|
1808
2055
|
};
|
|
1809
2056
|
|
|
2057
|
+
interface ConnectionMonitorStart {
|
|
2058
|
+
stopIssueSubscription: () => void;
|
|
2059
|
+
}
|
|
2060
|
+
interface ConnectionMonitorState {
|
|
2061
|
+
running: boolean;
|
|
2062
|
+
stopCallbackFunction?: () => void;
|
|
2063
|
+
}
|
|
2064
|
+
declare const connectionMonitorSlice: _reduxjs_toolkit.Slice<ConnectionMonitorState, {
|
|
2065
|
+
connectionMonitorStarted: (state: {
|
|
2066
|
+
running: boolean;
|
|
2067
|
+
stopCallbackFunction?: (() => void) | undefined;
|
|
2068
|
+
}, action: PayloadAction<ConnectionMonitorStart>) => {
|
|
2069
|
+
running: true;
|
|
2070
|
+
stopCallbackFunction: () => void;
|
|
2071
|
+
};
|
|
2072
|
+
connectionMonitorStopped: () => {
|
|
2073
|
+
running: boolean;
|
|
2074
|
+
stopCallbackFunction?: (() => void) | undefined;
|
|
2075
|
+
};
|
|
2076
|
+
}, "connectionMonitor", "connectionMonitor", _reduxjs_toolkit.SliceSelectors<ConnectionMonitorState>>;
|
|
2077
|
+
declare const connectionMonitorStarted: _reduxjs_toolkit.ActionCreatorWithPayload<ConnectionMonitorStart, "connectionMonitor/connectionMonitorStarted">;
|
|
2078
|
+
declare const connectionMonitorStopped: _reduxjs_toolkit.ActionCreatorWithoutPayload<"connectionMonitor/connectionMonitorStopped">;
|
|
2079
|
+
declare const doStartConnectionMonitor: (args: void) => AppThunk<void>;
|
|
2080
|
+
declare const doStopConnectionMonitor: (args: void) => AppThunk<void>;
|
|
2081
|
+
declare const selectConnectionMonitorIsRunning: (state: RootState) => boolean;
|
|
2082
|
+
declare const selectStopCallbackFunction: (state: RootState) => (() => void) | undefined;
|
|
2083
|
+
declare const selectShouldStartConnectionMonitor: ((state: {
|
|
2084
|
+
app: AppState;
|
|
2085
|
+
authorization: AuthorizationState;
|
|
2086
|
+
chat: ChatState;
|
|
2087
|
+
cloudRecording: CloudRecordingState;
|
|
2088
|
+
connectionMonitor: ConnectionMonitorState;
|
|
2089
|
+
deviceCredentials: DeviceCredentialsState;
|
|
2090
|
+
localMedia: LocalMediaState;
|
|
2091
|
+
localParticipant: LocalParticipantState;
|
|
2092
|
+
localScreenshare: LocalScreenshareState;
|
|
2093
|
+
notifications: NotificationsState;
|
|
2094
|
+
organization: OrganizationState;
|
|
2095
|
+
remoteParticipants: RemoteParticipantState;
|
|
2096
|
+
room: RoomState;
|
|
2097
|
+
roomConnection: RoomConnectionState;
|
|
2098
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
2099
|
+
rtcConnection: RtcConnectionState;
|
|
2100
|
+
signalConnection: SignalConnectionState;
|
|
2101
|
+
spotlights: SpotlightsState;
|
|
2102
|
+
streaming: StreamingState;
|
|
2103
|
+
waitingParticipants: WaitingParticipantsState;
|
|
2104
|
+
}) => boolean) & {
|
|
2105
|
+
clearCache: () => void;
|
|
2106
|
+
resultsCount: () => number;
|
|
2107
|
+
resetResultsCount: () => void;
|
|
2108
|
+
} & {
|
|
2109
|
+
resultFunc: (resultFuncArgs_0: ConnectionStatus, resultFuncArgs_1: boolean) => boolean;
|
|
2110
|
+
memoizedResultFunc: ((resultFuncArgs_0: ConnectionStatus, resultFuncArgs_1: boolean) => boolean) & {
|
|
2111
|
+
clearCache: () => void;
|
|
2112
|
+
resultsCount: () => number;
|
|
2113
|
+
resetResultsCount: () => void;
|
|
2114
|
+
};
|
|
2115
|
+
lastResult: () => boolean;
|
|
2116
|
+
dependencies: [(state: {
|
|
2117
|
+
app: AppState;
|
|
2118
|
+
authorization: AuthorizationState;
|
|
2119
|
+
chat: ChatState;
|
|
2120
|
+
cloudRecording: CloudRecordingState;
|
|
2121
|
+
connectionMonitor: ConnectionMonitorState;
|
|
2122
|
+
deviceCredentials: DeviceCredentialsState;
|
|
2123
|
+
localMedia: LocalMediaState;
|
|
2124
|
+
localParticipant: LocalParticipantState;
|
|
2125
|
+
localScreenshare: LocalScreenshareState;
|
|
2126
|
+
notifications: NotificationsState;
|
|
2127
|
+
organization: OrganizationState;
|
|
2128
|
+
remoteParticipants: RemoteParticipantState;
|
|
2129
|
+
room: RoomState;
|
|
2130
|
+
roomConnection: RoomConnectionState;
|
|
2131
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
2132
|
+
rtcConnection: RtcConnectionState;
|
|
2133
|
+
signalConnection: SignalConnectionState;
|
|
2134
|
+
spotlights: SpotlightsState;
|
|
2135
|
+
streaming: StreamingState;
|
|
2136
|
+
waitingParticipants: WaitingParticipantsState;
|
|
2137
|
+
}) => ConnectionStatus, (state: RootState) => boolean];
|
|
2138
|
+
recomputations: () => number;
|
|
2139
|
+
resetRecomputations: () => void;
|
|
2140
|
+
dependencyRecomputations: () => number;
|
|
2141
|
+
resetDependencyRecomputations: () => void;
|
|
2142
|
+
} & {
|
|
2143
|
+
argsMemoize: typeof reselect.weakMapMemoize;
|
|
2144
|
+
memoize: typeof reselect.weakMapMemoize;
|
|
2145
|
+
};
|
|
2146
|
+
declare const selectShouldStopConnectionMonitor: ((state: {
|
|
2147
|
+
app: AppState;
|
|
2148
|
+
authorization: AuthorizationState;
|
|
2149
|
+
chat: ChatState;
|
|
2150
|
+
cloudRecording: CloudRecordingState;
|
|
2151
|
+
connectionMonitor: ConnectionMonitorState;
|
|
2152
|
+
deviceCredentials: DeviceCredentialsState;
|
|
2153
|
+
localMedia: LocalMediaState;
|
|
2154
|
+
localParticipant: LocalParticipantState;
|
|
2155
|
+
localScreenshare: LocalScreenshareState;
|
|
2156
|
+
notifications: NotificationsState;
|
|
2157
|
+
organization: OrganizationState;
|
|
2158
|
+
remoteParticipants: RemoteParticipantState;
|
|
2159
|
+
room: RoomState;
|
|
2160
|
+
roomConnection: RoomConnectionState;
|
|
2161
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
2162
|
+
rtcConnection: RtcConnectionState;
|
|
2163
|
+
signalConnection: SignalConnectionState;
|
|
2164
|
+
spotlights: SpotlightsState;
|
|
2165
|
+
streaming: StreamingState;
|
|
2166
|
+
waitingParticipants: WaitingParticipantsState;
|
|
2167
|
+
}) => boolean) & {
|
|
2168
|
+
clearCache: () => void;
|
|
2169
|
+
resultsCount: () => number;
|
|
2170
|
+
resetResultsCount: () => void;
|
|
2171
|
+
} & {
|
|
2172
|
+
resultFunc: (resultFuncArgs_0: ConnectionStatus, resultFuncArgs_1: boolean) => boolean;
|
|
2173
|
+
memoizedResultFunc: ((resultFuncArgs_0: ConnectionStatus, resultFuncArgs_1: boolean) => boolean) & {
|
|
2174
|
+
clearCache: () => void;
|
|
2175
|
+
resultsCount: () => number;
|
|
2176
|
+
resetResultsCount: () => void;
|
|
2177
|
+
};
|
|
2178
|
+
lastResult: () => boolean;
|
|
2179
|
+
dependencies: [(state: {
|
|
2180
|
+
app: AppState;
|
|
2181
|
+
authorization: AuthorizationState;
|
|
2182
|
+
chat: ChatState;
|
|
2183
|
+
cloudRecording: CloudRecordingState;
|
|
2184
|
+
connectionMonitor: ConnectionMonitorState;
|
|
2185
|
+
deviceCredentials: DeviceCredentialsState;
|
|
2186
|
+
localMedia: LocalMediaState;
|
|
2187
|
+
localParticipant: LocalParticipantState;
|
|
2188
|
+
localScreenshare: LocalScreenshareState;
|
|
2189
|
+
notifications: NotificationsState;
|
|
2190
|
+
organization: OrganizationState;
|
|
2191
|
+
remoteParticipants: RemoteParticipantState;
|
|
2192
|
+
room: RoomState;
|
|
2193
|
+
roomConnection: RoomConnectionState;
|
|
2194
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
2195
|
+
rtcConnection: RtcConnectionState;
|
|
2196
|
+
signalConnection: SignalConnectionState;
|
|
2197
|
+
spotlights: SpotlightsState;
|
|
2198
|
+
streaming: StreamingState;
|
|
2199
|
+
waitingParticipants: WaitingParticipantsState;
|
|
2200
|
+
}) => ConnectionStatus, (state: RootState) => boolean];
|
|
2201
|
+
recomputations: () => number;
|
|
2202
|
+
resetRecomputations: () => void;
|
|
2203
|
+
dependencyRecomputations: () => number;
|
|
2204
|
+
resetDependencyRecomputations: () => void;
|
|
2205
|
+
} & {
|
|
2206
|
+
argsMemoize: typeof reselect.weakMapMemoize;
|
|
2207
|
+
memoize: typeof reselect.weakMapMemoize;
|
|
2208
|
+
};
|
|
2209
|
+
|
|
1810
2210
|
type HttpClientRequestConfig = AxiosRequestConfig | {
|
|
1811
2211
|
[key: string]: unknown;
|
|
1812
2212
|
};
|
|
@@ -2050,6 +2450,7 @@ declare const selectShouldFetchDeviceCredentials: ((state: {
|
|
|
2050
2450
|
authorization: AuthorizationState;
|
|
2051
2451
|
chat: ChatState;
|
|
2052
2452
|
cloudRecording: CloudRecordingState;
|
|
2453
|
+
connectionMonitor: ConnectionMonitorState;
|
|
2053
2454
|
deviceCredentials: DeviceCredentialsState;
|
|
2054
2455
|
localMedia: LocalMediaState;
|
|
2055
2456
|
localParticipant: LocalParticipantState;
|
|
@@ -2082,6 +2483,7 @@ declare const selectShouldFetchDeviceCredentials: ((state: {
|
|
|
2082
2483
|
authorization: AuthorizationState;
|
|
2083
2484
|
chat: ChatState;
|
|
2084
2485
|
cloudRecording: CloudRecordingState;
|
|
2486
|
+
connectionMonitor: ConnectionMonitorState;
|
|
2085
2487
|
deviceCredentials: DeviceCredentialsState;
|
|
2086
2488
|
localMedia: LocalMediaState;
|
|
2087
2489
|
localParticipant: LocalParticipantState;
|
|
@@ -3444,6 +3846,7 @@ declare const selectLocalMediaOwnsStream: ((state: {
|
|
|
3444
3846
|
authorization: AuthorizationState;
|
|
3445
3847
|
chat: ChatState;
|
|
3446
3848
|
cloudRecording: CloudRecordingState;
|
|
3849
|
+
connectionMonitor: ConnectionMonitorState;
|
|
3447
3850
|
deviceCredentials: DeviceCredentialsState;
|
|
3448
3851
|
localMedia: LocalMediaState;
|
|
3449
3852
|
localParticipant: LocalParticipantState;
|
|
@@ -3491,6 +3894,7 @@ declare const selectLocalMediaConstraintsOptions: ((state: {
|
|
|
3491
3894
|
authorization: AuthorizationState;
|
|
3492
3895
|
chat: ChatState;
|
|
3493
3896
|
cloudRecording: CloudRecordingState;
|
|
3897
|
+
connectionMonitor: ConnectionMonitorState;
|
|
3494
3898
|
deviceCredentials: DeviceCredentialsState;
|
|
3495
3899
|
localMedia: LocalMediaState;
|
|
3496
3900
|
localParticipant: LocalParticipantState;
|
|
@@ -3584,6 +3988,7 @@ declare const selectIsLocalMediaStarting: ((state: {
|
|
|
3584
3988
|
authorization: AuthorizationState;
|
|
3585
3989
|
chat: ChatState;
|
|
3586
3990
|
cloudRecording: CloudRecordingState;
|
|
3991
|
+
connectionMonitor: ConnectionMonitorState;
|
|
3587
3992
|
deviceCredentials: DeviceCredentialsState;
|
|
3588
3993
|
localMedia: LocalMediaState;
|
|
3589
3994
|
localParticipant: LocalParticipantState;
|
|
@@ -3625,6 +4030,7 @@ declare const selectCameraDevices: ((state: {
|
|
|
3625
4030
|
authorization: AuthorizationState;
|
|
3626
4031
|
chat: ChatState;
|
|
3627
4032
|
cloudRecording: CloudRecordingState;
|
|
4033
|
+
connectionMonitor: ConnectionMonitorState;
|
|
3628
4034
|
deviceCredentials: DeviceCredentialsState;
|
|
3629
4035
|
localMedia: LocalMediaState;
|
|
3630
4036
|
localParticipant: LocalParticipantState;
|
|
@@ -3666,6 +4072,7 @@ declare const selectMicrophoneDevices: ((state: {
|
|
|
3666
4072
|
authorization: AuthorizationState;
|
|
3667
4073
|
chat: ChatState;
|
|
3668
4074
|
cloudRecording: CloudRecordingState;
|
|
4075
|
+
connectionMonitor: ConnectionMonitorState;
|
|
3669
4076
|
deviceCredentials: DeviceCredentialsState;
|
|
3670
4077
|
localMedia: LocalMediaState;
|
|
3671
4078
|
localParticipant: LocalParticipantState;
|
|
@@ -3707,6 +4114,7 @@ declare const selectSpeakerDevices: ((state: {
|
|
|
3707
4114
|
authorization: AuthorizationState;
|
|
3708
4115
|
chat: ChatState;
|
|
3709
4116
|
cloudRecording: CloudRecordingState;
|
|
4117
|
+
connectionMonitor: ConnectionMonitorState;
|
|
3710
4118
|
deviceCredentials: DeviceCredentialsState;
|
|
3711
4119
|
localMedia: LocalMediaState;
|
|
3712
4120
|
localParticipant: LocalParticipantState;
|
|
@@ -3748,6 +4156,7 @@ declare const selectLocalMediaShouldStartWithOptions: ((state: {
|
|
|
3748
4156
|
authorization: AuthorizationState;
|
|
3749
4157
|
chat: ChatState;
|
|
3750
4158
|
cloudRecording: CloudRecordingState;
|
|
4159
|
+
connectionMonitor: ConnectionMonitorState;
|
|
3751
4160
|
deviceCredentials: DeviceCredentialsState;
|
|
3752
4161
|
localMedia: LocalMediaState;
|
|
3753
4162
|
localParticipant: LocalParticipantState;
|
|
@@ -3780,6 +4189,7 @@ declare const selectLocalMediaShouldStartWithOptions: ((state: {
|
|
|
3780
4189
|
authorization: AuthorizationState;
|
|
3781
4190
|
chat: ChatState;
|
|
3782
4191
|
cloudRecording: CloudRecordingState;
|
|
4192
|
+
connectionMonitor: ConnectionMonitorState;
|
|
3783
4193
|
deviceCredentials: DeviceCredentialsState;
|
|
3784
4194
|
localMedia: LocalMediaState;
|
|
3785
4195
|
localParticipant: LocalParticipantState;
|
|
@@ -3809,6 +4219,7 @@ declare const selectLocalMediaShouldStop: ((state: {
|
|
|
3809
4219
|
authorization: AuthorizationState;
|
|
3810
4220
|
chat: ChatState;
|
|
3811
4221
|
cloudRecording: CloudRecordingState;
|
|
4222
|
+
connectionMonitor: ConnectionMonitorState;
|
|
3812
4223
|
deviceCredentials: DeviceCredentialsState;
|
|
3813
4224
|
localMedia: LocalMediaState;
|
|
3814
4225
|
localParticipant: LocalParticipantState;
|
|
@@ -3841,6 +4252,7 @@ declare const selectLocalMediaShouldStop: ((state: {
|
|
|
3841
4252
|
authorization: AuthorizationState;
|
|
3842
4253
|
chat: ChatState;
|
|
3843
4254
|
cloudRecording: CloudRecordingState;
|
|
4255
|
+
connectionMonitor: ConnectionMonitorState;
|
|
3844
4256
|
deviceCredentials: DeviceCredentialsState;
|
|
3845
4257
|
localMedia: LocalMediaState;
|
|
3846
4258
|
localParticipant: LocalParticipantState;
|
|
@@ -3887,7 +4299,7 @@ interface LocalParticipantState extends LocalParticipant {
|
|
|
3887
4299
|
clientClaim?: string;
|
|
3888
4300
|
}
|
|
3889
4301
|
declare const localParticipantSlice: _reduxjs_toolkit.Slice<LocalParticipantState, {
|
|
3890
|
-
|
|
4302
|
+
setDisplayName: (state: {
|
|
3891
4303
|
isScreenSharing: boolean;
|
|
3892
4304
|
roleName: RoleName;
|
|
3893
4305
|
clientClaim?: string | undefined;
|
|
@@ -3963,9 +4375,12 @@ declare const localParticipantSlice: _reduxjs_toolkit.Slice<LocalParticipantStat
|
|
|
3963
4375
|
isDialIn: boolean;
|
|
3964
4376
|
};
|
|
3965
4377
|
}, "localParticipant", "localParticipant", _reduxjs_toolkit.SliceSelectors<LocalParticipantState>>;
|
|
3966
|
-
declare const
|
|
4378
|
+
declare const setDisplayName: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
3967
4379
|
displayName: string;
|
|
3968
|
-
}, "localParticipant/
|
|
4380
|
+
}, "localParticipant/setDisplayName">;
|
|
4381
|
+
declare const doSetDisplayName: (args: {
|
|
4382
|
+
displayName: string;
|
|
4383
|
+
}) => AppThunk<void>;
|
|
3969
4384
|
declare const doEnableAudio: _reduxjs_toolkit.AsyncThunk<boolean, {
|
|
3970
4385
|
enabled: boolean;
|
|
3971
4386
|
}, ThunkConfig>;
|
|
@@ -3990,6 +4405,7 @@ declare const selectLocalParticipantView: ((state: {
|
|
|
3990
4405
|
authorization: AuthorizationState;
|
|
3991
4406
|
chat: ChatState;
|
|
3992
4407
|
cloudRecording: CloudRecordingState;
|
|
4408
|
+
connectionMonitor: ConnectionMonitorState;
|
|
3993
4409
|
deviceCredentials: DeviceCredentialsState;
|
|
3994
4410
|
localMedia: LocalMediaState;
|
|
3995
4411
|
localParticipant: LocalParticipantState;
|
|
@@ -4022,6 +4438,7 @@ declare const selectLocalParticipantView: ((state: {
|
|
|
4022
4438
|
authorization: AuthorizationState;
|
|
4023
4439
|
chat: ChatState;
|
|
4024
4440
|
cloudRecording: CloudRecordingState;
|
|
4441
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4025
4442
|
deviceCredentials: DeviceCredentialsState;
|
|
4026
4443
|
localMedia: LocalMediaState;
|
|
4027
4444
|
localParticipant: LocalParticipantState;
|
|
@@ -4061,6 +4478,7 @@ declare const selectShouldFetchOrganization: ((state: {
|
|
|
4061
4478
|
authorization: AuthorizationState;
|
|
4062
4479
|
chat: ChatState;
|
|
4063
4480
|
cloudRecording: CloudRecordingState;
|
|
4481
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4064
4482
|
deviceCredentials: DeviceCredentialsState;
|
|
4065
4483
|
localMedia: LocalMediaState;
|
|
4066
4484
|
localParticipant: LocalParticipantState;
|
|
@@ -4093,6 +4511,7 @@ declare const selectShouldFetchOrganization: ((state: {
|
|
|
4093
4511
|
authorization: AuthorizationState;
|
|
4094
4512
|
chat: ChatState;
|
|
4095
4513
|
cloudRecording: CloudRecordingState;
|
|
4514
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4096
4515
|
deviceCredentials: DeviceCredentialsState;
|
|
4097
4516
|
localMedia: LocalMediaState;
|
|
4098
4517
|
localParticipant: LocalParticipantState;
|
|
@@ -4113,6 +4532,7 @@ declare const selectShouldFetchOrganization: ((state: {
|
|
|
4113
4532
|
authorization: AuthorizationState;
|
|
4114
4533
|
chat: ChatState;
|
|
4115
4534
|
cloudRecording: CloudRecordingState;
|
|
4535
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4116
4536
|
deviceCredentials: DeviceCredentialsState;
|
|
4117
4537
|
localMedia: LocalMediaState;
|
|
4118
4538
|
localParticipant: LocalParticipantState;
|
|
@@ -4426,6 +4846,7 @@ declare const participantStreamIdAdded: _reduxjs_toolkit.ActionCreatorWithPayloa
|
|
|
4426
4846
|
}, "remoteParticipants/participantStreamIdAdded">;
|
|
4427
4847
|
declare const streamStatusUpdated: _reduxjs_toolkit.ActionCreatorWithPayload<StreamStatusUpdate[], "remoteParticipants/streamStatusUpdated">;
|
|
4428
4848
|
declare const doRequestAudioEnable: (args: AudioEnableRequest) => AppThunk<void>;
|
|
4849
|
+
declare const doRequestVideoEnable: (args: VideoEnableRequest) => AppThunk<void>;
|
|
4429
4850
|
declare const selectRemoteParticipantsRaw: (state: RootState) => RemoteParticipantState;
|
|
4430
4851
|
declare const selectRemoteClients: (state: RootState) => RemoteParticipant[];
|
|
4431
4852
|
declare const selectRemoteParticipants: ((state: {
|
|
@@ -4433,6 +4854,7 @@ declare const selectRemoteParticipants: ((state: {
|
|
|
4433
4854
|
authorization: AuthorizationState;
|
|
4434
4855
|
chat: ChatState;
|
|
4435
4856
|
cloudRecording: CloudRecordingState;
|
|
4857
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4436
4858
|
deviceCredentials: DeviceCredentialsState;
|
|
4437
4859
|
localMedia: LocalMediaState;
|
|
4438
4860
|
localParticipant: LocalParticipantState;
|
|
@@ -4474,6 +4896,7 @@ declare const selectNumClients: ((state: {
|
|
|
4474
4896
|
authorization: AuthorizationState;
|
|
4475
4897
|
chat: ChatState;
|
|
4476
4898
|
cloudRecording: CloudRecordingState;
|
|
4899
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4477
4900
|
deviceCredentials: DeviceCredentialsState;
|
|
4478
4901
|
localMedia: LocalMediaState;
|
|
4479
4902
|
localParticipant: LocalParticipantState;
|
|
@@ -4515,6 +4938,7 @@ declare const selectNumParticipants: ((state: {
|
|
|
4515
4938
|
authorization: AuthorizationState;
|
|
4516
4939
|
chat: ChatState;
|
|
4517
4940
|
cloudRecording: CloudRecordingState;
|
|
4941
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4518
4942
|
deviceCredentials: DeviceCredentialsState;
|
|
4519
4943
|
localMedia: LocalMediaState;
|
|
4520
4944
|
localParticipant: LocalParticipantState;
|
|
@@ -4547,6 +4971,7 @@ declare const selectNumParticipants: ((state: {
|
|
|
4547
4971
|
authorization: AuthorizationState;
|
|
4548
4972
|
chat: ChatState;
|
|
4549
4973
|
cloudRecording: CloudRecordingState;
|
|
4974
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4550
4975
|
deviceCredentials: DeviceCredentialsState;
|
|
4551
4976
|
localMedia: LocalMediaState;
|
|
4552
4977
|
localParticipant: LocalParticipantState;
|
|
@@ -4587,6 +5012,7 @@ declare const selectNumParticipants: ((state: {
|
|
|
4587
5012
|
authorization: AuthorizationState;
|
|
4588
5013
|
chat: ChatState;
|
|
4589
5014
|
cloudRecording: CloudRecordingState;
|
|
5015
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4590
5016
|
deviceCredentials: DeviceCredentialsState;
|
|
4591
5017
|
localMedia: LocalMediaState;
|
|
4592
5018
|
localParticipant: LocalParticipantState;
|
|
@@ -4631,6 +5057,7 @@ declare const selectScreenshares: ((state: {
|
|
|
4631
5057
|
authorization: AuthorizationState;
|
|
4632
5058
|
chat: ChatState;
|
|
4633
5059
|
cloudRecording: CloudRecordingState;
|
|
5060
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4634
5061
|
deviceCredentials: DeviceCredentialsState;
|
|
4635
5062
|
localMedia: LocalMediaState;
|
|
4636
5063
|
localParticipant: LocalParticipantState;
|
|
@@ -4663,6 +5090,7 @@ declare const selectScreenshares: ((state: {
|
|
|
4663
5090
|
authorization: AuthorizationState;
|
|
4664
5091
|
chat: ChatState;
|
|
4665
5092
|
cloudRecording: CloudRecordingState;
|
|
5093
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4666
5094
|
deviceCredentials: DeviceCredentialsState;
|
|
4667
5095
|
localMedia: LocalMediaState;
|
|
4668
5096
|
localParticipant: LocalParticipantState;
|
|
@@ -4683,6 +5111,7 @@ declare const selectScreenshares: ((state: {
|
|
|
4683
5111
|
authorization: AuthorizationState;
|
|
4684
5112
|
chat: ChatState;
|
|
4685
5113
|
cloudRecording: CloudRecordingState;
|
|
5114
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4686
5115
|
deviceCredentials: DeviceCredentialsState;
|
|
4687
5116
|
localMedia: LocalMediaState;
|
|
4688
5117
|
localParticipant: LocalParticipantState;
|
|
@@ -4715,6 +5144,7 @@ declare const selectScreenshares: ((state: {
|
|
|
4715
5144
|
authorization: AuthorizationState;
|
|
4716
5145
|
chat: ChatState;
|
|
4717
5146
|
cloudRecording: CloudRecordingState;
|
|
5147
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4718
5148
|
deviceCredentials: DeviceCredentialsState;
|
|
4719
5149
|
localMedia: LocalMediaState;
|
|
4720
5150
|
localParticipant: LocalParticipantState;
|
|
@@ -4752,6 +5182,7 @@ declare const selectRemoteClientViews: ((state: {
|
|
|
4752
5182
|
authorization: AuthorizationState;
|
|
4753
5183
|
chat: ChatState;
|
|
4754
5184
|
cloudRecording: CloudRecordingState;
|
|
5185
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4755
5186
|
deviceCredentials: DeviceCredentialsState;
|
|
4756
5187
|
localMedia: LocalMediaState;
|
|
4757
5188
|
localParticipant: LocalParticipantState;
|
|
@@ -4784,6 +5215,7 @@ declare const selectRemoteClientViews: ((state: {
|
|
|
4784
5215
|
authorization: AuthorizationState;
|
|
4785
5216
|
chat: ChatState;
|
|
4786
5217
|
cloudRecording: CloudRecordingState;
|
|
5218
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4787
5219
|
deviceCredentials: DeviceCredentialsState;
|
|
4788
5220
|
localMedia: LocalMediaState;
|
|
4789
5221
|
localParticipant: LocalParticipantState;
|
|
@@ -4804,6 +5236,7 @@ declare const selectRemoteClientViews: ((state: {
|
|
|
4804
5236
|
authorization: AuthorizationState;
|
|
4805
5237
|
chat: ChatState;
|
|
4806
5238
|
cloudRecording: CloudRecordingState;
|
|
5239
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4807
5240
|
deviceCredentials: DeviceCredentialsState;
|
|
4808
5241
|
localMedia: LocalMediaState;
|
|
4809
5242
|
localParticipant: LocalParticipantState;
|
|
@@ -4824,6 +5257,7 @@ declare const selectRemoteClientViews: ((state: {
|
|
|
4824
5257
|
authorization: AuthorizationState;
|
|
4825
5258
|
chat: ChatState;
|
|
4826
5259
|
cloudRecording: CloudRecordingState;
|
|
5260
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4827
5261
|
deviceCredentials: DeviceCredentialsState;
|
|
4828
5262
|
localMedia: LocalMediaState;
|
|
4829
5263
|
localParticipant: LocalParticipantState;
|
|
@@ -4856,6 +5290,7 @@ declare const selectRemoteClientViews: ((state: {
|
|
|
4856
5290
|
authorization: AuthorizationState;
|
|
4857
5291
|
chat: ChatState;
|
|
4858
5292
|
cloudRecording: CloudRecordingState;
|
|
5293
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4859
5294
|
deviceCredentials: DeviceCredentialsState;
|
|
4860
5295
|
localMedia: LocalMediaState;
|
|
4861
5296
|
localParticipant: LocalParticipantState;
|
|
@@ -4893,6 +5328,7 @@ declare const selectAllClientViews: ((state: {
|
|
|
4893
5328
|
authorization: AuthorizationState;
|
|
4894
5329
|
chat: ChatState;
|
|
4895
5330
|
cloudRecording: CloudRecordingState;
|
|
5331
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4896
5332
|
deviceCredentials: DeviceCredentialsState;
|
|
4897
5333
|
localMedia: LocalMediaState;
|
|
4898
5334
|
localParticipant: LocalParticipantState;
|
|
@@ -4925,6 +5361,7 @@ declare const selectAllClientViews: ((state: {
|
|
|
4925
5361
|
authorization: AuthorizationState;
|
|
4926
5362
|
chat: ChatState;
|
|
4927
5363
|
cloudRecording: CloudRecordingState;
|
|
5364
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4928
5365
|
deviceCredentials: DeviceCredentialsState;
|
|
4929
5366
|
localMedia: LocalMediaState;
|
|
4930
5367
|
localParticipant: LocalParticipantState;
|
|
@@ -4957,6 +5394,7 @@ declare const selectAllClientViews: ((state: {
|
|
|
4957
5394
|
authorization: AuthorizationState;
|
|
4958
5395
|
chat: ChatState;
|
|
4959
5396
|
cloudRecording: CloudRecordingState;
|
|
5397
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4960
5398
|
deviceCredentials: DeviceCredentialsState;
|
|
4961
5399
|
localMedia: LocalMediaState;
|
|
4962
5400
|
localParticipant: LocalParticipantState;
|
|
@@ -4977,6 +5415,7 @@ declare const selectAllClientViews: ((state: {
|
|
|
4977
5415
|
authorization: AuthorizationState;
|
|
4978
5416
|
chat: ChatState;
|
|
4979
5417
|
cloudRecording: CloudRecordingState;
|
|
5418
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4980
5419
|
deviceCredentials: DeviceCredentialsState;
|
|
4981
5420
|
localMedia: LocalMediaState;
|
|
4982
5421
|
localParticipant: LocalParticipantState;
|
|
@@ -5005,6 +5444,7 @@ declare const selectAllClientViews: ((state: {
|
|
|
5005
5444
|
authorization: AuthorizationState;
|
|
5006
5445
|
chat: ChatState;
|
|
5007
5446
|
cloudRecording: CloudRecordingState;
|
|
5447
|
+
connectionMonitor: ConnectionMonitorState;
|
|
5008
5448
|
deviceCredentials: DeviceCredentialsState;
|
|
5009
5449
|
localMedia: LocalMediaState;
|
|
5010
5450
|
localParticipant: LocalParticipantState;
|
|
@@ -5037,6 +5477,7 @@ declare const selectAllClientViews: ((state: {
|
|
|
5037
5477
|
authorization: AuthorizationState;
|
|
5038
5478
|
chat: ChatState;
|
|
5039
5479
|
cloudRecording: CloudRecordingState;
|
|
5480
|
+
connectionMonitor: ConnectionMonitorState;
|
|
5040
5481
|
deviceCredentials: DeviceCredentialsState;
|
|
5041
5482
|
localMedia: LocalMediaState;
|
|
5042
5483
|
localParticipant: LocalParticipantState;
|
|
@@ -5057,6 +5498,7 @@ declare const selectAllClientViews: ((state: {
|
|
|
5057
5498
|
authorization: AuthorizationState;
|
|
5058
5499
|
chat: ChatState;
|
|
5059
5500
|
cloudRecording: CloudRecordingState;
|
|
5501
|
+
connectionMonitor: ConnectionMonitorState;
|
|
5060
5502
|
deviceCredentials: DeviceCredentialsState;
|
|
5061
5503
|
localMedia: LocalMediaState;
|
|
5062
5504
|
localParticipant: LocalParticipantState;
|
|
@@ -5077,6 +5519,7 @@ declare const selectAllClientViews: ((state: {
|
|
|
5077
5519
|
authorization: AuthorizationState;
|
|
5078
5520
|
chat: ChatState;
|
|
5079
5521
|
cloudRecording: CloudRecordingState;
|
|
5522
|
+
connectionMonitor: ConnectionMonitorState;
|
|
5080
5523
|
deviceCredentials: DeviceCredentialsState;
|
|
5081
5524
|
localMedia: LocalMediaState;
|
|
5082
5525
|
localParticipant: LocalParticipantState;
|
|
@@ -5109,6 +5552,7 @@ declare const selectAllClientViews: ((state: {
|
|
|
5109
5552
|
authorization: AuthorizationState;
|
|
5110
5553
|
chat: ChatState;
|
|
5111
5554
|
cloudRecording: CloudRecordingState;
|
|
5555
|
+
connectionMonitor: ConnectionMonitorState;
|
|
5112
5556
|
deviceCredentials: DeviceCredentialsState;
|
|
5113
5557
|
localMedia: LocalMediaState;
|
|
5114
5558
|
localParticipant: LocalParticipantState;
|
|
@@ -5191,6 +5635,7 @@ declare const selectShouldConnectRoom: ((state: {
|
|
|
5191
5635
|
authorization: AuthorizationState;
|
|
5192
5636
|
chat: ChatState;
|
|
5193
5637
|
cloudRecording: CloudRecordingState;
|
|
5638
|
+
connectionMonitor: ConnectionMonitorState;
|
|
5194
5639
|
deviceCredentials: DeviceCredentialsState;
|
|
5195
5640
|
localMedia: LocalMediaState;
|
|
5196
5641
|
localParticipant: LocalParticipantState;
|
|
@@ -5223,6 +5668,7 @@ declare const selectShouldConnectRoom: ((state: {
|
|
|
5223
5668
|
authorization: AuthorizationState;
|
|
5224
5669
|
chat: ChatState;
|
|
5225
5670
|
cloudRecording: CloudRecordingState;
|
|
5671
|
+
connectionMonitor: ConnectionMonitorState;
|
|
5226
5672
|
deviceCredentials: DeviceCredentialsState;
|
|
5227
5673
|
localMedia: LocalMediaState;
|
|
5228
5674
|
localParticipant: LocalParticipantState;
|
|
@@ -5243,6 +5689,7 @@ declare const selectShouldConnectRoom: ((state: {
|
|
|
5243
5689
|
authorization: AuthorizationState;
|
|
5244
5690
|
chat: ChatState;
|
|
5245
5691
|
cloudRecording: CloudRecordingState;
|
|
5692
|
+
connectionMonitor: ConnectionMonitorState;
|
|
5246
5693
|
deviceCredentials: DeviceCredentialsState;
|
|
5247
5694
|
localMedia: LocalMediaState;
|
|
5248
5695
|
localParticipant: LocalParticipantState;
|
|
@@ -5263,6 +5710,7 @@ declare const selectShouldConnectRoom: ((state: {
|
|
|
5263
5710
|
authorization: AuthorizationState;
|
|
5264
5711
|
chat: ChatState;
|
|
5265
5712
|
cloudRecording: CloudRecordingState;
|
|
5713
|
+
connectionMonitor: ConnectionMonitorState;
|
|
5266
5714
|
deviceCredentials: DeviceCredentialsState;
|
|
5267
5715
|
localMedia: LocalMediaState;
|
|
5268
5716
|
localParticipant: LocalParticipantState;
|
|
@@ -5283,6 +5731,7 @@ declare const selectShouldConnectRoom: ((state: {
|
|
|
5283
5731
|
authorization: AuthorizationState;
|
|
5284
5732
|
chat: ChatState;
|
|
5285
5733
|
cloudRecording: CloudRecordingState;
|
|
5734
|
+
connectionMonitor: ConnectionMonitorState;
|
|
5286
5735
|
deviceCredentials: DeviceCredentialsState;
|
|
5287
5736
|
localMedia: LocalMediaState;
|
|
5288
5737
|
localParticipant: LocalParticipantState;
|
|
@@ -5352,6 +5801,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5352
5801
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5353
5802
|
disconnectAll: () => void;
|
|
5354
5803
|
rtcStatsDisconnect: () => void;
|
|
5804
|
+
rtcStatsReconnect: () => void;
|
|
5355
5805
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5356
5806
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5357
5807
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5384,6 +5834,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5384
5834
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5385
5835
|
disconnectAll: () => void;
|
|
5386
5836
|
rtcStatsDisconnect: () => void;
|
|
5837
|
+
rtcStatsReconnect: () => void;
|
|
5387
5838
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5388
5839
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5389
5840
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5428,6 +5879,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5428
5879
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5429
5880
|
disconnectAll: () => void;
|
|
5430
5881
|
rtcStatsDisconnect: () => void;
|
|
5882
|
+
rtcStatsReconnect: () => void;
|
|
5431
5883
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5432
5884
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5433
5885
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5460,6 +5912,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5460
5912
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5461
5913
|
disconnectAll: () => void;
|
|
5462
5914
|
rtcStatsDisconnect: () => void;
|
|
5915
|
+
rtcStatsReconnect: () => void;
|
|
5463
5916
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5464
5917
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5465
5918
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5503,6 +5956,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5503
5956
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5504
5957
|
disconnectAll: () => void;
|
|
5505
5958
|
rtcStatsDisconnect: () => void;
|
|
5959
|
+
rtcStatsReconnect: () => void;
|
|
5506
5960
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5507
5961
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5508
5962
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5535,6 +5989,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5535
5989
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5536
5990
|
disconnectAll: () => void;
|
|
5537
5991
|
rtcStatsDisconnect: () => void;
|
|
5992
|
+
rtcStatsReconnect: () => void;
|
|
5538
5993
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5539
5994
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5540
5995
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5581,6 +6036,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5581
6036
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5582
6037
|
disconnectAll: () => void;
|
|
5583
6038
|
rtcStatsDisconnect: () => void;
|
|
6039
|
+
rtcStatsReconnect: () => void;
|
|
5584
6040
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5585
6041
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5586
6042
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5613,6 +6069,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5613
6069
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5614
6070
|
disconnectAll: () => void;
|
|
5615
6071
|
rtcStatsDisconnect: () => void;
|
|
6072
|
+
rtcStatsReconnect: () => void;
|
|
5616
6073
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5617
6074
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5618
6075
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5670,6 +6127,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5670
6127
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5671
6128
|
disconnectAll: () => void;
|
|
5672
6129
|
rtcStatsDisconnect: () => void;
|
|
6130
|
+
rtcStatsReconnect: () => void;
|
|
5673
6131
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5674
6132
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5675
6133
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5702,6 +6160,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5702
6160
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5703
6161
|
disconnectAll: () => void;
|
|
5704
6162
|
rtcStatsDisconnect: () => void;
|
|
6163
|
+
rtcStatsReconnect: () => void;
|
|
5705
6164
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5706
6165
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5707
6166
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5746,6 +6205,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5746
6205
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5747
6206
|
disconnectAll: () => void;
|
|
5748
6207
|
rtcStatsDisconnect: () => void;
|
|
6208
|
+
rtcStatsReconnect: () => void;
|
|
5749
6209
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5750
6210
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5751
6211
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5788,6 +6248,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5788
6248
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5789
6249
|
disconnectAll: () => void;
|
|
5790
6250
|
rtcStatsDisconnect: () => void;
|
|
6251
|
+
rtcStatsReconnect: () => void;
|
|
5791
6252
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5792
6253
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5793
6254
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5820,6 +6281,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5820
6281
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5821
6282
|
disconnectAll: () => void;
|
|
5822
6283
|
rtcStatsDisconnect: () => void;
|
|
6284
|
+
rtcStatsReconnect: () => void;
|
|
5823
6285
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5824
6286
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5825
6287
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5869,6 +6331,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5869
6331
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5870
6332
|
disconnectAll: () => void;
|
|
5871
6333
|
rtcStatsDisconnect: () => void;
|
|
6334
|
+
rtcStatsReconnect: () => void;
|
|
5872
6335
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5873
6336
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5874
6337
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5912,6 +6375,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5912
6375
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5913
6376
|
disconnectAll: () => void;
|
|
5914
6377
|
rtcStatsDisconnect: () => void;
|
|
6378
|
+
rtcStatsReconnect: () => void;
|
|
5915
6379
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5916
6380
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5917
6381
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5944,6 +6408,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5944
6408
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5945
6409
|
disconnectAll: () => void;
|
|
5946
6410
|
rtcStatsDisconnect: () => void;
|
|
6411
|
+
rtcStatsReconnect: () => void;
|
|
5947
6412
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5948
6413
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5949
6414
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5992,6 +6457,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5992
6457
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5993
6458
|
disconnectAll: () => void;
|
|
5994
6459
|
rtcStatsDisconnect: () => void;
|
|
6460
|
+
rtcStatsReconnect: () => void;
|
|
5995
6461
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5996
6462
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5997
6463
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -6036,6 +6502,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
6036
6502
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
6037
6503
|
disconnectAll: () => void;
|
|
6038
6504
|
rtcStatsDisconnect: () => void;
|
|
6505
|
+
rtcStatsReconnect: () => void;
|
|
6039
6506
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
6040
6507
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
6041
6508
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -6068,6 +6535,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
6068
6535
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
6069
6536
|
disconnectAll: () => void;
|
|
6070
6537
|
rtcStatsDisconnect: () => void;
|
|
6538
|
+
rtcStatsReconnect: () => void;
|
|
6071
6539
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
6072
6540
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
6073
6541
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -6112,6 +6580,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
6112
6580
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
6113
6581
|
disconnectAll: () => void;
|
|
6114
6582
|
rtcStatsDisconnect: () => void;
|
|
6583
|
+
rtcStatsReconnect: () => void;
|
|
6115
6584
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
6116
6585
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
6117
6586
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -6144,6 +6613,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
6144
6613
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
6145
6614
|
disconnectAll: () => void;
|
|
6146
6615
|
rtcStatsDisconnect: () => void;
|
|
6616
|
+
rtcStatsReconnect: () => void;
|
|
6147
6617
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
6148
6618
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
6149
6619
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -6191,6 +6661,7 @@ declare const selectShouldConnectRtc: ((state: {
|
|
|
6191
6661
|
authorization: AuthorizationState;
|
|
6192
6662
|
chat: ChatState;
|
|
6193
6663
|
cloudRecording: CloudRecordingState;
|
|
6664
|
+
connectionMonitor: ConnectionMonitorState;
|
|
6194
6665
|
deviceCredentials: DeviceCredentialsState;
|
|
6195
6666
|
localMedia: LocalMediaState;
|
|
6196
6667
|
localParticipant: LocalParticipantState;
|
|
@@ -6211,18 +6682,40 @@ declare const selectShouldConnectRtc: ((state: {
|
|
|
6211
6682
|
resultsCount: () => number;
|
|
6212
6683
|
resetResultsCount: () => void;
|
|
6213
6684
|
} & {
|
|
6214
|
-
resultFunc: (resultFuncArgs_0:
|
|
6215
|
-
memoizedResultFunc: ((resultFuncArgs_0:
|
|
6685
|
+
resultFunc: (resultFuncArgs_0: "inactive" | "ready" | "reconnecting", resultFuncArgs_1: boolean, resultFuncArgs_2: boolean, resultFuncArgs_3: boolean, resultFuncArgs_4: _whereby_com_media.ServerSocket | null) => boolean;
|
|
6686
|
+
memoizedResultFunc: ((resultFuncArgs_0: "inactive" | "ready" | "reconnecting", resultFuncArgs_1: boolean, resultFuncArgs_2: boolean, resultFuncArgs_3: boolean, resultFuncArgs_4: _whereby_com_media.ServerSocket | null) => boolean) & {
|
|
6216
6687
|
clearCache: () => void;
|
|
6217
6688
|
resultsCount: () => number;
|
|
6218
6689
|
resetResultsCount: () => void;
|
|
6219
6690
|
};
|
|
6220
6691
|
lastResult: () => boolean;
|
|
6221
|
-
dependencies: [(state: RootState) =>
|
|
6692
|
+
dependencies: [(state: RootState) => "inactive" | "ready" | "reconnecting", (state: {
|
|
6693
|
+
app: AppState;
|
|
6694
|
+
authorization: AuthorizationState;
|
|
6695
|
+
chat: ChatState;
|
|
6696
|
+
cloudRecording: CloudRecordingState;
|
|
6697
|
+
connectionMonitor: ConnectionMonitorState;
|
|
6698
|
+
deviceCredentials: DeviceCredentialsState;
|
|
6699
|
+
localMedia: LocalMediaState;
|
|
6700
|
+
localParticipant: LocalParticipantState;
|
|
6701
|
+
localScreenshare: LocalScreenshareState;
|
|
6702
|
+
notifications: NotificationsState;
|
|
6703
|
+
organization: OrganizationState;
|
|
6704
|
+
remoteParticipants: RemoteParticipantState;
|
|
6705
|
+
room: RoomState;
|
|
6706
|
+
roomConnection: RoomConnectionState;
|
|
6707
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
6708
|
+
rtcConnection: RtcConnectionState;
|
|
6709
|
+
signalConnection: SignalConnectionState;
|
|
6710
|
+
spotlights: SpotlightsState;
|
|
6711
|
+
streaming: StreamingState;
|
|
6712
|
+
waitingParticipants: WaitingParticipantsState;
|
|
6713
|
+
}) => boolean, (state: RootState) => boolean, (state: RootState) => boolean, (state: {
|
|
6222
6714
|
app: AppState;
|
|
6223
6715
|
authorization: AuthorizationState;
|
|
6224
6716
|
chat: ChatState;
|
|
6225
6717
|
cloudRecording: CloudRecordingState;
|
|
6718
|
+
connectionMonitor: ConnectionMonitorState;
|
|
6226
6719
|
deviceCredentials: DeviceCredentialsState;
|
|
6227
6720
|
localMedia: LocalMediaState;
|
|
6228
6721
|
localParticipant: LocalParticipantState;
|
|
@@ -6252,6 +6745,7 @@ declare const selectShouldInitializeRtc: ((state: {
|
|
|
6252
6745
|
authorization: AuthorizationState;
|
|
6253
6746
|
chat: ChatState;
|
|
6254
6747
|
cloudRecording: CloudRecordingState;
|
|
6748
|
+
connectionMonitor: ConnectionMonitorState;
|
|
6255
6749
|
deviceCredentials: DeviceCredentialsState;
|
|
6256
6750
|
localMedia: LocalMediaState;
|
|
6257
6751
|
localParticipant: LocalParticipantState;
|
|
@@ -6284,6 +6778,7 @@ declare const selectShouldInitializeRtc: ((state: {
|
|
|
6284
6778
|
authorization: AuthorizationState;
|
|
6285
6779
|
chat: ChatState;
|
|
6286
6780
|
cloudRecording: CloudRecordingState;
|
|
6781
|
+
connectionMonitor: ConnectionMonitorState;
|
|
6287
6782
|
deviceCredentials: DeviceCredentialsState;
|
|
6288
6783
|
localMedia: LocalMediaState;
|
|
6289
6784
|
localParticipant: LocalParticipantState;
|
|
@@ -6313,6 +6808,7 @@ declare const selectShouldDisconnectRtc: ((state: {
|
|
|
6313
6808
|
authorization: AuthorizationState;
|
|
6314
6809
|
chat: ChatState;
|
|
6315
6810
|
cloudRecording: CloudRecordingState;
|
|
6811
|
+
connectionMonitor: ConnectionMonitorState;
|
|
6316
6812
|
deviceCredentials: DeviceCredentialsState;
|
|
6317
6813
|
localMedia: LocalMediaState;
|
|
6318
6814
|
localParticipant: LocalParticipantState;
|
|
@@ -6345,6 +6841,7 @@ declare const selectShouldDisconnectRtc: ((state: {
|
|
|
6345
6841
|
authorization: AuthorizationState;
|
|
6346
6842
|
chat: ChatState;
|
|
6347
6843
|
cloudRecording: CloudRecordingState;
|
|
6844
|
+
connectionMonitor: ConnectionMonitorState;
|
|
6348
6845
|
deviceCredentials: DeviceCredentialsState;
|
|
6349
6846
|
localMedia: LocalMediaState;
|
|
6350
6847
|
localParticipant: LocalParticipantState;
|
|
@@ -6374,6 +6871,7 @@ declare const selectStreamsToAccept: ((state: {
|
|
|
6374
6871
|
authorization: AuthorizationState;
|
|
6375
6872
|
chat: ChatState;
|
|
6376
6873
|
cloudRecording: CloudRecordingState;
|
|
6874
|
+
connectionMonitor: ConnectionMonitorState;
|
|
6377
6875
|
deviceCredentials: DeviceCredentialsState;
|
|
6378
6876
|
localMedia: LocalMediaState;
|
|
6379
6877
|
localParticipant: LocalParticipantState;
|
|
@@ -6422,6 +6920,7 @@ declare const selectStreamsToAccept: ((state: {
|
|
|
6422
6920
|
authorization: AuthorizationState;
|
|
6423
6921
|
chat: ChatState;
|
|
6424
6922
|
cloudRecording: CloudRecordingState;
|
|
6923
|
+
connectionMonitor: ConnectionMonitorState;
|
|
6425
6924
|
deviceCredentials: DeviceCredentialsState;
|
|
6426
6925
|
localMedia: LocalMediaState;
|
|
6427
6926
|
localParticipant: LocalParticipantState;
|
|
@@ -6472,6 +6971,7 @@ declare const signalEvents: {
|
|
|
6472
6971
|
spotlightRemoved: _reduxjs_toolkit.ActionCreatorWithPayload<SpotlightRemovedEvent, string>;
|
|
6473
6972
|
streamingStopped: _reduxjs_toolkit.ActionCreatorWithoutPayload<string>;
|
|
6474
6973
|
videoEnabled: _reduxjs_toolkit.ActionCreatorWithPayload<VideoEnabledEvent, string>;
|
|
6974
|
+
videoEnableRequested: _reduxjs_toolkit.ActionCreatorWithPayload<VideoEnableRequestedEvent, string>;
|
|
6475
6975
|
liveTranscriptionStarted: _reduxjs_toolkit.ActionCreatorWithPayload<LiveTranscriptionStartedEvent, string>;
|
|
6476
6976
|
liveTranscriptionStopped: _reduxjs_toolkit.ActionCreatorWithPayload<LiveTranscriptionStoppedEvent, string>;
|
|
6477
6977
|
};
|
|
@@ -6505,6 +7005,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6505
7005
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
6506
7006
|
disconnectAll: () => void;
|
|
6507
7007
|
rtcStatsDisconnect: () => void;
|
|
7008
|
+
rtcStatsReconnect: () => void;
|
|
6508
7009
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
6509
7010
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
6510
7011
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -6612,6 +7113,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6612
7113
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
6613
7114
|
disconnectAll: () => void;
|
|
6614
7115
|
rtcStatsDisconnect: () => void;
|
|
7116
|
+
rtcStatsReconnect: () => void;
|
|
6615
7117
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
6616
7118
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
6617
7119
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -6720,6 +7222,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6720
7222
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
6721
7223
|
disconnectAll: () => void;
|
|
6722
7224
|
rtcStatsDisconnect: () => void;
|
|
7225
|
+
rtcStatsReconnect: () => void;
|
|
6723
7226
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
6724
7227
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
6725
7228
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -6833,6 +7336,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6833
7336
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
6834
7337
|
disconnectAll: () => void;
|
|
6835
7338
|
rtcStatsDisconnect: () => void;
|
|
7339
|
+
rtcStatsReconnect: () => void;
|
|
6836
7340
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
6837
7341
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
6838
7342
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -6919,112 +7423,10 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6919
7423
|
getReconnectThreshold: () => number | undefined;
|
|
6920
7424
|
} | null;
|
|
6921
7425
|
}) => {
|
|
7426
|
+
socket: null;
|
|
6922
7427
|
deviceIdentified: false;
|
|
6923
7428
|
status: "disconnected";
|
|
6924
7429
|
isIdentifyingDevice: boolean;
|
|
6925
|
-
socket: {
|
|
6926
|
-
_socket: any;
|
|
6927
|
-
_reconnectManager?: {
|
|
6928
|
-
_socket: any;
|
|
6929
|
-
_clients: any;
|
|
6930
|
-
_signalDisconnectTime?: number | undefined;
|
|
6931
|
-
rtcManager?: {
|
|
6932
|
-
acceptNewStream: ({ activeBreakout, clientId, shouldAddLocalVideo, streamId, enforceTurnProtocol, }: {
|
|
6933
|
-
activeBreakout: boolean;
|
|
6934
|
-
clientId: string;
|
|
6935
|
-
shouldAddLocalVideo: boolean;
|
|
6936
|
-
streamId: string;
|
|
6937
|
-
enforceTurnProtocol?: _whereby_com_media.TurnTransportProtocol | undefined;
|
|
6938
|
-
}) => void;
|
|
6939
|
-
addNewStream: (streamId: string, stream: MediaStream, isAudioEnabled: boolean, isVideoEnabled: boolean) => void;
|
|
6940
|
-
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
6941
|
-
disconnectAll: () => void;
|
|
6942
|
-
rtcStatsDisconnect: () => void;
|
|
6943
|
-
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
6944
|
-
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
6945
|
-
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
6946
|
-
updateStreamResolution: (streamId: string, ignored: null, resolution: {
|
|
6947
|
-
width: number;
|
|
6948
|
-
height: number;
|
|
6949
|
-
}) => void;
|
|
6950
|
-
sendStatsCustomEvent: (eventName: string, data: unknown) => void;
|
|
6951
|
-
isInitializedWith: ({ selfId, roomName, isSfu }: {
|
|
6952
|
-
selfId: string;
|
|
6953
|
-
roomName: string;
|
|
6954
|
-
isSfu: boolean;
|
|
6955
|
-
}) => boolean;
|
|
6956
|
-
setEventClaim?: ((eventClaim: string) => void) | undefined;
|
|
6957
|
-
hasClient: (clientId: string) => boolean;
|
|
6958
|
-
} | undefined;
|
|
6959
|
-
metrics: {
|
|
6960
|
-
roomJoinedLate: number;
|
|
6961
|
-
pendingClientCanceled: number;
|
|
6962
|
-
evaluationFailed: number;
|
|
6963
|
-
roomJoined: number;
|
|
6964
|
-
};
|
|
6965
|
-
reconnectThresholdInMs: number;
|
|
6966
|
-
_onRoomJoined: (payload: any) => Promise<void>;
|
|
6967
|
-
_onClientLeft: (payload: any) => void;
|
|
6968
|
-
_onPendingClientLeft: (payload: any) => void;
|
|
6969
|
-
_onNewClient: (payload: any) => void;
|
|
6970
|
-
_abortIfNotActive: (payload: any) => Promise<void>;
|
|
6971
|
-
_checkIsActive: (clientId: string) => Promise<boolean>;
|
|
6972
|
-
_isClientMediaActive: (stats: any, clientId: string) => boolean;
|
|
6973
|
-
_onAudioEnabled: (payload: any) => void;
|
|
6974
|
-
_onVideoEnabled: (payload: any) => void;
|
|
6975
|
-
_onScreenshareChanged: (payload: any, action: boolean) => void;
|
|
6976
|
-
_hasClientStateChanged: ({ clientId, webcam, mic, screenShare, }: {
|
|
6977
|
-
clientId: string;
|
|
6978
|
-
webcam: boolean;
|
|
6979
|
-
mic: boolean;
|
|
6980
|
-
screenShare: boolean;
|
|
6981
|
-
}) => boolean;
|
|
6982
|
-
_addClientToState: (newClient: any) => void;
|
|
6983
|
-
_wasClientSendingMedia: (clientId: string) => any;
|
|
6984
|
-
_getPendingClientsByDeviceId: (deviceId: string) => unknown[];
|
|
6985
|
-
_resetClientState: (payload: any) => void;
|
|
6986
|
-
[EventEmitter.captureRejectionSymbol]?: (<K>(error: Error, event: string | symbol, ...args: any[]) => void) | undefined;
|
|
6987
|
-
addListener: <K_1>(eventName: string | symbol, listener: (...args: any[]) => void) => _whereby_com_media.ReconnectManager;
|
|
6988
|
-
on: <K_2>(eventName: string | symbol, listener: (...args: any[]) => void) => _whereby_com_media.ReconnectManager;
|
|
6989
|
-
once: <K_3>(eventName: string | symbol, listener: (...args: any[]) => void) => _whereby_com_media.ReconnectManager;
|
|
6990
|
-
removeListener: <K_4>(eventName: string | symbol, listener: (...args: any[]) => void) => _whereby_com_media.ReconnectManager;
|
|
6991
|
-
off: <K_5>(eventName: string | symbol, listener: (...args: any[]) => void) => _whereby_com_media.ReconnectManager;
|
|
6992
|
-
removeAllListeners: (eventName?: string | symbol | undefined) => _whereby_com_media.ReconnectManager;
|
|
6993
|
-
setMaxListeners: (n: number) => _whereby_com_media.ReconnectManager;
|
|
6994
|
-
getMaxListeners: () => number;
|
|
6995
|
-
listeners: <K_6>(eventName: string | symbol) => Function[];
|
|
6996
|
-
rawListeners: <K_7>(eventName: string | symbol) => Function[];
|
|
6997
|
-
emit: <K_8>(eventName: string | symbol, ...args: any[]) => boolean;
|
|
6998
|
-
listenerCount: <K_9>(eventName: string | symbol, listener?: Function | undefined) => number;
|
|
6999
|
-
prependListener: <K_10>(eventName: string | symbol, listener: (...args: any[]) => void) => _whereby_com_media.ReconnectManager;
|
|
7000
|
-
prependOnceListener: <K_11>(eventName: string | symbol, listener: (...args: any[]) => void) => _whereby_com_media.ReconnectManager;
|
|
7001
|
-
eventNames: () => (string | symbol)[];
|
|
7002
|
-
} | null | undefined;
|
|
7003
|
-
noopKeepaliveInterval: any;
|
|
7004
|
-
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
7005
|
-
disconnectTimestamp: number | undefined;
|
|
7006
|
-
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
7007
|
-
connect: () => void;
|
|
7008
|
-
disconnect: () => void;
|
|
7009
|
-
disconnectOnConnect: () => void;
|
|
7010
|
-
emit: (eventName: string, ...args: any[]) => void;
|
|
7011
|
-
emitIfConnected: (eventName: string, data: any) => void;
|
|
7012
|
-
getTransport: () => any;
|
|
7013
|
-
getManager: () => any;
|
|
7014
|
-
isConnecting: () => any;
|
|
7015
|
-
isConnected: () => any;
|
|
7016
|
-
on: (eventName: string, handler: Function) => () => void;
|
|
7017
|
-
once: (eventName: string, handler: Function) => void;
|
|
7018
|
-
off: (eventName: string, handler: Function) => void;
|
|
7019
|
-
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
7020
|
-
getGlitchFreeMetrics: () => {
|
|
7021
|
-
roomJoinedLate: number;
|
|
7022
|
-
pendingClientCanceled: number;
|
|
7023
|
-
evaluationFailed: number;
|
|
7024
|
-
roomJoined: number;
|
|
7025
|
-
} | undefined;
|
|
7026
|
-
getReconnectThreshold: () => number | undefined;
|
|
7027
|
-
} | null;
|
|
7028
7430
|
};
|
|
7029
7431
|
socketReconnecting: (state: {
|
|
7030
7432
|
deviceIdentified: boolean;
|
|
@@ -7048,6 +7450,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7048
7450
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
7049
7451
|
disconnectAll: () => void;
|
|
7050
7452
|
rtcStatsDisconnect: () => void;
|
|
7453
|
+
rtcStatsReconnect: () => void;
|
|
7051
7454
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
7052
7455
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
7053
7456
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -7155,6 +7558,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7155
7558
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
7156
7559
|
disconnectAll: () => void;
|
|
7157
7560
|
rtcStatsDisconnect: () => void;
|
|
7561
|
+
rtcStatsReconnect: () => void;
|
|
7158
7562
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
7159
7563
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
7160
7564
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -7263,6 +7667,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7263
7667
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
7264
7668
|
disconnectAll: () => void;
|
|
7265
7669
|
rtcStatsDisconnect: () => void;
|
|
7670
|
+
rtcStatsReconnect: () => void;
|
|
7266
7671
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
7267
7672
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
7268
7673
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -7370,6 +7775,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7370
7775
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
7371
7776
|
disconnectAll: () => void;
|
|
7372
7777
|
rtcStatsDisconnect: () => void;
|
|
7778
|
+
rtcStatsReconnect: () => void;
|
|
7373
7779
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
7374
7780
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
7375
7781
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -7478,6 +7884,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7478
7884
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
7479
7885
|
disconnectAll: () => void;
|
|
7480
7886
|
rtcStatsDisconnect: () => void;
|
|
7887
|
+
rtcStatsReconnect: () => void;
|
|
7481
7888
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
7482
7889
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
7483
7890
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -7585,6 +7992,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7585
7992
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
7586
7993
|
disconnectAll: () => void;
|
|
7587
7994
|
rtcStatsDisconnect: () => void;
|
|
7995
|
+
rtcStatsReconnect: () => void;
|
|
7588
7996
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
7589
7997
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
7590
7998
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -7693,6 +8101,7 @@ declare const selectShouldConnectSignal: ((state: {
|
|
|
7693
8101
|
authorization: AuthorizationState;
|
|
7694
8102
|
chat: ChatState;
|
|
7695
8103
|
cloudRecording: CloudRecordingState;
|
|
8104
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7696
8105
|
deviceCredentials: DeviceCredentialsState;
|
|
7697
8106
|
localMedia: LocalMediaState;
|
|
7698
8107
|
localParticipant: LocalParticipantState;
|
|
@@ -7725,6 +8134,7 @@ declare const selectShouldConnectSignal: ((state: {
|
|
|
7725
8134
|
authorization: AuthorizationState;
|
|
7726
8135
|
chat: ChatState;
|
|
7727
8136
|
cloudRecording: CloudRecordingState;
|
|
8137
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7728
8138
|
deviceCredentials: DeviceCredentialsState;
|
|
7729
8139
|
localMedia: LocalMediaState;
|
|
7730
8140
|
localParticipant: LocalParticipantState;
|
|
@@ -7754,6 +8164,7 @@ declare const selectShouldIdentifyDevice: ((state: {
|
|
|
7754
8164
|
authorization: AuthorizationState;
|
|
7755
8165
|
chat: ChatState;
|
|
7756
8166
|
cloudRecording: CloudRecordingState;
|
|
8167
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7757
8168
|
deviceCredentials: DeviceCredentialsState;
|
|
7758
8169
|
localMedia: LocalMediaState;
|
|
7759
8170
|
localParticipant: LocalParticipantState;
|
|
@@ -7786,6 +8197,7 @@ declare const selectShouldIdentifyDevice: ((state: {
|
|
|
7786
8197
|
authorization: AuthorizationState;
|
|
7787
8198
|
chat: ChatState;
|
|
7788
8199
|
cloudRecording: CloudRecordingState;
|
|
8200
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7789
8201
|
deviceCredentials: DeviceCredentialsState;
|
|
7790
8202
|
localMedia: LocalMediaState;
|
|
7791
8203
|
localParticipant: LocalParticipantState;
|
|
@@ -7879,6 +8291,7 @@ declare const selectIsLocalParticipantSpotlighted: ((state: {
|
|
|
7879
8291
|
authorization: AuthorizationState;
|
|
7880
8292
|
chat: ChatState;
|
|
7881
8293
|
cloudRecording: CloudRecordingState;
|
|
8294
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7882
8295
|
deviceCredentials: DeviceCredentialsState;
|
|
7883
8296
|
localMedia: LocalMediaState;
|
|
7884
8297
|
localParticipant: LocalParticipantState;
|
|
@@ -7917,6 +8330,7 @@ declare const selectIsLocalParticipantSpotlighted: ((state: {
|
|
|
7917
8330
|
authorization: AuthorizationState;
|
|
7918
8331
|
chat: ChatState;
|
|
7919
8332
|
cloudRecording: CloudRecordingState;
|
|
8333
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7920
8334
|
deviceCredentials: DeviceCredentialsState;
|
|
7921
8335
|
localMedia: LocalMediaState;
|
|
7922
8336
|
localParticipant: LocalParticipantState;
|
|
@@ -7949,6 +8363,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
7949
8363
|
authorization: AuthorizationState;
|
|
7950
8364
|
chat: ChatState;
|
|
7951
8365
|
cloudRecording: CloudRecordingState;
|
|
8366
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7952
8367
|
deviceCredentials: DeviceCredentialsState;
|
|
7953
8368
|
localMedia: LocalMediaState;
|
|
7954
8369
|
localParticipant: LocalParticipantState;
|
|
@@ -7987,6 +8402,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
7987
8402
|
authorization: AuthorizationState;
|
|
7988
8403
|
chat: ChatState;
|
|
7989
8404
|
cloudRecording: CloudRecordingState;
|
|
8405
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7990
8406
|
deviceCredentials: DeviceCredentialsState;
|
|
7991
8407
|
localMedia: LocalMediaState;
|
|
7992
8408
|
localParticipant: LocalParticipantState;
|
|
@@ -8019,6 +8435,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8019
8435
|
authorization: AuthorizationState;
|
|
8020
8436
|
chat: ChatState;
|
|
8021
8437
|
cloudRecording: CloudRecordingState;
|
|
8438
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8022
8439
|
deviceCredentials: DeviceCredentialsState;
|
|
8023
8440
|
localMedia: LocalMediaState;
|
|
8024
8441
|
localParticipant: LocalParticipantState;
|
|
@@ -8051,6 +8468,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8051
8468
|
authorization: AuthorizationState;
|
|
8052
8469
|
chat: ChatState;
|
|
8053
8470
|
cloudRecording: CloudRecordingState;
|
|
8471
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8054
8472
|
deviceCredentials: DeviceCredentialsState;
|
|
8055
8473
|
localMedia: LocalMediaState;
|
|
8056
8474
|
localParticipant: LocalParticipantState;
|
|
@@ -8071,6 +8489,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8071
8489
|
authorization: AuthorizationState;
|
|
8072
8490
|
chat: ChatState;
|
|
8073
8491
|
cloudRecording: CloudRecordingState;
|
|
8492
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8074
8493
|
deviceCredentials: DeviceCredentialsState;
|
|
8075
8494
|
localMedia: LocalMediaState;
|
|
8076
8495
|
localParticipant: LocalParticipantState;
|
|
@@ -8099,6 +8518,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8099
8518
|
authorization: AuthorizationState;
|
|
8100
8519
|
chat: ChatState;
|
|
8101
8520
|
cloudRecording: CloudRecordingState;
|
|
8521
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8102
8522
|
deviceCredentials: DeviceCredentialsState;
|
|
8103
8523
|
localMedia: LocalMediaState;
|
|
8104
8524
|
localParticipant: LocalParticipantState;
|
|
@@ -8131,6 +8551,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8131
8551
|
authorization: AuthorizationState;
|
|
8132
8552
|
chat: ChatState;
|
|
8133
8553
|
cloudRecording: CloudRecordingState;
|
|
8554
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8134
8555
|
deviceCredentials: DeviceCredentialsState;
|
|
8135
8556
|
localMedia: LocalMediaState;
|
|
8136
8557
|
localParticipant: LocalParticipantState;
|
|
@@ -8151,6 +8572,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8151
8572
|
authorization: AuthorizationState;
|
|
8152
8573
|
chat: ChatState;
|
|
8153
8574
|
cloudRecording: CloudRecordingState;
|
|
8575
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8154
8576
|
deviceCredentials: DeviceCredentialsState;
|
|
8155
8577
|
localMedia: LocalMediaState;
|
|
8156
8578
|
localParticipant: LocalParticipantState;
|
|
@@ -8171,6 +8593,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8171
8593
|
authorization: AuthorizationState;
|
|
8172
8594
|
chat: ChatState;
|
|
8173
8595
|
cloudRecording: CloudRecordingState;
|
|
8596
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8174
8597
|
deviceCredentials: DeviceCredentialsState;
|
|
8175
8598
|
localMedia: LocalMediaState;
|
|
8176
8599
|
localParticipant: LocalParticipantState;
|
|
@@ -8203,6 +8626,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8203
8626
|
authorization: AuthorizationState;
|
|
8204
8627
|
chat: ChatState;
|
|
8205
8628
|
cloudRecording: CloudRecordingState;
|
|
8629
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8206
8630
|
deviceCredentials: DeviceCredentialsState;
|
|
8207
8631
|
localMedia: LocalMediaState;
|
|
8208
8632
|
localParticipant: LocalParticipantState;
|
|
@@ -8267,6 +8691,7 @@ declare const appReducer: redux.Reducer<{
|
|
|
8267
8691
|
authorization: AuthorizationState;
|
|
8268
8692
|
chat: ChatState;
|
|
8269
8693
|
cloudRecording: CloudRecordingState;
|
|
8694
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8270
8695
|
deviceCredentials: DeviceCredentialsState;
|
|
8271
8696
|
localMedia: LocalMediaState;
|
|
8272
8697
|
localParticipant: LocalParticipantState;
|
|
@@ -8287,6 +8712,7 @@ declare const appReducer: redux.Reducer<{
|
|
|
8287
8712
|
authorization: AuthorizationState | undefined;
|
|
8288
8713
|
chat: ChatState | undefined;
|
|
8289
8714
|
cloudRecording: CloudRecordingState | undefined;
|
|
8715
|
+
connectionMonitor: ConnectionMonitorState | undefined;
|
|
8290
8716
|
deviceCredentials: DeviceCredentialsState | undefined;
|
|
8291
8717
|
localMedia: LocalMediaState | undefined;
|
|
8292
8718
|
localParticipant: LocalParticipantState | undefined;
|
|
@@ -8310,6 +8736,7 @@ declare const createStore: ({ preloadedState, injectServices, }: {
|
|
|
8310
8736
|
authorization: AuthorizationState;
|
|
8311
8737
|
chat: ChatState;
|
|
8312
8738
|
cloudRecording: CloudRecordingState;
|
|
8739
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8313
8740
|
deviceCredentials: DeviceCredentialsState;
|
|
8314
8741
|
localMedia: LocalMediaState;
|
|
8315
8742
|
localParticipant: LocalParticipantState;
|
|
@@ -8332,6 +8759,7 @@ declare const createStore: ({ preloadedState, injectServices, }: {
|
|
|
8332
8759
|
authorization: AuthorizationState;
|
|
8333
8760
|
chat: ChatState;
|
|
8334
8761
|
cloudRecording: CloudRecordingState;
|
|
8762
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8335
8763
|
deviceCredentials: DeviceCredentialsState;
|
|
8336
8764
|
localMedia: LocalMediaState;
|
|
8337
8765
|
localParticipant: LocalParticipantState;
|
|
@@ -8353,6 +8781,7 @@ declare const createStore: ({ preloadedState, injectServices, }: {
|
|
|
8353
8781
|
authorization: AuthorizationState;
|
|
8354
8782
|
chat: ChatState;
|
|
8355
8783
|
cloudRecording: CloudRecordingState;
|
|
8784
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8356
8785
|
deviceCredentials: DeviceCredentialsState;
|
|
8357
8786
|
localMedia: LocalMediaState;
|
|
8358
8787
|
localParticipant: LocalParticipantState;
|
|
@@ -8396,6 +8825,9 @@ type AppThunk<R = void> = (dispatch: AppDispatch, getState: () => RootState, ext
|
|
|
8396
8825
|
}) => R;
|
|
8397
8826
|
declare function createAppThunk<A = void>(thunk: (args: A) => AppThunk): (args: A) => AppThunk;
|
|
8398
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>;
|
|
8399
8831
|
|
|
8400
8832
|
declare const listenerMiddleware: _reduxjs_toolkit.ListenerMiddlewareInstance<unknown, redux_thunk.ThunkDispatch<unknown, unknown, redux.UnknownAction>, unknown>;
|
|
8401
8833
|
type AppStartListening = TypedStartListening<RootState, AppDispatch, ReturnType<typeof createServices>>;
|
|
@@ -8405,6 +8837,7 @@ declare const addAppListener: TypedAddListener<{
|
|
|
8405
8837
|
authorization: AuthorizationState;
|
|
8406
8838
|
chat: ChatState;
|
|
8407
8839
|
cloudRecording: CloudRecordingState;
|
|
8840
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8408
8841
|
deviceCredentials: DeviceCredentialsState;
|
|
8409
8842
|
localMedia: LocalMediaState;
|
|
8410
8843
|
localParticipant: LocalParticipantState;
|
|
@@ -8425,6 +8858,7 @@ declare const addAppListener: TypedAddListener<{
|
|
|
8425
8858
|
authorization: AuthorizationState;
|
|
8426
8859
|
chat: ChatState;
|
|
8427
8860
|
cloudRecording: CloudRecordingState;
|
|
8861
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8428
8862
|
deviceCredentials: DeviceCredentialsState;
|
|
8429
8863
|
localMedia: LocalMediaState;
|
|
8430
8864
|
localParticipant: LocalParticipantState;
|
|
@@ -8456,6 +8890,7 @@ declare const createReactor: <Selectors extends Selector<{
|
|
|
8456
8890
|
authorization: AuthorizationState;
|
|
8457
8891
|
chat: ChatState;
|
|
8458
8892
|
cloudRecording: CloudRecordingState;
|
|
8893
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8459
8894
|
deviceCredentials: DeviceCredentialsState;
|
|
8460
8895
|
localMedia: LocalMediaState;
|
|
8461
8896
|
localParticipant: LocalParticipantState;
|
|
@@ -8493,4 +8928,4 @@ declare function parseRoomUrlAndSubdomain(roomAttribute?: string, subdomainAttri
|
|
|
8493
8928
|
|
|
8494
8929
|
declare function parseUnverifiedRoomKeyData(roomKey: string): any;
|
|
8495
8930
|
|
|
8496
|
-
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 };
|
|
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 };
|