@whereby.com/core 0.25.0 → 0.26.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 +757 -642
- package/dist/index.d.cts +323 -104
- package/dist/index.d.mts +323 -104
- package/dist/index.d.ts +323 -104
- package/dist/index.mjs +749 -643
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -1565,6 +1565,7 @@ declare const selectIsAuthorizedToLockRoom: ((state: {
|
|
|
1565
1565
|
authorization: AuthorizationState;
|
|
1566
1566
|
chat: ChatState;
|
|
1567
1567
|
cloudRecording: CloudRecordingState;
|
|
1568
|
+
connectionMonitor: ConnectionMonitorState;
|
|
1568
1569
|
deviceCredentials: DeviceCredentialsState;
|
|
1569
1570
|
localMedia: LocalMediaState;
|
|
1570
1571
|
localParticipant: LocalParticipantState;
|
|
@@ -1606,6 +1607,7 @@ declare const selectIsAuthorizedToRequestAudioEnable: ((state: {
|
|
|
1606
1607
|
authorization: AuthorizationState;
|
|
1607
1608
|
chat: ChatState;
|
|
1608
1609
|
cloudRecording: CloudRecordingState;
|
|
1610
|
+
connectionMonitor: ConnectionMonitorState;
|
|
1609
1611
|
deviceCredentials: DeviceCredentialsState;
|
|
1610
1612
|
localMedia: LocalMediaState;
|
|
1611
1613
|
localParticipant: LocalParticipantState;
|
|
@@ -1647,6 +1649,7 @@ declare const selectIsAuthorizedToKickClient: ((state: {
|
|
|
1647
1649
|
authorization: AuthorizationState;
|
|
1648
1650
|
chat: ChatState;
|
|
1649
1651
|
cloudRecording: CloudRecordingState;
|
|
1652
|
+
connectionMonitor: ConnectionMonitorState;
|
|
1650
1653
|
deviceCredentials: DeviceCredentialsState;
|
|
1651
1654
|
localMedia: LocalMediaState;
|
|
1652
1655
|
localParticipant: LocalParticipantState;
|
|
@@ -1688,6 +1691,7 @@ declare const selectIsAuthorizedToEndMeeting: ((state: {
|
|
|
1688
1691
|
authorization: AuthorizationState;
|
|
1689
1692
|
chat: ChatState;
|
|
1690
1693
|
cloudRecording: CloudRecordingState;
|
|
1694
|
+
connectionMonitor: ConnectionMonitorState;
|
|
1691
1695
|
deviceCredentials: DeviceCredentialsState;
|
|
1692
1696
|
localMedia: LocalMediaState;
|
|
1693
1697
|
localParticipant: LocalParticipantState;
|
|
@@ -1729,6 +1733,7 @@ declare const selectIsAuthorizedToAskToSpeak: ((state: {
|
|
|
1729
1733
|
authorization: AuthorizationState;
|
|
1730
1734
|
chat: ChatState;
|
|
1731
1735
|
cloudRecording: CloudRecordingState;
|
|
1736
|
+
connectionMonitor: ConnectionMonitorState;
|
|
1732
1737
|
deviceCredentials: DeviceCredentialsState;
|
|
1733
1738
|
localMedia: LocalMediaState;
|
|
1734
1739
|
localParticipant: LocalParticipantState;
|
|
@@ -1770,6 +1775,7 @@ declare const selectIsAuthorizedToSpotlight: ((state: {
|
|
|
1770
1775
|
authorization: AuthorizationState;
|
|
1771
1776
|
chat: ChatState;
|
|
1772
1777
|
cloudRecording: CloudRecordingState;
|
|
1778
|
+
connectionMonitor: ConnectionMonitorState;
|
|
1773
1779
|
deviceCredentials: DeviceCredentialsState;
|
|
1774
1780
|
localMedia: LocalMediaState;
|
|
1775
1781
|
localParticipant: LocalParticipantState;
|
|
@@ -1807,6 +1813,159 @@ declare const selectIsAuthorizedToSpotlight: ((state: {
|
|
|
1807
1813
|
memoize: typeof reselect.weakMapMemoize;
|
|
1808
1814
|
};
|
|
1809
1815
|
|
|
1816
|
+
interface ConnectionMonitorStart {
|
|
1817
|
+
stopIssueSubscription: () => void;
|
|
1818
|
+
}
|
|
1819
|
+
interface ConnectionMonitorState {
|
|
1820
|
+
running: boolean;
|
|
1821
|
+
stopCallbackFunction?: () => void;
|
|
1822
|
+
}
|
|
1823
|
+
declare const connectionMonitorSlice: _reduxjs_toolkit.Slice<ConnectionMonitorState, {
|
|
1824
|
+
connectionMonitorStarted: (state: {
|
|
1825
|
+
running: boolean;
|
|
1826
|
+
stopCallbackFunction?: (() => void) | undefined;
|
|
1827
|
+
}, action: PayloadAction<ConnectionMonitorStart>) => {
|
|
1828
|
+
running: true;
|
|
1829
|
+
stopCallbackFunction: () => void;
|
|
1830
|
+
};
|
|
1831
|
+
connectionMonitorStopped: () => {
|
|
1832
|
+
running: boolean;
|
|
1833
|
+
stopCallbackFunction?: (() => void) | undefined;
|
|
1834
|
+
};
|
|
1835
|
+
}, "connectionMonitor", "connectionMonitor", _reduxjs_toolkit.SliceSelectors<ConnectionMonitorState>>;
|
|
1836
|
+
declare const connectionMonitorStarted: _reduxjs_toolkit.ActionCreatorWithPayload<ConnectionMonitorStart, "connectionMonitor/connectionMonitorStarted">;
|
|
1837
|
+
declare const connectionMonitorStopped: _reduxjs_toolkit.ActionCreatorWithoutPayload<"connectionMonitor/connectionMonitorStopped">;
|
|
1838
|
+
declare const doStartConnectionMonitor: (args: void) => AppThunk<void>;
|
|
1839
|
+
declare const doStopConnectionMonitor: (args: void) => AppThunk<void>;
|
|
1840
|
+
declare const selectConnectionMonitorIsRunning: (state: RootState) => boolean;
|
|
1841
|
+
declare const selectStopCallbackFunction: (state: RootState) => (() => void) | undefined;
|
|
1842
|
+
declare const selectShouldStartConnectionMonitor: ((state: {
|
|
1843
|
+
app: AppState;
|
|
1844
|
+
authorization: AuthorizationState;
|
|
1845
|
+
chat: ChatState;
|
|
1846
|
+
cloudRecording: CloudRecordingState;
|
|
1847
|
+
connectionMonitor: ConnectionMonitorState;
|
|
1848
|
+
deviceCredentials: DeviceCredentialsState;
|
|
1849
|
+
localMedia: LocalMediaState;
|
|
1850
|
+
localParticipant: LocalParticipantState;
|
|
1851
|
+
localScreenshare: LocalScreenshareState;
|
|
1852
|
+
notifications: NotificationsState;
|
|
1853
|
+
organization: OrganizationState;
|
|
1854
|
+
remoteParticipants: RemoteParticipantState;
|
|
1855
|
+
room: RoomState;
|
|
1856
|
+
roomConnection: RoomConnectionState;
|
|
1857
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
1858
|
+
rtcConnection: RtcConnectionState;
|
|
1859
|
+
signalConnection: SignalConnectionState;
|
|
1860
|
+
spotlights: SpotlightsState;
|
|
1861
|
+
streaming: StreamingState;
|
|
1862
|
+
waitingParticipants: WaitingParticipantsState;
|
|
1863
|
+
}) => boolean) & {
|
|
1864
|
+
clearCache: () => void;
|
|
1865
|
+
resultsCount: () => number;
|
|
1866
|
+
resetResultsCount: () => void;
|
|
1867
|
+
} & {
|
|
1868
|
+
resultFunc: (resultFuncArgs_0: ConnectionStatus, resultFuncArgs_1: boolean) => boolean;
|
|
1869
|
+
memoizedResultFunc: ((resultFuncArgs_0: ConnectionStatus, resultFuncArgs_1: boolean) => boolean) & {
|
|
1870
|
+
clearCache: () => void;
|
|
1871
|
+
resultsCount: () => number;
|
|
1872
|
+
resetResultsCount: () => void;
|
|
1873
|
+
};
|
|
1874
|
+
lastResult: () => boolean;
|
|
1875
|
+
dependencies: [(state: {
|
|
1876
|
+
app: AppState;
|
|
1877
|
+
authorization: AuthorizationState;
|
|
1878
|
+
chat: ChatState;
|
|
1879
|
+
cloudRecording: CloudRecordingState;
|
|
1880
|
+
connectionMonitor: ConnectionMonitorState;
|
|
1881
|
+
deviceCredentials: DeviceCredentialsState;
|
|
1882
|
+
localMedia: LocalMediaState;
|
|
1883
|
+
localParticipant: LocalParticipantState;
|
|
1884
|
+
localScreenshare: LocalScreenshareState;
|
|
1885
|
+
notifications: NotificationsState;
|
|
1886
|
+
organization: OrganizationState;
|
|
1887
|
+
remoteParticipants: RemoteParticipantState;
|
|
1888
|
+
room: RoomState;
|
|
1889
|
+
roomConnection: RoomConnectionState;
|
|
1890
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
1891
|
+
rtcConnection: RtcConnectionState;
|
|
1892
|
+
signalConnection: SignalConnectionState;
|
|
1893
|
+
spotlights: SpotlightsState;
|
|
1894
|
+
streaming: StreamingState;
|
|
1895
|
+
waitingParticipants: WaitingParticipantsState;
|
|
1896
|
+
}) => ConnectionStatus, (state: RootState) => boolean];
|
|
1897
|
+
recomputations: () => number;
|
|
1898
|
+
resetRecomputations: () => void;
|
|
1899
|
+
dependencyRecomputations: () => number;
|
|
1900
|
+
resetDependencyRecomputations: () => void;
|
|
1901
|
+
} & {
|
|
1902
|
+
argsMemoize: typeof reselect.weakMapMemoize;
|
|
1903
|
+
memoize: typeof reselect.weakMapMemoize;
|
|
1904
|
+
};
|
|
1905
|
+
declare const selectShouldStopConnectionMonitor: ((state: {
|
|
1906
|
+
app: AppState;
|
|
1907
|
+
authorization: AuthorizationState;
|
|
1908
|
+
chat: ChatState;
|
|
1909
|
+
cloudRecording: CloudRecordingState;
|
|
1910
|
+
connectionMonitor: ConnectionMonitorState;
|
|
1911
|
+
deviceCredentials: DeviceCredentialsState;
|
|
1912
|
+
localMedia: LocalMediaState;
|
|
1913
|
+
localParticipant: LocalParticipantState;
|
|
1914
|
+
localScreenshare: LocalScreenshareState;
|
|
1915
|
+
notifications: NotificationsState;
|
|
1916
|
+
organization: OrganizationState;
|
|
1917
|
+
remoteParticipants: RemoteParticipantState;
|
|
1918
|
+
room: RoomState;
|
|
1919
|
+
roomConnection: RoomConnectionState;
|
|
1920
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
1921
|
+
rtcConnection: RtcConnectionState;
|
|
1922
|
+
signalConnection: SignalConnectionState;
|
|
1923
|
+
spotlights: SpotlightsState;
|
|
1924
|
+
streaming: StreamingState;
|
|
1925
|
+
waitingParticipants: WaitingParticipantsState;
|
|
1926
|
+
}) => boolean) & {
|
|
1927
|
+
clearCache: () => void;
|
|
1928
|
+
resultsCount: () => number;
|
|
1929
|
+
resetResultsCount: () => void;
|
|
1930
|
+
} & {
|
|
1931
|
+
resultFunc: (resultFuncArgs_0: ConnectionStatus, resultFuncArgs_1: boolean) => boolean;
|
|
1932
|
+
memoizedResultFunc: ((resultFuncArgs_0: ConnectionStatus, resultFuncArgs_1: boolean) => boolean) & {
|
|
1933
|
+
clearCache: () => void;
|
|
1934
|
+
resultsCount: () => number;
|
|
1935
|
+
resetResultsCount: () => void;
|
|
1936
|
+
};
|
|
1937
|
+
lastResult: () => boolean;
|
|
1938
|
+
dependencies: [(state: {
|
|
1939
|
+
app: AppState;
|
|
1940
|
+
authorization: AuthorizationState;
|
|
1941
|
+
chat: ChatState;
|
|
1942
|
+
cloudRecording: CloudRecordingState;
|
|
1943
|
+
connectionMonitor: ConnectionMonitorState;
|
|
1944
|
+
deviceCredentials: DeviceCredentialsState;
|
|
1945
|
+
localMedia: LocalMediaState;
|
|
1946
|
+
localParticipant: LocalParticipantState;
|
|
1947
|
+
localScreenshare: LocalScreenshareState;
|
|
1948
|
+
notifications: NotificationsState;
|
|
1949
|
+
organization: OrganizationState;
|
|
1950
|
+
remoteParticipants: RemoteParticipantState;
|
|
1951
|
+
room: RoomState;
|
|
1952
|
+
roomConnection: RoomConnectionState;
|
|
1953
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
1954
|
+
rtcConnection: RtcConnectionState;
|
|
1955
|
+
signalConnection: SignalConnectionState;
|
|
1956
|
+
spotlights: SpotlightsState;
|
|
1957
|
+
streaming: StreamingState;
|
|
1958
|
+
waitingParticipants: WaitingParticipantsState;
|
|
1959
|
+
}) => ConnectionStatus, (state: RootState) => boolean];
|
|
1960
|
+
recomputations: () => number;
|
|
1961
|
+
resetRecomputations: () => void;
|
|
1962
|
+
dependencyRecomputations: () => number;
|
|
1963
|
+
resetDependencyRecomputations: () => void;
|
|
1964
|
+
} & {
|
|
1965
|
+
argsMemoize: typeof reselect.weakMapMemoize;
|
|
1966
|
+
memoize: typeof reselect.weakMapMemoize;
|
|
1967
|
+
};
|
|
1968
|
+
|
|
1810
1969
|
type HttpClientRequestConfig = AxiosRequestConfig | {
|
|
1811
1970
|
[key: string]: unknown;
|
|
1812
1971
|
};
|
|
@@ -2050,6 +2209,7 @@ declare const selectShouldFetchDeviceCredentials: ((state: {
|
|
|
2050
2209
|
authorization: AuthorizationState;
|
|
2051
2210
|
chat: ChatState;
|
|
2052
2211
|
cloudRecording: CloudRecordingState;
|
|
2212
|
+
connectionMonitor: ConnectionMonitorState;
|
|
2053
2213
|
deviceCredentials: DeviceCredentialsState;
|
|
2054
2214
|
localMedia: LocalMediaState;
|
|
2055
2215
|
localParticipant: LocalParticipantState;
|
|
@@ -2082,6 +2242,7 @@ declare const selectShouldFetchDeviceCredentials: ((state: {
|
|
|
2082
2242
|
authorization: AuthorizationState;
|
|
2083
2243
|
chat: ChatState;
|
|
2084
2244
|
cloudRecording: CloudRecordingState;
|
|
2245
|
+
connectionMonitor: ConnectionMonitorState;
|
|
2085
2246
|
deviceCredentials: DeviceCredentialsState;
|
|
2086
2247
|
localMedia: LocalMediaState;
|
|
2087
2248
|
localParticipant: LocalParticipantState;
|
|
@@ -3444,6 +3605,7 @@ declare const selectLocalMediaOwnsStream: ((state: {
|
|
|
3444
3605
|
authorization: AuthorizationState;
|
|
3445
3606
|
chat: ChatState;
|
|
3446
3607
|
cloudRecording: CloudRecordingState;
|
|
3608
|
+
connectionMonitor: ConnectionMonitorState;
|
|
3447
3609
|
deviceCredentials: DeviceCredentialsState;
|
|
3448
3610
|
localMedia: LocalMediaState;
|
|
3449
3611
|
localParticipant: LocalParticipantState;
|
|
@@ -3491,6 +3653,7 @@ declare const selectLocalMediaConstraintsOptions: ((state: {
|
|
|
3491
3653
|
authorization: AuthorizationState;
|
|
3492
3654
|
chat: ChatState;
|
|
3493
3655
|
cloudRecording: CloudRecordingState;
|
|
3656
|
+
connectionMonitor: ConnectionMonitorState;
|
|
3494
3657
|
deviceCredentials: DeviceCredentialsState;
|
|
3495
3658
|
localMedia: LocalMediaState;
|
|
3496
3659
|
localParticipant: LocalParticipantState;
|
|
@@ -3584,6 +3747,7 @@ declare const selectIsLocalMediaStarting: ((state: {
|
|
|
3584
3747
|
authorization: AuthorizationState;
|
|
3585
3748
|
chat: ChatState;
|
|
3586
3749
|
cloudRecording: CloudRecordingState;
|
|
3750
|
+
connectionMonitor: ConnectionMonitorState;
|
|
3587
3751
|
deviceCredentials: DeviceCredentialsState;
|
|
3588
3752
|
localMedia: LocalMediaState;
|
|
3589
3753
|
localParticipant: LocalParticipantState;
|
|
@@ -3625,6 +3789,7 @@ declare const selectCameraDevices: ((state: {
|
|
|
3625
3789
|
authorization: AuthorizationState;
|
|
3626
3790
|
chat: ChatState;
|
|
3627
3791
|
cloudRecording: CloudRecordingState;
|
|
3792
|
+
connectionMonitor: ConnectionMonitorState;
|
|
3628
3793
|
deviceCredentials: DeviceCredentialsState;
|
|
3629
3794
|
localMedia: LocalMediaState;
|
|
3630
3795
|
localParticipant: LocalParticipantState;
|
|
@@ -3666,6 +3831,7 @@ declare const selectMicrophoneDevices: ((state: {
|
|
|
3666
3831
|
authorization: AuthorizationState;
|
|
3667
3832
|
chat: ChatState;
|
|
3668
3833
|
cloudRecording: CloudRecordingState;
|
|
3834
|
+
connectionMonitor: ConnectionMonitorState;
|
|
3669
3835
|
deviceCredentials: DeviceCredentialsState;
|
|
3670
3836
|
localMedia: LocalMediaState;
|
|
3671
3837
|
localParticipant: LocalParticipantState;
|
|
@@ -3707,6 +3873,7 @@ declare const selectSpeakerDevices: ((state: {
|
|
|
3707
3873
|
authorization: AuthorizationState;
|
|
3708
3874
|
chat: ChatState;
|
|
3709
3875
|
cloudRecording: CloudRecordingState;
|
|
3876
|
+
connectionMonitor: ConnectionMonitorState;
|
|
3710
3877
|
deviceCredentials: DeviceCredentialsState;
|
|
3711
3878
|
localMedia: LocalMediaState;
|
|
3712
3879
|
localParticipant: LocalParticipantState;
|
|
@@ -3748,6 +3915,7 @@ declare const selectLocalMediaShouldStartWithOptions: ((state: {
|
|
|
3748
3915
|
authorization: AuthorizationState;
|
|
3749
3916
|
chat: ChatState;
|
|
3750
3917
|
cloudRecording: CloudRecordingState;
|
|
3918
|
+
connectionMonitor: ConnectionMonitorState;
|
|
3751
3919
|
deviceCredentials: DeviceCredentialsState;
|
|
3752
3920
|
localMedia: LocalMediaState;
|
|
3753
3921
|
localParticipant: LocalParticipantState;
|
|
@@ -3780,6 +3948,7 @@ declare const selectLocalMediaShouldStartWithOptions: ((state: {
|
|
|
3780
3948
|
authorization: AuthorizationState;
|
|
3781
3949
|
chat: ChatState;
|
|
3782
3950
|
cloudRecording: CloudRecordingState;
|
|
3951
|
+
connectionMonitor: ConnectionMonitorState;
|
|
3783
3952
|
deviceCredentials: DeviceCredentialsState;
|
|
3784
3953
|
localMedia: LocalMediaState;
|
|
3785
3954
|
localParticipant: LocalParticipantState;
|
|
@@ -3809,6 +3978,7 @@ declare const selectLocalMediaShouldStop: ((state: {
|
|
|
3809
3978
|
authorization: AuthorizationState;
|
|
3810
3979
|
chat: ChatState;
|
|
3811
3980
|
cloudRecording: CloudRecordingState;
|
|
3981
|
+
connectionMonitor: ConnectionMonitorState;
|
|
3812
3982
|
deviceCredentials: DeviceCredentialsState;
|
|
3813
3983
|
localMedia: LocalMediaState;
|
|
3814
3984
|
localParticipant: LocalParticipantState;
|
|
@@ -3841,6 +4011,7 @@ declare const selectLocalMediaShouldStop: ((state: {
|
|
|
3841
4011
|
authorization: AuthorizationState;
|
|
3842
4012
|
chat: ChatState;
|
|
3843
4013
|
cloudRecording: CloudRecordingState;
|
|
4014
|
+
connectionMonitor: ConnectionMonitorState;
|
|
3844
4015
|
deviceCredentials: DeviceCredentialsState;
|
|
3845
4016
|
localMedia: LocalMediaState;
|
|
3846
4017
|
localParticipant: LocalParticipantState;
|
|
@@ -3990,6 +4161,7 @@ declare const selectLocalParticipantView: ((state: {
|
|
|
3990
4161
|
authorization: AuthorizationState;
|
|
3991
4162
|
chat: ChatState;
|
|
3992
4163
|
cloudRecording: CloudRecordingState;
|
|
4164
|
+
connectionMonitor: ConnectionMonitorState;
|
|
3993
4165
|
deviceCredentials: DeviceCredentialsState;
|
|
3994
4166
|
localMedia: LocalMediaState;
|
|
3995
4167
|
localParticipant: LocalParticipantState;
|
|
@@ -4022,6 +4194,7 @@ declare const selectLocalParticipantView: ((state: {
|
|
|
4022
4194
|
authorization: AuthorizationState;
|
|
4023
4195
|
chat: ChatState;
|
|
4024
4196
|
cloudRecording: CloudRecordingState;
|
|
4197
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4025
4198
|
deviceCredentials: DeviceCredentialsState;
|
|
4026
4199
|
localMedia: LocalMediaState;
|
|
4027
4200
|
localParticipant: LocalParticipantState;
|
|
@@ -4061,6 +4234,7 @@ declare const selectShouldFetchOrganization: ((state: {
|
|
|
4061
4234
|
authorization: AuthorizationState;
|
|
4062
4235
|
chat: ChatState;
|
|
4063
4236
|
cloudRecording: CloudRecordingState;
|
|
4237
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4064
4238
|
deviceCredentials: DeviceCredentialsState;
|
|
4065
4239
|
localMedia: LocalMediaState;
|
|
4066
4240
|
localParticipant: LocalParticipantState;
|
|
@@ -4093,6 +4267,7 @@ declare const selectShouldFetchOrganization: ((state: {
|
|
|
4093
4267
|
authorization: AuthorizationState;
|
|
4094
4268
|
chat: ChatState;
|
|
4095
4269
|
cloudRecording: CloudRecordingState;
|
|
4270
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4096
4271
|
deviceCredentials: DeviceCredentialsState;
|
|
4097
4272
|
localMedia: LocalMediaState;
|
|
4098
4273
|
localParticipant: LocalParticipantState;
|
|
@@ -4113,6 +4288,7 @@ declare const selectShouldFetchOrganization: ((state: {
|
|
|
4113
4288
|
authorization: AuthorizationState;
|
|
4114
4289
|
chat: ChatState;
|
|
4115
4290
|
cloudRecording: CloudRecordingState;
|
|
4291
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4116
4292
|
deviceCredentials: DeviceCredentialsState;
|
|
4117
4293
|
localMedia: LocalMediaState;
|
|
4118
4294
|
localParticipant: LocalParticipantState;
|
|
@@ -4433,6 +4609,7 @@ declare const selectRemoteParticipants: ((state: {
|
|
|
4433
4609
|
authorization: AuthorizationState;
|
|
4434
4610
|
chat: ChatState;
|
|
4435
4611
|
cloudRecording: CloudRecordingState;
|
|
4612
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4436
4613
|
deviceCredentials: DeviceCredentialsState;
|
|
4437
4614
|
localMedia: LocalMediaState;
|
|
4438
4615
|
localParticipant: LocalParticipantState;
|
|
@@ -4474,6 +4651,7 @@ declare const selectNumClients: ((state: {
|
|
|
4474
4651
|
authorization: AuthorizationState;
|
|
4475
4652
|
chat: ChatState;
|
|
4476
4653
|
cloudRecording: CloudRecordingState;
|
|
4654
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4477
4655
|
deviceCredentials: DeviceCredentialsState;
|
|
4478
4656
|
localMedia: LocalMediaState;
|
|
4479
4657
|
localParticipant: LocalParticipantState;
|
|
@@ -4515,6 +4693,7 @@ declare const selectNumParticipants: ((state: {
|
|
|
4515
4693
|
authorization: AuthorizationState;
|
|
4516
4694
|
chat: ChatState;
|
|
4517
4695
|
cloudRecording: CloudRecordingState;
|
|
4696
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4518
4697
|
deviceCredentials: DeviceCredentialsState;
|
|
4519
4698
|
localMedia: LocalMediaState;
|
|
4520
4699
|
localParticipant: LocalParticipantState;
|
|
@@ -4547,6 +4726,7 @@ declare const selectNumParticipants: ((state: {
|
|
|
4547
4726
|
authorization: AuthorizationState;
|
|
4548
4727
|
chat: ChatState;
|
|
4549
4728
|
cloudRecording: CloudRecordingState;
|
|
4729
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4550
4730
|
deviceCredentials: DeviceCredentialsState;
|
|
4551
4731
|
localMedia: LocalMediaState;
|
|
4552
4732
|
localParticipant: LocalParticipantState;
|
|
@@ -4587,6 +4767,7 @@ declare const selectNumParticipants: ((state: {
|
|
|
4587
4767
|
authorization: AuthorizationState;
|
|
4588
4768
|
chat: ChatState;
|
|
4589
4769
|
cloudRecording: CloudRecordingState;
|
|
4770
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4590
4771
|
deviceCredentials: DeviceCredentialsState;
|
|
4591
4772
|
localMedia: LocalMediaState;
|
|
4592
4773
|
localParticipant: LocalParticipantState;
|
|
@@ -4631,6 +4812,7 @@ declare const selectScreenshares: ((state: {
|
|
|
4631
4812
|
authorization: AuthorizationState;
|
|
4632
4813
|
chat: ChatState;
|
|
4633
4814
|
cloudRecording: CloudRecordingState;
|
|
4815
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4634
4816
|
deviceCredentials: DeviceCredentialsState;
|
|
4635
4817
|
localMedia: LocalMediaState;
|
|
4636
4818
|
localParticipant: LocalParticipantState;
|
|
@@ -4663,6 +4845,7 @@ declare const selectScreenshares: ((state: {
|
|
|
4663
4845
|
authorization: AuthorizationState;
|
|
4664
4846
|
chat: ChatState;
|
|
4665
4847
|
cloudRecording: CloudRecordingState;
|
|
4848
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4666
4849
|
deviceCredentials: DeviceCredentialsState;
|
|
4667
4850
|
localMedia: LocalMediaState;
|
|
4668
4851
|
localParticipant: LocalParticipantState;
|
|
@@ -4683,6 +4866,7 @@ declare const selectScreenshares: ((state: {
|
|
|
4683
4866
|
authorization: AuthorizationState;
|
|
4684
4867
|
chat: ChatState;
|
|
4685
4868
|
cloudRecording: CloudRecordingState;
|
|
4869
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4686
4870
|
deviceCredentials: DeviceCredentialsState;
|
|
4687
4871
|
localMedia: LocalMediaState;
|
|
4688
4872
|
localParticipant: LocalParticipantState;
|
|
@@ -4715,6 +4899,7 @@ declare const selectScreenshares: ((state: {
|
|
|
4715
4899
|
authorization: AuthorizationState;
|
|
4716
4900
|
chat: ChatState;
|
|
4717
4901
|
cloudRecording: CloudRecordingState;
|
|
4902
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4718
4903
|
deviceCredentials: DeviceCredentialsState;
|
|
4719
4904
|
localMedia: LocalMediaState;
|
|
4720
4905
|
localParticipant: LocalParticipantState;
|
|
@@ -4752,6 +4937,7 @@ declare const selectRemoteClientViews: ((state: {
|
|
|
4752
4937
|
authorization: AuthorizationState;
|
|
4753
4938
|
chat: ChatState;
|
|
4754
4939
|
cloudRecording: CloudRecordingState;
|
|
4940
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4755
4941
|
deviceCredentials: DeviceCredentialsState;
|
|
4756
4942
|
localMedia: LocalMediaState;
|
|
4757
4943
|
localParticipant: LocalParticipantState;
|
|
@@ -4784,6 +4970,7 @@ declare const selectRemoteClientViews: ((state: {
|
|
|
4784
4970
|
authorization: AuthorizationState;
|
|
4785
4971
|
chat: ChatState;
|
|
4786
4972
|
cloudRecording: CloudRecordingState;
|
|
4973
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4787
4974
|
deviceCredentials: DeviceCredentialsState;
|
|
4788
4975
|
localMedia: LocalMediaState;
|
|
4789
4976
|
localParticipant: LocalParticipantState;
|
|
@@ -4804,6 +4991,7 @@ declare const selectRemoteClientViews: ((state: {
|
|
|
4804
4991
|
authorization: AuthorizationState;
|
|
4805
4992
|
chat: ChatState;
|
|
4806
4993
|
cloudRecording: CloudRecordingState;
|
|
4994
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4807
4995
|
deviceCredentials: DeviceCredentialsState;
|
|
4808
4996
|
localMedia: LocalMediaState;
|
|
4809
4997
|
localParticipant: LocalParticipantState;
|
|
@@ -4824,6 +5012,7 @@ declare const selectRemoteClientViews: ((state: {
|
|
|
4824
5012
|
authorization: AuthorizationState;
|
|
4825
5013
|
chat: ChatState;
|
|
4826
5014
|
cloudRecording: CloudRecordingState;
|
|
5015
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4827
5016
|
deviceCredentials: DeviceCredentialsState;
|
|
4828
5017
|
localMedia: LocalMediaState;
|
|
4829
5018
|
localParticipant: LocalParticipantState;
|
|
@@ -4856,6 +5045,7 @@ declare const selectRemoteClientViews: ((state: {
|
|
|
4856
5045
|
authorization: AuthorizationState;
|
|
4857
5046
|
chat: ChatState;
|
|
4858
5047
|
cloudRecording: CloudRecordingState;
|
|
5048
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4859
5049
|
deviceCredentials: DeviceCredentialsState;
|
|
4860
5050
|
localMedia: LocalMediaState;
|
|
4861
5051
|
localParticipant: LocalParticipantState;
|
|
@@ -4893,6 +5083,7 @@ declare const selectAllClientViews: ((state: {
|
|
|
4893
5083
|
authorization: AuthorizationState;
|
|
4894
5084
|
chat: ChatState;
|
|
4895
5085
|
cloudRecording: CloudRecordingState;
|
|
5086
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4896
5087
|
deviceCredentials: DeviceCredentialsState;
|
|
4897
5088
|
localMedia: LocalMediaState;
|
|
4898
5089
|
localParticipant: LocalParticipantState;
|
|
@@ -4925,6 +5116,7 @@ declare const selectAllClientViews: ((state: {
|
|
|
4925
5116
|
authorization: AuthorizationState;
|
|
4926
5117
|
chat: ChatState;
|
|
4927
5118
|
cloudRecording: CloudRecordingState;
|
|
5119
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4928
5120
|
deviceCredentials: DeviceCredentialsState;
|
|
4929
5121
|
localMedia: LocalMediaState;
|
|
4930
5122
|
localParticipant: LocalParticipantState;
|
|
@@ -4957,6 +5149,7 @@ declare const selectAllClientViews: ((state: {
|
|
|
4957
5149
|
authorization: AuthorizationState;
|
|
4958
5150
|
chat: ChatState;
|
|
4959
5151
|
cloudRecording: CloudRecordingState;
|
|
5152
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4960
5153
|
deviceCredentials: DeviceCredentialsState;
|
|
4961
5154
|
localMedia: LocalMediaState;
|
|
4962
5155
|
localParticipant: LocalParticipantState;
|
|
@@ -4977,6 +5170,7 @@ declare const selectAllClientViews: ((state: {
|
|
|
4977
5170
|
authorization: AuthorizationState;
|
|
4978
5171
|
chat: ChatState;
|
|
4979
5172
|
cloudRecording: CloudRecordingState;
|
|
5173
|
+
connectionMonitor: ConnectionMonitorState;
|
|
4980
5174
|
deviceCredentials: DeviceCredentialsState;
|
|
4981
5175
|
localMedia: LocalMediaState;
|
|
4982
5176
|
localParticipant: LocalParticipantState;
|
|
@@ -5005,6 +5199,7 @@ declare const selectAllClientViews: ((state: {
|
|
|
5005
5199
|
authorization: AuthorizationState;
|
|
5006
5200
|
chat: ChatState;
|
|
5007
5201
|
cloudRecording: CloudRecordingState;
|
|
5202
|
+
connectionMonitor: ConnectionMonitorState;
|
|
5008
5203
|
deviceCredentials: DeviceCredentialsState;
|
|
5009
5204
|
localMedia: LocalMediaState;
|
|
5010
5205
|
localParticipant: LocalParticipantState;
|
|
@@ -5037,6 +5232,7 @@ declare const selectAllClientViews: ((state: {
|
|
|
5037
5232
|
authorization: AuthorizationState;
|
|
5038
5233
|
chat: ChatState;
|
|
5039
5234
|
cloudRecording: CloudRecordingState;
|
|
5235
|
+
connectionMonitor: ConnectionMonitorState;
|
|
5040
5236
|
deviceCredentials: DeviceCredentialsState;
|
|
5041
5237
|
localMedia: LocalMediaState;
|
|
5042
5238
|
localParticipant: LocalParticipantState;
|
|
@@ -5057,6 +5253,7 @@ declare const selectAllClientViews: ((state: {
|
|
|
5057
5253
|
authorization: AuthorizationState;
|
|
5058
5254
|
chat: ChatState;
|
|
5059
5255
|
cloudRecording: CloudRecordingState;
|
|
5256
|
+
connectionMonitor: ConnectionMonitorState;
|
|
5060
5257
|
deviceCredentials: DeviceCredentialsState;
|
|
5061
5258
|
localMedia: LocalMediaState;
|
|
5062
5259
|
localParticipant: LocalParticipantState;
|
|
@@ -5077,6 +5274,7 @@ declare const selectAllClientViews: ((state: {
|
|
|
5077
5274
|
authorization: AuthorizationState;
|
|
5078
5275
|
chat: ChatState;
|
|
5079
5276
|
cloudRecording: CloudRecordingState;
|
|
5277
|
+
connectionMonitor: ConnectionMonitorState;
|
|
5080
5278
|
deviceCredentials: DeviceCredentialsState;
|
|
5081
5279
|
localMedia: LocalMediaState;
|
|
5082
5280
|
localParticipant: LocalParticipantState;
|
|
@@ -5109,6 +5307,7 @@ declare const selectAllClientViews: ((state: {
|
|
|
5109
5307
|
authorization: AuthorizationState;
|
|
5110
5308
|
chat: ChatState;
|
|
5111
5309
|
cloudRecording: CloudRecordingState;
|
|
5310
|
+
connectionMonitor: ConnectionMonitorState;
|
|
5112
5311
|
deviceCredentials: DeviceCredentialsState;
|
|
5113
5312
|
localMedia: LocalMediaState;
|
|
5114
5313
|
localParticipant: LocalParticipantState;
|
|
@@ -5191,6 +5390,7 @@ declare const selectShouldConnectRoom: ((state: {
|
|
|
5191
5390
|
authorization: AuthorizationState;
|
|
5192
5391
|
chat: ChatState;
|
|
5193
5392
|
cloudRecording: CloudRecordingState;
|
|
5393
|
+
connectionMonitor: ConnectionMonitorState;
|
|
5194
5394
|
deviceCredentials: DeviceCredentialsState;
|
|
5195
5395
|
localMedia: LocalMediaState;
|
|
5196
5396
|
localParticipant: LocalParticipantState;
|
|
@@ -5223,6 +5423,7 @@ declare const selectShouldConnectRoom: ((state: {
|
|
|
5223
5423
|
authorization: AuthorizationState;
|
|
5224
5424
|
chat: ChatState;
|
|
5225
5425
|
cloudRecording: CloudRecordingState;
|
|
5426
|
+
connectionMonitor: ConnectionMonitorState;
|
|
5226
5427
|
deviceCredentials: DeviceCredentialsState;
|
|
5227
5428
|
localMedia: LocalMediaState;
|
|
5228
5429
|
localParticipant: LocalParticipantState;
|
|
@@ -5243,6 +5444,7 @@ declare const selectShouldConnectRoom: ((state: {
|
|
|
5243
5444
|
authorization: AuthorizationState;
|
|
5244
5445
|
chat: ChatState;
|
|
5245
5446
|
cloudRecording: CloudRecordingState;
|
|
5447
|
+
connectionMonitor: ConnectionMonitorState;
|
|
5246
5448
|
deviceCredentials: DeviceCredentialsState;
|
|
5247
5449
|
localMedia: LocalMediaState;
|
|
5248
5450
|
localParticipant: LocalParticipantState;
|
|
@@ -5263,6 +5465,7 @@ declare const selectShouldConnectRoom: ((state: {
|
|
|
5263
5465
|
authorization: AuthorizationState;
|
|
5264
5466
|
chat: ChatState;
|
|
5265
5467
|
cloudRecording: CloudRecordingState;
|
|
5468
|
+
connectionMonitor: ConnectionMonitorState;
|
|
5266
5469
|
deviceCredentials: DeviceCredentialsState;
|
|
5267
5470
|
localMedia: LocalMediaState;
|
|
5268
5471
|
localParticipant: LocalParticipantState;
|
|
@@ -5283,6 +5486,7 @@ declare const selectShouldConnectRoom: ((state: {
|
|
|
5283
5486
|
authorization: AuthorizationState;
|
|
5284
5487
|
chat: ChatState;
|
|
5285
5488
|
cloudRecording: CloudRecordingState;
|
|
5489
|
+
connectionMonitor: ConnectionMonitorState;
|
|
5286
5490
|
deviceCredentials: DeviceCredentialsState;
|
|
5287
5491
|
localMedia: LocalMediaState;
|
|
5288
5492
|
localParticipant: LocalParticipantState;
|
|
@@ -5352,6 +5556,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5352
5556
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5353
5557
|
disconnectAll: () => void;
|
|
5354
5558
|
rtcStatsDisconnect: () => void;
|
|
5559
|
+
rtcStatsReconnect: () => void;
|
|
5355
5560
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5356
5561
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5357
5562
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5384,6 +5589,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5384
5589
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5385
5590
|
disconnectAll: () => void;
|
|
5386
5591
|
rtcStatsDisconnect: () => void;
|
|
5592
|
+
rtcStatsReconnect: () => void;
|
|
5387
5593
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5388
5594
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5389
5595
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5428,6 +5634,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5428
5634
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5429
5635
|
disconnectAll: () => void;
|
|
5430
5636
|
rtcStatsDisconnect: () => void;
|
|
5637
|
+
rtcStatsReconnect: () => void;
|
|
5431
5638
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5432
5639
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5433
5640
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5460,6 +5667,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5460
5667
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5461
5668
|
disconnectAll: () => void;
|
|
5462
5669
|
rtcStatsDisconnect: () => void;
|
|
5670
|
+
rtcStatsReconnect: () => void;
|
|
5463
5671
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5464
5672
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5465
5673
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5503,6 +5711,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5503
5711
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5504
5712
|
disconnectAll: () => void;
|
|
5505
5713
|
rtcStatsDisconnect: () => void;
|
|
5714
|
+
rtcStatsReconnect: () => void;
|
|
5506
5715
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5507
5716
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5508
5717
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5535,6 +5744,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5535
5744
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5536
5745
|
disconnectAll: () => void;
|
|
5537
5746
|
rtcStatsDisconnect: () => void;
|
|
5747
|
+
rtcStatsReconnect: () => void;
|
|
5538
5748
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5539
5749
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5540
5750
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5581,6 +5791,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5581
5791
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5582
5792
|
disconnectAll: () => void;
|
|
5583
5793
|
rtcStatsDisconnect: () => void;
|
|
5794
|
+
rtcStatsReconnect: () => void;
|
|
5584
5795
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5585
5796
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5586
5797
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5613,6 +5824,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5613
5824
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5614
5825
|
disconnectAll: () => void;
|
|
5615
5826
|
rtcStatsDisconnect: () => void;
|
|
5827
|
+
rtcStatsReconnect: () => void;
|
|
5616
5828
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5617
5829
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5618
5830
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5670,6 +5882,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5670
5882
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5671
5883
|
disconnectAll: () => void;
|
|
5672
5884
|
rtcStatsDisconnect: () => void;
|
|
5885
|
+
rtcStatsReconnect: () => void;
|
|
5673
5886
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5674
5887
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5675
5888
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5702,6 +5915,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5702
5915
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5703
5916
|
disconnectAll: () => void;
|
|
5704
5917
|
rtcStatsDisconnect: () => void;
|
|
5918
|
+
rtcStatsReconnect: () => void;
|
|
5705
5919
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5706
5920
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5707
5921
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5746,6 +5960,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5746
5960
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5747
5961
|
disconnectAll: () => void;
|
|
5748
5962
|
rtcStatsDisconnect: () => void;
|
|
5963
|
+
rtcStatsReconnect: () => void;
|
|
5749
5964
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5750
5965
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5751
5966
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5788,6 +6003,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5788
6003
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5789
6004
|
disconnectAll: () => void;
|
|
5790
6005
|
rtcStatsDisconnect: () => void;
|
|
6006
|
+
rtcStatsReconnect: () => void;
|
|
5791
6007
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5792
6008
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5793
6009
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5820,6 +6036,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5820
6036
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5821
6037
|
disconnectAll: () => void;
|
|
5822
6038
|
rtcStatsDisconnect: () => void;
|
|
6039
|
+
rtcStatsReconnect: () => void;
|
|
5823
6040
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5824
6041
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5825
6042
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5869,6 +6086,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5869
6086
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5870
6087
|
disconnectAll: () => void;
|
|
5871
6088
|
rtcStatsDisconnect: () => void;
|
|
6089
|
+
rtcStatsReconnect: () => void;
|
|
5872
6090
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5873
6091
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5874
6092
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5912,6 +6130,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5912
6130
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5913
6131
|
disconnectAll: () => void;
|
|
5914
6132
|
rtcStatsDisconnect: () => void;
|
|
6133
|
+
rtcStatsReconnect: () => void;
|
|
5915
6134
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5916
6135
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5917
6136
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5944,6 +6163,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5944
6163
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5945
6164
|
disconnectAll: () => void;
|
|
5946
6165
|
rtcStatsDisconnect: () => void;
|
|
6166
|
+
rtcStatsReconnect: () => void;
|
|
5947
6167
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5948
6168
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5949
6169
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -5992,6 +6212,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
5992
6212
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
5993
6213
|
disconnectAll: () => void;
|
|
5994
6214
|
rtcStatsDisconnect: () => void;
|
|
6215
|
+
rtcStatsReconnect: () => void;
|
|
5995
6216
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
5996
6217
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
5997
6218
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -6036,6 +6257,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
6036
6257
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
6037
6258
|
disconnectAll: () => void;
|
|
6038
6259
|
rtcStatsDisconnect: () => void;
|
|
6260
|
+
rtcStatsReconnect: () => void;
|
|
6039
6261
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
6040
6262
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
6041
6263
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -6068,6 +6290,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
6068
6290
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
6069
6291
|
disconnectAll: () => void;
|
|
6070
6292
|
rtcStatsDisconnect: () => void;
|
|
6293
|
+
rtcStatsReconnect: () => void;
|
|
6071
6294
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
6072
6295
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
6073
6296
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -6112,6 +6335,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
6112
6335
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
6113
6336
|
disconnectAll: () => void;
|
|
6114
6337
|
rtcStatsDisconnect: () => void;
|
|
6338
|
+
rtcStatsReconnect: () => void;
|
|
6115
6339
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
6116
6340
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
6117
6341
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -6144,6 +6368,7 @@ declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
|
6144
6368
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
6145
6369
|
disconnectAll: () => void;
|
|
6146
6370
|
rtcStatsDisconnect: () => void;
|
|
6371
|
+
rtcStatsReconnect: () => void;
|
|
6147
6372
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
6148
6373
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
6149
6374
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -6191,6 +6416,7 @@ declare const selectShouldConnectRtc: ((state: {
|
|
|
6191
6416
|
authorization: AuthorizationState;
|
|
6192
6417
|
chat: ChatState;
|
|
6193
6418
|
cloudRecording: CloudRecordingState;
|
|
6419
|
+
connectionMonitor: ConnectionMonitorState;
|
|
6194
6420
|
deviceCredentials: DeviceCredentialsState;
|
|
6195
6421
|
localMedia: LocalMediaState;
|
|
6196
6422
|
localParticipant: LocalParticipantState;
|
|
@@ -6211,18 +6437,40 @@ declare const selectShouldConnectRtc: ((state: {
|
|
|
6211
6437
|
resultsCount: () => number;
|
|
6212
6438
|
resetResultsCount: () => void;
|
|
6213
6439
|
} & {
|
|
6214
|
-
resultFunc: (resultFuncArgs_0:
|
|
6215
|
-
memoizedResultFunc: ((resultFuncArgs_0:
|
|
6440
|
+
resultFunc: (resultFuncArgs_0: "inactive" | "ready" | "reconnecting", resultFuncArgs_1: boolean, resultFuncArgs_2: boolean, resultFuncArgs_3: boolean, resultFuncArgs_4: _whereby_com_media.ServerSocket | null) => boolean;
|
|
6441
|
+
memoizedResultFunc: ((resultFuncArgs_0: "inactive" | "ready" | "reconnecting", resultFuncArgs_1: boolean, resultFuncArgs_2: boolean, resultFuncArgs_3: boolean, resultFuncArgs_4: _whereby_com_media.ServerSocket | null) => boolean) & {
|
|
6216
6442
|
clearCache: () => void;
|
|
6217
6443
|
resultsCount: () => number;
|
|
6218
6444
|
resetResultsCount: () => void;
|
|
6219
6445
|
};
|
|
6220
6446
|
lastResult: () => boolean;
|
|
6221
|
-
dependencies: [(state: RootState) =>
|
|
6447
|
+
dependencies: [(state: RootState) => "inactive" | "ready" | "reconnecting", (state: {
|
|
6222
6448
|
app: AppState;
|
|
6223
6449
|
authorization: AuthorizationState;
|
|
6224
6450
|
chat: ChatState;
|
|
6225
6451
|
cloudRecording: CloudRecordingState;
|
|
6452
|
+
connectionMonitor: ConnectionMonitorState;
|
|
6453
|
+
deviceCredentials: DeviceCredentialsState;
|
|
6454
|
+
localMedia: LocalMediaState;
|
|
6455
|
+
localParticipant: LocalParticipantState;
|
|
6456
|
+
localScreenshare: LocalScreenshareState;
|
|
6457
|
+
notifications: NotificationsState;
|
|
6458
|
+
organization: OrganizationState;
|
|
6459
|
+
remoteParticipants: RemoteParticipantState;
|
|
6460
|
+
room: RoomState;
|
|
6461
|
+
roomConnection: RoomConnectionState;
|
|
6462
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
6463
|
+
rtcConnection: RtcConnectionState;
|
|
6464
|
+
signalConnection: SignalConnectionState;
|
|
6465
|
+
spotlights: SpotlightsState;
|
|
6466
|
+
streaming: StreamingState;
|
|
6467
|
+
waitingParticipants: WaitingParticipantsState;
|
|
6468
|
+
}) => boolean, (state: RootState) => boolean, (state: RootState) => boolean, (state: {
|
|
6469
|
+
app: AppState;
|
|
6470
|
+
authorization: AuthorizationState;
|
|
6471
|
+
chat: ChatState;
|
|
6472
|
+
cloudRecording: CloudRecordingState;
|
|
6473
|
+
connectionMonitor: ConnectionMonitorState;
|
|
6226
6474
|
deviceCredentials: DeviceCredentialsState;
|
|
6227
6475
|
localMedia: LocalMediaState;
|
|
6228
6476
|
localParticipant: LocalParticipantState;
|
|
@@ -6252,6 +6500,7 @@ declare const selectShouldInitializeRtc: ((state: {
|
|
|
6252
6500
|
authorization: AuthorizationState;
|
|
6253
6501
|
chat: ChatState;
|
|
6254
6502
|
cloudRecording: CloudRecordingState;
|
|
6503
|
+
connectionMonitor: ConnectionMonitorState;
|
|
6255
6504
|
deviceCredentials: DeviceCredentialsState;
|
|
6256
6505
|
localMedia: LocalMediaState;
|
|
6257
6506
|
localParticipant: LocalParticipantState;
|
|
@@ -6284,6 +6533,7 @@ declare const selectShouldInitializeRtc: ((state: {
|
|
|
6284
6533
|
authorization: AuthorizationState;
|
|
6285
6534
|
chat: ChatState;
|
|
6286
6535
|
cloudRecording: CloudRecordingState;
|
|
6536
|
+
connectionMonitor: ConnectionMonitorState;
|
|
6287
6537
|
deviceCredentials: DeviceCredentialsState;
|
|
6288
6538
|
localMedia: LocalMediaState;
|
|
6289
6539
|
localParticipant: LocalParticipantState;
|
|
@@ -6313,6 +6563,7 @@ declare const selectShouldDisconnectRtc: ((state: {
|
|
|
6313
6563
|
authorization: AuthorizationState;
|
|
6314
6564
|
chat: ChatState;
|
|
6315
6565
|
cloudRecording: CloudRecordingState;
|
|
6566
|
+
connectionMonitor: ConnectionMonitorState;
|
|
6316
6567
|
deviceCredentials: DeviceCredentialsState;
|
|
6317
6568
|
localMedia: LocalMediaState;
|
|
6318
6569
|
localParticipant: LocalParticipantState;
|
|
@@ -6345,6 +6596,7 @@ declare const selectShouldDisconnectRtc: ((state: {
|
|
|
6345
6596
|
authorization: AuthorizationState;
|
|
6346
6597
|
chat: ChatState;
|
|
6347
6598
|
cloudRecording: CloudRecordingState;
|
|
6599
|
+
connectionMonitor: ConnectionMonitorState;
|
|
6348
6600
|
deviceCredentials: DeviceCredentialsState;
|
|
6349
6601
|
localMedia: LocalMediaState;
|
|
6350
6602
|
localParticipant: LocalParticipantState;
|
|
@@ -6374,6 +6626,7 @@ declare const selectStreamsToAccept: ((state: {
|
|
|
6374
6626
|
authorization: AuthorizationState;
|
|
6375
6627
|
chat: ChatState;
|
|
6376
6628
|
cloudRecording: CloudRecordingState;
|
|
6629
|
+
connectionMonitor: ConnectionMonitorState;
|
|
6377
6630
|
deviceCredentials: DeviceCredentialsState;
|
|
6378
6631
|
localMedia: LocalMediaState;
|
|
6379
6632
|
localParticipant: LocalParticipantState;
|
|
@@ -6422,6 +6675,7 @@ declare const selectStreamsToAccept: ((state: {
|
|
|
6422
6675
|
authorization: AuthorizationState;
|
|
6423
6676
|
chat: ChatState;
|
|
6424
6677
|
cloudRecording: CloudRecordingState;
|
|
6678
|
+
connectionMonitor: ConnectionMonitorState;
|
|
6425
6679
|
deviceCredentials: DeviceCredentialsState;
|
|
6426
6680
|
localMedia: LocalMediaState;
|
|
6427
6681
|
localParticipant: LocalParticipantState;
|
|
@@ -6505,6 +6759,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6505
6759
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
6506
6760
|
disconnectAll: () => void;
|
|
6507
6761
|
rtcStatsDisconnect: () => void;
|
|
6762
|
+
rtcStatsReconnect: () => void;
|
|
6508
6763
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
6509
6764
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
6510
6765
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -6527,6 +6782,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6527
6782
|
evaluationFailed: number;
|
|
6528
6783
|
roomJoined: number;
|
|
6529
6784
|
};
|
|
6785
|
+
reconnectThresholdInMs: number;
|
|
6530
6786
|
_onRoomJoined: (payload: any) => Promise<void>;
|
|
6531
6787
|
_onClientLeft: (payload: any) => void;
|
|
6532
6788
|
_onPendingClientLeft: (payload: any) => void;
|
|
@@ -6566,6 +6822,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6566
6822
|
} | null | undefined;
|
|
6567
6823
|
noopKeepaliveInterval: any;
|
|
6568
6824
|
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
6825
|
+
disconnectTimestamp: number | undefined;
|
|
6569
6826
|
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
6570
6827
|
connect: () => void;
|
|
6571
6828
|
disconnect: () => void;
|
|
@@ -6586,6 +6843,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6586
6843
|
evaluationFailed: number;
|
|
6587
6844
|
roomJoined: number;
|
|
6588
6845
|
} | undefined;
|
|
6846
|
+
getReconnectThreshold: () => number | undefined;
|
|
6589
6847
|
} | null;
|
|
6590
6848
|
}) => {
|
|
6591
6849
|
status: "connecting";
|
|
@@ -6609,6 +6867,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6609
6867
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
6610
6868
|
disconnectAll: () => void;
|
|
6611
6869
|
rtcStatsDisconnect: () => void;
|
|
6870
|
+
rtcStatsReconnect: () => void;
|
|
6612
6871
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
6613
6872
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
6614
6873
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -6631,6 +6890,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6631
6890
|
evaluationFailed: number;
|
|
6632
6891
|
roomJoined: number;
|
|
6633
6892
|
};
|
|
6893
|
+
reconnectThresholdInMs: number;
|
|
6634
6894
|
_onRoomJoined: (payload: any) => Promise<void>;
|
|
6635
6895
|
_onClientLeft: (payload: any) => void;
|
|
6636
6896
|
_onPendingClientLeft: (payload: any) => void;
|
|
@@ -6670,6 +6930,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6670
6930
|
} | null | undefined;
|
|
6671
6931
|
noopKeepaliveInterval: any;
|
|
6672
6932
|
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
6933
|
+
disconnectTimestamp: number | undefined;
|
|
6673
6934
|
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
6674
6935
|
connect: () => void;
|
|
6675
6936
|
disconnect: () => void;
|
|
@@ -6690,6 +6951,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6690
6951
|
evaluationFailed: number;
|
|
6691
6952
|
roomJoined: number;
|
|
6692
6953
|
} | undefined;
|
|
6954
|
+
getReconnectThreshold: () => number | undefined;
|
|
6693
6955
|
} | null;
|
|
6694
6956
|
};
|
|
6695
6957
|
socketConnected: (state: {
|
|
@@ -6714,6 +6976,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6714
6976
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
6715
6977
|
disconnectAll: () => void;
|
|
6716
6978
|
rtcStatsDisconnect: () => void;
|
|
6979
|
+
rtcStatsReconnect: () => void;
|
|
6717
6980
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
6718
6981
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
6719
6982
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -6736,6 +6999,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6736
6999
|
evaluationFailed: number;
|
|
6737
7000
|
roomJoined: number;
|
|
6738
7001
|
};
|
|
7002
|
+
reconnectThresholdInMs: number;
|
|
6739
7003
|
_onRoomJoined: (payload: any) => Promise<void>;
|
|
6740
7004
|
_onClientLeft: (payload: any) => void;
|
|
6741
7005
|
_onPendingClientLeft: (payload: any) => void;
|
|
@@ -6775,6 +7039,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6775
7039
|
} | null | undefined;
|
|
6776
7040
|
noopKeepaliveInterval: any;
|
|
6777
7041
|
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
7042
|
+
disconnectTimestamp: number | undefined;
|
|
6778
7043
|
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
6779
7044
|
connect: () => void;
|
|
6780
7045
|
disconnect: () => void;
|
|
@@ -6795,6 +7060,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6795
7060
|
evaluationFailed: number;
|
|
6796
7061
|
roomJoined: number;
|
|
6797
7062
|
} | undefined;
|
|
7063
|
+
getReconnectThreshold: () => number | undefined;
|
|
6798
7064
|
} | null;
|
|
6799
7065
|
}, action: PayloadAction<ServerSocket>) => {
|
|
6800
7066
|
socket: ServerSocket;
|
|
@@ -6824,6 +7090,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6824
7090
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
6825
7091
|
disconnectAll: () => void;
|
|
6826
7092
|
rtcStatsDisconnect: () => void;
|
|
7093
|
+
rtcStatsReconnect: () => void;
|
|
6827
7094
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
6828
7095
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
6829
7096
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -6846,6 +7113,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6846
7113
|
evaluationFailed: number;
|
|
6847
7114
|
roomJoined: number;
|
|
6848
7115
|
};
|
|
7116
|
+
reconnectThresholdInMs: number;
|
|
6849
7117
|
_onRoomJoined: (payload: any) => Promise<void>;
|
|
6850
7118
|
_onClientLeft: (payload: any) => void;
|
|
6851
7119
|
_onPendingClientLeft: (payload: any) => void;
|
|
@@ -6885,6 +7153,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6885
7153
|
} | null | undefined;
|
|
6886
7154
|
noopKeepaliveInterval: any;
|
|
6887
7155
|
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
7156
|
+
disconnectTimestamp: number | undefined;
|
|
6888
7157
|
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
6889
7158
|
connect: () => void;
|
|
6890
7159
|
disconnect: () => void;
|
|
@@ -6905,111 +7174,13 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6905
7174
|
evaluationFailed: number;
|
|
6906
7175
|
roomJoined: number;
|
|
6907
7176
|
} | undefined;
|
|
7177
|
+
getReconnectThreshold: () => number | undefined;
|
|
6908
7178
|
} | null;
|
|
6909
7179
|
}) => {
|
|
7180
|
+
socket: null;
|
|
6910
7181
|
deviceIdentified: false;
|
|
6911
7182
|
status: "disconnected";
|
|
6912
7183
|
isIdentifyingDevice: boolean;
|
|
6913
|
-
socket: {
|
|
6914
|
-
_socket: any;
|
|
6915
|
-
_reconnectManager?: {
|
|
6916
|
-
_socket: any;
|
|
6917
|
-
_clients: any;
|
|
6918
|
-
_signalDisconnectTime?: number | undefined;
|
|
6919
|
-
rtcManager?: {
|
|
6920
|
-
acceptNewStream: ({ activeBreakout, clientId, shouldAddLocalVideo, streamId, enforceTurnProtocol, }: {
|
|
6921
|
-
activeBreakout: boolean;
|
|
6922
|
-
clientId: string;
|
|
6923
|
-
shouldAddLocalVideo: boolean;
|
|
6924
|
-
streamId: string;
|
|
6925
|
-
enforceTurnProtocol?: _whereby_com_media.TurnTransportProtocol | undefined;
|
|
6926
|
-
}) => void;
|
|
6927
|
-
addNewStream: (streamId: string, stream: MediaStream, isAudioEnabled: boolean, isVideoEnabled: boolean) => void;
|
|
6928
|
-
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
6929
|
-
disconnectAll: () => void;
|
|
6930
|
-
rtcStatsDisconnect: () => void;
|
|
6931
|
-
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
6932
|
-
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
6933
|
-
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
6934
|
-
updateStreamResolution: (streamId: string, ignored: null, resolution: {
|
|
6935
|
-
width: number;
|
|
6936
|
-
height: number;
|
|
6937
|
-
}) => void;
|
|
6938
|
-
sendStatsCustomEvent: (eventName: string, data: unknown) => void;
|
|
6939
|
-
isInitializedWith: ({ selfId, roomName, isSfu }: {
|
|
6940
|
-
selfId: string;
|
|
6941
|
-
roomName: string;
|
|
6942
|
-
isSfu: boolean;
|
|
6943
|
-
}) => boolean;
|
|
6944
|
-
setEventClaim?: ((eventClaim: string) => void) | undefined;
|
|
6945
|
-
hasClient: (clientId: string) => boolean;
|
|
6946
|
-
} | undefined;
|
|
6947
|
-
metrics: {
|
|
6948
|
-
roomJoinedLate: number;
|
|
6949
|
-
pendingClientCanceled: number;
|
|
6950
|
-
evaluationFailed: number;
|
|
6951
|
-
roomJoined: number;
|
|
6952
|
-
};
|
|
6953
|
-
_onRoomJoined: (payload: any) => Promise<void>;
|
|
6954
|
-
_onClientLeft: (payload: any) => void;
|
|
6955
|
-
_onPendingClientLeft: (payload: any) => void;
|
|
6956
|
-
_onNewClient: (payload: any) => void;
|
|
6957
|
-
_abortIfNotActive: (payload: any) => Promise<void>;
|
|
6958
|
-
_checkIsActive: (clientId: string) => Promise<boolean>;
|
|
6959
|
-
_isClientMediaActive: (stats: any, clientId: string) => boolean;
|
|
6960
|
-
_onAudioEnabled: (payload: any) => void;
|
|
6961
|
-
_onVideoEnabled: (payload: any) => void;
|
|
6962
|
-
_onScreenshareChanged: (payload: any, action: boolean) => void;
|
|
6963
|
-
_hasClientStateChanged: ({ clientId, webcam, mic, screenShare, }: {
|
|
6964
|
-
clientId: string;
|
|
6965
|
-
webcam: boolean;
|
|
6966
|
-
mic: boolean;
|
|
6967
|
-
screenShare: boolean;
|
|
6968
|
-
}) => boolean;
|
|
6969
|
-
_addClientToState: (newClient: any) => void;
|
|
6970
|
-
_wasClientSendingMedia: (clientId: string) => any;
|
|
6971
|
-
_getPendingClientsByDeviceId: (deviceId: string) => unknown[];
|
|
6972
|
-
_resetClientState: (payload: any) => void;
|
|
6973
|
-
[EventEmitter.captureRejectionSymbol]?: (<K>(error: Error, event: string | symbol, ...args: any[]) => void) | undefined;
|
|
6974
|
-
addListener: <K_1>(eventName: string | symbol, listener: (...args: any[]) => void) => _whereby_com_media.ReconnectManager;
|
|
6975
|
-
on: <K_2>(eventName: string | symbol, listener: (...args: any[]) => void) => _whereby_com_media.ReconnectManager;
|
|
6976
|
-
once: <K_3>(eventName: string | symbol, listener: (...args: any[]) => void) => _whereby_com_media.ReconnectManager;
|
|
6977
|
-
removeListener: <K_4>(eventName: string | symbol, listener: (...args: any[]) => void) => _whereby_com_media.ReconnectManager;
|
|
6978
|
-
off: <K_5>(eventName: string | symbol, listener: (...args: any[]) => void) => _whereby_com_media.ReconnectManager;
|
|
6979
|
-
removeAllListeners: (eventName?: string | symbol | undefined) => _whereby_com_media.ReconnectManager;
|
|
6980
|
-
setMaxListeners: (n: number) => _whereby_com_media.ReconnectManager;
|
|
6981
|
-
getMaxListeners: () => number;
|
|
6982
|
-
listeners: <K_6>(eventName: string | symbol) => Function[];
|
|
6983
|
-
rawListeners: <K_7>(eventName: string | symbol) => Function[];
|
|
6984
|
-
emit: <K_8>(eventName: string | symbol, ...args: any[]) => boolean;
|
|
6985
|
-
listenerCount: <K_9>(eventName: string | symbol, listener?: Function | undefined) => number;
|
|
6986
|
-
prependListener: <K_10>(eventName: string | symbol, listener: (...args: any[]) => void) => _whereby_com_media.ReconnectManager;
|
|
6987
|
-
prependOnceListener: <K_11>(eventName: string | symbol, listener: (...args: any[]) => void) => _whereby_com_media.ReconnectManager;
|
|
6988
|
-
eventNames: () => (string | symbol)[];
|
|
6989
|
-
} | null | undefined;
|
|
6990
|
-
noopKeepaliveInterval: any;
|
|
6991
|
-
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
6992
|
-
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
6993
|
-
connect: () => void;
|
|
6994
|
-
disconnect: () => void;
|
|
6995
|
-
disconnectOnConnect: () => void;
|
|
6996
|
-
emit: (eventName: string, ...args: any[]) => void;
|
|
6997
|
-
emitIfConnected: (eventName: string, data: any) => void;
|
|
6998
|
-
getTransport: () => any;
|
|
6999
|
-
getManager: () => any;
|
|
7000
|
-
isConnecting: () => any;
|
|
7001
|
-
isConnected: () => any;
|
|
7002
|
-
on: (eventName: string, handler: Function) => () => void;
|
|
7003
|
-
once: (eventName: string, handler: Function) => void;
|
|
7004
|
-
off: (eventName: string, handler: Function) => void;
|
|
7005
|
-
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
7006
|
-
getGlitchFreeMetrics: () => {
|
|
7007
|
-
roomJoinedLate: number;
|
|
7008
|
-
pendingClientCanceled: number;
|
|
7009
|
-
evaluationFailed: number;
|
|
7010
|
-
roomJoined: number;
|
|
7011
|
-
} | undefined;
|
|
7012
|
-
} | null;
|
|
7013
7184
|
};
|
|
7014
7185
|
socketReconnecting: (state: {
|
|
7015
7186
|
deviceIdentified: boolean;
|
|
@@ -7033,6 +7204,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7033
7204
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
7034
7205
|
disconnectAll: () => void;
|
|
7035
7206
|
rtcStatsDisconnect: () => void;
|
|
7207
|
+
rtcStatsReconnect: () => void;
|
|
7036
7208
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
7037
7209
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
7038
7210
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -7055,6 +7227,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7055
7227
|
evaluationFailed: number;
|
|
7056
7228
|
roomJoined: number;
|
|
7057
7229
|
};
|
|
7230
|
+
reconnectThresholdInMs: number;
|
|
7058
7231
|
_onRoomJoined: (payload: any) => Promise<void>;
|
|
7059
7232
|
_onClientLeft: (payload: any) => void;
|
|
7060
7233
|
_onPendingClientLeft: (payload: any) => void;
|
|
@@ -7094,6 +7267,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7094
7267
|
} | null | undefined;
|
|
7095
7268
|
noopKeepaliveInterval: any;
|
|
7096
7269
|
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
7270
|
+
disconnectTimestamp: number | undefined;
|
|
7097
7271
|
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
7098
7272
|
connect: () => void;
|
|
7099
7273
|
disconnect: () => void;
|
|
@@ -7114,6 +7288,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7114
7288
|
evaluationFailed: number;
|
|
7115
7289
|
roomJoined: number;
|
|
7116
7290
|
} | undefined;
|
|
7291
|
+
getReconnectThreshold: () => number | undefined;
|
|
7117
7292
|
} | null;
|
|
7118
7293
|
}) => {
|
|
7119
7294
|
status: "reconnecting";
|
|
@@ -7137,6 +7312,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7137
7312
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
7138
7313
|
disconnectAll: () => void;
|
|
7139
7314
|
rtcStatsDisconnect: () => void;
|
|
7315
|
+
rtcStatsReconnect: () => void;
|
|
7140
7316
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
7141
7317
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
7142
7318
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -7159,6 +7335,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7159
7335
|
evaluationFailed: number;
|
|
7160
7336
|
roomJoined: number;
|
|
7161
7337
|
};
|
|
7338
|
+
reconnectThresholdInMs: number;
|
|
7162
7339
|
_onRoomJoined: (payload: any) => Promise<void>;
|
|
7163
7340
|
_onClientLeft: (payload: any) => void;
|
|
7164
7341
|
_onPendingClientLeft: (payload: any) => void;
|
|
@@ -7198,6 +7375,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7198
7375
|
} | null | undefined;
|
|
7199
7376
|
noopKeepaliveInterval: any;
|
|
7200
7377
|
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
7378
|
+
disconnectTimestamp: number | undefined;
|
|
7201
7379
|
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
7202
7380
|
connect: () => void;
|
|
7203
7381
|
disconnect: () => void;
|
|
@@ -7218,6 +7396,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7218
7396
|
evaluationFailed: number;
|
|
7219
7397
|
roomJoined: number;
|
|
7220
7398
|
} | undefined;
|
|
7399
|
+
getReconnectThreshold: () => number | undefined;
|
|
7221
7400
|
} | null;
|
|
7222
7401
|
};
|
|
7223
7402
|
deviceIdentifying: (state: {
|
|
@@ -7242,6 +7421,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7242
7421
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
7243
7422
|
disconnectAll: () => void;
|
|
7244
7423
|
rtcStatsDisconnect: () => void;
|
|
7424
|
+
rtcStatsReconnect: () => void;
|
|
7245
7425
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
7246
7426
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
7247
7427
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -7264,6 +7444,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7264
7444
|
evaluationFailed: number;
|
|
7265
7445
|
roomJoined: number;
|
|
7266
7446
|
};
|
|
7447
|
+
reconnectThresholdInMs: number;
|
|
7267
7448
|
_onRoomJoined: (payload: any) => Promise<void>;
|
|
7268
7449
|
_onClientLeft: (payload: any) => void;
|
|
7269
7450
|
_onPendingClientLeft: (payload: any) => void;
|
|
@@ -7303,6 +7484,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7303
7484
|
} | null | undefined;
|
|
7304
7485
|
noopKeepaliveInterval: any;
|
|
7305
7486
|
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
7487
|
+
disconnectTimestamp: number | undefined;
|
|
7306
7488
|
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
7307
7489
|
connect: () => void;
|
|
7308
7490
|
disconnect: () => void;
|
|
@@ -7323,6 +7505,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7323
7505
|
evaluationFailed: number;
|
|
7324
7506
|
roomJoined: number;
|
|
7325
7507
|
} | undefined;
|
|
7508
|
+
getReconnectThreshold: () => number | undefined;
|
|
7326
7509
|
} | null;
|
|
7327
7510
|
}) => {
|
|
7328
7511
|
isIdentifyingDevice: true;
|
|
@@ -7346,6 +7529,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7346
7529
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
7347
7530
|
disconnectAll: () => void;
|
|
7348
7531
|
rtcStatsDisconnect: () => void;
|
|
7532
|
+
rtcStatsReconnect: () => void;
|
|
7349
7533
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
7350
7534
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
7351
7535
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -7368,6 +7552,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7368
7552
|
evaluationFailed: number;
|
|
7369
7553
|
roomJoined: number;
|
|
7370
7554
|
};
|
|
7555
|
+
reconnectThresholdInMs: number;
|
|
7371
7556
|
_onRoomJoined: (payload: any) => Promise<void>;
|
|
7372
7557
|
_onClientLeft: (payload: any) => void;
|
|
7373
7558
|
_onPendingClientLeft: (payload: any) => void;
|
|
@@ -7407,6 +7592,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7407
7592
|
} | null | undefined;
|
|
7408
7593
|
noopKeepaliveInterval: any;
|
|
7409
7594
|
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
7595
|
+
disconnectTimestamp: number | undefined;
|
|
7410
7596
|
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
7411
7597
|
connect: () => void;
|
|
7412
7598
|
disconnect: () => void;
|
|
@@ -7427,6 +7613,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7427
7613
|
evaluationFailed: number;
|
|
7428
7614
|
roomJoined: number;
|
|
7429
7615
|
} | undefined;
|
|
7616
|
+
getReconnectThreshold: () => number | undefined;
|
|
7430
7617
|
} | null;
|
|
7431
7618
|
};
|
|
7432
7619
|
deviceIdentified: (state: {
|
|
@@ -7451,6 +7638,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7451
7638
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
7452
7639
|
disconnectAll: () => void;
|
|
7453
7640
|
rtcStatsDisconnect: () => void;
|
|
7641
|
+
rtcStatsReconnect: () => void;
|
|
7454
7642
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
7455
7643
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
7456
7644
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -7473,6 +7661,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7473
7661
|
evaluationFailed: number;
|
|
7474
7662
|
roomJoined: number;
|
|
7475
7663
|
};
|
|
7664
|
+
reconnectThresholdInMs: number;
|
|
7476
7665
|
_onRoomJoined: (payload: any) => Promise<void>;
|
|
7477
7666
|
_onClientLeft: (payload: any) => void;
|
|
7478
7667
|
_onPendingClientLeft: (payload: any) => void;
|
|
@@ -7512,6 +7701,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7512
7701
|
} | null | undefined;
|
|
7513
7702
|
noopKeepaliveInterval: any;
|
|
7514
7703
|
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
7704
|
+
disconnectTimestamp: number | undefined;
|
|
7515
7705
|
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
7516
7706
|
connect: () => void;
|
|
7517
7707
|
disconnect: () => void;
|
|
@@ -7532,6 +7722,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7532
7722
|
evaluationFailed: number;
|
|
7533
7723
|
roomJoined: number;
|
|
7534
7724
|
} | undefined;
|
|
7725
|
+
getReconnectThreshold: () => number | undefined;
|
|
7535
7726
|
} | null;
|
|
7536
7727
|
}) => {
|
|
7537
7728
|
deviceIdentified: true;
|
|
@@ -7555,6 +7746,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7555
7746
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
7556
7747
|
disconnectAll: () => void;
|
|
7557
7748
|
rtcStatsDisconnect: () => void;
|
|
7749
|
+
rtcStatsReconnect: () => void;
|
|
7558
7750
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
7559
7751
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
7560
7752
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -7577,6 +7769,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7577
7769
|
evaluationFailed: number;
|
|
7578
7770
|
roomJoined: number;
|
|
7579
7771
|
};
|
|
7772
|
+
reconnectThresholdInMs: number;
|
|
7580
7773
|
_onRoomJoined: (payload: any) => Promise<void>;
|
|
7581
7774
|
_onClientLeft: (payload: any) => void;
|
|
7582
7775
|
_onPendingClientLeft: (payload: any) => void;
|
|
@@ -7616,6 +7809,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7616
7809
|
} | null | undefined;
|
|
7617
7810
|
noopKeepaliveInterval: any;
|
|
7618
7811
|
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
7812
|
+
disconnectTimestamp: number | undefined;
|
|
7619
7813
|
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
7620
7814
|
connect: () => void;
|
|
7621
7815
|
disconnect: () => void;
|
|
@@ -7636,6 +7830,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7636
7830
|
evaluationFailed: number;
|
|
7637
7831
|
roomJoined: number;
|
|
7638
7832
|
} | undefined;
|
|
7833
|
+
getReconnectThreshold: () => number | undefined;
|
|
7639
7834
|
} | null;
|
|
7640
7835
|
};
|
|
7641
7836
|
}, "signalConnection", "signalConnection", _reduxjs_toolkit.SliceSelectors<SignalConnectionState>>;
|
|
@@ -7660,6 +7855,7 @@ declare const selectShouldConnectSignal: ((state: {
|
|
|
7660
7855
|
authorization: AuthorizationState;
|
|
7661
7856
|
chat: ChatState;
|
|
7662
7857
|
cloudRecording: CloudRecordingState;
|
|
7858
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7663
7859
|
deviceCredentials: DeviceCredentialsState;
|
|
7664
7860
|
localMedia: LocalMediaState;
|
|
7665
7861
|
localParticipant: LocalParticipantState;
|
|
@@ -7692,6 +7888,7 @@ declare const selectShouldConnectSignal: ((state: {
|
|
|
7692
7888
|
authorization: AuthorizationState;
|
|
7693
7889
|
chat: ChatState;
|
|
7694
7890
|
cloudRecording: CloudRecordingState;
|
|
7891
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7695
7892
|
deviceCredentials: DeviceCredentialsState;
|
|
7696
7893
|
localMedia: LocalMediaState;
|
|
7697
7894
|
localParticipant: LocalParticipantState;
|
|
@@ -7721,6 +7918,7 @@ declare const selectShouldIdentifyDevice: ((state: {
|
|
|
7721
7918
|
authorization: AuthorizationState;
|
|
7722
7919
|
chat: ChatState;
|
|
7723
7920
|
cloudRecording: CloudRecordingState;
|
|
7921
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7724
7922
|
deviceCredentials: DeviceCredentialsState;
|
|
7725
7923
|
localMedia: LocalMediaState;
|
|
7726
7924
|
localParticipant: LocalParticipantState;
|
|
@@ -7753,6 +7951,7 @@ declare const selectShouldIdentifyDevice: ((state: {
|
|
|
7753
7951
|
authorization: AuthorizationState;
|
|
7754
7952
|
chat: ChatState;
|
|
7755
7953
|
cloudRecording: CloudRecordingState;
|
|
7954
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7756
7955
|
deviceCredentials: DeviceCredentialsState;
|
|
7757
7956
|
localMedia: LocalMediaState;
|
|
7758
7957
|
localParticipant: LocalParticipantState;
|
|
@@ -7846,6 +8045,7 @@ declare const selectIsLocalParticipantSpotlighted: ((state: {
|
|
|
7846
8045
|
authorization: AuthorizationState;
|
|
7847
8046
|
chat: ChatState;
|
|
7848
8047
|
cloudRecording: CloudRecordingState;
|
|
8048
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7849
8049
|
deviceCredentials: DeviceCredentialsState;
|
|
7850
8050
|
localMedia: LocalMediaState;
|
|
7851
8051
|
localParticipant: LocalParticipantState;
|
|
@@ -7884,6 +8084,7 @@ declare const selectIsLocalParticipantSpotlighted: ((state: {
|
|
|
7884
8084
|
authorization: AuthorizationState;
|
|
7885
8085
|
chat: ChatState;
|
|
7886
8086
|
cloudRecording: CloudRecordingState;
|
|
8087
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7887
8088
|
deviceCredentials: DeviceCredentialsState;
|
|
7888
8089
|
localMedia: LocalMediaState;
|
|
7889
8090
|
localParticipant: LocalParticipantState;
|
|
@@ -7916,6 +8117,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
7916
8117
|
authorization: AuthorizationState;
|
|
7917
8118
|
chat: ChatState;
|
|
7918
8119
|
cloudRecording: CloudRecordingState;
|
|
8120
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7919
8121
|
deviceCredentials: DeviceCredentialsState;
|
|
7920
8122
|
localMedia: LocalMediaState;
|
|
7921
8123
|
localParticipant: LocalParticipantState;
|
|
@@ -7954,6 +8156,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
7954
8156
|
authorization: AuthorizationState;
|
|
7955
8157
|
chat: ChatState;
|
|
7956
8158
|
cloudRecording: CloudRecordingState;
|
|
8159
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7957
8160
|
deviceCredentials: DeviceCredentialsState;
|
|
7958
8161
|
localMedia: LocalMediaState;
|
|
7959
8162
|
localParticipant: LocalParticipantState;
|
|
@@ -7986,6 +8189,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
7986
8189
|
authorization: AuthorizationState;
|
|
7987
8190
|
chat: ChatState;
|
|
7988
8191
|
cloudRecording: CloudRecordingState;
|
|
8192
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7989
8193
|
deviceCredentials: DeviceCredentialsState;
|
|
7990
8194
|
localMedia: LocalMediaState;
|
|
7991
8195
|
localParticipant: LocalParticipantState;
|
|
@@ -8018,6 +8222,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8018
8222
|
authorization: AuthorizationState;
|
|
8019
8223
|
chat: ChatState;
|
|
8020
8224
|
cloudRecording: CloudRecordingState;
|
|
8225
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8021
8226
|
deviceCredentials: DeviceCredentialsState;
|
|
8022
8227
|
localMedia: LocalMediaState;
|
|
8023
8228
|
localParticipant: LocalParticipantState;
|
|
@@ -8038,6 +8243,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8038
8243
|
authorization: AuthorizationState;
|
|
8039
8244
|
chat: ChatState;
|
|
8040
8245
|
cloudRecording: CloudRecordingState;
|
|
8246
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8041
8247
|
deviceCredentials: DeviceCredentialsState;
|
|
8042
8248
|
localMedia: LocalMediaState;
|
|
8043
8249
|
localParticipant: LocalParticipantState;
|
|
@@ -8066,6 +8272,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8066
8272
|
authorization: AuthorizationState;
|
|
8067
8273
|
chat: ChatState;
|
|
8068
8274
|
cloudRecording: CloudRecordingState;
|
|
8275
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8069
8276
|
deviceCredentials: DeviceCredentialsState;
|
|
8070
8277
|
localMedia: LocalMediaState;
|
|
8071
8278
|
localParticipant: LocalParticipantState;
|
|
@@ -8098,6 +8305,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8098
8305
|
authorization: AuthorizationState;
|
|
8099
8306
|
chat: ChatState;
|
|
8100
8307
|
cloudRecording: CloudRecordingState;
|
|
8308
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8101
8309
|
deviceCredentials: DeviceCredentialsState;
|
|
8102
8310
|
localMedia: LocalMediaState;
|
|
8103
8311
|
localParticipant: LocalParticipantState;
|
|
@@ -8118,6 +8326,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8118
8326
|
authorization: AuthorizationState;
|
|
8119
8327
|
chat: ChatState;
|
|
8120
8328
|
cloudRecording: CloudRecordingState;
|
|
8329
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8121
8330
|
deviceCredentials: DeviceCredentialsState;
|
|
8122
8331
|
localMedia: LocalMediaState;
|
|
8123
8332
|
localParticipant: LocalParticipantState;
|
|
@@ -8138,6 +8347,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8138
8347
|
authorization: AuthorizationState;
|
|
8139
8348
|
chat: ChatState;
|
|
8140
8349
|
cloudRecording: CloudRecordingState;
|
|
8350
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8141
8351
|
deviceCredentials: DeviceCredentialsState;
|
|
8142
8352
|
localMedia: LocalMediaState;
|
|
8143
8353
|
localParticipant: LocalParticipantState;
|
|
@@ -8170,6 +8380,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8170
8380
|
authorization: AuthorizationState;
|
|
8171
8381
|
chat: ChatState;
|
|
8172
8382
|
cloudRecording: CloudRecordingState;
|
|
8383
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8173
8384
|
deviceCredentials: DeviceCredentialsState;
|
|
8174
8385
|
localMedia: LocalMediaState;
|
|
8175
8386
|
localParticipant: LocalParticipantState;
|
|
@@ -8234,6 +8445,7 @@ declare const appReducer: redux.Reducer<{
|
|
|
8234
8445
|
authorization: AuthorizationState;
|
|
8235
8446
|
chat: ChatState;
|
|
8236
8447
|
cloudRecording: CloudRecordingState;
|
|
8448
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8237
8449
|
deviceCredentials: DeviceCredentialsState;
|
|
8238
8450
|
localMedia: LocalMediaState;
|
|
8239
8451
|
localParticipant: LocalParticipantState;
|
|
@@ -8254,6 +8466,7 @@ declare const appReducer: redux.Reducer<{
|
|
|
8254
8466
|
authorization: AuthorizationState | undefined;
|
|
8255
8467
|
chat: ChatState | undefined;
|
|
8256
8468
|
cloudRecording: CloudRecordingState | undefined;
|
|
8469
|
+
connectionMonitor: ConnectionMonitorState | undefined;
|
|
8257
8470
|
deviceCredentials: DeviceCredentialsState | undefined;
|
|
8258
8471
|
localMedia: LocalMediaState | undefined;
|
|
8259
8472
|
localParticipant: LocalParticipantState | undefined;
|
|
@@ -8277,6 +8490,7 @@ declare const createStore: ({ preloadedState, injectServices, }: {
|
|
|
8277
8490
|
authorization: AuthorizationState;
|
|
8278
8491
|
chat: ChatState;
|
|
8279
8492
|
cloudRecording: CloudRecordingState;
|
|
8493
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8280
8494
|
deviceCredentials: DeviceCredentialsState;
|
|
8281
8495
|
localMedia: LocalMediaState;
|
|
8282
8496
|
localParticipant: LocalParticipantState;
|
|
@@ -8299,6 +8513,7 @@ declare const createStore: ({ preloadedState, injectServices, }: {
|
|
|
8299
8513
|
authorization: AuthorizationState;
|
|
8300
8514
|
chat: ChatState;
|
|
8301
8515
|
cloudRecording: CloudRecordingState;
|
|
8516
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8302
8517
|
deviceCredentials: DeviceCredentialsState;
|
|
8303
8518
|
localMedia: LocalMediaState;
|
|
8304
8519
|
localParticipant: LocalParticipantState;
|
|
@@ -8320,6 +8535,7 @@ declare const createStore: ({ preloadedState, injectServices, }: {
|
|
|
8320
8535
|
authorization: AuthorizationState;
|
|
8321
8536
|
chat: ChatState;
|
|
8322
8537
|
cloudRecording: CloudRecordingState;
|
|
8538
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8323
8539
|
deviceCredentials: DeviceCredentialsState;
|
|
8324
8540
|
localMedia: LocalMediaState;
|
|
8325
8541
|
localParticipant: LocalParticipantState;
|
|
@@ -8372,6 +8588,7 @@ declare const addAppListener: TypedAddListener<{
|
|
|
8372
8588
|
authorization: AuthorizationState;
|
|
8373
8589
|
chat: ChatState;
|
|
8374
8590
|
cloudRecording: CloudRecordingState;
|
|
8591
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8375
8592
|
deviceCredentials: DeviceCredentialsState;
|
|
8376
8593
|
localMedia: LocalMediaState;
|
|
8377
8594
|
localParticipant: LocalParticipantState;
|
|
@@ -8392,6 +8609,7 @@ declare const addAppListener: TypedAddListener<{
|
|
|
8392
8609
|
authorization: AuthorizationState;
|
|
8393
8610
|
chat: ChatState;
|
|
8394
8611
|
cloudRecording: CloudRecordingState;
|
|
8612
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8395
8613
|
deviceCredentials: DeviceCredentialsState;
|
|
8396
8614
|
localMedia: LocalMediaState;
|
|
8397
8615
|
localParticipant: LocalParticipantState;
|
|
@@ -8423,6 +8641,7 @@ declare const createReactor: <Selectors extends Selector<{
|
|
|
8423
8641
|
authorization: AuthorizationState;
|
|
8424
8642
|
chat: ChatState;
|
|
8425
8643
|
cloudRecording: CloudRecordingState;
|
|
8644
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8426
8645
|
deviceCredentials: DeviceCredentialsState;
|
|
8427
8646
|
localMedia: LocalMediaState;
|
|
8428
8647
|
localParticipant: LocalParticipantState;
|
|
@@ -8460,4 +8679,4 @@ declare function parseRoomUrlAndSubdomain(roomAttribute?: string, subdomainAttri
|
|
|
8460
8679
|
|
|
8461
8680
|
declare function parseUnverifiedRoomKeyData(roomKey: string): any;
|
|
8462
8681
|
|
|
8463
|
-
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 };
|
|
8682
|
+
export { ApiClient, type AppConfig, type AppDispatch, type AppReducer, type AppStartListening, type AppState, type AppThunk, type AuthorizationState, type ChatMessage, type ChatMessageEvent, type ChatMessageEventProps, type ChatState, type ClientView, type CloudRecordingState, type ConnectionMonitorStart, type ConnectionMonitorState, type ConnectionStatus, Credentials, CredentialsService, type DeviceCredentialsState, type FullOrganizationPermissions, type LocalMediaOptions, type LocalMediaState, LocalParticipant, type LocalParticipantState, type LocalScreenshareState, type Notification, type NotificationEvent, type NotificationEventMap, type NotificationEvents, type NotificationsEventEmitter, type NotificationsState, OrganizationApiClient, type OrganizationLimits, type OrganizationOnboardingSurvey, type OrganizationPermissionAction, type OrganizationPermissions, type OrganizationPreferences, OrganizationService, OrganizationServiceCache, type OrganizationState, type RemoteParticipant, type RemoteParticipantData, type RemoteParticipantState, type RequestAudioEvent, type RequestAudioEventProps, type RoomConnectionState, RoomService, type RoomState, type RootState, type RtcConnectionState, type Screenshare, type SignalClientEvent, type SignalClientEventProps, type SignalConnectionState, type SignalStatusEvent, type SignalStatusEventProps, type SpotlightsState, type StickyReaction, type StickyReactionEvent, type StickyReactionEventProps, type Store, type StreamState, type StreamingState, type ThunkConfig, type WaitingParticipant, type WaitingParticipantsState, addAppListener, addSpotlight, appSlice, authorizationSlice, chatSlice, cloudRecordingSlice, connectionMonitorSlice, connectionMonitorStarted, connectionMonitorStopped, createAppAsyncThunk, createAppAuthorizedThunk, createAppThunk, createReactor, createServices, createStore, createWebRtcEmitter, debounce, deviceBusy, deviceCredentialsSlice, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLockRoom, doOrganizationFetch, doRejectWaitingParticipant, doRemoveSpotlight, doRequestAudioEnable, doRtcAnalyticsCustomEventsInitialize, doRtcManagerCreated, doRtcManagerInitialize, doRtcReportStreamResolution, doSendChatMessage, doSendClientMetadata, doSetDevice, doSetDisplayName, doSetLocalStickyReaction, doSetNotification, doSignalConnect, doSignalDisconnect, doSignalIdentifyDevice, doSpotlightParticipant, doStartCloudRecording, doStartConnectionMonitor, doStartLocalMedia, doStartScreenshare, doStopCloudRecording, doStopConnectionMonitor, doStopLocalMedia, doStopScreenshare, doSwitchLocalStream, doToggleCamera, doToggleLowDataMode, doUpdateDeviceList, getAudioTrack, getFakeMediaStream, getVideoTrack, hasValue, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, initialState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localScreenshareSlice, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, parseRoomUrlAndSubdomain, parseUnverifiedRoomKeyData, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, removeSpotlight, resolutionReported, roomConnectionSlice, roomSlice, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, type rtcAnalyticsState, rtcConnectionSlice, rtcDisconnected, rtcDispatcherCreated, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAppDisplayName, selectAppExternalId, selectAppInitialConfig, selectAppIsActive, selectAppIsDialIn, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAuthorizationRoleName, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingRaw, selectCloudRecordingStartedAt, selectCloudRecordingStatus, selectConnectionMonitorIsRunning, selectCurrentCameraDeviceId, selectCurrentMicrophoneDeviceId, selectCurrentSpeakerDeviceId, selectDeviceCredentialsRaw, selectDeviceId, selectHasFetchedDeviceCredentials, selectIsAcceptingStreams, selectIsAuthorizedToAskToSpeak, selectIsAuthorizedToEndMeeting, selectIsAuthorizedToKickClient, selectIsAuthorizedToLockRoom, selectIsAuthorizedToRequestAudioEnable, selectIsAuthorizedToSpotlight, selectIsCameraEnabled, selectIsCloudRecording, selectIsLocalMediaStarting, selectIsLocalParticipantSpotlighted, selectIsLowDataModeEnabled, selectIsMicrophoneEnabled, selectIsSettingCameraDevice, selectIsSettingMicrophoneDevice, selectIsToggleCamera, selectLocalMediaConstraintsOptions, selectLocalMediaDevices, selectLocalMediaIsSwitchingStream, selectLocalMediaOptions, selectLocalMediaOwnsStream, selectLocalMediaRaw, selectLocalMediaShouldStartWithOptions, selectLocalMediaShouldStop, selectLocalMediaStartError, selectLocalMediaStatus, selectLocalMediaStream, selectLocalParticipantClientClaim, selectLocalParticipantDisplayName, selectLocalParticipantIsScreenSharing, selectLocalParticipantRaw, selectLocalParticipantStickyReaction, selectLocalParticipantView, selectLocalScreenshareRaw, selectLocalScreenshareStatus, selectLocalScreenshareStream, selectMicrophoneDeviceError, selectMicrophoneDevices, selectNotificationsEmitter, selectNotificationsEvents, selectNotificationsRaw, selectNumClients, selectNumParticipants, selectOrganizationId, selectOrganizationRaw, selectRemoteClientViews, selectRemoteClients, selectRemoteParticipants, selectRemoteParticipantsRaw, selectRoomConnectionError, selectRoomConnectionRaw, selectRoomConnectionSession, selectRoomConnectionSessionId, selectRoomConnectionStatus, selectRoomIsLocked, selectRoomKey, selectRtcConnectionRaw, selectRtcDispatcherCreated, selectRtcIsCreatingDispatcher, selectRtcManager, selectRtcManagerInitialized, selectRtcStatus, selectScreenshares, selectSelfId, selectShouldConnectRoom, selectShouldConnectRtc, selectShouldConnectSignal, selectShouldDisconnectRtc, selectShouldFetchDeviceCredentials, selectShouldFetchOrganization, selectShouldIdentifyDevice, selectShouldInitializeRtc, selectShouldStartConnectionMonitor, selectShouldStopConnectionMonitor, selectSignalConnectionDeviceIdentified, selectSignalConnectionRaw, selectSignalConnectionSocket, selectSignalIsIdentifyingDevice, selectSignalStatus, selectSpeakerDevices, selectSpotlightedClientViews, selectSpotlights, selectSpotlightsRaw, selectStopCallbackFunction, selectStreamingRaw, selectStreamsToAccept, selectWaitingParticipants, selectWaitingParticipantsRaw, setCurrentCameraDeviceId, setCurrentMicrophoneDeviceId, setCurrentSpeakerDeviceId, setLocalMediaOptions, setLocalMediaStream, setRoomKey, signalConnectionSlice, signalEvents, socketConnected, socketConnecting, socketDisconnected, socketReconnecting, spotlightsSlice, startAppListening, stopScreenshare, streamIdForClient, streamStatusUpdated, streamingSlice, toggleCameraEnabled, toggleLowDataModeEnabled, toggleMicrophoneEnabled, updateReportedValues, waitingParticipantsSlice };
|