@whereby.com/core 0.12.0 → 0.13.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 +247 -184
- package/dist/index.d.cts +282 -49
- package/dist/index.d.mts +282 -49
- package/dist/index.d.ts +282 -49
- package/dist/index.mjs +237 -182
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -294,6 +294,19 @@ declare const updateReportedValues: ActionCreatorWithPayload<{
|
|
|
294
294
|
value: unknown;
|
|
295
295
|
}, "rtcAnalytics/updateReportedValues">;
|
|
296
296
|
|
|
297
|
+
interface RoomState {
|
|
298
|
+
isLocked: boolean;
|
|
299
|
+
}
|
|
300
|
+
declare const roomSlice: _reduxjs_toolkit.Slice<RoomState, {}, "room", "room", _reduxjs_toolkit.SliceSelectors<RoomState>>;
|
|
301
|
+
declare const doLockRoom: (args: {
|
|
302
|
+
locked: boolean;
|
|
303
|
+
}) => AppThunk<void>;
|
|
304
|
+
declare const doKickParticipant: (args: {
|
|
305
|
+
clientId: string;
|
|
306
|
+
}) => AppThunk<void>;
|
|
307
|
+
declare const doEndMeeting: (args: void) => AppThunk<void>;
|
|
308
|
+
declare const selectRoomIsLocked: (state: RootState) => boolean;
|
|
309
|
+
|
|
297
310
|
interface LocalScreenshareState {
|
|
298
311
|
status: "" | "starting" | "active";
|
|
299
312
|
stream: MediaStream | null;
|
|
@@ -406,7 +419,6 @@ declare const doSetLocalParticipant: _reduxjs_toolkit.ActionCreatorWithPayload<L
|
|
|
406
419
|
declare const selectLocalParticipantRaw: (state: RootState) => LocalParticipantState;
|
|
407
420
|
declare const selectSelfId: (state: RootState) => string;
|
|
408
421
|
declare const selectLocalParticipantClientClaim: (state: RootState) => string | undefined;
|
|
409
|
-
declare const selectLocalParticipantRole: (state: RootState) => RoleName;
|
|
410
422
|
declare const selectLocalParticipantIsScreenSharing: (state: RootState) => boolean;
|
|
411
423
|
|
|
412
424
|
interface CloudRecordingState {
|
|
@@ -525,23 +537,20 @@ declare const selectAppIsNodeSdk: (state: RootState) => boolean;
|
|
|
525
537
|
|
|
526
538
|
interface AuthorizationState {
|
|
527
539
|
roomKey: string | null;
|
|
528
|
-
|
|
540
|
+
roleName: RoleName;
|
|
529
541
|
}
|
|
530
542
|
declare const authorizationSlice: _reduxjs_toolkit.Slice<AuthorizationState, {
|
|
531
543
|
setRoomKey: (state: {
|
|
532
544
|
roomKey: string | null;
|
|
533
|
-
|
|
545
|
+
roleName: RoleName;
|
|
534
546
|
}, action: PayloadAction<string | null>) => {
|
|
535
547
|
roomKey: string | null;
|
|
536
|
-
|
|
548
|
+
roleName: RoleName;
|
|
537
549
|
};
|
|
538
550
|
}, "authorization", "authorization", _reduxjs_toolkit.SliceSelectors<AuthorizationState>>;
|
|
539
551
|
declare const setRoomKey: _reduxjs_toolkit.ActionCreatorWithPayload<string | null, "authorization/setRoomKey">;
|
|
540
|
-
declare const
|
|
541
|
-
|
|
542
|
-
}) => AppThunk<void>;
|
|
543
|
-
declare const selectAuthorizationRoomKey: (state: RootState) => string | null;
|
|
544
|
-
declare const selectAuthorizationRoomLocked: (state: RootState) => boolean;
|
|
552
|
+
declare const selectRoomKey: (state: RootState) => string | null;
|
|
553
|
+
declare const selectAuthorizationRoleName: (state: RootState) => RoleName;
|
|
545
554
|
declare const selectIsAuthorizedToLockRoom: ((state: {
|
|
546
555
|
app: AppState;
|
|
547
556
|
authorization: AuthorizationState;
|
|
@@ -553,6 +562,7 @@ declare const selectIsAuthorizedToLockRoom: ((state: {
|
|
|
553
562
|
localScreenshare: LocalScreenshareState;
|
|
554
563
|
organization: OrganizationState;
|
|
555
564
|
remoteParticipants: RemoteParticipantState;
|
|
565
|
+
room: RoomState;
|
|
556
566
|
roomConnection: RoomConnectionState;
|
|
557
567
|
rtcAnalytics: rtcAnalyticsState;
|
|
558
568
|
rtcConnection: RtcConnectionState;
|
|
@@ -571,24 +581,7 @@ declare const selectIsAuthorizedToLockRoom: ((state: {
|
|
|
571
581
|
resetResultsCount: () => void;
|
|
572
582
|
};
|
|
573
583
|
lastResult: () => boolean;
|
|
574
|
-
dependencies: [(state:
|
|
575
|
-
app: AppState;
|
|
576
|
-
authorization: AuthorizationState;
|
|
577
|
-
chat: ChatState;
|
|
578
|
-
cloudRecording: CloudRecordingState;
|
|
579
|
-
deviceCredentials: DeviceCredentialsState;
|
|
580
|
-
localMedia: LocalMediaState;
|
|
581
|
-
localParticipant: LocalParticipantState;
|
|
582
|
-
localScreenshare: LocalScreenshareState;
|
|
583
|
-
organization: OrganizationState;
|
|
584
|
-
remoteParticipants: RemoteParticipantState;
|
|
585
|
-
roomConnection: RoomConnectionState;
|
|
586
|
-
rtcAnalytics: rtcAnalyticsState;
|
|
587
|
-
rtcConnection: RtcConnectionState;
|
|
588
|
-
signalConnection: SignalConnectionState;
|
|
589
|
-
streaming: StreamingState;
|
|
590
|
-
waitingParticipants: WaitingParticipantsState;
|
|
591
|
-
}) => RoleName];
|
|
584
|
+
dependencies: [(state: RootState) => RoleName];
|
|
592
585
|
recomputations: () => number;
|
|
593
586
|
resetRecomputations: () => void;
|
|
594
587
|
dependencyRecomputations: () => number;
|
|
@@ -608,6 +601,7 @@ declare const selectIsAuthorizedToRequestAudioEnable: ((state: {
|
|
|
608
601
|
localScreenshare: LocalScreenshareState;
|
|
609
602
|
organization: OrganizationState;
|
|
610
603
|
remoteParticipants: RemoteParticipantState;
|
|
604
|
+
room: RoomState;
|
|
611
605
|
roomConnection: RoomConnectionState;
|
|
612
606
|
rtcAnalytics: rtcAnalyticsState;
|
|
613
607
|
rtcConnection: RtcConnectionState;
|
|
@@ -626,24 +620,85 @@ declare const selectIsAuthorizedToRequestAudioEnable: ((state: {
|
|
|
626
620
|
resetResultsCount: () => void;
|
|
627
621
|
};
|
|
628
622
|
lastResult: () => boolean;
|
|
629
|
-
dependencies: [(state:
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
623
|
+
dependencies: [(state: RootState) => RoleName];
|
|
624
|
+
recomputations: () => number;
|
|
625
|
+
resetRecomputations: () => void;
|
|
626
|
+
dependencyRecomputations: () => number;
|
|
627
|
+
resetDependencyRecomputations: () => void;
|
|
628
|
+
} & {
|
|
629
|
+
argsMemoize: typeof reselect.weakMapMemoize;
|
|
630
|
+
memoize: typeof reselect.weakMapMemoize;
|
|
631
|
+
};
|
|
632
|
+
declare const selectIsAuthorizedToKickClient: ((state: {
|
|
633
|
+
app: AppState;
|
|
634
|
+
authorization: AuthorizationState;
|
|
635
|
+
chat: ChatState;
|
|
636
|
+
cloudRecording: CloudRecordingState;
|
|
637
|
+
deviceCredentials: DeviceCredentialsState;
|
|
638
|
+
localMedia: LocalMediaState;
|
|
639
|
+
localParticipant: LocalParticipantState;
|
|
640
|
+
localScreenshare: LocalScreenshareState;
|
|
641
|
+
organization: OrganizationState;
|
|
642
|
+
remoteParticipants: RemoteParticipantState;
|
|
643
|
+
room: RoomState;
|
|
644
|
+
roomConnection: RoomConnectionState;
|
|
645
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
646
|
+
rtcConnection: RtcConnectionState;
|
|
647
|
+
signalConnection: SignalConnectionState;
|
|
648
|
+
streaming: StreamingState;
|
|
649
|
+
waitingParticipants: WaitingParticipantsState;
|
|
650
|
+
}) => boolean) & {
|
|
651
|
+
clearCache: () => void;
|
|
652
|
+
resultsCount: () => number;
|
|
653
|
+
resetResultsCount: () => void;
|
|
654
|
+
} & {
|
|
655
|
+
resultFunc: (resultFuncArgs_0: RoleName) => boolean;
|
|
656
|
+
memoizedResultFunc: ((resultFuncArgs_0: RoleName) => boolean) & {
|
|
657
|
+
clearCache: () => void;
|
|
658
|
+
resultsCount: () => number;
|
|
659
|
+
resetResultsCount: () => void;
|
|
660
|
+
};
|
|
661
|
+
lastResult: () => boolean;
|
|
662
|
+
dependencies: [(state: RootState) => RoleName];
|
|
663
|
+
recomputations: () => number;
|
|
664
|
+
resetRecomputations: () => void;
|
|
665
|
+
dependencyRecomputations: () => number;
|
|
666
|
+
resetDependencyRecomputations: () => void;
|
|
667
|
+
} & {
|
|
668
|
+
argsMemoize: typeof reselect.weakMapMemoize;
|
|
669
|
+
memoize: typeof reselect.weakMapMemoize;
|
|
670
|
+
};
|
|
671
|
+
declare const selectIsAuthorizedToEndMeeting: ((state: {
|
|
672
|
+
app: AppState;
|
|
673
|
+
authorization: AuthorizationState;
|
|
674
|
+
chat: ChatState;
|
|
675
|
+
cloudRecording: CloudRecordingState;
|
|
676
|
+
deviceCredentials: DeviceCredentialsState;
|
|
677
|
+
localMedia: LocalMediaState;
|
|
678
|
+
localParticipant: LocalParticipantState;
|
|
679
|
+
localScreenshare: LocalScreenshareState;
|
|
680
|
+
organization: OrganizationState;
|
|
681
|
+
remoteParticipants: RemoteParticipantState;
|
|
682
|
+
room: RoomState;
|
|
683
|
+
roomConnection: RoomConnectionState;
|
|
684
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
685
|
+
rtcConnection: RtcConnectionState;
|
|
686
|
+
signalConnection: SignalConnectionState;
|
|
687
|
+
streaming: StreamingState;
|
|
688
|
+
waitingParticipants: WaitingParticipantsState;
|
|
689
|
+
}) => boolean) & {
|
|
690
|
+
clearCache: () => void;
|
|
691
|
+
resultsCount: () => number;
|
|
692
|
+
resetResultsCount: () => void;
|
|
693
|
+
} & {
|
|
694
|
+
resultFunc: (resultFuncArgs_0: RoleName) => boolean;
|
|
695
|
+
memoizedResultFunc: ((resultFuncArgs_0: RoleName) => boolean) & {
|
|
696
|
+
clearCache: () => void;
|
|
697
|
+
resultsCount: () => number;
|
|
698
|
+
resetResultsCount: () => void;
|
|
699
|
+
};
|
|
700
|
+
lastResult: () => boolean;
|
|
701
|
+
dependencies: [(state: RootState) => RoleName];
|
|
647
702
|
recomputations: () => number;
|
|
648
703
|
resetRecomputations: () => void;
|
|
649
704
|
dependencyRecomputations: () => number;
|
|
@@ -902,6 +957,7 @@ declare const selectShouldFetchDeviceCredentials: ((state: {
|
|
|
902
957
|
localScreenshare: LocalScreenshareState;
|
|
903
958
|
organization: OrganizationState;
|
|
904
959
|
remoteParticipants: RemoteParticipantState;
|
|
960
|
+
room: RoomState;
|
|
905
961
|
roomConnection: RoomConnectionState;
|
|
906
962
|
rtcAnalytics: rtcAnalyticsState;
|
|
907
963
|
rtcConnection: RtcConnectionState;
|
|
@@ -931,6 +987,7 @@ declare const selectShouldFetchDeviceCredentials: ((state: {
|
|
|
931
987
|
localScreenshare: LocalScreenshareState;
|
|
932
988
|
organization: OrganizationState;
|
|
933
989
|
remoteParticipants: RemoteParticipantState;
|
|
990
|
+
room: RoomState;
|
|
934
991
|
roomConnection: RoomConnectionState;
|
|
935
992
|
rtcAnalytics: rtcAnalyticsState;
|
|
936
993
|
rtcConnection: RtcConnectionState;
|
|
@@ -970,6 +1027,7 @@ interface LocalMediaState {
|
|
|
970
1027
|
isSettingCameraDevice: boolean;
|
|
971
1028
|
isSettingMicrophoneDevice: boolean;
|
|
972
1029
|
isTogglingCamera: boolean;
|
|
1030
|
+
lowDataMode: boolean;
|
|
973
1031
|
microphoneDeviceError?: unknown;
|
|
974
1032
|
microphoneEnabled: boolean;
|
|
975
1033
|
options?: LocalMediaOptions;
|
|
@@ -997,6 +1055,7 @@ declare const localMediaSlice: _reduxjs_toolkit.Slice<LocalMediaState, {
|
|
|
997
1055
|
isSettingCameraDevice: boolean;
|
|
998
1056
|
isSettingMicrophoneDevice: boolean;
|
|
999
1057
|
isTogglingCamera: boolean;
|
|
1058
|
+
lowDataMode: boolean;
|
|
1000
1059
|
microphoneDeviceError?: unknown;
|
|
1001
1060
|
microphoneEnabled: boolean;
|
|
1002
1061
|
options?: {
|
|
@@ -1047,6 +1106,7 @@ declare const localMediaSlice: _reduxjs_toolkit.Slice<LocalMediaState, {
|
|
|
1047
1106
|
isSettingCameraDevice: boolean;
|
|
1048
1107
|
isSettingMicrophoneDevice: boolean;
|
|
1049
1108
|
isTogglingCamera: boolean;
|
|
1109
|
+
lowDataMode: boolean;
|
|
1050
1110
|
microphoneDeviceError?: unknown;
|
|
1051
1111
|
microphoneEnabled: boolean;
|
|
1052
1112
|
options?: {
|
|
@@ -1096,6 +1156,7 @@ declare const localMediaSlice: _reduxjs_toolkit.Slice<LocalMediaState, {
|
|
|
1096
1156
|
isSettingCameraDevice: boolean;
|
|
1097
1157
|
isSettingMicrophoneDevice: boolean;
|
|
1098
1158
|
isTogglingCamera: boolean;
|
|
1159
|
+
lowDataMode: boolean;
|
|
1099
1160
|
microphoneDeviceError?: unknown;
|
|
1100
1161
|
microphoneEnabled: boolean;
|
|
1101
1162
|
options?: {
|
|
@@ -1146,6 +1207,7 @@ declare const localMediaSlice: _reduxjs_toolkit.Slice<LocalMediaState, {
|
|
|
1146
1207
|
isSettingCameraDevice: boolean;
|
|
1147
1208
|
isSettingMicrophoneDevice: boolean;
|
|
1148
1209
|
isTogglingCamera: boolean;
|
|
1210
|
+
lowDataMode: boolean;
|
|
1149
1211
|
microphoneDeviceError?: unknown;
|
|
1150
1212
|
microphoneEnabled: boolean;
|
|
1151
1213
|
options?: {
|
|
@@ -1195,6 +1257,7 @@ declare const localMediaSlice: _reduxjs_toolkit.Slice<LocalMediaState, {
|
|
|
1195
1257
|
isSettingCameraDevice: boolean;
|
|
1196
1258
|
isSettingMicrophoneDevice: boolean;
|
|
1197
1259
|
isTogglingCamera: boolean;
|
|
1260
|
+
lowDataMode: boolean;
|
|
1198
1261
|
microphoneDeviceError?: unknown;
|
|
1199
1262
|
microphoneEnabled: boolean;
|
|
1200
1263
|
options?: {
|
|
@@ -1245,6 +1308,7 @@ declare const localMediaSlice: _reduxjs_toolkit.Slice<LocalMediaState, {
|
|
|
1245
1308
|
isSettingCameraDevice: boolean;
|
|
1246
1309
|
isSettingMicrophoneDevice: boolean;
|
|
1247
1310
|
isTogglingCamera: boolean;
|
|
1311
|
+
lowDataMode: boolean;
|
|
1248
1312
|
microphoneDeviceError?: unknown;
|
|
1249
1313
|
microphoneEnabled: boolean;
|
|
1250
1314
|
options?: {
|
|
@@ -1294,6 +1358,7 @@ declare const localMediaSlice: _reduxjs_toolkit.Slice<LocalMediaState, {
|
|
|
1294
1358
|
isSettingCameraDevice: boolean;
|
|
1295
1359
|
isSettingMicrophoneDevice: boolean;
|
|
1296
1360
|
isTogglingCamera: boolean;
|
|
1361
|
+
lowDataMode: boolean;
|
|
1297
1362
|
microphoneDeviceError?: unknown;
|
|
1298
1363
|
microphoneEnabled: boolean;
|
|
1299
1364
|
options?: {
|
|
@@ -1345,6 +1410,7 @@ declare const localMediaSlice: _reduxjs_toolkit.Slice<LocalMediaState, {
|
|
|
1345
1410
|
isSettingCameraDevice: boolean;
|
|
1346
1411
|
isSettingMicrophoneDevice: boolean;
|
|
1347
1412
|
isTogglingCamera: boolean;
|
|
1413
|
+
lowDataMode: boolean;
|
|
1348
1414
|
microphoneDeviceError?: unknown;
|
|
1349
1415
|
options?: {
|
|
1350
1416
|
audio: boolean;
|
|
@@ -1393,6 +1459,7 @@ declare const localMediaSlice: _reduxjs_toolkit.Slice<LocalMediaState, {
|
|
|
1393
1459
|
isSettingCameraDevice: boolean;
|
|
1394
1460
|
isSettingMicrophoneDevice: boolean;
|
|
1395
1461
|
isTogglingCamera: boolean;
|
|
1462
|
+
lowDataMode: boolean;
|
|
1396
1463
|
microphoneDeviceError?: unknown;
|
|
1397
1464
|
microphoneEnabled: boolean;
|
|
1398
1465
|
options?: {
|
|
@@ -1443,6 +1510,108 @@ declare const localMediaSlice: _reduxjs_toolkit.Slice<LocalMediaState, {
|
|
|
1443
1510
|
isSettingCameraDevice: boolean;
|
|
1444
1511
|
isSettingMicrophoneDevice: boolean;
|
|
1445
1512
|
isTogglingCamera: boolean;
|
|
1513
|
+
lowDataMode: boolean;
|
|
1514
|
+
microphoneDeviceError?: unknown;
|
|
1515
|
+
microphoneEnabled: boolean;
|
|
1516
|
+
options?: {
|
|
1517
|
+
audio: boolean;
|
|
1518
|
+
video: boolean;
|
|
1519
|
+
} | undefined;
|
|
1520
|
+
status: "" | "stopped" | "starting" | "started" | "error";
|
|
1521
|
+
startError?: unknown;
|
|
1522
|
+
stream?: {
|
|
1523
|
+
active: boolean;
|
|
1524
|
+
id: string;
|
|
1525
|
+
onaddtrack: ((this: MediaStream, ev: MediaStreamTrackEvent) => any) | null;
|
|
1526
|
+
onremovetrack: ((this: MediaStream, ev: MediaStreamTrackEvent) => any) | null;
|
|
1527
|
+
addTrack: (track: MediaStreamTrack) => void;
|
|
1528
|
+
clone: () => MediaStream;
|
|
1529
|
+
getAudioTracks: () => MediaStreamTrack[];
|
|
1530
|
+
getTrackById: (trackId: string) => MediaStreamTrack | null;
|
|
1531
|
+
getTracks: () => MediaStreamTrack[];
|
|
1532
|
+
getVideoTracks: () => MediaStreamTrack[];
|
|
1533
|
+
removeTrack: (track: MediaStreamTrack) => void;
|
|
1534
|
+
addEventListener: {
|
|
1535
|
+
<K extends keyof MediaStreamEventMap>(type: K, listener: (this: MediaStream, ev: MediaStreamEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
1536
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
1537
|
+
};
|
|
1538
|
+
removeEventListener: {
|
|
1539
|
+
<K_1 extends keyof MediaStreamEventMap>(type: K_1, listener: (this: MediaStream, ev: MediaStreamEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
|
|
1540
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
|
|
1541
|
+
};
|
|
1542
|
+
dispatchEvent: (event: Event) => boolean;
|
|
1543
|
+
} | undefined;
|
|
1544
|
+
isSwitchingStream: boolean;
|
|
1545
|
+
onDeviceChange?: (() => void) | undefined;
|
|
1546
|
+
};
|
|
1547
|
+
toggleLowDataModeEnabled(state: {
|
|
1548
|
+
busyDeviceIds: string[];
|
|
1549
|
+
cameraDeviceError?: unknown;
|
|
1550
|
+
cameraEnabled: boolean;
|
|
1551
|
+
currentCameraDeviceId?: string | undefined;
|
|
1552
|
+
currentMicrophoneDeviceId?: string | undefined;
|
|
1553
|
+
devices: {
|
|
1554
|
+
deviceId: string;
|
|
1555
|
+
groupId: string;
|
|
1556
|
+
kind: MediaDeviceKind;
|
|
1557
|
+
label: string;
|
|
1558
|
+
toJSON: () => any;
|
|
1559
|
+
}[];
|
|
1560
|
+
isSettingCameraDevice: boolean;
|
|
1561
|
+
isSettingMicrophoneDevice: boolean;
|
|
1562
|
+
isTogglingCamera: boolean;
|
|
1563
|
+
lowDataMode: boolean;
|
|
1564
|
+
microphoneDeviceError?: unknown;
|
|
1565
|
+
microphoneEnabled: boolean;
|
|
1566
|
+
options?: {
|
|
1567
|
+
audio: boolean;
|
|
1568
|
+
video: boolean;
|
|
1569
|
+
} | undefined;
|
|
1570
|
+
status: "" | "stopped" | "starting" | "started" | "error";
|
|
1571
|
+
startError?: unknown;
|
|
1572
|
+
stream?: {
|
|
1573
|
+
active: boolean;
|
|
1574
|
+
id: string;
|
|
1575
|
+
onaddtrack: ((this: MediaStream, ev: MediaStreamTrackEvent) => any) | null;
|
|
1576
|
+
onremovetrack: ((this: MediaStream, ev: MediaStreamTrackEvent) => any) | null;
|
|
1577
|
+
addTrack: (track: MediaStreamTrack) => void;
|
|
1578
|
+
clone: () => MediaStream;
|
|
1579
|
+
getAudioTracks: () => MediaStreamTrack[];
|
|
1580
|
+
getTrackById: (trackId: string) => MediaStreamTrack | null;
|
|
1581
|
+
getTracks: () => MediaStreamTrack[];
|
|
1582
|
+
getVideoTracks: () => MediaStreamTrack[];
|
|
1583
|
+
removeTrack: (track: MediaStreamTrack) => void;
|
|
1584
|
+
addEventListener: {
|
|
1585
|
+
<K extends keyof MediaStreamEventMap>(type: K, listener: (this: MediaStream, ev: MediaStreamEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
1586
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
1587
|
+
};
|
|
1588
|
+
removeEventListener: {
|
|
1589
|
+
<K_1 extends keyof MediaStreamEventMap>(type: K_1, listener: (this: MediaStream, ev: MediaStreamEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
|
|
1590
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
|
|
1591
|
+
};
|
|
1592
|
+
dispatchEvent: (event: Event) => boolean;
|
|
1593
|
+
} | undefined;
|
|
1594
|
+
isSwitchingStream: boolean;
|
|
1595
|
+
onDeviceChange?: (() => void) | undefined;
|
|
1596
|
+
}, action: PayloadAction<{
|
|
1597
|
+
enabled?: boolean;
|
|
1598
|
+
}>): {
|
|
1599
|
+
lowDataMode: boolean;
|
|
1600
|
+
busyDeviceIds: string[];
|
|
1601
|
+
cameraDeviceError?: unknown;
|
|
1602
|
+
cameraEnabled: boolean;
|
|
1603
|
+
currentCameraDeviceId?: string | undefined;
|
|
1604
|
+
currentMicrophoneDeviceId?: string | undefined;
|
|
1605
|
+
devices: {
|
|
1606
|
+
deviceId: string;
|
|
1607
|
+
groupId: string;
|
|
1608
|
+
kind: MediaDeviceKind;
|
|
1609
|
+
label: string;
|
|
1610
|
+
toJSON: () => any;
|
|
1611
|
+
}[];
|
|
1612
|
+
isSettingCameraDevice: boolean;
|
|
1613
|
+
isSettingMicrophoneDevice: boolean;
|
|
1614
|
+
isTogglingCamera: boolean;
|
|
1446
1615
|
microphoneDeviceError?: unknown;
|
|
1447
1616
|
microphoneEnabled: boolean;
|
|
1448
1617
|
options?: {
|
|
@@ -1492,6 +1661,7 @@ declare const localMediaSlice: _reduxjs_toolkit.Slice<LocalMediaState, {
|
|
|
1492
1661
|
isSettingCameraDevice: boolean;
|
|
1493
1662
|
isSettingMicrophoneDevice: boolean;
|
|
1494
1663
|
isTogglingCamera: boolean;
|
|
1664
|
+
lowDataMode: boolean;
|
|
1495
1665
|
microphoneDeviceError?: unknown;
|
|
1496
1666
|
microphoneEnabled: boolean;
|
|
1497
1667
|
options?: {
|
|
@@ -1536,6 +1706,7 @@ declare const localMediaSlice: _reduxjs_toolkit.Slice<LocalMediaState, {
|
|
|
1536
1706
|
isSettingCameraDevice: boolean;
|
|
1537
1707
|
isSettingMicrophoneDevice: boolean;
|
|
1538
1708
|
isTogglingCamera: boolean;
|
|
1709
|
+
lowDataMode: boolean;
|
|
1539
1710
|
microphoneDeviceError?: unknown;
|
|
1540
1711
|
microphoneEnabled: boolean;
|
|
1541
1712
|
options?: {
|
|
@@ -1585,6 +1756,7 @@ declare const localMediaSlice: _reduxjs_toolkit.Slice<LocalMediaState, {
|
|
|
1585
1756
|
isSettingCameraDevice: boolean;
|
|
1586
1757
|
isSettingMicrophoneDevice: boolean;
|
|
1587
1758
|
isTogglingCamera: boolean;
|
|
1759
|
+
lowDataMode: boolean;
|
|
1588
1760
|
microphoneDeviceError?: unknown;
|
|
1589
1761
|
microphoneEnabled: boolean;
|
|
1590
1762
|
options?: {
|
|
@@ -1636,6 +1808,7 @@ declare const localMediaSlice: _reduxjs_toolkit.Slice<LocalMediaState, {
|
|
|
1636
1808
|
isSettingCameraDevice: boolean;
|
|
1637
1809
|
isSettingMicrophoneDevice: boolean;
|
|
1638
1810
|
isTogglingCamera: boolean;
|
|
1811
|
+
lowDataMode: boolean;
|
|
1639
1812
|
microphoneDeviceError?: unknown;
|
|
1640
1813
|
microphoneEnabled: boolean;
|
|
1641
1814
|
options?: {
|
|
@@ -1663,6 +1836,7 @@ declare const localMediaSlice: _reduxjs_toolkit.Slice<LocalMediaState, {
|
|
|
1663
1836
|
isSettingCameraDevice: boolean;
|
|
1664
1837
|
isSettingMicrophoneDevice: boolean;
|
|
1665
1838
|
isTogglingCamera: boolean;
|
|
1839
|
+
lowDataMode: boolean;
|
|
1666
1840
|
microphoneDeviceError?: unknown;
|
|
1667
1841
|
microphoneEnabled: boolean;
|
|
1668
1842
|
options?: {
|
|
@@ -1714,6 +1888,7 @@ declare const localMediaSlice: _reduxjs_toolkit.Slice<LocalMediaState, {
|
|
|
1714
1888
|
isSettingCameraDevice: boolean;
|
|
1715
1889
|
isSettingMicrophoneDevice: boolean;
|
|
1716
1890
|
isTogglingCamera: boolean;
|
|
1891
|
+
lowDataMode: boolean;
|
|
1717
1892
|
microphoneDeviceError?: unknown;
|
|
1718
1893
|
microphoneEnabled: boolean;
|
|
1719
1894
|
status: "" | "stopped" | "starting" | "started" | "error";
|
|
@@ -1759,6 +1934,7 @@ declare const localMediaSlice: _reduxjs_toolkit.Slice<LocalMediaState, {
|
|
|
1759
1934
|
isSettingCameraDevice: boolean;
|
|
1760
1935
|
isSettingMicrophoneDevice: boolean;
|
|
1761
1936
|
isTogglingCamera: boolean;
|
|
1937
|
+
lowDataMode: boolean;
|
|
1762
1938
|
microphoneDeviceError?: unknown;
|
|
1763
1939
|
microphoneEnabled: boolean;
|
|
1764
1940
|
options?: {
|
|
@@ -1809,6 +1985,7 @@ declare const localMediaSlice: _reduxjs_toolkit.Slice<LocalMediaState, {
|
|
|
1809
1985
|
isSettingCameraDevice: boolean;
|
|
1810
1986
|
isSettingMicrophoneDevice: boolean;
|
|
1811
1987
|
isTogglingCamera: boolean;
|
|
1988
|
+
lowDataMode: boolean;
|
|
1812
1989
|
microphoneDeviceError?: unknown;
|
|
1813
1990
|
microphoneEnabled: boolean;
|
|
1814
1991
|
options?: {
|
|
@@ -1835,6 +2012,7 @@ declare const localMediaSlice: _reduxjs_toolkit.Slice<LocalMediaState, {
|
|
|
1835
2012
|
isSettingCameraDevice: boolean;
|
|
1836
2013
|
isSettingMicrophoneDevice: boolean;
|
|
1837
2014
|
isTogglingCamera: boolean;
|
|
2015
|
+
lowDataMode: boolean;
|
|
1838
2016
|
microphoneDeviceError?: unknown;
|
|
1839
2017
|
microphoneEnabled: boolean;
|
|
1840
2018
|
options?: {
|
|
@@ -1883,6 +2061,7 @@ declare const localMediaSlice: _reduxjs_toolkit.Slice<LocalMediaState, {
|
|
|
1883
2061
|
isSettingCameraDevice: boolean;
|
|
1884
2062
|
isSettingMicrophoneDevice: boolean;
|
|
1885
2063
|
isTogglingCamera: boolean;
|
|
2064
|
+
lowDataMode: boolean;
|
|
1886
2065
|
microphoneDeviceError?: unknown;
|
|
1887
2066
|
microphoneEnabled: boolean;
|
|
1888
2067
|
options?: {
|
|
@@ -1932,6 +2111,9 @@ declare const toggleCameraEnabled: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
|
1932
2111
|
declare const toggleMicrophoneEnabled: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
1933
2112
|
enabled?: boolean | undefined;
|
|
1934
2113
|
}, "localMedia/toggleMicrophoneEnabled">;
|
|
2114
|
+
declare const toggleLowDataModeEnabled: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
2115
|
+
enabled?: boolean | undefined;
|
|
2116
|
+
}, "localMedia/toggleLowDataModeEnabled">;
|
|
1935
2117
|
declare const setLocalMediaOptions: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
1936
2118
|
options: LocalMediaOptions;
|
|
1937
2119
|
}, "localMedia/setLocalMediaOptions">;
|
|
@@ -1941,6 +2123,7 @@ declare const setLocalMediaStream: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
|
1941
2123
|
declare const localMediaStopped: _reduxjs_toolkit.ActionCreatorWithoutPayload<"localMedia/localMediaStopped">;
|
|
1942
2124
|
declare const localStreamMetadataUpdated: _reduxjs_toolkit.ActionCreatorWithPayload<_whereby_com_media.GetDeviceDataResult, "localMedia/localStreamMetadataUpdated">;
|
|
1943
2125
|
declare const doToggleCamera: _reduxjs_toolkit.AsyncThunk<undefined, undefined, ThunkConfig>;
|
|
2126
|
+
declare const doToggleLowDataMode: (args: void) => AppThunk<void>;
|
|
1944
2127
|
declare const doSetDevice: _reduxjs_toolkit.AsyncThunk<{
|
|
1945
2128
|
replacedTracks: MediaStreamTrack[] | undefined;
|
|
1946
2129
|
}, {
|
|
@@ -1967,6 +2150,7 @@ declare const selectCurrentCameraDeviceId: (state: RootState) => string | undefi
|
|
|
1967
2150
|
declare const selectCurrentMicrophoneDeviceId: (state: RootState) => string | undefined;
|
|
1968
2151
|
declare const selectIsCameraEnabled: (state: RootState) => boolean;
|
|
1969
2152
|
declare const selectIsMicrophoneEnabled: (state: RootState) => boolean;
|
|
2153
|
+
declare const selectIsLowDataModeEnabled: (state: RootState) => boolean;
|
|
1970
2154
|
declare const selectIsSettingCameraDevice: (state: RootState) => boolean;
|
|
1971
2155
|
declare const selectIsSettingMicrophoneDevice: (state: RootState) => boolean;
|
|
1972
2156
|
declare const selectIsToggleCamera: (state: RootState) => boolean;
|
|
@@ -1983,6 +2167,7 @@ declare const selectLocalMediaOwnsStream: ((state: {
|
|
|
1983
2167
|
localScreenshare: LocalScreenshareState;
|
|
1984
2168
|
organization: OrganizationState;
|
|
1985
2169
|
remoteParticipants: RemoteParticipantState;
|
|
2170
|
+
room: RoomState;
|
|
1986
2171
|
roomConnection: RoomConnectionState;
|
|
1987
2172
|
rtcAnalytics: rtcAnalyticsState;
|
|
1988
2173
|
rtcConnection: RtcConnectionState;
|
|
@@ -2027,6 +2212,7 @@ declare const selectLocalMediaConstraintsOptions: ((state: {
|
|
|
2027
2212
|
localScreenshare: LocalScreenshareState;
|
|
2028
2213
|
organization: OrganizationState;
|
|
2029
2214
|
remoteParticipants: RemoteParticipantState;
|
|
2215
|
+
room: RoomState;
|
|
2030
2216
|
roomConnection: RoomConnectionState;
|
|
2031
2217
|
rtcAnalytics: rtcAnalyticsState;
|
|
2032
2218
|
rtcConnection: RtcConnectionState;
|
|
@@ -2035,6 +2221,8 @@ declare const selectLocalMediaConstraintsOptions: ((state: {
|
|
|
2035
2221
|
waitingParticipants: WaitingParticipantsState;
|
|
2036
2222
|
}) => {
|
|
2037
2223
|
devices: MediaDeviceInfo[];
|
|
2224
|
+
videoId: string | undefined;
|
|
2225
|
+
audioId: string | undefined;
|
|
2038
2226
|
options: {
|
|
2039
2227
|
disableAEC: boolean;
|
|
2040
2228
|
disableAGC: boolean;
|
|
@@ -2049,8 +2237,10 @@ declare const selectLocalMediaConstraintsOptions: ((state: {
|
|
|
2049
2237
|
resultsCount: () => number;
|
|
2050
2238
|
resetResultsCount: () => void;
|
|
2051
2239
|
} & {
|
|
2052
|
-
resultFunc: (resultFuncArgs_0: MediaDeviceInfo[]) => {
|
|
2240
|
+
resultFunc: (resultFuncArgs_0: MediaDeviceInfo[], resultFuncArgs_1: string | undefined, resultFuncArgs_2: string | undefined, resultFuncArgs_3: boolean) => {
|
|
2053
2241
|
devices: MediaDeviceInfo[];
|
|
2242
|
+
videoId: string | undefined;
|
|
2243
|
+
audioId: string | undefined;
|
|
2054
2244
|
options: {
|
|
2055
2245
|
disableAEC: boolean;
|
|
2056
2246
|
disableAGC: boolean;
|
|
@@ -2061,8 +2251,10 @@ declare const selectLocalMediaConstraintsOptions: ((state: {
|
|
|
2061
2251
|
widescreen: boolean;
|
|
2062
2252
|
};
|
|
2063
2253
|
};
|
|
2064
|
-
memoizedResultFunc: ((resultFuncArgs_0: MediaDeviceInfo[]) => {
|
|
2254
|
+
memoizedResultFunc: ((resultFuncArgs_0: MediaDeviceInfo[], resultFuncArgs_1: string | undefined, resultFuncArgs_2: string | undefined, resultFuncArgs_3: boolean) => {
|
|
2065
2255
|
devices: MediaDeviceInfo[];
|
|
2256
|
+
videoId: string | undefined;
|
|
2257
|
+
audioId: string | undefined;
|
|
2066
2258
|
options: {
|
|
2067
2259
|
disableAEC: boolean;
|
|
2068
2260
|
disableAGC: boolean;
|
|
@@ -2079,6 +2271,8 @@ declare const selectLocalMediaConstraintsOptions: ((state: {
|
|
|
2079
2271
|
};
|
|
2080
2272
|
lastResult: () => {
|
|
2081
2273
|
devices: MediaDeviceInfo[];
|
|
2274
|
+
videoId: string | undefined;
|
|
2275
|
+
audioId: string | undefined;
|
|
2082
2276
|
options: {
|
|
2083
2277
|
disableAEC: boolean;
|
|
2084
2278
|
disableAGC: boolean;
|
|
@@ -2089,7 +2283,7 @@ declare const selectLocalMediaConstraintsOptions: ((state: {
|
|
|
2089
2283
|
widescreen: boolean;
|
|
2090
2284
|
};
|
|
2091
2285
|
};
|
|
2092
|
-
dependencies: [(state: RootState) => MediaDeviceInfo[]];
|
|
2286
|
+
dependencies: [(state: RootState) => MediaDeviceInfo[], (state: RootState) => string | undefined, (state: RootState) => string | undefined, (state: RootState) => boolean];
|
|
2093
2287
|
recomputations: () => number;
|
|
2094
2288
|
resetRecomputations: () => void;
|
|
2095
2289
|
dependencyRecomputations: () => number;
|
|
@@ -2109,6 +2303,7 @@ declare const selectIsLocalMediaStarting: ((state: {
|
|
|
2109
2303
|
localScreenshare: LocalScreenshareState;
|
|
2110
2304
|
organization: OrganizationState;
|
|
2111
2305
|
remoteParticipants: RemoteParticipantState;
|
|
2306
|
+
room: RoomState;
|
|
2112
2307
|
roomConnection: RoomConnectionState;
|
|
2113
2308
|
rtcAnalytics: rtcAnalyticsState;
|
|
2114
2309
|
rtcConnection: RtcConnectionState;
|
|
@@ -2147,6 +2342,7 @@ declare const selectCameraDevices: ((state: {
|
|
|
2147
2342
|
localScreenshare: LocalScreenshareState;
|
|
2148
2343
|
organization: OrganizationState;
|
|
2149
2344
|
remoteParticipants: RemoteParticipantState;
|
|
2345
|
+
room: RoomState;
|
|
2150
2346
|
roomConnection: RoomConnectionState;
|
|
2151
2347
|
rtcAnalytics: rtcAnalyticsState;
|
|
2152
2348
|
rtcConnection: RtcConnectionState;
|
|
@@ -2185,6 +2381,7 @@ declare const selectMicrophoneDevices: ((state: {
|
|
|
2185
2381
|
localScreenshare: LocalScreenshareState;
|
|
2186
2382
|
organization: OrganizationState;
|
|
2187
2383
|
remoteParticipants: RemoteParticipantState;
|
|
2384
|
+
room: RoomState;
|
|
2188
2385
|
roomConnection: RoomConnectionState;
|
|
2189
2386
|
rtcAnalytics: rtcAnalyticsState;
|
|
2190
2387
|
rtcConnection: RtcConnectionState;
|
|
@@ -2223,6 +2420,7 @@ declare const selectSpeakerDevices: ((state: {
|
|
|
2223
2420
|
localScreenshare: LocalScreenshareState;
|
|
2224
2421
|
organization: OrganizationState;
|
|
2225
2422
|
remoteParticipants: RemoteParticipantState;
|
|
2423
|
+
room: RoomState;
|
|
2226
2424
|
roomConnection: RoomConnectionState;
|
|
2227
2425
|
rtcAnalytics: rtcAnalyticsState;
|
|
2228
2426
|
rtcConnection: RtcConnectionState;
|
|
@@ -2261,6 +2459,7 @@ declare const selectLocalMediaShouldStartWithOptions: ((state: {
|
|
|
2261
2459
|
localScreenshare: LocalScreenshareState;
|
|
2262
2460
|
organization: OrganizationState;
|
|
2263
2461
|
remoteParticipants: RemoteParticipantState;
|
|
2462
|
+
room: RoomState;
|
|
2264
2463
|
roomConnection: RoomConnectionState;
|
|
2265
2464
|
rtcAnalytics: rtcAnalyticsState;
|
|
2266
2465
|
rtcConnection: RtcConnectionState;
|
|
@@ -2290,6 +2489,7 @@ declare const selectLocalMediaShouldStartWithOptions: ((state: {
|
|
|
2290
2489
|
localScreenshare: LocalScreenshareState;
|
|
2291
2490
|
organization: OrganizationState;
|
|
2292
2491
|
remoteParticipants: RemoteParticipantState;
|
|
2492
|
+
room: RoomState;
|
|
2293
2493
|
roomConnection: RoomConnectionState;
|
|
2294
2494
|
rtcAnalytics: rtcAnalyticsState;
|
|
2295
2495
|
rtcConnection: RtcConnectionState;
|
|
@@ -2307,6 +2507,7 @@ declare const selectLocalMediaShouldStartWithOptions: ((state: {
|
|
|
2307
2507
|
localScreenshare: LocalScreenshareState;
|
|
2308
2508
|
organization: OrganizationState;
|
|
2309
2509
|
remoteParticipants: RemoteParticipantState;
|
|
2510
|
+
room: RoomState;
|
|
2310
2511
|
roomConnection: RoomConnectionState;
|
|
2311
2512
|
rtcAnalytics: rtcAnalyticsState;
|
|
2312
2513
|
rtcConnection: RtcConnectionState;
|
|
@@ -2333,6 +2534,7 @@ declare const selectLocalMediaShouldStop: ((state: {
|
|
|
2333
2534
|
localScreenshare: LocalScreenshareState;
|
|
2334
2535
|
organization: OrganizationState;
|
|
2335
2536
|
remoteParticipants: RemoteParticipantState;
|
|
2537
|
+
room: RoomState;
|
|
2336
2538
|
roomConnection: RoomConnectionState;
|
|
2337
2539
|
rtcAnalytics: rtcAnalyticsState;
|
|
2338
2540
|
rtcConnection: RtcConnectionState;
|
|
@@ -2362,6 +2564,7 @@ declare const selectLocalMediaShouldStop: ((state: {
|
|
|
2362
2564
|
localScreenshare: LocalScreenshareState;
|
|
2363
2565
|
organization: OrganizationState;
|
|
2364
2566
|
remoteParticipants: RemoteParticipantState;
|
|
2567
|
+
room: RoomState;
|
|
2365
2568
|
roomConnection: RoomConnectionState;
|
|
2366
2569
|
rtcAnalytics: rtcAnalyticsState;
|
|
2367
2570
|
rtcConnection: RtcConnectionState;
|
|
@@ -2398,6 +2601,7 @@ declare const selectShouldFetchOrganization: ((state: {
|
|
|
2398
2601
|
localScreenshare: LocalScreenshareState;
|
|
2399
2602
|
organization: OrganizationState;
|
|
2400
2603
|
remoteParticipants: RemoteParticipantState;
|
|
2604
|
+
room: RoomState;
|
|
2401
2605
|
roomConnection: RoomConnectionState;
|
|
2402
2606
|
rtcAnalytics: rtcAnalyticsState;
|
|
2403
2607
|
rtcConnection: RtcConnectionState;
|
|
@@ -2427,6 +2631,7 @@ declare const selectShouldFetchOrganization: ((state: {
|
|
|
2427
2631
|
localScreenshare: LocalScreenshareState;
|
|
2428
2632
|
organization: OrganizationState;
|
|
2429
2633
|
remoteParticipants: RemoteParticipantState;
|
|
2634
|
+
room: RoomState;
|
|
2430
2635
|
roomConnection: RoomConnectionState;
|
|
2431
2636
|
rtcAnalytics: rtcAnalyticsState;
|
|
2432
2637
|
rtcConnection: RtcConnectionState;
|
|
@@ -2444,6 +2649,7 @@ declare const selectShouldFetchOrganization: ((state: {
|
|
|
2444
2649
|
localScreenshare: LocalScreenshareState;
|
|
2445
2650
|
organization: OrganizationState;
|
|
2446
2651
|
remoteParticipants: RemoteParticipantState;
|
|
2652
|
+
room: RoomState;
|
|
2447
2653
|
roomConnection: RoomConnectionState;
|
|
2448
2654
|
rtcAnalytics: rtcAnalyticsState;
|
|
2449
2655
|
rtcConnection: RtcConnectionState;
|
|
@@ -2741,6 +2947,7 @@ declare const selectScreenshares: ((state: {
|
|
|
2741
2947
|
localScreenshare: LocalScreenshareState;
|
|
2742
2948
|
organization: OrganizationState;
|
|
2743
2949
|
remoteParticipants: RemoteParticipantState;
|
|
2950
|
+
room: RoomState;
|
|
2744
2951
|
roomConnection: RoomConnectionState;
|
|
2745
2952
|
rtcAnalytics: rtcAnalyticsState;
|
|
2746
2953
|
rtcConnection: RtcConnectionState;
|
|
@@ -2770,6 +2977,7 @@ declare const selectScreenshares: ((state: {
|
|
|
2770
2977
|
localScreenshare: LocalScreenshareState;
|
|
2771
2978
|
organization: OrganizationState;
|
|
2772
2979
|
remoteParticipants: RemoteParticipantState;
|
|
2980
|
+
room: RoomState;
|
|
2773
2981
|
roomConnection: RoomConnectionState;
|
|
2774
2982
|
rtcAnalytics: rtcAnalyticsState;
|
|
2775
2983
|
rtcConnection: RtcConnectionState;
|
|
@@ -2833,6 +3041,7 @@ declare const selectShouldConnectRoom: ((state: {
|
|
|
2833
3041
|
localScreenshare: LocalScreenshareState;
|
|
2834
3042
|
organization: OrganizationState;
|
|
2835
3043
|
remoteParticipants: RemoteParticipantState;
|
|
3044
|
+
room: RoomState;
|
|
2836
3045
|
roomConnection: RoomConnectionState;
|
|
2837
3046
|
rtcAnalytics: rtcAnalyticsState;
|
|
2838
3047
|
rtcConnection: RtcConnectionState;
|
|
@@ -2862,6 +3071,7 @@ declare const selectShouldConnectRoom: ((state: {
|
|
|
2862
3071
|
localScreenshare: LocalScreenshareState;
|
|
2863
3072
|
organization: OrganizationState;
|
|
2864
3073
|
remoteParticipants: RemoteParticipantState;
|
|
3074
|
+
room: RoomState;
|
|
2865
3075
|
roomConnection: RoomConnectionState;
|
|
2866
3076
|
rtcAnalytics: rtcAnalyticsState;
|
|
2867
3077
|
rtcConnection: RtcConnectionState;
|
|
@@ -2879,6 +3089,7 @@ declare const selectShouldConnectRoom: ((state: {
|
|
|
2879
3089
|
localScreenshare: LocalScreenshareState;
|
|
2880
3090
|
organization: OrganizationState;
|
|
2881
3091
|
remoteParticipants: RemoteParticipantState;
|
|
3092
|
+
room: RoomState;
|
|
2882
3093
|
roomConnection: RoomConnectionState;
|
|
2883
3094
|
rtcAnalytics: rtcAnalyticsState;
|
|
2884
3095
|
rtcConnection: RtcConnectionState;
|
|
@@ -2896,6 +3107,7 @@ declare const selectShouldConnectRoom: ((state: {
|
|
|
2896
3107
|
localScreenshare: LocalScreenshareState;
|
|
2897
3108
|
organization: OrganizationState;
|
|
2898
3109
|
remoteParticipants: RemoteParticipantState;
|
|
3110
|
+
room: RoomState;
|
|
2899
3111
|
roomConnection: RoomConnectionState;
|
|
2900
3112
|
rtcAnalytics: rtcAnalyticsState;
|
|
2901
3113
|
rtcConnection: RtcConnectionState;
|
|
@@ -2913,6 +3125,7 @@ declare const selectShouldConnectRoom: ((state: {
|
|
|
2913
3125
|
localScreenshare: LocalScreenshareState;
|
|
2914
3126
|
organization: OrganizationState;
|
|
2915
3127
|
remoteParticipants: RemoteParticipantState;
|
|
3128
|
+
room: RoomState;
|
|
2916
3129
|
roomConnection: RoomConnectionState;
|
|
2917
3130
|
rtcAnalytics: rtcAnalyticsState;
|
|
2918
3131
|
rtcConnection: RtcConnectionState;
|
|
@@ -3776,6 +3989,7 @@ declare const selectShouldConnectRtc: ((state: {
|
|
|
3776
3989
|
localScreenshare: LocalScreenshareState;
|
|
3777
3990
|
organization: OrganizationState;
|
|
3778
3991
|
remoteParticipants: RemoteParticipantState;
|
|
3992
|
+
room: RoomState;
|
|
3779
3993
|
roomConnection: RoomConnectionState;
|
|
3780
3994
|
rtcAnalytics: rtcAnalyticsState;
|
|
3781
3995
|
rtcConnection: RtcConnectionState;
|
|
@@ -3805,6 +4019,7 @@ declare const selectShouldConnectRtc: ((state: {
|
|
|
3805
4019
|
localScreenshare: LocalScreenshareState;
|
|
3806
4020
|
organization: OrganizationState;
|
|
3807
4021
|
remoteParticipants: RemoteParticipantState;
|
|
4022
|
+
room: RoomState;
|
|
3808
4023
|
roomConnection: RoomConnectionState;
|
|
3809
4024
|
rtcAnalytics: rtcAnalyticsState;
|
|
3810
4025
|
rtcConnection: RtcConnectionState;
|
|
@@ -3831,6 +4046,7 @@ declare const selectShouldInitializeRtc: ((state: {
|
|
|
3831
4046
|
localScreenshare: LocalScreenshareState;
|
|
3832
4047
|
organization: OrganizationState;
|
|
3833
4048
|
remoteParticipants: RemoteParticipantState;
|
|
4049
|
+
room: RoomState;
|
|
3834
4050
|
roomConnection: RoomConnectionState;
|
|
3835
4051
|
rtcAnalytics: rtcAnalyticsState;
|
|
3836
4052
|
rtcConnection: RtcConnectionState;
|
|
@@ -3860,6 +4076,7 @@ declare const selectShouldInitializeRtc: ((state: {
|
|
|
3860
4076
|
localScreenshare: LocalScreenshareState;
|
|
3861
4077
|
organization: OrganizationState;
|
|
3862
4078
|
remoteParticipants: RemoteParticipantState;
|
|
4079
|
+
room: RoomState;
|
|
3863
4080
|
roomConnection: RoomConnectionState;
|
|
3864
4081
|
rtcAnalytics: rtcAnalyticsState;
|
|
3865
4082
|
rtcConnection: RtcConnectionState;
|
|
@@ -3886,6 +4103,7 @@ declare const selectShouldDisconnectRtc: ((state: {
|
|
|
3886
4103
|
localScreenshare: LocalScreenshareState;
|
|
3887
4104
|
organization: OrganizationState;
|
|
3888
4105
|
remoteParticipants: RemoteParticipantState;
|
|
4106
|
+
room: RoomState;
|
|
3889
4107
|
roomConnection: RoomConnectionState;
|
|
3890
4108
|
rtcAnalytics: rtcAnalyticsState;
|
|
3891
4109
|
rtcConnection: RtcConnectionState;
|
|
@@ -3915,6 +4133,7 @@ declare const selectShouldDisconnectRtc: ((state: {
|
|
|
3915
4133
|
localScreenshare: LocalScreenshareState;
|
|
3916
4134
|
organization: OrganizationState;
|
|
3917
4135
|
remoteParticipants: RemoteParticipantState;
|
|
4136
|
+
room: RoomState;
|
|
3918
4137
|
roomConnection: RoomConnectionState;
|
|
3919
4138
|
rtcAnalytics: rtcAnalyticsState;
|
|
3920
4139
|
rtcConnection: RtcConnectionState;
|
|
@@ -3941,6 +4160,7 @@ declare const selectStreamsToAccept: ((state: {
|
|
|
3941
4160
|
localScreenshare: LocalScreenshareState;
|
|
3942
4161
|
organization: OrganizationState;
|
|
3943
4162
|
remoteParticipants: RemoteParticipantState;
|
|
4163
|
+
room: RoomState;
|
|
3944
4164
|
roomConnection: RoomConnectionState;
|
|
3945
4165
|
rtcAnalytics: rtcAnalyticsState;
|
|
3946
4166
|
rtcConnection: RtcConnectionState;
|
|
@@ -3986,6 +4206,7 @@ declare const selectStreamsToAccept: ((state: {
|
|
|
3986
4206
|
localScreenshare: LocalScreenshareState;
|
|
3987
4207
|
organization: OrganizationState;
|
|
3988
4208
|
remoteParticipants: RemoteParticipantState;
|
|
4209
|
+
room: RoomState;
|
|
3989
4210
|
roomConnection: RoomConnectionState;
|
|
3990
4211
|
rtcAnalytics: rtcAnalyticsState;
|
|
3991
4212
|
rtcConnection: RtcConnectionState;
|
|
@@ -5170,6 +5391,7 @@ declare const selectShouldConnectSignal: ((state: {
|
|
|
5170
5391
|
localScreenshare: LocalScreenshareState;
|
|
5171
5392
|
organization: OrganizationState;
|
|
5172
5393
|
remoteParticipants: RemoteParticipantState;
|
|
5394
|
+
room: RoomState;
|
|
5173
5395
|
roomConnection: RoomConnectionState;
|
|
5174
5396
|
rtcAnalytics: rtcAnalyticsState;
|
|
5175
5397
|
rtcConnection: RtcConnectionState;
|
|
@@ -5199,6 +5421,7 @@ declare const selectShouldConnectSignal: ((state: {
|
|
|
5199
5421
|
localScreenshare: LocalScreenshareState;
|
|
5200
5422
|
organization: OrganizationState;
|
|
5201
5423
|
remoteParticipants: RemoteParticipantState;
|
|
5424
|
+
room: RoomState;
|
|
5202
5425
|
roomConnection: RoomConnectionState;
|
|
5203
5426
|
rtcAnalytics: rtcAnalyticsState;
|
|
5204
5427
|
rtcConnection: RtcConnectionState;
|
|
@@ -5225,6 +5448,7 @@ declare const selectShouldIdentifyDevice: ((state: {
|
|
|
5225
5448
|
localScreenshare: LocalScreenshareState;
|
|
5226
5449
|
organization: OrganizationState;
|
|
5227
5450
|
remoteParticipants: RemoteParticipantState;
|
|
5451
|
+
room: RoomState;
|
|
5228
5452
|
roomConnection: RoomConnectionState;
|
|
5229
5453
|
rtcAnalytics: rtcAnalyticsState;
|
|
5230
5454
|
rtcConnection: RtcConnectionState;
|
|
@@ -5254,6 +5478,7 @@ declare const selectShouldIdentifyDevice: ((state: {
|
|
|
5254
5478
|
localScreenshare: LocalScreenshareState;
|
|
5255
5479
|
organization: OrganizationState;
|
|
5256
5480
|
remoteParticipants: RemoteParticipantState;
|
|
5481
|
+
room: RoomState;
|
|
5257
5482
|
roomConnection: RoomConnectionState;
|
|
5258
5483
|
rtcAnalytics: rtcAnalyticsState;
|
|
5259
5484
|
rtcConnection: RtcConnectionState;
|
|
@@ -5288,6 +5513,7 @@ declare const rootReducer: redux.Reducer<{
|
|
|
5288
5513
|
localScreenshare: LocalScreenshareState;
|
|
5289
5514
|
organization: OrganizationState;
|
|
5290
5515
|
remoteParticipants: RemoteParticipantState;
|
|
5516
|
+
room: RoomState;
|
|
5291
5517
|
roomConnection: RoomConnectionState;
|
|
5292
5518
|
rtcAnalytics: rtcAnalyticsState;
|
|
5293
5519
|
rtcConnection: RtcConnectionState;
|
|
@@ -5305,6 +5531,7 @@ declare const rootReducer: redux.Reducer<{
|
|
|
5305
5531
|
localScreenshare: LocalScreenshareState | undefined;
|
|
5306
5532
|
organization: OrganizationState | undefined;
|
|
5307
5533
|
remoteParticipants: RemoteParticipantState | undefined;
|
|
5534
|
+
room: RoomState | undefined;
|
|
5308
5535
|
roomConnection: RoomConnectionState | undefined;
|
|
5309
5536
|
rtcAnalytics: rtcAnalyticsState | undefined;
|
|
5310
5537
|
rtcConnection: RtcConnectionState | undefined;
|
|
@@ -5324,6 +5551,7 @@ declare const createStore: ({ preloadedState, injectServices, }: {
|
|
|
5324
5551
|
localScreenshare: LocalScreenshareState;
|
|
5325
5552
|
organization: OrganizationState;
|
|
5326
5553
|
remoteParticipants: RemoteParticipantState;
|
|
5554
|
+
room: RoomState;
|
|
5327
5555
|
roomConnection: RoomConnectionState;
|
|
5328
5556
|
rtcAnalytics: rtcAnalyticsState;
|
|
5329
5557
|
rtcConnection: RtcConnectionState;
|
|
@@ -5343,6 +5571,7 @@ declare const createStore: ({ preloadedState, injectServices, }: {
|
|
|
5343
5571
|
localScreenshare: LocalScreenshareState;
|
|
5344
5572
|
organization: OrganizationState;
|
|
5345
5573
|
remoteParticipants: RemoteParticipantState;
|
|
5574
|
+
room: RoomState;
|
|
5346
5575
|
roomConnection: RoomConnectionState;
|
|
5347
5576
|
rtcAnalytics: rtcAnalyticsState;
|
|
5348
5577
|
rtcConnection: RtcConnectionState;
|
|
@@ -5361,6 +5590,7 @@ declare const createStore: ({ preloadedState, injectServices, }: {
|
|
|
5361
5590
|
localScreenshare: LocalScreenshareState;
|
|
5362
5591
|
organization: OrganizationState;
|
|
5363
5592
|
remoteParticipants: RemoteParticipantState;
|
|
5593
|
+
room: RoomState;
|
|
5364
5594
|
roomConnection: RoomConnectionState;
|
|
5365
5595
|
rtcAnalytics: rtcAnalyticsState;
|
|
5366
5596
|
rtcConnection: RtcConnectionState;
|
|
@@ -5410,6 +5640,7 @@ declare const addAppListener: TypedAddListener<{
|
|
|
5410
5640
|
localScreenshare: LocalScreenshareState;
|
|
5411
5641
|
organization: OrganizationState;
|
|
5412
5642
|
remoteParticipants: RemoteParticipantState;
|
|
5643
|
+
room: RoomState;
|
|
5413
5644
|
roomConnection: RoomConnectionState;
|
|
5414
5645
|
rtcAnalytics: rtcAnalyticsState;
|
|
5415
5646
|
rtcConnection: RtcConnectionState;
|
|
@@ -5427,6 +5658,7 @@ declare const addAppListener: TypedAddListener<{
|
|
|
5427
5658
|
localScreenshare: LocalScreenshareState;
|
|
5428
5659
|
organization: OrganizationState;
|
|
5429
5660
|
remoteParticipants: RemoteParticipantState;
|
|
5661
|
+
room: RoomState;
|
|
5430
5662
|
roomConnection: RoomConnectionState;
|
|
5431
5663
|
rtcAnalytics: rtcAnalyticsState;
|
|
5432
5664
|
rtcConnection: RtcConnectionState;
|
|
@@ -5455,6 +5687,7 @@ declare const createReactor: <Selectors extends Selector<{
|
|
|
5455
5687
|
localScreenshare: LocalScreenshareState;
|
|
5456
5688
|
organization: OrganizationState;
|
|
5457
5689
|
remoteParticipants: RemoteParticipantState;
|
|
5690
|
+
room: RoomState;
|
|
5458
5691
|
roomConnection: RoomConnectionState;
|
|
5459
5692
|
rtcAnalytics: rtcAnalyticsState;
|
|
5460
5693
|
rtcConnection: RtcConnectionState;
|
|
@@ -5478,4 +5711,4 @@ declare function parseRoomUrlAndSubdomain(roomAttribute?: string, subdomainAttri
|
|
|
5478
5711
|
|
|
5479
5712
|
declare function parseUnverifiedRoomKeyData(roomKey: string): any;
|
|
5480
5713
|
|
|
5481
|
-
export { ApiClient, type AppDispatch, type AppStartListening, type AppState, type AppThunk, type AuthorizationState, type ChatMessage, type ChatState, type CloudRecordingState, type ConnectionStatus, Credentials, CredentialsService, type DeviceCredentialsState, type LocalMediaOptions, type LocalMediaState, LocalParticipant, type LocalParticipantState, type LocalScreenshareState, OrganizationApiClient, OrganizationService, OrganizationServiceCache, type OrganizationState, type RemoteParticipant, type RemoteParticipantData, type RemoteParticipantState, type RoomConnectionState, RoomService, type RootReducer, type RootState, type RtcConnectionState, type Screenshare, type SignalConnectionState, type Store, type StreamState, type StreamingState, type ThunkConfig, type WaitingParticipant, type WaitingParticipantsState, addAppListener, appLeft, appSlice, authorizationSlice, chatSlice, cloudRecordingSlice, createAppAsyncThunk, createAppAuthorizedThunk, createAppThunk, createReactor, createServices, createStore, createWebRtcEmitter, debounce, deviceBusy, deviceCredentialsSlice, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppJoin, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKnockRoom, doLockRoom, doOrganizationFetch, doRejectWaitingParticipant, doRequestAudioEnable, doRtcAnalyticsCustomEventsInitialize, doRtcManagerCreated, doRtcManagerInitialize, doRtcReportStreamResolution, doSendChatMessage, doSetDevice, doSetDisplayName, doSetLocalParticipant, doSignalDisconnect, doSignalIdentifyDevice, doSignalSocketConnect, doStartCloudRecording, doStartLocalMedia, doStartScreenshare, doStopCloudRecording, doStopLocalMedia, doStopScreenshare, doSwitchLocalStream, doToggleCamera, doUpdateDeviceList, fakeAudioStream, fakeWebcamFrame, initialCloudRecordingState, initialLocalMediaState, isAcceptingStreams, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localScreenshareSlice, localStreamMetadataUpdated, observeStore, organizationSlice, parseRoomUrlAndSubdomain, parseUnverifiedRoomKeyData, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, resolutionReported, roomConnectionSlice, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, type rtcAnalyticsState, rtcConnectionSlice, rtcDisconnected, rtcDispatcherCreated, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAppDisplayName, selectAppExternalId, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAppWantsToJoin,
|
|
5714
|
+
export { ApiClient, type AppDispatch, type AppStartListening, type AppState, type AppThunk, type AuthorizationState, type ChatMessage, type ChatState, type CloudRecordingState, type ConnectionStatus, Credentials, CredentialsService, type DeviceCredentialsState, type LocalMediaOptions, type LocalMediaState, LocalParticipant, type LocalParticipantState, type LocalScreenshareState, OrganizationApiClient, OrganizationService, OrganizationServiceCache, type OrganizationState, type RemoteParticipant, type RemoteParticipantData, type RemoteParticipantState, type RoomConnectionState, RoomService, type RoomState, type RootReducer, type RootState, type RtcConnectionState, type Screenshare, type SignalConnectionState, type Store, type StreamState, type StreamingState, type ThunkConfig, type WaitingParticipant, type WaitingParticipantsState, addAppListener, appLeft, appSlice, authorizationSlice, chatSlice, cloudRecordingSlice, createAppAsyncThunk, createAppAuthorizedThunk, createAppThunk, createReactor, createServices, createStore, createWebRtcEmitter, debounce, deviceBusy, deviceCredentialsSlice, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppJoin, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLockRoom, doOrganizationFetch, doRejectWaitingParticipant, doRequestAudioEnable, doRtcAnalyticsCustomEventsInitialize, doRtcManagerCreated, doRtcManagerInitialize, doRtcReportStreamResolution, doSendChatMessage, doSetDevice, doSetDisplayName, doSetLocalParticipant, doSignalDisconnect, doSignalIdentifyDevice, doSignalSocketConnect, doStartCloudRecording, doStartLocalMedia, doStartScreenshare, doStopCloudRecording, doStopLocalMedia, doStopScreenshare, doSwitchLocalStream, doToggleCamera, doToggleLowDataMode, doUpdateDeviceList, fakeAudioStream, fakeWebcamFrame, initialCloudRecordingState, initialLocalMediaState, isAcceptingStreams, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localScreenshareSlice, localStreamMetadataUpdated, observeStore, organizationSlice, parseRoomUrlAndSubdomain, parseUnverifiedRoomKeyData, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, resolutionReported, roomConnectionSlice, roomSlice, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, type rtcAnalyticsState, rtcConnectionSlice, rtcDisconnected, rtcDispatcherCreated, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAppDisplayName, selectAppExternalId, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAppWantsToJoin, selectAuthorizationRoleName, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingRaw, selectCloudRecordingStartedAt, selectCloudRecordingStatus, selectCurrentCameraDeviceId, selectCurrentMicrophoneDeviceId, selectDeviceCredentialsRaw, selectDeviceId, selectHasFetchedDeviceCredentials, selectIsAcceptingStreams, selectIsAuthorizedToEndMeeting, selectIsAuthorizedToKickClient, selectIsAuthorizedToLockRoom, selectIsAuthorizedToRequestAudioEnable, selectIsCameraEnabled, selectIsCloudRecording, selectIsLocalMediaStarting, selectIsLowDataModeEnabled, selectIsMicrophoneEnabled, selectIsSettingCameraDevice, selectIsSettingMicrophoneDevice, selectIsToggleCamera, selectLocalMediaConstraintsOptions, selectLocalMediaDevices, selectLocalMediaIsSwitchingStream, selectLocalMediaOptions, selectLocalMediaOwnsStream, selectLocalMediaRaw, selectLocalMediaShouldStartWithOptions, selectLocalMediaShouldStop, selectLocalMediaStartError, selectLocalMediaStatus, selectLocalMediaStream, selectLocalParticipantClientClaim, selectLocalParticipantIsScreenSharing, selectLocalParticipantRaw, selectLocalScreenshareRaw, selectLocalScreenshareStatus, selectLocalScreenshareStream, selectMicrophoneDeviceError, selectMicrophoneDevices, selectOrganizationId, selectOrganizationRaw, 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, selectStreamingRaw, selectStreamsToAccept, selectWaitingParticipants, selectWaitingParticipantsRaw, setCurrentCameraDeviceId, setCurrentMicrophoneDeviceId, setLocalMediaOptions, setLocalMediaStream, setRoomKey, signalConnectionSlice, socketConnected, socketConnecting, socketDisconnected, socketReconnecting, startAppListening, stopScreenshare, streamStatusUpdated, streamingSlice, toggleCameraEnabled, toggleLowDataModeEnabled, toggleMicrophoneEnabled, updateReportedValues, waitingParticipantsSlice };
|