@whereby.com/core 0.23.1 → 0.24.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 +17 -8
- package/dist/index.d.cts +162 -28
- package/dist/index.d.mts +162 -28
- package/dist/index.d.ts +162 -28
- package/dist/index.mjs +17 -8
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -3,7 +3,7 @@ import { PayloadAction, ActionCreatorWithPayload, AsyncThunkPayloadCreator, Asyn
|
|
|
3
3
|
import * as redux_thunk from 'redux-thunk';
|
|
4
4
|
import * as redux from 'redux';
|
|
5
5
|
import * as _whereby_com_media from '@whereby.com/media';
|
|
6
|
-
import { RoleName, ChatMessage as ChatMessage$1, getDeviceData, RtcStreamAddedPayload, AudioEnableRequest, RtcEvents, RtcManager, RtcManagerDispatcher, RtcManagerCreatedPayload, AudioEnabledEvent, AudioEnableRequestedEvent, ClientLeftEvent, ClientKickedEvent, ClientMetadataReceivedEvent, CloudRecordingStartedEvent, KnockerLeftEvent, KnockAcceptedEvent, KnockRejectedEvent, NewClientEvent, RoomJoinedEvent, RoomKnockedEvent, RoomLockedEvent, RoomSessionEndedEvent, ScreenshareStartedEvent, ScreenshareStoppedEvent, SpotlightAddedEvent, SpotlightRemovedEvent, VideoEnabledEvent, LiveTranscriptionStartedEvent, LiveTranscriptionStoppedEvent, ServerSocket, Spotlight } from '@whereby.com/media';
|
|
6
|
+
import { RoleName, ChatMessage as ChatMessage$1, getDeviceData, RtcStreamAddedPayload, AudioEnableRequest, RtcEvents, RtcManager, RtcManagerDispatcher, RtcManagerCreatedPayload, AudioEnabledEvent, AudioEnableRequestedEvent, ClientLeftEvent, ClientKickedEvent, ClientMetadataReceivedEvent, ClientUnableToJoinEvent, CloudRecordingStartedEvent, KnockerLeftEvent, KnockAcceptedEvent, KnockRejectedEvent, NewClientEvent, RoomJoinedEvent, RoomKnockedEvent, RoomLockedEvent, RoomSessionEndedEvent, ScreenshareStartedEvent, ScreenshareStoppedEvent, SpotlightAddedEvent, SpotlightRemovedEvent, VideoEnabledEvent, LiveTranscriptionStartedEvent, LiveTranscriptionStoppedEvent, ServerSocket, Spotlight } from '@whereby.com/media';
|
|
7
7
|
import * as reselect from 'reselect';
|
|
8
8
|
import { AsyncThunkFulfilledActionCreator } from '@reduxjs/toolkit/dist/createAsyncThunk';
|
|
9
9
|
import { EventEmitter as EventEmitter$1 } from 'events';
|
|
@@ -336,6 +336,9 @@ type ChatMessageEvent = NotificationEvent<"chatMessageReceived", ChatMessageEven
|
|
|
336
336
|
interface SignalStatusEventProps {
|
|
337
337
|
}
|
|
338
338
|
type SignalStatusEvent = NotificationEvent<"signalTrouble" | "signalOk", SignalStatusEventProps>;
|
|
339
|
+
interface SignalClientEventProps {
|
|
340
|
+
}
|
|
341
|
+
type SignalClientEvent = NotificationEvent<"clientUnableToJoinFullRoom", SignalClientEventProps>;
|
|
339
342
|
interface StickyReactionEventProps {
|
|
340
343
|
client: RemoteParticipant;
|
|
341
344
|
stickyReaction?: {
|
|
@@ -352,6 +355,7 @@ type NotificationEventTypes = {
|
|
|
352
355
|
["remoteHandLowered"]: StickyReactionEvent;
|
|
353
356
|
["signalTrouble"]: SignalStatusEvent;
|
|
354
357
|
["signalOk"]: SignalStatusEvent;
|
|
358
|
+
["clientUnableToJoinFullRoom"]: SignalClientEvent;
|
|
355
359
|
};
|
|
356
360
|
type NotificationEvents = NotificationEventTypes[keyof NotificationEventTypes];
|
|
357
361
|
type NotificationEventMap = {
|
|
@@ -377,6 +381,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
377
381
|
remoteHandLowered: StickyReactionEvent;
|
|
378
382
|
signalTrouble: SignalStatusEvent;
|
|
379
383
|
signalOk: SignalStatusEvent;
|
|
384
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
380
385
|
} | K | "*", ...args: K extends keyof {
|
|
381
386
|
requestAudioEnable: RequestAudioEvent;
|
|
382
387
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -385,6 +390,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
385
390
|
remoteHandLowered: StickyReactionEvent;
|
|
386
391
|
signalTrouble: SignalStatusEvent;
|
|
387
392
|
signalOk: SignalStatusEvent;
|
|
393
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
388
394
|
} | "*" ? NotificationEventMap[K] : never) => void) | undefined;
|
|
389
395
|
addListener: <K_1>(eventName: keyof {
|
|
390
396
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -394,6 +400,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
394
400
|
remoteHandLowered: StickyReactionEvent;
|
|
395
401
|
signalTrouble: SignalStatusEvent;
|
|
396
402
|
signalOk: SignalStatusEvent;
|
|
403
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
397
404
|
} | "*" | K_1, listener: K_1 extends keyof {
|
|
398
405
|
requestAudioEnable: RequestAudioEvent;
|
|
399
406
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -402,6 +409,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
402
409
|
remoteHandLowered: StickyReactionEvent;
|
|
403
410
|
signalTrouble: SignalStatusEvent;
|
|
404
411
|
signalOk: SignalStatusEvent;
|
|
412
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
405
413
|
} | "*" ? NotificationEventMap[K_1] extends unknown[] ? (...args: NotificationEventMap[K_1]) => void : never : never) => NotificationsEventEmitter;
|
|
406
414
|
on: <K_2>(eventName: keyof {
|
|
407
415
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -411,6 +419,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
411
419
|
remoteHandLowered: StickyReactionEvent;
|
|
412
420
|
signalTrouble: SignalStatusEvent;
|
|
413
421
|
signalOk: SignalStatusEvent;
|
|
422
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
414
423
|
} | "*" | K_2, listener: K_2 extends keyof {
|
|
415
424
|
requestAudioEnable: RequestAudioEvent;
|
|
416
425
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -419,6 +428,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
419
428
|
remoteHandLowered: StickyReactionEvent;
|
|
420
429
|
signalTrouble: SignalStatusEvent;
|
|
421
430
|
signalOk: SignalStatusEvent;
|
|
431
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
422
432
|
} | "*" ? NotificationEventMap[K_2] extends unknown[] ? (...args: NotificationEventMap[K_2]) => void : never : never) => NotificationsEventEmitter;
|
|
423
433
|
once: <K_3>(eventName: keyof {
|
|
424
434
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -428,6 +438,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
428
438
|
remoteHandLowered: StickyReactionEvent;
|
|
429
439
|
signalTrouble: SignalStatusEvent;
|
|
430
440
|
signalOk: SignalStatusEvent;
|
|
441
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
431
442
|
} | "*" | K_3, listener: K_3 extends keyof {
|
|
432
443
|
requestAudioEnable: RequestAudioEvent;
|
|
433
444
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -436,6 +447,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
436
447
|
remoteHandLowered: StickyReactionEvent;
|
|
437
448
|
signalTrouble: SignalStatusEvent;
|
|
438
449
|
signalOk: SignalStatusEvent;
|
|
450
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
439
451
|
} | "*" ? NotificationEventMap[K_3] extends unknown[] ? (...args: NotificationEventMap[K_3]) => void : never : never) => NotificationsEventEmitter;
|
|
440
452
|
removeListener: <K_4>(eventName: keyof {
|
|
441
453
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -445,6 +457,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
445
457
|
remoteHandLowered: StickyReactionEvent;
|
|
446
458
|
signalTrouble: SignalStatusEvent;
|
|
447
459
|
signalOk: SignalStatusEvent;
|
|
460
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
448
461
|
} | "*" | K_4, listener: K_4 extends keyof {
|
|
449
462
|
requestAudioEnable: RequestAudioEvent;
|
|
450
463
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -453,6 +466,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
453
466
|
remoteHandLowered: StickyReactionEvent;
|
|
454
467
|
signalTrouble: SignalStatusEvent;
|
|
455
468
|
signalOk: SignalStatusEvent;
|
|
469
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
456
470
|
} | "*" ? NotificationEventMap[K_4] extends unknown[] ? (...args: NotificationEventMap[K_4]) => void : never : never) => NotificationsEventEmitter;
|
|
457
471
|
off: <K_5>(eventName: keyof {
|
|
458
472
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -462,6 +476,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
462
476
|
remoteHandLowered: StickyReactionEvent;
|
|
463
477
|
signalTrouble: SignalStatusEvent;
|
|
464
478
|
signalOk: SignalStatusEvent;
|
|
479
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
465
480
|
} | "*" | K_5, listener: K_5 extends keyof {
|
|
466
481
|
requestAudioEnable: RequestAudioEvent;
|
|
467
482
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -470,6 +485,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
470
485
|
remoteHandLowered: StickyReactionEvent;
|
|
471
486
|
signalTrouble: SignalStatusEvent;
|
|
472
487
|
signalOk: SignalStatusEvent;
|
|
488
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
473
489
|
} | "*" ? NotificationEventMap[K_5] extends unknown[] ? (...args: NotificationEventMap[K_5]) => void : never : never) => NotificationsEventEmitter;
|
|
474
490
|
removeAllListeners: (eventName?: unknown) => NotificationsEventEmitter;
|
|
475
491
|
setMaxListeners: (n: number) => NotificationsEventEmitter;
|
|
@@ -482,6 +498,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
482
498
|
remoteHandLowered: StickyReactionEvent;
|
|
483
499
|
signalTrouble: SignalStatusEvent;
|
|
484
500
|
signalOk: SignalStatusEvent;
|
|
501
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
485
502
|
} | "*" | K_6) => (K_6 extends keyof {
|
|
486
503
|
requestAudioEnable: RequestAudioEvent;
|
|
487
504
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -490,6 +507,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
490
507
|
remoteHandLowered: StickyReactionEvent;
|
|
491
508
|
signalTrouble: SignalStatusEvent;
|
|
492
509
|
signalOk: SignalStatusEvent;
|
|
510
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
493
511
|
} | "*" ? NotificationEventMap[K_6] extends unknown[] ? (...args: NotificationEventMap[K_6]) => void : never : never)[];
|
|
494
512
|
rawListeners: <K_7>(eventName: keyof {
|
|
495
513
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -499,6 +517,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
499
517
|
remoteHandLowered: StickyReactionEvent;
|
|
500
518
|
signalTrouble: SignalStatusEvent;
|
|
501
519
|
signalOk: SignalStatusEvent;
|
|
520
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
502
521
|
} | "*" | K_7) => (K_7 extends keyof {
|
|
503
522
|
requestAudioEnable: RequestAudioEvent;
|
|
504
523
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -507,6 +526,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
507
526
|
remoteHandLowered: StickyReactionEvent;
|
|
508
527
|
signalTrouble: SignalStatusEvent;
|
|
509
528
|
signalOk: SignalStatusEvent;
|
|
529
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
510
530
|
} | "*" ? NotificationEventMap[K_7] extends unknown[] ? (...args: NotificationEventMap[K_7]) => void : never : never)[];
|
|
511
531
|
emit: <K_8>(eventName: keyof {
|
|
512
532
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -516,6 +536,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
516
536
|
remoteHandLowered: StickyReactionEvent;
|
|
517
537
|
signalTrouble: SignalStatusEvent;
|
|
518
538
|
signalOk: SignalStatusEvent;
|
|
539
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
519
540
|
} | "*" | K_8, ...args: K_8 extends keyof {
|
|
520
541
|
requestAudioEnable: RequestAudioEvent;
|
|
521
542
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -524,6 +545,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
524
545
|
remoteHandLowered: StickyReactionEvent;
|
|
525
546
|
signalTrouble: SignalStatusEvent;
|
|
526
547
|
signalOk: SignalStatusEvent;
|
|
548
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
527
549
|
} | "*" ? NotificationEventMap[K_8] : never) => boolean;
|
|
528
550
|
listenerCount: <K_9>(eventName: keyof {
|
|
529
551
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -533,6 +555,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
533
555
|
remoteHandLowered: StickyReactionEvent;
|
|
534
556
|
signalTrouble: SignalStatusEvent;
|
|
535
557
|
signalOk: SignalStatusEvent;
|
|
558
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
536
559
|
} | "*" | K_9, listener?: (K_9 extends keyof {
|
|
537
560
|
requestAudioEnable: RequestAudioEvent;
|
|
538
561
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -541,6 +564,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
541
564
|
remoteHandLowered: StickyReactionEvent;
|
|
542
565
|
signalTrouble: SignalStatusEvent;
|
|
543
566
|
signalOk: SignalStatusEvent;
|
|
567
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
544
568
|
} | "*" ? NotificationEventMap[K_9] extends unknown[] ? (...args: NotificationEventMap[K_9]) => void : never : never) | undefined) => number;
|
|
545
569
|
prependListener: <K_10>(eventName: keyof {
|
|
546
570
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -550,6 +574,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
550
574
|
remoteHandLowered: StickyReactionEvent;
|
|
551
575
|
signalTrouble: SignalStatusEvent;
|
|
552
576
|
signalOk: SignalStatusEvent;
|
|
577
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
553
578
|
} | "*" | K_10, listener: K_10 extends keyof {
|
|
554
579
|
requestAudioEnable: RequestAudioEvent;
|
|
555
580
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -558,6 +583,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
558
583
|
remoteHandLowered: StickyReactionEvent;
|
|
559
584
|
signalTrouble: SignalStatusEvent;
|
|
560
585
|
signalOk: SignalStatusEvent;
|
|
586
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
561
587
|
} | "*" ? NotificationEventMap[K_10] extends unknown[] ? (...args: NotificationEventMap[K_10]) => void : never : never) => NotificationsEventEmitter;
|
|
562
588
|
prependOnceListener: <K_11>(eventName: keyof {
|
|
563
589
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -567,6 +593,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
567
593
|
remoteHandLowered: StickyReactionEvent;
|
|
568
594
|
signalTrouble: SignalStatusEvent;
|
|
569
595
|
signalOk: SignalStatusEvent;
|
|
596
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
570
597
|
} | "*" | K_11, listener: K_11 extends keyof {
|
|
571
598
|
requestAudioEnable: RequestAudioEvent;
|
|
572
599
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -575,8 +602,9 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
575
602
|
remoteHandLowered: StickyReactionEvent;
|
|
576
603
|
signalTrouble: SignalStatusEvent;
|
|
577
604
|
signalOk: SignalStatusEvent;
|
|
605
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
578
606
|
} | "*" ? NotificationEventMap[K_11] extends unknown[] ? (...args: NotificationEventMap[K_11]) => void : never : never) => NotificationsEventEmitter;
|
|
579
|
-
eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "*")[];
|
|
607
|
+
eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "clientUnableToJoinFullRoom" | "*")[];
|
|
580
608
|
};
|
|
581
609
|
events: {
|
|
582
610
|
type: string;
|
|
@@ -600,6 +628,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
600
628
|
remoteHandLowered: StickyReactionEvent;
|
|
601
629
|
signalTrouble: SignalStatusEvent;
|
|
602
630
|
signalOk: SignalStatusEvent;
|
|
631
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
603
632
|
} | K | "*", ...args: K extends keyof {
|
|
604
633
|
requestAudioEnable: RequestAudioEvent;
|
|
605
634
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -608,6 +637,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
608
637
|
remoteHandLowered: StickyReactionEvent;
|
|
609
638
|
signalTrouble: SignalStatusEvent;
|
|
610
639
|
signalOk: SignalStatusEvent;
|
|
640
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
611
641
|
} | "*" ? NotificationEventMap[K] : never) => void) | undefined;
|
|
612
642
|
addListener: <K_1>(eventName: keyof {
|
|
613
643
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -617,6 +647,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
617
647
|
remoteHandLowered: StickyReactionEvent;
|
|
618
648
|
signalTrouble: SignalStatusEvent;
|
|
619
649
|
signalOk: SignalStatusEvent;
|
|
650
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
620
651
|
} | "*" | K_1, listener: K_1 extends keyof {
|
|
621
652
|
requestAudioEnable: RequestAudioEvent;
|
|
622
653
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -625,6 +656,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
625
656
|
remoteHandLowered: StickyReactionEvent;
|
|
626
657
|
signalTrouble: SignalStatusEvent;
|
|
627
658
|
signalOk: SignalStatusEvent;
|
|
659
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
628
660
|
} | "*" ? NotificationEventMap[K_1] extends unknown[] ? (...args: NotificationEventMap[K_1]) => void : never : never) => NotificationsEventEmitter;
|
|
629
661
|
on: <K_2>(eventName: keyof {
|
|
630
662
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -634,6 +666,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
634
666
|
remoteHandLowered: StickyReactionEvent;
|
|
635
667
|
signalTrouble: SignalStatusEvent;
|
|
636
668
|
signalOk: SignalStatusEvent;
|
|
669
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
637
670
|
} | "*" | K_2, listener: K_2 extends keyof {
|
|
638
671
|
requestAudioEnable: RequestAudioEvent;
|
|
639
672
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -642,6 +675,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
642
675
|
remoteHandLowered: StickyReactionEvent;
|
|
643
676
|
signalTrouble: SignalStatusEvent;
|
|
644
677
|
signalOk: SignalStatusEvent;
|
|
678
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
645
679
|
} | "*" ? NotificationEventMap[K_2] extends unknown[] ? (...args: NotificationEventMap[K_2]) => void : never : never) => NotificationsEventEmitter;
|
|
646
680
|
once: <K_3>(eventName: keyof {
|
|
647
681
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -651,6 +685,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
651
685
|
remoteHandLowered: StickyReactionEvent;
|
|
652
686
|
signalTrouble: SignalStatusEvent;
|
|
653
687
|
signalOk: SignalStatusEvent;
|
|
688
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
654
689
|
} | "*" | K_3, listener: K_3 extends keyof {
|
|
655
690
|
requestAudioEnable: RequestAudioEvent;
|
|
656
691
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -659,6 +694,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
659
694
|
remoteHandLowered: StickyReactionEvent;
|
|
660
695
|
signalTrouble: SignalStatusEvent;
|
|
661
696
|
signalOk: SignalStatusEvent;
|
|
697
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
662
698
|
} | "*" ? NotificationEventMap[K_3] extends unknown[] ? (...args: NotificationEventMap[K_3]) => void : never : never) => NotificationsEventEmitter;
|
|
663
699
|
removeListener: <K_4>(eventName: keyof {
|
|
664
700
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -668,6 +704,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
668
704
|
remoteHandLowered: StickyReactionEvent;
|
|
669
705
|
signalTrouble: SignalStatusEvent;
|
|
670
706
|
signalOk: SignalStatusEvent;
|
|
707
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
671
708
|
} | "*" | K_4, listener: K_4 extends keyof {
|
|
672
709
|
requestAudioEnable: RequestAudioEvent;
|
|
673
710
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -676,6 +713,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
676
713
|
remoteHandLowered: StickyReactionEvent;
|
|
677
714
|
signalTrouble: SignalStatusEvent;
|
|
678
715
|
signalOk: SignalStatusEvent;
|
|
716
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
679
717
|
} | "*" ? NotificationEventMap[K_4] extends unknown[] ? (...args: NotificationEventMap[K_4]) => void : never : never) => NotificationsEventEmitter;
|
|
680
718
|
off: <K_5>(eventName: keyof {
|
|
681
719
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -685,6 +723,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
685
723
|
remoteHandLowered: StickyReactionEvent;
|
|
686
724
|
signalTrouble: SignalStatusEvent;
|
|
687
725
|
signalOk: SignalStatusEvent;
|
|
726
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
688
727
|
} | "*" | K_5, listener: K_5 extends keyof {
|
|
689
728
|
requestAudioEnable: RequestAudioEvent;
|
|
690
729
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -693,6 +732,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
693
732
|
remoteHandLowered: StickyReactionEvent;
|
|
694
733
|
signalTrouble: SignalStatusEvent;
|
|
695
734
|
signalOk: SignalStatusEvent;
|
|
735
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
696
736
|
} | "*" ? NotificationEventMap[K_5] extends unknown[] ? (...args: NotificationEventMap[K_5]) => void : never : never) => NotificationsEventEmitter;
|
|
697
737
|
removeAllListeners: (eventName?: unknown) => NotificationsEventEmitter;
|
|
698
738
|
setMaxListeners: (n: number) => NotificationsEventEmitter;
|
|
@@ -705,6 +745,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
705
745
|
remoteHandLowered: StickyReactionEvent;
|
|
706
746
|
signalTrouble: SignalStatusEvent;
|
|
707
747
|
signalOk: SignalStatusEvent;
|
|
748
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
708
749
|
} | "*" | K_6) => (K_6 extends keyof {
|
|
709
750
|
requestAudioEnable: RequestAudioEvent;
|
|
710
751
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -713,6 +754,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
713
754
|
remoteHandLowered: StickyReactionEvent;
|
|
714
755
|
signalTrouble: SignalStatusEvent;
|
|
715
756
|
signalOk: SignalStatusEvent;
|
|
757
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
716
758
|
} | "*" ? NotificationEventMap[K_6] extends unknown[] ? (...args: NotificationEventMap[K_6]) => void : never : never)[];
|
|
717
759
|
rawListeners: <K_7>(eventName: keyof {
|
|
718
760
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -722,6 +764,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
722
764
|
remoteHandLowered: StickyReactionEvent;
|
|
723
765
|
signalTrouble: SignalStatusEvent;
|
|
724
766
|
signalOk: SignalStatusEvent;
|
|
767
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
725
768
|
} | "*" | K_7) => (K_7 extends keyof {
|
|
726
769
|
requestAudioEnable: RequestAudioEvent;
|
|
727
770
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -730,6 +773,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
730
773
|
remoteHandLowered: StickyReactionEvent;
|
|
731
774
|
signalTrouble: SignalStatusEvent;
|
|
732
775
|
signalOk: SignalStatusEvent;
|
|
776
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
733
777
|
} | "*" ? NotificationEventMap[K_7] extends unknown[] ? (...args: NotificationEventMap[K_7]) => void : never : never)[];
|
|
734
778
|
emit: <K_8>(eventName: keyof {
|
|
735
779
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -739,6 +783,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
739
783
|
remoteHandLowered: StickyReactionEvent;
|
|
740
784
|
signalTrouble: SignalStatusEvent;
|
|
741
785
|
signalOk: SignalStatusEvent;
|
|
786
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
742
787
|
} | "*" | K_8, ...args: K_8 extends keyof {
|
|
743
788
|
requestAudioEnable: RequestAudioEvent;
|
|
744
789
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -747,6 +792,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
747
792
|
remoteHandLowered: StickyReactionEvent;
|
|
748
793
|
signalTrouble: SignalStatusEvent;
|
|
749
794
|
signalOk: SignalStatusEvent;
|
|
795
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
750
796
|
} | "*" ? NotificationEventMap[K_8] : never) => boolean;
|
|
751
797
|
listenerCount: <K_9>(eventName: keyof {
|
|
752
798
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -756,6 +802,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
756
802
|
remoteHandLowered: StickyReactionEvent;
|
|
757
803
|
signalTrouble: SignalStatusEvent;
|
|
758
804
|
signalOk: SignalStatusEvent;
|
|
805
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
759
806
|
} | "*" | K_9, listener?: (K_9 extends keyof {
|
|
760
807
|
requestAudioEnable: RequestAudioEvent;
|
|
761
808
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -764,6 +811,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
764
811
|
remoteHandLowered: StickyReactionEvent;
|
|
765
812
|
signalTrouble: SignalStatusEvent;
|
|
766
813
|
signalOk: SignalStatusEvent;
|
|
814
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
767
815
|
} | "*" ? NotificationEventMap[K_9] extends unknown[] ? (...args: NotificationEventMap[K_9]) => void : never : never) | undefined) => number;
|
|
768
816
|
prependListener: <K_10>(eventName: keyof {
|
|
769
817
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -773,6 +821,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
773
821
|
remoteHandLowered: StickyReactionEvent;
|
|
774
822
|
signalTrouble: SignalStatusEvent;
|
|
775
823
|
signalOk: SignalStatusEvent;
|
|
824
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
776
825
|
} | "*" | K_10, listener: K_10 extends keyof {
|
|
777
826
|
requestAudioEnable: RequestAudioEvent;
|
|
778
827
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -781,6 +830,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
781
830
|
remoteHandLowered: StickyReactionEvent;
|
|
782
831
|
signalTrouble: SignalStatusEvent;
|
|
783
832
|
signalOk: SignalStatusEvent;
|
|
833
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
784
834
|
} | "*" ? NotificationEventMap[K_10] extends unknown[] ? (...args: NotificationEventMap[K_10]) => void : never : never) => NotificationsEventEmitter;
|
|
785
835
|
prependOnceListener: <K_11>(eventName: keyof {
|
|
786
836
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -790,6 +840,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
790
840
|
remoteHandLowered: StickyReactionEvent;
|
|
791
841
|
signalTrouble: SignalStatusEvent;
|
|
792
842
|
signalOk: SignalStatusEvent;
|
|
843
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
793
844
|
} | "*" | K_11, listener: K_11 extends keyof {
|
|
794
845
|
requestAudioEnable: RequestAudioEvent;
|
|
795
846
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -798,8 +849,9 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
798
849
|
remoteHandLowered: StickyReactionEvent;
|
|
799
850
|
signalTrouble: SignalStatusEvent;
|
|
800
851
|
signalOk: SignalStatusEvent;
|
|
852
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
801
853
|
} | "*" ? NotificationEventMap[K_11] extends unknown[] ? (...args: NotificationEventMap[K_11]) => void : never : never) => NotificationsEventEmitter;
|
|
802
|
-
eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "*")[];
|
|
854
|
+
eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "clientUnableToJoinFullRoom" | "*")[];
|
|
803
855
|
};
|
|
804
856
|
};
|
|
805
857
|
doClearNotifications: (state: {
|
|
@@ -812,6 +864,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
812
864
|
remoteHandLowered: StickyReactionEvent;
|
|
813
865
|
signalTrouble: SignalStatusEvent;
|
|
814
866
|
signalOk: SignalStatusEvent;
|
|
867
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
815
868
|
} | K | "*", ...args: K extends keyof {
|
|
816
869
|
requestAudioEnable: RequestAudioEvent;
|
|
817
870
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -820,6 +873,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
820
873
|
remoteHandLowered: StickyReactionEvent;
|
|
821
874
|
signalTrouble: SignalStatusEvent;
|
|
822
875
|
signalOk: SignalStatusEvent;
|
|
876
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
823
877
|
} | "*" ? NotificationEventMap[K] : never) => void) | undefined;
|
|
824
878
|
addListener: <K_1>(eventName: keyof {
|
|
825
879
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -829,6 +883,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
829
883
|
remoteHandLowered: StickyReactionEvent;
|
|
830
884
|
signalTrouble: SignalStatusEvent;
|
|
831
885
|
signalOk: SignalStatusEvent;
|
|
886
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
832
887
|
} | "*" | K_1, listener: K_1 extends keyof {
|
|
833
888
|
requestAudioEnable: RequestAudioEvent;
|
|
834
889
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -837,6 +892,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
837
892
|
remoteHandLowered: StickyReactionEvent;
|
|
838
893
|
signalTrouble: SignalStatusEvent;
|
|
839
894
|
signalOk: SignalStatusEvent;
|
|
895
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
840
896
|
} | "*" ? NotificationEventMap[K_1] extends unknown[] ? (...args: NotificationEventMap[K_1]) => void : never : never) => NotificationsEventEmitter;
|
|
841
897
|
on: <K_2>(eventName: keyof {
|
|
842
898
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -846,6 +902,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
846
902
|
remoteHandLowered: StickyReactionEvent;
|
|
847
903
|
signalTrouble: SignalStatusEvent;
|
|
848
904
|
signalOk: SignalStatusEvent;
|
|
905
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
849
906
|
} | "*" | K_2, listener: K_2 extends keyof {
|
|
850
907
|
requestAudioEnable: RequestAudioEvent;
|
|
851
908
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -854,6 +911,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
854
911
|
remoteHandLowered: StickyReactionEvent;
|
|
855
912
|
signalTrouble: SignalStatusEvent;
|
|
856
913
|
signalOk: SignalStatusEvent;
|
|
914
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
857
915
|
} | "*" ? NotificationEventMap[K_2] extends unknown[] ? (...args: NotificationEventMap[K_2]) => void : never : never) => NotificationsEventEmitter;
|
|
858
916
|
once: <K_3>(eventName: keyof {
|
|
859
917
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -863,6 +921,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
863
921
|
remoteHandLowered: StickyReactionEvent;
|
|
864
922
|
signalTrouble: SignalStatusEvent;
|
|
865
923
|
signalOk: SignalStatusEvent;
|
|
924
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
866
925
|
} | "*" | K_3, listener: K_3 extends keyof {
|
|
867
926
|
requestAudioEnable: RequestAudioEvent;
|
|
868
927
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -871,6 +930,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
871
930
|
remoteHandLowered: StickyReactionEvent;
|
|
872
931
|
signalTrouble: SignalStatusEvent;
|
|
873
932
|
signalOk: SignalStatusEvent;
|
|
933
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
874
934
|
} | "*" ? NotificationEventMap[K_3] extends unknown[] ? (...args: NotificationEventMap[K_3]) => void : never : never) => NotificationsEventEmitter;
|
|
875
935
|
removeListener: <K_4>(eventName: keyof {
|
|
876
936
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -880,6 +940,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
880
940
|
remoteHandLowered: StickyReactionEvent;
|
|
881
941
|
signalTrouble: SignalStatusEvent;
|
|
882
942
|
signalOk: SignalStatusEvent;
|
|
943
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
883
944
|
} | "*" | K_4, listener: K_4 extends keyof {
|
|
884
945
|
requestAudioEnable: RequestAudioEvent;
|
|
885
946
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -888,6 +949,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
888
949
|
remoteHandLowered: StickyReactionEvent;
|
|
889
950
|
signalTrouble: SignalStatusEvent;
|
|
890
951
|
signalOk: SignalStatusEvent;
|
|
952
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
891
953
|
} | "*" ? NotificationEventMap[K_4] extends unknown[] ? (...args: NotificationEventMap[K_4]) => void : never : never) => NotificationsEventEmitter;
|
|
892
954
|
off: <K_5>(eventName: keyof {
|
|
893
955
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -897,6 +959,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
897
959
|
remoteHandLowered: StickyReactionEvent;
|
|
898
960
|
signalTrouble: SignalStatusEvent;
|
|
899
961
|
signalOk: SignalStatusEvent;
|
|
962
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
900
963
|
} | "*" | K_5, listener: K_5 extends keyof {
|
|
901
964
|
requestAudioEnable: RequestAudioEvent;
|
|
902
965
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -905,6 +968,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
905
968
|
remoteHandLowered: StickyReactionEvent;
|
|
906
969
|
signalTrouble: SignalStatusEvent;
|
|
907
970
|
signalOk: SignalStatusEvent;
|
|
971
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
908
972
|
} | "*" ? NotificationEventMap[K_5] extends unknown[] ? (...args: NotificationEventMap[K_5]) => void : never : never) => NotificationsEventEmitter;
|
|
909
973
|
removeAllListeners: (eventName?: unknown) => NotificationsEventEmitter;
|
|
910
974
|
setMaxListeners: (n: number) => NotificationsEventEmitter;
|
|
@@ -917,6 +981,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
917
981
|
remoteHandLowered: StickyReactionEvent;
|
|
918
982
|
signalTrouble: SignalStatusEvent;
|
|
919
983
|
signalOk: SignalStatusEvent;
|
|
984
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
920
985
|
} | "*" | K_6) => (K_6 extends keyof {
|
|
921
986
|
requestAudioEnable: RequestAudioEvent;
|
|
922
987
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -925,6 +990,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
925
990
|
remoteHandLowered: StickyReactionEvent;
|
|
926
991
|
signalTrouble: SignalStatusEvent;
|
|
927
992
|
signalOk: SignalStatusEvent;
|
|
993
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
928
994
|
} | "*" ? NotificationEventMap[K_6] extends unknown[] ? (...args: NotificationEventMap[K_6]) => void : never : never)[];
|
|
929
995
|
rawListeners: <K_7>(eventName: keyof {
|
|
930
996
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -934,6 +1000,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
934
1000
|
remoteHandLowered: StickyReactionEvent;
|
|
935
1001
|
signalTrouble: SignalStatusEvent;
|
|
936
1002
|
signalOk: SignalStatusEvent;
|
|
1003
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
937
1004
|
} | "*" | K_7) => (K_7 extends keyof {
|
|
938
1005
|
requestAudioEnable: RequestAudioEvent;
|
|
939
1006
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -942,6 +1009,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
942
1009
|
remoteHandLowered: StickyReactionEvent;
|
|
943
1010
|
signalTrouble: SignalStatusEvent;
|
|
944
1011
|
signalOk: SignalStatusEvent;
|
|
1012
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
945
1013
|
} | "*" ? NotificationEventMap[K_7] extends unknown[] ? (...args: NotificationEventMap[K_7]) => void : never : never)[];
|
|
946
1014
|
emit: <K_8>(eventName: keyof {
|
|
947
1015
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -951,6 +1019,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
951
1019
|
remoteHandLowered: StickyReactionEvent;
|
|
952
1020
|
signalTrouble: SignalStatusEvent;
|
|
953
1021
|
signalOk: SignalStatusEvent;
|
|
1022
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
954
1023
|
} | "*" | K_8, ...args: K_8 extends keyof {
|
|
955
1024
|
requestAudioEnable: RequestAudioEvent;
|
|
956
1025
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -959,6 +1028,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
959
1028
|
remoteHandLowered: StickyReactionEvent;
|
|
960
1029
|
signalTrouble: SignalStatusEvent;
|
|
961
1030
|
signalOk: SignalStatusEvent;
|
|
1031
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
962
1032
|
} | "*" ? NotificationEventMap[K_8] : never) => boolean;
|
|
963
1033
|
listenerCount: <K_9>(eventName: keyof {
|
|
964
1034
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -968,6 +1038,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
968
1038
|
remoteHandLowered: StickyReactionEvent;
|
|
969
1039
|
signalTrouble: SignalStatusEvent;
|
|
970
1040
|
signalOk: SignalStatusEvent;
|
|
1041
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
971
1042
|
} | "*" | K_9, listener?: (K_9 extends keyof {
|
|
972
1043
|
requestAudioEnable: RequestAudioEvent;
|
|
973
1044
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -976,6 +1047,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
976
1047
|
remoteHandLowered: StickyReactionEvent;
|
|
977
1048
|
signalTrouble: SignalStatusEvent;
|
|
978
1049
|
signalOk: SignalStatusEvent;
|
|
1050
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
979
1051
|
} | "*" ? NotificationEventMap[K_9] extends unknown[] ? (...args: NotificationEventMap[K_9]) => void : never : never) | undefined) => number;
|
|
980
1052
|
prependListener: <K_10>(eventName: keyof {
|
|
981
1053
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -985,6 +1057,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
985
1057
|
remoteHandLowered: StickyReactionEvent;
|
|
986
1058
|
signalTrouble: SignalStatusEvent;
|
|
987
1059
|
signalOk: SignalStatusEvent;
|
|
1060
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
988
1061
|
} | "*" | K_10, listener: K_10 extends keyof {
|
|
989
1062
|
requestAudioEnable: RequestAudioEvent;
|
|
990
1063
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -993,6 +1066,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
993
1066
|
remoteHandLowered: StickyReactionEvent;
|
|
994
1067
|
signalTrouble: SignalStatusEvent;
|
|
995
1068
|
signalOk: SignalStatusEvent;
|
|
1069
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
996
1070
|
} | "*" ? NotificationEventMap[K_10] extends unknown[] ? (...args: NotificationEventMap[K_10]) => void : never : never) => NotificationsEventEmitter;
|
|
997
1071
|
prependOnceListener: <K_11>(eventName: keyof {
|
|
998
1072
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -1002,6 +1076,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1002
1076
|
remoteHandLowered: StickyReactionEvent;
|
|
1003
1077
|
signalTrouble: SignalStatusEvent;
|
|
1004
1078
|
signalOk: SignalStatusEvent;
|
|
1079
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1005
1080
|
} | "*" | K_11, listener: K_11 extends keyof {
|
|
1006
1081
|
requestAudioEnable: RequestAudioEvent;
|
|
1007
1082
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -1010,8 +1085,9 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1010
1085
|
remoteHandLowered: StickyReactionEvent;
|
|
1011
1086
|
signalTrouble: SignalStatusEvent;
|
|
1012
1087
|
signalOk: SignalStatusEvent;
|
|
1088
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1013
1089
|
} | "*" ? NotificationEventMap[K_11] extends unknown[] ? (...args: NotificationEventMap[K_11]) => void : never : never) => NotificationsEventEmitter;
|
|
1014
|
-
eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "*")[];
|
|
1090
|
+
eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "clientUnableToJoinFullRoom" | "*")[];
|
|
1015
1091
|
};
|
|
1016
1092
|
events: {
|
|
1017
1093
|
type: string;
|
|
@@ -1030,6 +1106,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1030
1106
|
remoteHandLowered: StickyReactionEvent;
|
|
1031
1107
|
signalTrouble: SignalStatusEvent;
|
|
1032
1108
|
signalOk: SignalStatusEvent;
|
|
1109
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1033
1110
|
} | K | "*", ...args: K extends keyof {
|
|
1034
1111
|
requestAudioEnable: RequestAudioEvent;
|
|
1035
1112
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -1038,6 +1115,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1038
1115
|
remoteHandLowered: StickyReactionEvent;
|
|
1039
1116
|
signalTrouble: SignalStatusEvent;
|
|
1040
1117
|
signalOk: SignalStatusEvent;
|
|
1118
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1041
1119
|
} | "*" ? NotificationEventMap[K] : never) => void) | undefined;
|
|
1042
1120
|
addListener: <K_1>(eventName: keyof {
|
|
1043
1121
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -1047,6 +1125,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1047
1125
|
remoteHandLowered: StickyReactionEvent;
|
|
1048
1126
|
signalTrouble: SignalStatusEvent;
|
|
1049
1127
|
signalOk: SignalStatusEvent;
|
|
1128
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1050
1129
|
} | "*" | K_1, listener: K_1 extends keyof {
|
|
1051
1130
|
requestAudioEnable: RequestAudioEvent;
|
|
1052
1131
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -1055,6 +1134,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1055
1134
|
remoteHandLowered: StickyReactionEvent;
|
|
1056
1135
|
signalTrouble: SignalStatusEvent;
|
|
1057
1136
|
signalOk: SignalStatusEvent;
|
|
1137
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1058
1138
|
} | "*" ? NotificationEventMap[K_1] extends unknown[] ? (...args: NotificationEventMap[K_1]) => void : never : never) => NotificationsEventEmitter;
|
|
1059
1139
|
on: <K_2>(eventName: keyof {
|
|
1060
1140
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -1064,6 +1144,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1064
1144
|
remoteHandLowered: StickyReactionEvent;
|
|
1065
1145
|
signalTrouble: SignalStatusEvent;
|
|
1066
1146
|
signalOk: SignalStatusEvent;
|
|
1147
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1067
1148
|
} | "*" | K_2, listener: K_2 extends keyof {
|
|
1068
1149
|
requestAudioEnable: RequestAudioEvent;
|
|
1069
1150
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -1072,6 +1153,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1072
1153
|
remoteHandLowered: StickyReactionEvent;
|
|
1073
1154
|
signalTrouble: SignalStatusEvent;
|
|
1074
1155
|
signalOk: SignalStatusEvent;
|
|
1156
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1075
1157
|
} | "*" ? NotificationEventMap[K_2] extends unknown[] ? (...args: NotificationEventMap[K_2]) => void : never : never) => NotificationsEventEmitter;
|
|
1076
1158
|
once: <K_3>(eventName: keyof {
|
|
1077
1159
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -1081,6 +1163,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1081
1163
|
remoteHandLowered: StickyReactionEvent;
|
|
1082
1164
|
signalTrouble: SignalStatusEvent;
|
|
1083
1165
|
signalOk: SignalStatusEvent;
|
|
1166
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1084
1167
|
} | "*" | K_3, listener: K_3 extends keyof {
|
|
1085
1168
|
requestAudioEnable: RequestAudioEvent;
|
|
1086
1169
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -1089,6 +1172,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1089
1172
|
remoteHandLowered: StickyReactionEvent;
|
|
1090
1173
|
signalTrouble: SignalStatusEvent;
|
|
1091
1174
|
signalOk: SignalStatusEvent;
|
|
1175
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1092
1176
|
} | "*" ? NotificationEventMap[K_3] extends unknown[] ? (...args: NotificationEventMap[K_3]) => void : never : never) => NotificationsEventEmitter;
|
|
1093
1177
|
removeListener: <K_4>(eventName: keyof {
|
|
1094
1178
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -1098,6 +1182,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1098
1182
|
remoteHandLowered: StickyReactionEvent;
|
|
1099
1183
|
signalTrouble: SignalStatusEvent;
|
|
1100
1184
|
signalOk: SignalStatusEvent;
|
|
1185
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1101
1186
|
} | "*" | K_4, listener: K_4 extends keyof {
|
|
1102
1187
|
requestAudioEnable: RequestAudioEvent;
|
|
1103
1188
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -1106,6 +1191,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1106
1191
|
remoteHandLowered: StickyReactionEvent;
|
|
1107
1192
|
signalTrouble: SignalStatusEvent;
|
|
1108
1193
|
signalOk: SignalStatusEvent;
|
|
1194
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1109
1195
|
} | "*" ? NotificationEventMap[K_4] extends unknown[] ? (...args: NotificationEventMap[K_4]) => void : never : never) => NotificationsEventEmitter;
|
|
1110
1196
|
off: <K_5>(eventName: keyof {
|
|
1111
1197
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -1115,6 +1201,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1115
1201
|
remoteHandLowered: StickyReactionEvent;
|
|
1116
1202
|
signalTrouble: SignalStatusEvent;
|
|
1117
1203
|
signalOk: SignalStatusEvent;
|
|
1204
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1118
1205
|
} | "*" | K_5, listener: K_5 extends keyof {
|
|
1119
1206
|
requestAudioEnable: RequestAudioEvent;
|
|
1120
1207
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -1123,6 +1210,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1123
1210
|
remoteHandLowered: StickyReactionEvent;
|
|
1124
1211
|
signalTrouble: SignalStatusEvent;
|
|
1125
1212
|
signalOk: SignalStatusEvent;
|
|
1213
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1126
1214
|
} | "*" ? NotificationEventMap[K_5] extends unknown[] ? (...args: NotificationEventMap[K_5]) => void : never : never) => NotificationsEventEmitter;
|
|
1127
1215
|
removeAllListeners: (eventName?: unknown) => NotificationsEventEmitter;
|
|
1128
1216
|
setMaxListeners: (n: number) => NotificationsEventEmitter;
|
|
@@ -1135,6 +1223,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1135
1223
|
remoteHandLowered: StickyReactionEvent;
|
|
1136
1224
|
signalTrouble: SignalStatusEvent;
|
|
1137
1225
|
signalOk: SignalStatusEvent;
|
|
1226
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1138
1227
|
} | "*" | K_6) => (K_6 extends keyof {
|
|
1139
1228
|
requestAudioEnable: RequestAudioEvent;
|
|
1140
1229
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -1143,6 +1232,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1143
1232
|
remoteHandLowered: StickyReactionEvent;
|
|
1144
1233
|
signalTrouble: SignalStatusEvent;
|
|
1145
1234
|
signalOk: SignalStatusEvent;
|
|
1235
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1146
1236
|
} | "*" ? NotificationEventMap[K_6] extends unknown[] ? (...args: NotificationEventMap[K_6]) => void : never : never)[];
|
|
1147
1237
|
rawListeners: <K_7>(eventName: keyof {
|
|
1148
1238
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -1152,6 +1242,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1152
1242
|
remoteHandLowered: StickyReactionEvent;
|
|
1153
1243
|
signalTrouble: SignalStatusEvent;
|
|
1154
1244
|
signalOk: SignalStatusEvent;
|
|
1245
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1155
1246
|
} | "*" | K_7) => (K_7 extends keyof {
|
|
1156
1247
|
requestAudioEnable: RequestAudioEvent;
|
|
1157
1248
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -1160,6 +1251,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1160
1251
|
remoteHandLowered: StickyReactionEvent;
|
|
1161
1252
|
signalTrouble: SignalStatusEvent;
|
|
1162
1253
|
signalOk: SignalStatusEvent;
|
|
1254
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1163
1255
|
} | "*" ? NotificationEventMap[K_7] extends unknown[] ? (...args: NotificationEventMap[K_7]) => void : never : never)[];
|
|
1164
1256
|
emit: <K_8>(eventName: keyof {
|
|
1165
1257
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -1169,6 +1261,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1169
1261
|
remoteHandLowered: StickyReactionEvent;
|
|
1170
1262
|
signalTrouble: SignalStatusEvent;
|
|
1171
1263
|
signalOk: SignalStatusEvent;
|
|
1264
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1172
1265
|
} | "*" | K_8, ...args: K_8 extends keyof {
|
|
1173
1266
|
requestAudioEnable: RequestAudioEvent;
|
|
1174
1267
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -1177,6 +1270,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1177
1270
|
remoteHandLowered: StickyReactionEvent;
|
|
1178
1271
|
signalTrouble: SignalStatusEvent;
|
|
1179
1272
|
signalOk: SignalStatusEvent;
|
|
1273
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1180
1274
|
} | "*" ? NotificationEventMap[K_8] : never) => boolean;
|
|
1181
1275
|
listenerCount: <K_9>(eventName: keyof {
|
|
1182
1276
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -1186,6 +1280,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1186
1280
|
remoteHandLowered: StickyReactionEvent;
|
|
1187
1281
|
signalTrouble: SignalStatusEvent;
|
|
1188
1282
|
signalOk: SignalStatusEvent;
|
|
1283
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1189
1284
|
} | "*" | K_9, listener?: (K_9 extends keyof {
|
|
1190
1285
|
requestAudioEnable: RequestAudioEvent;
|
|
1191
1286
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -1194,6 +1289,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1194
1289
|
remoteHandLowered: StickyReactionEvent;
|
|
1195
1290
|
signalTrouble: SignalStatusEvent;
|
|
1196
1291
|
signalOk: SignalStatusEvent;
|
|
1292
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1197
1293
|
} | "*" ? NotificationEventMap[K_9] extends unknown[] ? (...args: NotificationEventMap[K_9]) => void : never : never) | undefined) => number;
|
|
1198
1294
|
prependListener: <K_10>(eventName: keyof {
|
|
1199
1295
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -1203,6 +1299,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1203
1299
|
remoteHandLowered: StickyReactionEvent;
|
|
1204
1300
|
signalTrouble: SignalStatusEvent;
|
|
1205
1301
|
signalOk: SignalStatusEvent;
|
|
1302
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1206
1303
|
} | "*" | K_10, listener: K_10 extends keyof {
|
|
1207
1304
|
requestAudioEnable: RequestAudioEvent;
|
|
1208
1305
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -1211,6 +1308,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1211
1308
|
remoteHandLowered: StickyReactionEvent;
|
|
1212
1309
|
signalTrouble: SignalStatusEvent;
|
|
1213
1310
|
signalOk: SignalStatusEvent;
|
|
1311
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1214
1312
|
} | "*" ? NotificationEventMap[K_10] extends unknown[] ? (...args: NotificationEventMap[K_10]) => void : never : never) => NotificationsEventEmitter;
|
|
1215
1313
|
prependOnceListener: <K_11>(eventName: keyof {
|
|
1216
1314
|
requestAudioEnable: RequestAudioEvent;
|
|
@@ -1220,6 +1318,7 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1220
1318
|
remoteHandLowered: StickyReactionEvent;
|
|
1221
1319
|
signalTrouble: SignalStatusEvent;
|
|
1222
1320
|
signalOk: SignalStatusEvent;
|
|
1321
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1223
1322
|
} | "*" | K_11, listener: K_11 extends keyof {
|
|
1224
1323
|
requestAudioEnable: RequestAudioEvent;
|
|
1225
1324
|
requestAudioDisable: RequestAudioEvent;
|
|
@@ -1228,8 +1327,9 @@ declare const notificationsSlice: _reduxjs_toolkit.Slice<NotificationsState, {
|
|
|
1228
1327
|
remoteHandLowered: StickyReactionEvent;
|
|
1229
1328
|
signalTrouble: SignalStatusEvent;
|
|
1230
1329
|
signalOk: SignalStatusEvent;
|
|
1330
|
+
clientUnableToJoinFullRoom: SignalClientEvent;
|
|
1231
1331
|
} | "*" ? NotificationEventMap[K_11] extends unknown[] ? (...args: NotificationEventMap[K_11]) => void : never : never) => NotificationsEventEmitter;
|
|
1232
|
-
eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "*")[];
|
|
1332
|
+
eventNames: () => ("requestAudioEnable" | "requestAudioDisable" | "chatMessageReceived" | "remoteHandRaised" | "remoteHandLowered" | "signalTrouble" | "signalOk" | "clientUnableToJoinFullRoom" | "*")[];
|
|
1233
1333
|
};
|
|
1234
1334
|
};
|
|
1235
1335
|
}, "notifications", "notifications", _reduxjs_toolkit.SliceSelectors<NotificationsState>>;
|
|
@@ -6312,6 +6412,7 @@ declare const signalEvents: {
|
|
|
6312
6412
|
clientLeft: _reduxjs_toolkit.ActionCreatorWithPayload<ClientLeftEvent, string>;
|
|
6313
6413
|
clientKicked: _reduxjs_toolkit.ActionCreatorWithPayload<ClientKickedEvent, string>;
|
|
6314
6414
|
clientMetadataReceived: _reduxjs_toolkit.ActionCreatorWithPayload<ClientMetadataReceivedEvent, string>;
|
|
6415
|
+
clientUnableToJoin: _reduxjs_toolkit.ActionCreatorWithPayload<ClientUnableToJoinEvent, string>;
|
|
6315
6416
|
cloudRecordingStarted: _reduxjs_toolkit.ActionCreatorWithPayload<CloudRecordingStartedEvent, string>;
|
|
6316
6417
|
cloudRecordingStopped: _reduxjs_toolkit.ActionCreatorWithoutPayload<string>;
|
|
6317
6418
|
disconnect: _reduxjs_toolkit.ActionCreatorWithoutPayload<string>;
|
|
@@ -6382,6 +6483,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6382
6483
|
evaluationFailed: number;
|
|
6383
6484
|
roomJoined: number;
|
|
6384
6485
|
};
|
|
6486
|
+
reconnectThresholdInMs: number;
|
|
6385
6487
|
_onRoomJoined: (payload: any) => Promise<void>;
|
|
6386
6488
|
_onClientLeft: (payload: any) => void;
|
|
6387
6489
|
_onPendingClientLeft: (payload: any) => void;
|
|
@@ -6421,6 +6523,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6421
6523
|
} | null | undefined;
|
|
6422
6524
|
noopKeepaliveInterval: any;
|
|
6423
6525
|
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
6526
|
+
disconnectTimestamp: number | undefined;
|
|
6424
6527
|
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
6425
6528
|
connect: () => void;
|
|
6426
6529
|
disconnect: () => void;
|
|
@@ -6429,8 +6532,8 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6429
6532
|
emitIfConnected: (eventName: string, data: any) => void;
|
|
6430
6533
|
getTransport: () => any;
|
|
6431
6534
|
getManager: () => any;
|
|
6432
|
-
isConnecting: () =>
|
|
6433
|
-
isConnected: () =>
|
|
6535
|
+
isConnecting: () => boolean;
|
|
6536
|
+
isConnected: () => boolean;
|
|
6434
6537
|
on: (eventName: string, handler: Function) => () => void;
|
|
6435
6538
|
once: (eventName: string, handler: Function) => void;
|
|
6436
6539
|
off: (eventName: string, handler: Function) => void;
|
|
@@ -6441,6 +6544,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6441
6544
|
evaluationFailed: number;
|
|
6442
6545
|
roomJoined: number;
|
|
6443
6546
|
} | undefined;
|
|
6547
|
+
getReconnectThreshold: () => number | undefined;
|
|
6444
6548
|
} | null;
|
|
6445
6549
|
}) => {
|
|
6446
6550
|
status: "connecting";
|
|
@@ -6484,6 +6588,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6484
6588
|
evaluationFailed: number;
|
|
6485
6589
|
roomJoined: number;
|
|
6486
6590
|
};
|
|
6591
|
+
reconnectThresholdInMs: number;
|
|
6487
6592
|
_onRoomJoined: (payload: any) => Promise<void>;
|
|
6488
6593
|
_onClientLeft: (payload: any) => void;
|
|
6489
6594
|
_onPendingClientLeft: (payload: any) => void;
|
|
@@ -6523,6 +6628,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6523
6628
|
} | null | undefined;
|
|
6524
6629
|
noopKeepaliveInterval: any;
|
|
6525
6630
|
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
6631
|
+
disconnectTimestamp: number | undefined;
|
|
6526
6632
|
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
6527
6633
|
connect: () => void;
|
|
6528
6634
|
disconnect: () => void;
|
|
@@ -6531,8 +6637,8 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6531
6637
|
emitIfConnected: (eventName: string, data: any) => void;
|
|
6532
6638
|
getTransport: () => any;
|
|
6533
6639
|
getManager: () => any;
|
|
6534
|
-
isConnecting: () =>
|
|
6535
|
-
isConnected: () =>
|
|
6640
|
+
isConnecting: () => boolean;
|
|
6641
|
+
isConnected: () => boolean;
|
|
6536
6642
|
on: (eventName: string, handler: Function) => () => void;
|
|
6537
6643
|
once: (eventName: string, handler: Function) => void;
|
|
6538
6644
|
off: (eventName: string, handler: Function) => void;
|
|
@@ -6543,6 +6649,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6543
6649
|
evaluationFailed: number;
|
|
6544
6650
|
roomJoined: number;
|
|
6545
6651
|
} | undefined;
|
|
6652
|
+
getReconnectThreshold: () => number | undefined;
|
|
6546
6653
|
} | null;
|
|
6547
6654
|
};
|
|
6548
6655
|
socketConnected: (state: {
|
|
@@ -6587,6 +6694,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6587
6694
|
evaluationFailed: number;
|
|
6588
6695
|
roomJoined: number;
|
|
6589
6696
|
};
|
|
6697
|
+
reconnectThresholdInMs: number;
|
|
6590
6698
|
_onRoomJoined: (payload: any) => Promise<void>;
|
|
6591
6699
|
_onClientLeft: (payload: any) => void;
|
|
6592
6700
|
_onPendingClientLeft: (payload: any) => void;
|
|
@@ -6626,6 +6734,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6626
6734
|
} | null | undefined;
|
|
6627
6735
|
noopKeepaliveInterval: any;
|
|
6628
6736
|
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
6737
|
+
disconnectTimestamp: number | undefined;
|
|
6629
6738
|
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
6630
6739
|
connect: () => void;
|
|
6631
6740
|
disconnect: () => void;
|
|
@@ -6634,8 +6743,8 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6634
6743
|
emitIfConnected: (eventName: string, data: any) => void;
|
|
6635
6744
|
getTransport: () => any;
|
|
6636
6745
|
getManager: () => any;
|
|
6637
|
-
isConnecting: () =>
|
|
6638
|
-
isConnected: () =>
|
|
6746
|
+
isConnecting: () => boolean;
|
|
6747
|
+
isConnected: () => boolean;
|
|
6639
6748
|
on: (eventName: string, handler: Function) => () => void;
|
|
6640
6749
|
once: (eventName: string, handler: Function) => void;
|
|
6641
6750
|
off: (eventName: string, handler: Function) => void;
|
|
@@ -6646,6 +6755,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6646
6755
|
evaluationFailed: number;
|
|
6647
6756
|
roomJoined: number;
|
|
6648
6757
|
} | undefined;
|
|
6758
|
+
getReconnectThreshold: () => number | undefined;
|
|
6649
6759
|
} | null;
|
|
6650
6760
|
}, action: PayloadAction<ServerSocket>) => {
|
|
6651
6761
|
socket: ServerSocket;
|
|
@@ -6695,6 +6805,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6695
6805
|
evaluationFailed: number;
|
|
6696
6806
|
roomJoined: number;
|
|
6697
6807
|
};
|
|
6808
|
+
reconnectThresholdInMs: number;
|
|
6698
6809
|
_onRoomJoined: (payload: any) => Promise<void>;
|
|
6699
6810
|
_onClientLeft: (payload: any) => void;
|
|
6700
6811
|
_onPendingClientLeft: (payload: any) => void;
|
|
@@ -6734,6 +6845,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6734
6845
|
} | null | undefined;
|
|
6735
6846
|
noopKeepaliveInterval: any;
|
|
6736
6847
|
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
6848
|
+
disconnectTimestamp: number | undefined;
|
|
6737
6849
|
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
6738
6850
|
connect: () => void;
|
|
6739
6851
|
disconnect: () => void;
|
|
@@ -6742,8 +6854,8 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6742
6854
|
emitIfConnected: (eventName: string, data: any) => void;
|
|
6743
6855
|
getTransport: () => any;
|
|
6744
6856
|
getManager: () => any;
|
|
6745
|
-
isConnecting: () =>
|
|
6746
|
-
isConnected: () =>
|
|
6857
|
+
isConnecting: () => boolean;
|
|
6858
|
+
isConnected: () => boolean;
|
|
6747
6859
|
on: (eventName: string, handler: Function) => () => void;
|
|
6748
6860
|
once: (eventName: string, handler: Function) => void;
|
|
6749
6861
|
off: (eventName: string, handler: Function) => void;
|
|
@@ -6754,6 +6866,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6754
6866
|
evaluationFailed: number;
|
|
6755
6867
|
roomJoined: number;
|
|
6756
6868
|
} | undefined;
|
|
6869
|
+
getReconnectThreshold: () => number | undefined;
|
|
6757
6870
|
} | null;
|
|
6758
6871
|
}) => {
|
|
6759
6872
|
deviceIdentified: false;
|
|
@@ -6797,6 +6910,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6797
6910
|
evaluationFailed: number;
|
|
6798
6911
|
roomJoined: number;
|
|
6799
6912
|
};
|
|
6913
|
+
reconnectThresholdInMs: number;
|
|
6800
6914
|
_onRoomJoined: (payload: any) => Promise<void>;
|
|
6801
6915
|
_onClientLeft: (payload: any) => void;
|
|
6802
6916
|
_onPendingClientLeft: (payload: any) => void;
|
|
@@ -6836,6 +6950,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6836
6950
|
} | null | undefined;
|
|
6837
6951
|
noopKeepaliveInterval: any;
|
|
6838
6952
|
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
6953
|
+
disconnectTimestamp: number | undefined;
|
|
6839
6954
|
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
6840
6955
|
connect: () => void;
|
|
6841
6956
|
disconnect: () => void;
|
|
@@ -6844,8 +6959,8 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6844
6959
|
emitIfConnected: (eventName: string, data: any) => void;
|
|
6845
6960
|
getTransport: () => any;
|
|
6846
6961
|
getManager: () => any;
|
|
6847
|
-
isConnecting: () =>
|
|
6848
|
-
isConnected: () =>
|
|
6962
|
+
isConnecting: () => boolean;
|
|
6963
|
+
isConnected: () => boolean;
|
|
6849
6964
|
on: (eventName: string, handler: Function) => () => void;
|
|
6850
6965
|
once: (eventName: string, handler: Function) => void;
|
|
6851
6966
|
off: (eventName: string, handler: Function) => void;
|
|
@@ -6856,6 +6971,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6856
6971
|
evaluationFailed: number;
|
|
6857
6972
|
roomJoined: number;
|
|
6858
6973
|
} | undefined;
|
|
6974
|
+
getReconnectThreshold: () => number | undefined;
|
|
6859
6975
|
} | null;
|
|
6860
6976
|
};
|
|
6861
6977
|
socketReconnecting: (state: {
|
|
@@ -6900,6 +7016,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6900
7016
|
evaluationFailed: number;
|
|
6901
7017
|
roomJoined: number;
|
|
6902
7018
|
};
|
|
7019
|
+
reconnectThresholdInMs: number;
|
|
6903
7020
|
_onRoomJoined: (payload: any) => Promise<void>;
|
|
6904
7021
|
_onClientLeft: (payload: any) => void;
|
|
6905
7022
|
_onPendingClientLeft: (payload: any) => void;
|
|
@@ -6939,6 +7056,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6939
7056
|
} | null | undefined;
|
|
6940
7057
|
noopKeepaliveInterval: any;
|
|
6941
7058
|
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
7059
|
+
disconnectTimestamp: number | undefined;
|
|
6942
7060
|
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
6943
7061
|
connect: () => void;
|
|
6944
7062
|
disconnect: () => void;
|
|
@@ -6947,8 +7065,8 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6947
7065
|
emitIfConnected: (eventName: string, data: any) => void;
|
|
6948
7066
|
getTransport: () => any;
|
|
6949
7067
|
getManager: () => any;
|
|
6950
|
-
isConnecting: () =>
|
|
6951
|
-
isConnected: () =>
|
|
7068
|
+
isConnecting: () => boolean;
|
|
7069
|
+
isConnected: () => boolean;
|
|
6952
7070
|
on: (eventName: string, handler: Function) => () => void;
|
|
6953
7071
|
once: (eventName: string, handler: Function) => void;
|
|
6954
7072
|
off: (eventName: string, handler: Function) => void;
|
|
@@ -6959,6 +7077,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6959
7077
|
evaluationFailed: number;
|
|
6960
7078
|
roomJoined: number;
|
|
6961
7079
|
} | undefined;
|
|
7080
|
+
getReconnectThreshold: () => number | undefined;
|
|
6962
7081
|
} | null;
|
|
6963
7082
|
}) => {
|
|
6964
7083
|
status: "reconnecting";
|
|
@@ -7002,6 +7121,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7002
7121
|
evaluationFailed: number;
|
|
7003
7122
|
roomJoined: number;
|
|
7004
7123
|
};
|
|
7124
|
+
reconnectThresholdInMs: number;
|
|
7005
7125
|
_onRoomJoined: (payload: any) => Promise<void>;
|
|
7006
7126
|
_onClientLeft: (payload: any) => void;
|
|
7007
7127
|
_onPendingClientLeft: (payload: any) => void;
|
|
@@ -7041,6 +7161,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7041
7161
|
} | null | undefined;
|
|
7042
7162
|
noopKeepaliveInterval: any;
|
|
7043
7163
|
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
7164
|
+
disconnectTimestamp: number | undefined;
|
|
7044
7165
|
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
7045
7166
|
connect: () => void;
|
|
7046
7167
|
disconnect: () => void;
|
|
@@ -7049,8 +7170,8 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7049
7170
|
emitIfConnected: (eventName: string, data: any) => void;
|
|
7050
7171
|
getTransport: () => any;
|
|
7051
7172
|
getManager: () => any;
|
|
7052
|
-
isConnecting: () =>
|
|
7053
|
-
isConnected: () =>
|
|
7173
|
+
isConnecting: () => boolean;
|
|
7174
|
+
isConnected: () => boolean;
|
|
7054
7175
|
on: (eventName: string, handler: Function) => () => void;
|
|
7055
7176
|
once: (eventName: string, handler: Function) => void;
|
|
7056
7177
|
off: (eventName: string, handler: Function) => void;
|
|
@@ -7061,6 +7182,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7061
7182
|
evaluationFailed: number;
|
|
7062
7183
|
roomJoined: number;
|
|
7063
7184
|
} | undefined;
|
|
7185
|
+
getReconnectThreshold: () => number | undefined;
|
|
7064
7186
|
} | null;
|
|
7065
7187
|
};
|
|
7066
7188
|
deviceIdentifying: (state: {
|
|
@@ -7105,6 +7227,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7105
7227
|
evaluationFailed: number;
|
|
7106
7228
|
roomJoined: number;
|
|
7107
7229
|
};
|
|
7230
|
+
reconnectThresholdInMs: number;
|
|
7108
7231
|
_onRoomJoined: (payload: any) => Promise<void>;
|
|
7109
7232
|
_onClientLeft: (payload: any) => void;
|
|
7110
7233
|
_onPendingClientLeft: (payload: any) => void;
|
|
@@ -7144,6 +7267,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7144
7267
|
} | null | undefined;
|
|
7145
7268
|
noopKeepaliveInterval: any;
|
|
7146
7269
|
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
7270
|
+
disconnectTimestamp: number | undefined;
|
|
7147
7271
|
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
7148
7272
|
connect: () => void;
|
|
7149
7273
|
disconnect: () => void;
|
|
@@ -7152,8 +7276,8 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7152
7276
|
emitIfConnected: (eventName: string, data: any) => void;
|
|
7153
7277
|
getTransport: () => any;
|
|
7154
7278
|
getManager: () => any;
|
|
7155
|
-
isConnecting: () =>
|
|
7156
|
-
isConnected: () =>
|
|
7279
|
+
isConnecting: () => boolean;
|
|
7280
|
+
isConnected: () => boolean;
|
|
7157
7281
|
on: (eventName: string, handler: Function) => () => void;
|
|
7158
7282
|
once: (eventName: string, handler: Function) => void;
|
|
7159
7283
|
off: (eventName: string, handler: Function) => void;
|
|
@@ -7164,6 +7288,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7164
7288
|
evaluationFailed: number;
|
|
7165
7289
|
roomJoined: number;
|
|
7166
7290
|
} | undefined;
|
|
7291
|
+
getReconnectThreshold: () => number | undefined;
|
|
7167
7292
|
} | null;
|
|
7168
7293
|
}) => {
|
|
7169
7294
|
isIdentifyingDevice: true;
|
|
@@ -7207,6 +7332,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7207
7332
|
evaluationFailed: number;
|
|
7208
7333
|
roomJoined: number;
|
|
7209
7334
|
};
|
|
7335
|
+
reconnectThresholdInMs: number;
|
|
7210
7336
|
_onRoomJoined: (payload: any) => Promise<void>;
|
|
7211
7337
|
_onClientLeft: (payload: any) => void;
|
|
7212
7338
|
_onPendingClientLeft: (payload: any) => void;
|
|
@@ -7246,6 +7372,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7246
7372
|
} | null | undefined;
|
|
7247
7373
|
noopKeepaliveInterval: any;
|
|
7248
7374
|
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
7375
|
+
disconnectTimestamp: number | undefined;
|
|
7249
7376
|
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
7250
7377
|
connect: () => void;
|
|
7251
7378
|
disconnect: () => void;
|
|
@@ -7254,8 +7381,8 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7254
7381
|
emitIfConnected: (eventName: string, data: any) => void;
|
|
7255
7382
|
getTransport: () => any;
|
|
7256
7383
|
getManager: () => any;
|
|
7257
|
-
isConnecting: () =>
|
|
7258
|
-
isConnected: () =>
|
|
7384
|
+
isConnecting: () => boolean;
|
|
7385
|
+
isConnected: () => boolean;
|
|
7259
7386
|
on: (eventName: string, handler: Function) => () => void;
|
|
7260
7387
|
once: (eventName: string, handler: Function) => void;
|
|
7261
7388
|
off: (eventName: string, handler: Function) => void;
|
|
@@ -7266,6 +7393,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7266
7393
|
evaluationFailed: number;
|
|
7267
7394
|
roomJoined: number;
|
|
7268
7395
|
} | undefined;
|
|
7396
|
+
getReconnectThreshold: () => number | undefined;
|
|
7269
7397
|
} | null;
|
|
7270
7398
|
};
|
|
7271
7399
|
deviceIdentified: (state: {
|
|
@@ -7310,6 +7438,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7310
7438
|
evaluationFailed: number;
|
|
7311
7439
|
roomJoined: number;
|
|
7312
7440
|
};
|
|
7441
|
+
reconnectThresholdInMs: number;
|
|
7313
7442
|
_onRoomJoined: (payload: any) => Promise<void>;
|
|
7314
7443
|
_onClientLeft: (payload: any) => void;
|
|
7315
7444
|
_onPendingClientLeft: (payload: any) => void;
|
|
@@ -7349,6 +7478,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7349
7478
|
} | null | undefined;
|
|
7350
7479
|
noopKeepaliveInterval: any;
|
|
7351
7480
|
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
7481
|
+
disconnectTimestamp: number | undefined;
|
|
7352
7482
|
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
7353
7483
|
connect: () => void;
|
|
7354
7484
|
disconnect: () => void;
|
|
@@ -7357,8 +7487,8 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7357
7487
|
emitIfConnected: (eventName: string, data: any) => void;
|
|
7358
7488
|
getTransport: () => any;
|
|
7359
7489
|
getManager: () => any;
|
|
7360
|
-
isConnecting: () =>
|
|
7361
|
-
isConnected: () =>
|
|
7490
|
+
isConnecting: () => boolean;
|
|
7491
|
+
isConnected: () => boolean;
|
|
7362
7492
|
on: (eventName: string, handler: Function) => () => void;
|
|
7363
7493
|
once: (eventName: string, handler: Function) => void;
|
|
7364
7494
|
off: (eventName: string, handler: Function) => void;
|
|
@@ -7369,6 +7499,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7369
7499
|
evaluationFailed: number;
|
|
7370
7500
|
roomJoined: number;
|
|
7371
7501
|
} | undefined;
|
|
7502
|
+
getReconnectThreshold: () => number | undefined;
|
|
7372
7503
|
} | null;
|
|
7373
7504
|
}) => {
|
|
7374
7505
|
deviceIdentified: true;
|
|
@@ -7412,6 +7543,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7412
7543
|
evaluationFailed: number;
|
|
7413
7544
|
roomJoined: number;
|
|
7414
7545
|
};
|
|
7546
|
+
reconnectThresholdInMs: number;
|
|
7415
7547
|
_onRoomJoined: (payload: any) => Promise<void>;
|
|
7416
7548
|
_onClientLeft: (payload: any) => void;
|
|
7417
7549
|
_onPendingClientLeft: (payload: any) => void;
|
|
@@ -7451,6 +7583,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7451
7583
|
} | null | undefined;
|
|
7452
7584
|
noopKeepaliveInterval: any;
|
|
7453
7585
|
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
7586
|
+
disconnectTimestamp: number | undefined;
|
|
7454
7587
|
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
7455
7588
|
connect: () => void;
|
|
7456
7589
|
disconnect: () => void;
|
|
@@ -7459,8 +7592,8 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7459
7592
|
emitIfConnected: (eventName: string, data: any) => void;
|
|
7460
7593
|
getTransport: () => any;
|
|
7461
7594
|
getManager: () => any;
|
|
7462
|
-
isConnecting: () =>
|
|
7463
|
-
isConnected: () =>
|
|
7595
|
+
isConnecting: () => boolean;
|
|
7596
|
+
isConnected: () => boolean;
|
|
7464
7597
|
on: (eventName: string, handler: Function) => () => void;
|
|
7465
7598
|
once: (eventName: string, handler: Function) => void;
|
|
7466
7599
|
off: (eventName: string, handler: Function) => void;
|
|
@@ -7471,6 +7604,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7471
7604
|
evaluationFailed: number;
|
|
7472
7605
|
roomJoined: number;
|
|
7473
7606
|
} | undefined;
|
|
7607
|
+
getReconnectThreshold: () => number | undefined;
|
|
7474
7608
|
} | null;
|
|
7475
7609
|
};
|
|
7476
7610
|
}, "signalConnection", "signalConnection", _reduxjs_toolkit.SliceSelectors<SignalConnectionState>>;
|
|
@@ -8295,4 +8429,4 @@ declare function parseRoomUrlAndSubdomain(roomAttribute?: string, subdomainAttri
|
|
|
8295
8429
|
|
|
8296
8430
|
declare function parseUnverifiedRoomKeyData(roomKey: string): any;
|
|
8297
8431
|
|
|
8298
|
-
export { ApiClient, type AppConfig, type AppDispatch, type AppReducer, type AppStartListening, type AppState, type AppThunk, type AuthorizationState, type ChatMessage, type ChatMessageEvent, type ChatMessageEventProps, type ChatState, type ClientView, type CloudRecordingState, type ConnectionStatus, Credentials, CredentialsService, type DeviceCredentialsState, type FullOrganizationPermissions, type LocalMediaOptions, type LocalMediaState, LocalParticipant, type LocalParticipantState, type LocalScreenshareState, type Notification, type NotificationEvent, type NotificationEventMap, type NotificationEvents, type NotificationsEventEmitter, type NotificationsState, OrganizationApiClient, type OrganizationLimits, type OrganizationOnboardingSurvey, type OrganizationPermissionAction, type OrganizationPermissions, type OrganizationPreferences, OrganizationService, OrganizationServiceCache, type OrganizationState, type RemoteParticipant, type RemoteParticipantData, type RemoteParticipantState, type RequestAudioEvent, type RequestAudioEventProps, type RoomConnectionState, RoomService, type RoomState, type RootState, type RtcConnectionState, type Screenshare, type SignalConnectionState, type SignalStatusEvent, type SignalStatusEventProps, type SpotlightsState, type StickyReaction, type StickyReactionEvent, type StickyReactionEventProps, type Store, type StreamState, type StreamingState, type ThunkConfig, type WaitingParticipant, type WaitingParticipantsState, addAppListener, addSpotlight, appSlice, authorizationSlice, chatSlice, cloudRecordingSlice, createAppAsyncThunk, createAppAuthorizedThunk, createAppThunk, createReactor, createServices, createStore, createWebRtcEmitter, debounce, deviceBusy, deviceCredentialsSlice, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLockRoom, doOrganizationFetch, doRejectWaitingParticipant, doRemoveSpotlight, doRequestAudioEnable, doRtcAnalyticsCustomEventsInitialize, doRtcManagerCreated, doRtcManagerInitialize, doRtcReportStreamResolution, doSendChatMessage, doSendClientMetadata, doSetDevice, doSetDisplayName, doSetLocalStickyReaction, doSetNotification, doSignalConnect, doSignalDisconnect, doSignalIdentifyDevice, doSpotlightParticipant, doStartCloudRecording, doStartLocalMedia, doStartScreenshare, doStopCloudRecording, doStopLocalMedia, doStopScreenshare, doSwitchLocalStream, doToggleCamera, doToggleLowDataMode, doUpdateDeviceList, getAudioTrack, getFakeMediaStream, getVideoTrack, hasValue, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, initialState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localScreenshareSlice, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, parseRoomUrlAndSubdomain, parseUnverifiedRoomKeyData, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, removeSpotlight, resolutionReported, roomConnectionSlice, roomSlice, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, type rtcAnalyticsState, rtcConnectionSlice, rtcDisconnected, rtcDispatcherCreated, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAppDisplayName, selectAppExternalId, selectAppInitialConfig, selectAppIsActive, selectAppIsDialIn, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAuthorizationRoleName, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingRaw, selectCloudRecordingStartedAt, selectCloudRecordingStatus, selectCurrentCameraDeviceId, selectCurrentMicrophoneDeviceId, selectCurrentSpeakerDeviceId, selectDeviceCredentialsRaw, selectDeviceId, selectHasFetchedDeviceCredentials, selectIsAcceptingStreams, selectIsAuthorizedToAskToSpeak, selectIsAuthorizedToEndMeeting, selectIsAuthorizedToKickClient, selectIsAuthorizedToLockRoom, selectIsAuthorizedToRequestAudioEnable, selectIsAuthorizedToSpotlight, selectIsCameraEnabled, selectIsCloudRecording, selectIsLocalMediaStarting, selectIsLocalParticipantSpotlighted, selectIsLowDataModeEnabled, selectIsMicrophoneEnabled, selectIsSettingCameraDevice, selectIsSettingMicrophoneDevice, selectIsToggleCamera, selectLocalMediaConstraintsOptions, selectLocalMediaDevices, selectLocalMediaIsSwitchingStream, selectLocalMediaOptions, selectLocalMediaOwnsStream, selectLocalMediaRaw, selectLocalMediaShouldStartWithOptions, selectLocalMediaShouldStop, selectLocalMediaStartError, selectLocalMediaStatus, selectLocalMediaStream, selectLocalParticipantClientClaim, selectLocalParticipantDisplayName, selectLocalParticipantIsScreenSharing, selectLocalParticipantRaw, selectLocalParticipantStickyReaction, selectLocalParticipantView, selectLocalScreenshareRaw, selectLocalScreenshareStatus, selectLocalScreenshareStream, selectMicrophoneDeviceError, selectMicrophoneDevices, selectNotificationsEmitter, selectNotificationsEvents, selectNotificationsRaw, selectNumClients, selectNumParticipants, selectOrganizationId, selectOrganizationRaw, selectRemoteClientViews, selectRemoteClients, selectRemoteParticipants, selectRemoteParticipantsRaw, selectRoomConnectionError, selectRoomConnectionRaw, selectRoomConnectionSession, selectRoomConnectionSessionId, selectRoomConnectionStatus, selectRoomIsLocked, selectRoomKey, selectRtcConnectionRaw, selectRtcDispatcherCreated, selectRtcIsCreatingDispatcher, selectRtcManager, selectRtcManagerInitialized, selectRtcStatus, selectScreenshares, selectSelfId, selectShouldConnectRoom, selectShouldConnectRtc, selectShouldConnectSignal, selectShouldDisconnectRtc, selectShouldFetchDeviceCredentials, selectShouldFetchOrganization, selectShouldIdentifyDevice, selectShouldInitializeRtc, selectSignalConnectionDeviceIdentified, selectSignalConnectionRaw, selectSignalConnectionSocket, selectSignalIsIdentifyingDevice, selectSignalStatus, selectSpeakerDevices, selectSpotlightedClientViews, selectSpotlights, selectSpotlightsRaw, selectStreamingRaw, selectStreamsToAccept, selectWaitingParticipants, selectWaitingParticipantsRaw, setCurrentCameraDeviceId, setCurrentMicrophoneDeviceId, setCurrentSpeakerDeviceId, setLocalMediaOptions, setLocalMediaStream, setRoomKey, signalConnectionSlice, signalEvents, socketConnected, socketConnecting, socketDisconnected, socketReconnecting, spotlightsSlice, startAppListening, stopScreenshare, streamIdForClient, streamStatusUpdated, streamingSlice, toggleCameraEnabled, toggleLowDataModeEnabled, toggleMicrophoneEnabled, updateReportedValues, waitingParticipantsSlice };
|
|
8432
|
+
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 };
|