@whereby.com/core 0.25.1 → 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 +293 -107
- package/dist/index.d.mts +293 -107
- package/dist/index.d.ts +293 -107
- package/dist/index.mjs +749 -643
- package/package.json +2 -2
package/dist/index.d.mts
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: {
|
|
6448
|
+
app: AppState;
|
|
6449
|
+
authorization: AuthorizationState;
|
|
6450
|
+
chat: ChatState;
|
|
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: {
|
|
6222
6469
|
app: AppState;
|
|
6223
6470
|
authorization: AuthorizationState;
|
|
6224
6471
|
chat: ChatState;
|
|
6225
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;
|
|
@@ -6612,6 +6867,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6612
6867
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
6613
6868
|
disconnectAll: () => void;
|
|
6614
6869
|
rtcStatsDisconnect: () => void;
|
|
6870
|
+
rtcStatsReconnect: () => void;
|
|
6615
6871
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
6616
6872
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
6617
6873
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -6720,6 +6976,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6720
6976
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
6721
6977
|
disconnectAll: () => void;
|
|
6722
6978
|
rtcStatsDisconnect: () => void;
|
|
6979
|
+
rtcStatsReconnect: () => void;
|
|
6723
6980
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
6724
6981
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
6725
6982
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -6833,6 +7090,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6833
7090
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
6834
7091
|
disconnectAll: () => void;
|
|
6835
7092
|
rtcStatsDisconnect: () => void;
|
|
7093
|
+
rtcStatsReconnect: () => void;
|
|
6836
7094
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
6837
7095
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
6838
7096
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -6919,112 +7177,10 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
6919
7177
|
getReconnectThreshold: () => number | undefined;
|
|
6920
7178
|
} | null;
|
|
6921
7179
|
}) => {
|
|
7180
|
+
socket: null;
|
|
6922
7181
|
deviceIdentified: false;
|
|
6923
7182
|
status: "disconnected";
|
|
6924
7183
|
isIdentifyingDevice: boolean;
|
|
6925
|
-
socket: {
|
|
6926
|
-
_socket: any;
|
|
6927
|
-
_reconnectManager?: {
|
|
6928
|
-
_socket: any;
|
|
6929
|
-
_clients: any;
|
|
6930
|
-
_signalDisconnectTime?: number | undefined;
|
|
6931
|
-
rtcManager?: {
|
|
6932
|
-
acceptNewStream: ({ activeBreakout, clientId, shouldAddLocalVideo, streamId, enforceTurnProtocol, }: {
|
|
6933
|
-
activeBreakout: boolean;
|
|
6934
|
-
clientId: string;
|
|
6935
|
-
shouldAddLocalVideo: boolean;
|
|
6936
|
-
streamId: string;
|
|
6937
|
-
enforceTurnProtocol?: _whereby_com_media.TurnTransportProtocol | undefined;
|
|
6938
|
-
}) => void;
|
|
6939
|
-
addNewStream: (streamId: string, stream: MediaStream, isAudioEnabled: boolean, isVideoEnabled: boolean) => void;
|
|
6940
|
-
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
6941
|
-
disconnectAll: () => void;
|
|
6942
|
-
rtcStatsDisconnect: () => void;
|
|
6943
|
-
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
6944
|
-
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
6945
|
-
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
6946
|
-
updateStreamResolution: (streamId: string, ignored: null, resolution: {
|
|
6947
|
-
width: number;
|
|
6948
|
-
height: number;
|
|
6949
|
-
}) => void;
|
|
6950
|
-
sendStatsCustomEvent: (eventName: string, data: unknown) => void;
|
|
6951
|
-
isInitializedWith: ({ selfId, roomName, isSfu }: {
|
|
6952
|
-
selfId: string;
|
|
6953
|
-
roomName: string;
|
|
6954
|
-
isSfu: boolean;
|
|
6955
|
-
}) => boolean;
|
|
6956
|
-
setEventClaim?: ((eventClaim: string) => void) | undefined;
|
|
6957
|
-
hasClient: (clientId: string) => boolean;
|
|
6958
|
-
} | undefined;
|
|
6959
|
-
metrics: {
|
|
6960
|
-
roomJoinedLate: number;
|
|
6961
|
-
pendingClientCanceled: number;
|
|
6962
|
-
evaluationFailed: number;
|
|
6963
|
-
roomJoined: number;
|
|
6964
|
-
};
|
|
6965
|
-
reconnectThresholdInMs: number;
|
|
6966
|
-
_onRoomJoined: (payload: any) => Promise<void>;
|
|
6967
|
-
_onClientLeft: (payload: any) => void;
|
|
6968
|
-
_onPendingClientLeft: (payload: any) => void;
|
|
6969
|
-
_onNewClient: (payload: any) => void;
|
|
6970
|
-
_abortIfNotActive: (payload: any) => Promise<void>;
|
|
6971
|
-
_checkIsActive: (clientId: string) => Promise<boolean>;
|
|
6972
|
-
_isClientMediaActive: (stats: any, clientId: string) => boolean;
|
|
6973
|
-
_onAudioEnabled: (payload: any) => void;
|
|
6974
|
-
_onVideoEnabled: (payload: any) => void;
|
|
6975
|
-
_onScreenshareChanged: (payload: any, action: boolean) => void;
|
|
6976
|
-
_hasClientStateChanged: ({ clientId, webcam, mic, screenShare, }: {
|
|
6977
|
-
clientId: string;
|
|
6978
|
-
webcam: boolean;
|
|
6979
|
-
mic: boolean;
|
|
6980
|
-
screenShare: boolean;
|
|
6981
|
-
}) => boolean;
|
|
6982
|
-
_addClientToState: (newClient: any) => void;
|
|
6983
|
-
_wasClientSendingMedia: (clientId: string) => any;
|
|
6984
|
-
_getPendingClientsByDeviceId: (deviceId: string) => unknown[];
|
|
6985
|
-
_resetClientState: (payload: any) => void;
|
|
6986
|
-
[EventEmitter.captureRejectionSymbol]?: (<K>(error: Error, event: string | symbol, ...args: any[]) => void) | undefined;
|
|
6987
|
-
addListener: <K_1>(eventName: string | symbol, listener: (...args: any[]) => void) => _whereby_com_media.ReconnectManager;
|
|
6988
|
-
on: <K_2>(eventName: string | symbol, listener: (...args: any[]) => void) => _whereby_com_media.ReconnectManager;
|
|
6989
|
-
once: <K_3>(eventName: string | symbol, listener: (...args: any[]) => void) => _whereby_com_media.ReconnectManager;
|
|
6990
|
-
removeListener: <K_4>(eventName: string | symbol, listener: (...args: any[]) => void) => _whereby_com_media.ReconnectManager;
|
|
6991
|
-
off: <K_5>(eventName: string | symbol, listener: (...args: any[]) => void) => _whereby_com_media.ReconnectManager;
|
|
6992
|
-
removeAllListeners: (eventName?: string | symbol | undefined) => _whereby_com_media.ReconnectManager;
|
|
6993
|
-
setMaxListeners: (n: number) => _whereby_com_media.ReconnectManager;
|
|
6994
|
-
getMaxListeners: () => number;
|
|
6995
|
-
listeners: <K_6>(eventName: string | symbol) => Function[];
|
|
6996
|
-
rawListeners: <K_7>(eventName: string | symbol) => Function[];
|
|
6997
|
-
emit: <K_8>(eventName: string | symbol, ...args: any[]) => boolean;
|
|
6998
|
-
listenerCount: <K_9>(eventName: string | symbol, listener?: Function | undefined) => number;
|
|
6999
|
-
prependListener: <K_10>(eventName: string | symbol, listener: (...args: any[]) => void) => _whereby_com_media.ReconnectManager;
|
|
7000
|
-
prependOnceListener: <K_11>(eventName: string | symbol, listener: (...args: any[]) => void) => _whereby_com_media.ReconnectManager;
|
|
7001
|
-
eventNames: () => (string | symbol)[];
|
|
7002
|
-
} | null | undefined;
|
|
7003
|
-
noopKeepaliveInterval: any;
|
|
7004
|
-
_wasConnectedUsingWebsocket?: boolean | undefined;
|
|
7005
|
-
disconnectTimestamp: number | undefined;
|
|
7006
|
-
setRtcManager: (rtcManager?: _whereby_com_media.RtcManager | undefined) => void;
|
|
7007
|
-
connect: () => void;
|
|
7008
|
-
disconnect: () => void;
|
|
7009
|
-
disconnectOnConnect: () => void;
|
|
7010
|
-
emit: (eventName: string, ...args: any[]) => void;
|
|
7011
|
-
emitIfConnected: (eventName: string, data: any) => void;
|
|
7012
|
-
getTransport: () => any;
|
|
7013
|
-
getManager: () => any;
|
|
7014
|
-
isConnecting: () => any;
|
|
7015
|
-
isConnected: () => any;
|
|
7016
|
-
on: (eventName: string, handler: Function) => () => void;
|
|
7017
|
-
once: (eventName: string, handler: Function) => void;
|
|
7018
|
-
off: (eventName: string, handler: Function) => void;
|
|
7019
|
-
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
7020
|
-
getGlitchFreeMetrics: () => {
|
|
7021
|
-
roomJoinedLate: number;
|
|
7022
|
-
pendingClientCanceled: number;
|
|
7023
|
-
evaluationFailed: number;
|
|
7024
|
-
roomJoined: number;
|
|
7025
|
-
} | undefined;
|
|
7026
|
-
getReconnectThreshold: () => number | undefined;
|
|
7027
|
-
} | null;
|
|
7028
7184
|
};
|
|
7029
7185
|
socketReconnecting: (state: {
|
|
7030
7186
|
deviceIdentified: boolean;
|
|
@@ -7048,6 +7204,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7048
7204
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
7049
7205
|
disconnectAll: () => void;
|
|
7050
7206
|
rtcStatsDisconnect: () => void;
|
|
7207
|
+
rtcStatsReconnect: () => void;
|
|
7051
7208
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
7052
7209
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
7053
7210
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -7155,6 +7312,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7155
7312
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
7156
7313
|
disconnectAll: () => void;
|
|
7157
7314
|
rtcStatsDisconnect: () => void;
|
|
7315
|
+
rtcStatsReconnect: () => void;
|
|
7158
7316
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
7159
7317
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
7160
7318
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -7263,6 +7421,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7263
7421
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
7264
7422
|
disconnectAll: () => void;
|
|
7265
7423
|
rtcStatsDisconnect: () => void;
|
|
7424
|
+
rtcStatsReconnect: () => void;
|
|
7266
7425
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
7267
7426
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
7268
7427
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -7370,6 +7529,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7370
7529
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
7371
7530
|
disconnectAll: () => void;
|
|
7372
7531
|
rtcStatsDisconnect: () => void;
|
|
7532
|
+
rtcStatsReconnect: () => void;
|
|
7373
7533
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
7374
7534
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
7375
7535
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -7478,6 +7638,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7478
7638
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
7479
7639
|
disconnectAll: () => void;
|
|
7480
7640
|
rtcStatsDisconnect: () => void;
|
|
7641
|
+
rtcStatsReconnect: () => void;
|
|
7481
7642
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
7482
7643
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
7483
7644
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -7585,6 +7746,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
7585
7746
|
disconnect: (streamId: string, activeBreakout: boolean | null, eventClaim?: string | undefined) => void;
|
|
7586
7747
|
disconnectAll: () => void;
|
|
7587
7748
|
rtcStatsDisconnect: () => void;
|
|
7749
|
+
rtcStatsReconnect: () => void;
|
|
7588
7750
|
replaceTrack: (oldTrack: _whereby_com_media.CustomMediaStreamTrack, newTrack: _whereby_com_media.CustomMediaStreamTrack) => void;
|
|
7589
7751
|
removeStream: (streamId: string, _stream: MediaStream, requestedByClientId: string | null) => void;
|
|
7590
7752
|
shouldAcceptStreamsFromBothSides?: (() => boolean) | undefined;
|
|
@@ -7693,6 +7855,7 @@ declare const selectShouldConnectSignal: ((state: {
|
|
|
7693
7855
|
authorization: AuthorizationState;
|
|
7694
7856
|
chat: ChatState;
|
|
7695
7857
|
cloudRecording: CloudRecordingState;
|
|
7858
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7696
7859
|
deviceCredentials: DeviceCredentialsState;
|
|
7697
7860
|
localMedia: LocalMediaState;
|
|
7698
7861
|
localParticipant: LocalParticipantState;
|
|
@@ -7725,6 +7888,7 @@ declare const selectShouldConnectSignal: ((state: {
|
|
|
7725
7888
|
authorization: AuthorizationState;
|
|
7726
7889
|
chat: ChatState;
|
|
7727
7890
|
cloudRecording: CloudRecordingState;
|
|
7891
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7728
7892
|
deviceCredentials: DeviceCredentialsState;
|
|
7729
7893
|
localMedia: LocalMediaState;
|
|
7730
7894
|
localParticipant: LocalParticipantState;
|
|
@@ -7754,6 +7918,7 @@ declare const selectShouldIdentifyDevice: ((state: {
|
|
|
7754
7918
|
authorization: AuthorizationState;
|
|
7755
7919
|
chat: ChatState;
|
|
7756
7920
|
cloudRecording: CloudRecordingState;
|
|
7921
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7757
7922
|
deviceCredentials: DeviceCredentialsState;
|
|
7758
7923
|
localMedia: LocalMediaState;
|
|
7759
7924
|
localParticipant: LocalParticipantState;
|
|
@@ -7786,6 +7951,7 @@ declare const selectShouldIdentifyDevice: ((state: {
|
|
|
7786
7951
|
authorization: AuthorizationState;
|
|
7787
7952
|
chat: ChatState;
|
|
7788
7953
|
cloudRecording: CloudRecordingState;
|
|
7954
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7789
7955
|
deviceCredentials: DeviceCredentialsState;
|
|
7790
7956
|
localMedia: LocalMediaState;
|
|
7791
7957
|
localParticipant: LocalParticipantState;
|
|
@@ -7879,6 +8045,7 @@ declare const selectIsLocalParticipantSpotlighted: ((state: {
|
|
|
7879
8045
|
authorization: AuthorizationState;
|
|
7880
8046
|
chat: ChatState;
|
|
7881
8047
|
cloudRecording: CloudRecordingState;
|
|
8048
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7882
8049
|
deviceCredentials: DeviceCredentialsState;
|
|
7883
8050
|
localMedia: LocalMediaState;
|
|
7884
8051
|
localParticipant: LocalParticipantState;
|
|
@@ -7917,6 +8084,7 @@ declare const selectIsLocalParticipantSpotlighted: ((state: {
|
|
|
7917
8084
|
authorization: AuthorizationState;
|
|
7918
8085
|
chat: ChatState;
|
|
7919
8086
|
cloudRecording: CloudRecordingState;
|
|
8087
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7920
8088
|
deviceCredentials: DeviceCredentialsState;
|
|
7921
8089
|
localMedia: LocalMediaState;
|
|
7922
8090
|
localParticipant: LocalParticipantState;
|
|
@@ -7949,6 +8117,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
7949
8117
|
authorization: AuthorizationState;
|
|
7950
8118
|
chat: ChatState;
|
|
7951
8119
|
cloudRecording: CloudRecordingState;
|
|
8120
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7952
8121
|
deviceCredentials: DeviceCredentialsState;
|
|
7953
8122
|
localMedia: LocalMediaState;
|
|
7954
8123
|
localParticipant: LocalParticipantState;
|
|
@@ -7987,6 +8156,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
7987
8156
|
authorization: AuthorizationState;
|
|
7988
8157
|
chat: ChatState;
|
|
7989
8158
|
cloudRecording: CloudRecordingState;
|
|
8159
|
+
connectionMonitor: ConnectionMonitorState;
|
|
7990
8160
|
deviceCredentials: DeviceCredentialsState;
|
|
7991
8161
|
localMedia: LocalMediaState;
|
|
7992
8162
|
localParticipant: LocalParticipantState;
|
|
@@ -8019,6 +8189,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8019
8189
|
authorization: AuthorizationState;
|
|
8020
8190
|
chat: ChatState;
|
|
8021
8191
|
cloudRecording: CloudRecordingState;
|
|
8192
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8022
8193
|
deviceCredentials: DeviceCredentialsState;
|
|
8023
8194
|
localMedia: LocalMediaState;
|
|
8024
8195
|
localParticipant: LocalParticipantState;
|
|
@@ -8051,6 +8222,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8051
8222
|
authorization: AuthorizationState;
|
|
8052
8223
|
chat: ChatState;
|
|
8053
8224
|
cloudRecording: CloudRecordingState;
|
|
8225
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8054
8226
|
deviceCredentials: DeviceCredentialsState;
|
|
8055
8227
|
localMedia: LocalMediaState;
|
|
8056
8228
|
localParticipant: LocalParticipantState;
|
|
@@ -8071,6 +8243,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8071
8243
|
authorization: AuthorizationState;
|
|
8072
8244
|
chat: ChatState;
|
|
8073
8245
|
cloudRecording: CloudRecordingState;
|
|
8246
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8074
8247
|
deviceCredentials: DeviceCredentialsState;
|
|
8075
8248
|
localMedia: LocalMediaState;
|
|
8076
8249
|
localParticipant: LocalParticipantState;
|
|
@@ -8099,6 +8272,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8099
8272
|
authorization: AuthorizationState;
|
|
8100
8273
|
chat: ChatState;
|
|
8101
8274
|
cloudRecording: CloudRecordingState;
|
|
8275
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8102
8276
|
deviceCredentials: DeviceCredentialsState;
|
|
8103
8277
|
localMedia: LocalMediaState;
|
|
8104
8278
|
localParticipant: LocalParticipantState;
|
|
@@ -8131,6 +8305,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8131
8305
|
authorization: AuthorizationState;
|
|
8132
8306
|
chat: ChatState;
|
|
8133
8307
|
cloudRecording: CloudRecordingState;
|
|
8308
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8134
8309
|
deviceCredentials: DeviceCredentialsState;
|
|
8135
8310
|
localMedia: LocalMediaState;
|
|
8136
8311
|
localParticipant: LocalParticipantState;
|
|
@@ -8151,6 +8326,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8151
8326
|
authorization: AuthorizationState;
|
|
8152
8327
|
chat: ChatState;
|
|
8153
8328
|
cloudRecording: CloudRecordingState;
|
|
8329
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8154
8330
|
deviceCredentials: DeviceCredentialsState;
|
|
8155
8331
|
localMedia: LocalMediaState;
|
|
8156
8332
|
localParticipant: LocalParticipantState;
|
|
@@ -8171,6 +8347,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8171
8347
|
authorization: AuthorizationState;
|
|
8172
8348
|
chat: ChatState;
|
|
8173
8349
|
cloudRecording: CloudRecordingState;
|
|
8350
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8174
8351
|
deviceCredentials: DeviceCredentialsState;
|
|
8175
8352
|
localMedia: LocalMediaState;
|
|
8176
8353
|
localParticipant: LocalParticipantState;
|
|
@@ -8203,6 +8380,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
8203
8380
|
authorization: AuthorizationState;
|
|
8204
8381
|
chat: ChatState;
|
|
8205
8382
|
cloudRecording: CloudRecordingState;
|
|
8383
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8206
8384
|
deviceCredentials: DeviceCredentialsState;
|
|
8207
8385
|
localMedia: LocalMediaState;
|
|
8208
8386
|
localParticipant: LocalParticipantState;
|
|
@@ -8267,6 +8445,7 @@ declare const appReducer: redux.Reducer<{
|
|
|
8267
8445
|
authorization: AuthorizationState;
|
|
8268
8446
|
chat: ChatState;
|
|
8269
8447
|
cloudRecording: CloudRecordingState;
|
|
8448
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8270
8449
|
deviceCredentials: DeviceCredentialsState;
|
|
8271
8450
|
localMedia: LocalMediaState;
|
|
8272
8451
|
localParticipant: LocalParticipantState;
|
|
@@ -8287,6 +8466,7 @@ declare const appReducer: redux.Reducer<{
|
|
|
8287
8466
|
authorization: AuthorizationState | undefined;
|
|
8288
8467
|
chat: ChatState | undefined;
|
|
8289
8468
|
cloudRecording: CloudRecordingState | undefined;
|
|
8469
|
+
connectionMonitor: ConnectionMonitorState | undefined;
|
|
8290
8470
|
deviceCredentials: DeviceCredentialsState | undefined;
|
|
8291
8471
|
localMedia: LocalMediaState | undefined;
|
|
8292
8472
|
localParticipant: LocalParticipantState | undefined;
|
|
@@ -8310,6 +8490,7 @@ declare const createStore: ({ preloadedState, injectServices, }: {
|
|
|
8310
8490
|
authorization: AuthorizationState;
|
|
8311
8491
|
chat: ChatState;
|
|
8312
8492
|
cloudRecording: CloudRecordingState;
|
|
8493
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8313
8494
|
deviceCredentials: DeviceCredentialsState;
|
|
8314
8495
|
localMedia: LocalMediaState;
|
|
8315
8496
|
localParticipant: LocalParticipantState;
|
|
@@ -8332,6 +8513,7 @@ declare const createStore: ({ preloadedState, injectServices, }: {
|
|
|
8332
8513
|
authorization: AuthorizationState;
|
|
8333
8514
|
chat: ChatState;
|
|
8334
8515
|
cloudRecording: CloudRecordingState;
|
|
8516
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8335
8517
|
deviceCredentials: DeviceCredentialsState;
|
|
8336
8518
|
localMedia: LocalMediaState;
|
|
8337
8519
|
localParticipant: LocalParticipantState;
|
|
@@ -8353,6 +8535,7 @@ declare const createStore: ({ preloadedState, injectServices, }: {
|
|
|
8353
8535
|
authorization: AuthorizationState;
|
|
8354
8536
|
chat: ChatState;
|
|
8355
8537
|
cloudRecording: CloudRecordingState;
|
|
8538
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8356
8539
|
deviceCredentials: DeviceCredentialsState;
|
|
8357
8540
|
localMedia: LocalMediaState;
|
|
8358
8541
|
localParticipant: LocalParticipantState;
|
|
@@ -8405,6 +8588,7 @@ declare const addAppListener: TypedAddListener<{
|
|
|
8405
8588
|
authorization: AuthorizationState;
|
|
8406
8589
|
chat: ChatState;
|
|
8407
8590
|
cloudRecording: CloudRecordingState;
|
|
8591
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8408
8592
|
deviceCredentials: DeviceCredentialsState;
|
|
8409
8593
|
localMedia: LocalMediaState;
|
|
8410
8594
|
localParticipant: LocalParticipantState;
|
|
@@ -8425,6 +8609,7 @@ declare const addAppListener: TypedAddListener<{
|
|
|
8425
8609
|
authorization: AuthorizationState;
|
|
8426
8610
|
chat: ChatState;
|
|
8427
8611
|
cloudRecording: CloudRecordingState;
|
|
8612
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8428
8613
|
deviceCredentials: DeviceCredentialsState;
|
|
8429
8614
|
localMedia: LocalMediaState;
|
|
8430
8615
|
localParticipant: LocalParticipantState;
|
|
@@ -8456,6 +8641,7 @@ declare const createReactor: <Selectors extends Selector<{
|
|
|
8456
8641
|
authorization: AuthorizationState;
|
|
8457
8642
|
chat: ChatState;
|
|
8458
8643
|
cloudRecording: CloudRecordingState;
|
|
8644
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8459
8645
|
deviceCredentials: DeviceCredentialsState;
|
|
8460
8646
|
localMedia: LocalMediaState;
|
|
8461
8647
|
localParticipant: LocalParticipantState;
|
|
@@ -8493,4 +8679,4 @@ declare function parseRoomUrlAndSubdomain(roomAttribute?: string, subdomainAttri
|
|
|
8493
8679
|
|
|
8494
8680
|
declare function parseUnverifiedRoomKeyData(roomKey: string): any;
|
|
8495
8681
|
|
|
8496
|
-
export { ApiClient, type AppConfig, type AppDispatch, type AppReducer, type AppStartListening, type AppState, type AppThunk, type AuthorizationState, type ChatMessage, type ChatMessageEvent, type ChatMessageEventProps, type ChatState, type ClientView, type CloudRecordingState, type ConnectionStatus, Credentials, CredentialsService, type DeviceCredentialsState, type FullOrganizationPermissions, type LocalMediaOptions, type LocalMediaState, LocalParticipant, type LocalParticipantState, type LocalScreenshareState, type Notification, type NotificationEvent, type NotificationEventMap, type NotificationEvents, type NotificationsEventEmitter, type NotificationsState, OrganizationApiClient, type OrganizationLimits, type OrganizationOnboardingSurvey, type OrganizationPermissionAction, type OrganizationPermissions, type OrganizationPreferences, OrganizationService, OrganizationServiceCache, type OrganizationState, type RemoteParticipant, type RemoteParticipantData, type RemoteParticipantState, type RequestAudioEvent, type RequestAudioEventProps, type RoomConnectionState, RoomService, type RoomState, type RootState, type RtcConnectionState, type Screenshare, type SignalClientEvent, type SignalClientEventProps, type SignalConnectionState, type SignalStatusEvent, type SignalStatusEventProps, type SpotlightsState, type StickyReaction, type StickyReactionEvent, type StickyReactionEventProps, type Store, type StreamState, type StreamingState, type ThunkConfig, type WaitingParticipant, type WaitingParticipantsState, addAppListener, addSpotlight, appSlice, authorizationSlice, chatSlice, cloudRecordingSlice, createAppAsyncThunk, createAppAuthorizedThunk, createAppThunk, createReactor, createServices, createStore, createWebRtcEmitter, debounce, deviceBusy, deviceCredentialsSlice, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLockRoom, doOrganizationFetch, doRejectWaitingParticipant, doRemoveSpotlight, doRequestAudioEnable, doRtcAnalyticsCustomEventsInitialize, doRtcManagerCreated, doRtcManagerInitialize, doRtcReportStreamResolution, doSendChatMessage, doSendClientMetadata, doSetDevice, doSetDisplayName, doSetLocalStickyReaction, doSetNotification, doSignalConnect, doSignalDisconnect, doSignalIdentifyDevice, doSpotlightParticipant, doStartCloudRecording, doStartLocalMedia, doStartScreenshare, doStopCloudRecording, doStopLocalMedia, doStopScreenshare, doSwitchLocalStream, doToggleCamera, doToggleLowDataMode, doUpdateDeviceList, getAudioTrack, getFakeMediaStream, getVideoTrack, hasValue, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, initialState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localScreenshareSlice, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, parseRoomUrlAndSubdomain, parseUnverifiedRoomKeyData, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, removeSpotlight, resolutionReported, roomConnectionSlice, roomSlice, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, type rtcAnalyticsState, rtcConnectionSlice, rtcDisconnected, rtcDispatcherCreated, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAppDisplayName, selectAppExternalId, selectAppInitialConfig, selectAppIsActive, selectAppIsDialIn, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAuthorizationRoleName, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingRaw, selectCloudRecordingStartedAt, selectCloudRecordingStatus, selectCurrentCameraDeviceId, selectCurrentMicrophoneDeviceId, selectCurrentSpeakerDeviceId, selectDeviceCredentialsRaw, selectDeviceId, selectHasFetchedDeviceCredentials, selectIsAcceptingStreams, selectIsAuthorizedToAskToSpeak, selectIsAuthorizedToEndMeeting, selectIsAuthorizedToKickClient, selectIsAuthorizedToLockRoom, selectIsAuthorizedToRequestAudioEnable, selectIsAuthorizedToSpotlight, selectIsCameraEnabled, selectIsCloudRecording, selectIsLocalMediaStarting, selectIsLocalParticipantSpotlighted, selectIsLowDataModeEnabled, selectIsMicrophoneEnabled, selectIsSettingCameraDevice, selectIsSettingMicrophoneDevice, selectIsToggleCamera, selectLocalMediaConstraintsOptions, selectLocalMediaDevices, selectLocalMediaIsSwitchingStream, selectLocalMediaOptions, selectLocalMediaOwnsStream, selectLocalMediaRaw, selectLocalMediaShouldStartWithOptions, selectLocalMediaShouldStop, selectLocalMediaStartError, selectLocalMediaStatus, selectLocalMediaStream, selectLocalParticipantClientClaim, selectLocalParticipantDisplayName, selectLocalParticipantIsScreenSharing, selectLocalParticipantRaw, selectLocalParticipantStickyReaction, selectLocalParticipantView, selectLocalScreenshareRaw, selectLocalScreenshareStatus, selectLocalScreenshareStream, selectMicrophoneDeviceError, selectMicrophoneDevices, selectNotificationsEmitter, selectNotificationsEvents, selectNotificationsRaw, selectNumClients, selectNumParticipants, selectOrganizationId, selectOrganizationRaw, selectRemoteClientViews, selectRemoteClients, selectRemoteParticipants, selectRemoteParticipantsRaw, selectRoomConnectionError, selectRoomConnectionRaw, selectRoomConnectionSession, selectRoomConnectionSessionId, selectRoomConnectionStatus, selectRoomIsLocked, selectRoomKey, selectRtcConnectionRaw, selectRtcDispatcherCreated, selectRtcIsCreatingDispatcher, selectRtcManager, selectRtcManagerInitialized, selectRtcStatus, selectScreenshares, selectSelfId, selectShouldConnectRoom, selectShouldConnectRtc, selectShouldConnectSignal, selectShouldDisconnectRtc, selectShouldFetchDeviceCredentials, selectShouldFetchOrganization, selectShouldIdentifyDevice, selectShouldInitializeRtc, selectSignalConnectionDeviceIdentified, selectSignalConnectionRaw, selectSignalConnectionSocket, selectSignalIsIdentifyingDevice, selectSignalStatus, selectSpeakerDevices, selectSpotlightedClientViews, selectSpotlights, selectSpotlightsRaw, selectStreamingRaw, selectStreamsToAccept, selectWaitingParticipants, selectWaitingParticipantsRaw, setCurrentCameraDeviceId, setCurrentMicrophoneDeviceId, setCurrentSpeakerDeviceId, setLocalMediaOptions, setLocalMediaStream, setRoomKey, signalConnectionSlice, signalEvents, socketConnected, socketConnecting, socketDisconnected, socketReconnecting, spotlightsSlice, startAppListening, stopScreenshare, streamIdForClient, streamStatusUpdated, streamingSlice, toggleCameraEnabled, toggleLowDataModeEnabled, toggleMicrophoneEnabled, updateReportedValues, waitingParticipantsSlice };
|
|
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 };
|