@whereby.com/core 0.32.2 → 0.32.4
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 +7 -3
- package/dist/index.d.cts +47 -4
- package/dist/index.d.mts +47 -4
- package/dist/index.d.ts +47 -4
- package/dist/index.mjs +7 -4
- package/dist/legacy-esm.js +7 -4
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -75,12 +75,13 @@ const createReactor = (selectors, callback) => {
|
|
|
75
75
|
});
|
|
76
76
|
};
|
|
77
77
|
|
|
78
|
-
const coreVersion = "0.32.
|
|
78
|
+
const coreVersion = "0.32.4";
|
|
79
79
|
|
|
80
80
|
const initialState$h = {
|
|
81
81
|
isNodeSdk: false,
|
|
82
82
|
isActive: false,
|
|
83
83
|
isDialIn: false,
|
|
84
|
+
ignoreBreakoutGroups: false,
|
|
84
85
|
roomName: null,
|
|
85
86
|
roomUrl: null,
|
|
86
87
|
displayName: null,
|
|
@@ -111,6 +112,7 @@ const selectAppUserAgent = (state) => state.app.userAgent;
|
|
|
111
112
|
const selectAppExternalId = (state) => state.app.externalId;
|
|
112
113
|
const selectAppIsNodeSdk = (state) => state.app.isNodeSdk;
|
|
113
114
|
const selectAppInitialConfig = (state) => state.app.initialConfig;
|
|
115
|
+
const selectAppIgnoreBreakoutGroups = (state) => state.app.ignoreBreakoutGroups;
|
|
114
116
|
|
|
115
117
|
function createSignalEventAction(name) {
|
|
116
118
|
return toolkit.createAction(`signalConnection/event/${name}`);
|
|
@@ -2070,7 +2072,7 @@ createReactor([selectShouldDisconnectRtc], ({ dispatch }, shouldDisconnectRtc) =
|
|
|
2070
2072
|
dispatch(doDisconnectRtc());
|
|
2071
2073
|
}
|
|
2072
2074
|
});
|
|
2073
|
-
const selectStreamsToAccept = toolkit.createSelector(selectRtcStatus, selectRemoteClients, selectBreakoutCurrentId, selectSpotlights, (rtcStatus, remoteParticipants, breakoutCurrentId, spotlights) => {
|
|
2075
|
+
const selectStreamsToAccept = toolkit.createSelector(selectRtcStatus, selectRemoteClients, selectBreakoutCurrentId, selectSpotlights, selectAppIgnoreBreakoutGroups, (rtcStatus, remoteParticipants, breakoutCurrentId, spotlights, ignoreBreakoutGroups) => {
|
|
2074
2076
|
if (rtcStatus !== "ready") {
|
|
2075
2077
|
return [];
|
|
2076
2078
|
}
|
|
@@ -2093,7 +2095,8 @@ const selectStreamsToAccept = toolkit.createSelector(selectRtcStatus, selectRemo
|
|
|
2093
2095
|
}
|
|
2094
2096
|
if ((!client.breakoutGroup && !breakoutCurrentId) ||
|
|
2095
2097
|
client.breakoutGroup === breakoutCurrentId ||
|
|
2096
|
-
("" === client.breakoutGroup && clientSpotlight)
|
|
2098
|
+
("" === client.breakoutGroup && clientSpotlight) ||
|
|
2099
|
+
ignoreBreakoutGroups) {
|
|
2097
2100
|
if (state === "done_accept")
|
|
2098
2101
|
continue;
|
|
2099
2102
|
upd.push({
|
|
@@ -4193,6 +4196,7 @@ exports.selectAllClientViews = selectAllClientViews;
|
|
|
4193
4196
|
exports.selectAllClientViewsInCurrentGroup = selectAllClientViewsInCurrentGroup;
|
|
4194
4197
|
exports.selectAppDisplayName = selectAppDisplayName;
|
|
4195
4198
|
exports.selectAppExternalId = selectAppExternalId;
|
|
4199
|
+
exports.selectAppIgnoreBreakoutGroups = selectAppIgnoreBreakoutGroups;
|
|
4196
4200
|
exports.selectAppInitialConfig = selectAppInitialConfig;
|
|
4197
4201
|
exports.selectAppIsActive = selectAppIsActive;
|
|
4198
4202
|
exports.selectAppIsDialIn = selectAppIsDialIn;
|
package/dist/index.d.cts
CHANGED
|
@@ -1815,6 +1815,7 @@ declare const selectIsCloudRecording: (state: RootState) => boolean;
|
|
|
1815
1815
|
interface AppConfig {
|
|
1816
1816
|
isNodeSdk?: boolean;
|
|
1817
1817
|
isDialIn?: boolean;
|
|
1818
|
+
ignoreBreakoutGroups?: boolean;
|
|
1818
1819
|
displayName: string;
|
|
1819
1820
|
localMediaOptions?: LocalMediaOptions;
|
|
1820
1821
|
roomKey: string | null;
|
|
@@ -1826,6 +1827,7 @@ interface AppState {
|
|
|
1826
1827
|
isNodeSdk: boolean;
|
|
1827
1828
|
isActive: boolean;
|
|
1828
1829
|
isDialIn: boolean;
|
|
1830
|
+
ignoreBreakoutGroups: boolean;
|
|
1829
1831
|
roomUrl: string | null;
|
|
1830
1832
|
roomName: string | null;
|
|
1831
1833
|
displayName: string | null;
|
|
@@ -1839,6 +1841,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1839
1841
|
isNodeSdk: boolean;
|
|
1840
1842
|
isActive: boolean;
|
|
1841
1843
|
isDialIn: boolean;
|
|
1844
|
+
ignoreBreakoutGroups: boolean;
|
|
1842
1845
|
roomUrl: string | null;
|
|
1843
1846
|
roomName: string | null;
|
|
1844
1847
|
displayName: string | null;
|
|
@@ -1847,6 +1850,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1847
1850
|
initialConfig?: {
|
|
1848
1851
|
isNodeSdk?: boolean | undefined;
|
|
1849
1852
|
isDialIn?: boolean | undefined;
|
|
1853
|
+
ignoreBreakoutGroups?: boolean | undefined;
|
|
1850
1854
|
displayName: string;
|
|
1851
1855
|
localMediaOptions?: {
|
|
1852
1856
|
audio: boolean;
|
|
@@ -1862,6 +1866,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1862
1866
|
initialConfig: {
|
|
1863
1867
|
isNodeSdk?: boolean | undefined;
|
|
1864
1868
|
isDialIn?: boolean | undefined;
|
|
1869
|
+
ignoreBreakoutGroups?: boolean | undefined;
|
|
1865
1870
|
displayName: string;
|
|
1866
1871
|
localMediaOptions?: LocalMediaOptions | undefined;
|
|
1867
1872
|
roomKey: string | null;
|
|
@@ -1872,6 +1877,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1872
1877
|
isActive: true;
|
|
1873
1878
|
isNodeSdk: boolean;
|
|
1874
1879
|
isDialIn: boolean;
|
|
1880
|
+
ignoreBreakoutGroups: boolean;
|
|
1875
1881
|
displayName: string;
|
|
1876
1882
|
localMediaOptions?: LocalMediaOptions | undefined;
|
|
1877
1883
|
roomKey: string | null;
|
|
@@ -1883,6 +1889,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1883
1889
|
isNodeSdk: boolean;
|
|
1884
1890
|
isActive: boolean;
|
|
1885
1891
|
isDialIn: boolean;
|
|
1892
|
+
ignoreBreakoutGroups: boolean;
|
|
1886
1893
|
roomUrl: string | null;
|
|
1887
1894
|
roomName: string | null;
|
|
1888
1895
|
displayName: string | null;
|
|
@@ -1891,6 +1898,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1891
1898
|
initialConfig?: {
|
|
1892
1899
|
isNodeSdk?: boolean | undefined;
|
|
1893
1900
|
isDialIn?: boolean | undefined;
|
|
1901
|
+
ignoreBreakoutGroups?: boolean | undefined;
|
|
1894
1902
|
displayName: string;
|
|
1895
1903
|
localMediaOptions?: {
|
|
1896
1904
|
audio: boolean;
|
|
@@ -1905,6 +1913,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1905
1913
|
isActive: false;
|
|
1906
1914
|
isNodeSdk: boolean;
|
|
1907
1915
|
isDialIn: boolean;
|
|
1916
|
+
ignoreBreakoutGroups: boolean;
|
|
1908
1917
|
roomUrl: string | null;
|
|
1909
1918
|
roomName: string | null;
|
|
1910
1919
|
displayName: string | null;
|
|
@@ -1913,6 +1922,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1913
1922
|
initialConfig?: {
|
|
1914
1923
|
isNodeSdk?: boolean | undefined;
|
|
1915
1924
|
isDialIn?: boolean | undefined;
|
|
1925
|
+
ignoreBreakoutGroups?: boolean | undefined;
|
|
1916
1926
|
displayName: string;
|
|
1917
1927
|
localMediaOptions?: {
|
|
1918
1928
|
audio: boolean;
|
|
@@ -1937,6 +1947,7 @@ declare const selectAppUserAgent: (state: RootState) => string | null;
|
|
|
1937
1947
|
declare const selectAppExternalId: (state: RootState) => string | null;
|
|
1938
1948
|
declare const selectAppIsNodeSdk: (state: RootState) => boolean;
|
|
1939
1949
|
declare const selectAppInitialConfig: (state: RootState) => AppConfig | undefined;
|
|
1950
|
+
declare const selectAppIgnoreBreakoutGroups: (state: RootState) => boolean;
|
|
1940
1951
|
|
|
1941
1952
|
interface AuthorizationState {
|
|
1942
1953
|
roomKey: string | null;
|
|
@@ -8685,7 +8696,7 @@ declare const selectStreamsToAccept: ((state: {
|
|
|
8685
8696
|
resultFunc: (resultFuncArgs_0: "inactive" | "ready" | "reconnecting", resultFuncArgs_1: RemoteParticipant[], resultFuncArgs_2: string, resultFuncArgs_3: {
|
|
8686
8697
|
clientId: string;
|
|
8687
8698
|
streamId: string;
|
|
8688
|
-
}[]) => {
|
|
8699
|
+
}[], resultFuncArgs_4: boolean) => {
|
|
8689
8700
|
clientId: string;
|
|
8690
8701
|
streamId: string;
|
|
8691
8702
|
state: StreamState;
|
|
@@ -8693,7 +8704,7 @@ declare const selectStreamsToAccept: ((state: {
|
|
|
8693
8704
|
memoizedResultFunc: ((resultFuncArgs_0: "inactive" | "ready" | "reconnecting", resultFuncArgs_1: RemoteParticipant[], resultFuncArgs_2: string, resultFuncArgs_3: {
|
|
8694
8705
|
clientId: string;
|
|
8695
8706
|
streamId: string;
|
|
8696
|
-
}[]) => {
|
|
8707
|
+
}[], resultFuncArgs_4: boolean) => {
|
|
8697
8708
|
clientId: string;
|
|
8698
8709
|
streamId: string;
|
|
8699
8710
|
state: StreamState;
|
|
@@ -8840,7 +8851,29 @@ declare const selectStreamsToAccept: ((state: {
|
|
|
8840
8851
|
}) => {
|
|
8841
8852
|
clientId: string;
|
|
8842
8853
|
streamId: string;
|
|
8843
|
-
}[]
|
|
8854
|
+
}[], (state: {
|
|
8855
|
+
app: AppState;
|
|
8856
|
+
authorization: AuthorizationState;
|
|
8857
|
+
breakout: BreakoutState;
|
|
8858
|
+
chat: ChatState;
|
|
8859
|
+
cloudRecording: CloudRecordingState;
|
|
8860
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8861
|
+
deviceCredentials: DeviceCredentialsState;
|
|
8862
|
+
localMedia: LocalMediaState;
|
|
8863
|
+
localParticipant: LocalParticipantState;
|
|
8864
|
+
localScreenshare: LocalScreenshareState;
|
|
8865
|
+
notifications: NotificationsState;
|
|
8866
|
+
organization: OrganizationState;
|
|
8867
|
+
remoteParticipants: RemoteParticipantState;
|
|
8868
|
+
room: RoomState;
|
|
8869
|
+
roomConnection: RoomConnectionState;
|
|
8870
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
8871
|
+
rtcConnection: RtcConnectionState;
|
|
8872
|
+
signalConnection: SignalConnectionState;
|
|
8873
|
+
spotlights: SpotlightsState;
|
|
8874
|
+
streaming: StreamingState;
|
|
8875
|
+
waitingParticipants: WaitingParticipantsState;
|
|
8876
|
+
}) => boolean];
|
|
8844
8877
|
recomputations: () => number;
|
|
8845
8878
|
resetRecomputations: () => void;
|
|
8846
8879
|
dependencyRecomputations: () => number;
|
|
@@ -8987,6 +9020,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
8987
9020
|
isConnecting: () => any;
|
|
8988
9021
|
isConnected: () => any;
|
|
8989
9022
|
on: (eventName: string, handler: Function) => () => void;
|
|
9023
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
8990
9024
|
once: (eventName: string, handler: Function) => void;
|
|
8991
9025
|
off: (eventName: string, handler: Function) => void;
|
|
8992
9026
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9094,6 +9128,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9094
9128
|
isConnecting: () => any;
|
|
9095
9129
|
isConnected: () => any;
|
|
9096
9130
|
on: (eventName: string, handler: Function) => () => void;
|
|
9131
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9097
9132
|
once: (eventName: string, handler: Function) => void;
|
|
9098
9133
|
off: (eventName: string, handler: Function) => void;
|
|
9099
9134
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9202,6 +9237,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9202
9237
|
isConnecting: () => any;
|
|
9203
9238
|
isConnected: () => any;
|
|
9204
9239
|
on: (eventName: string, handler: Function) => () => void;
|
|
9240
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9205
9241
|
once: (eventName: string, handler: Function) => void;
|
|
9206
9242
|
off: (eventName: string, handler: Function) => void;
|
|
9207
9243
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9315,6 +9351,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9315
9351
|
isConnecting: () => any;
|
|
9316
9352
|
isConnected: () => any;
|
|
9317
9353
|
on: (eventName: string, handler: Function) => () => void;
|
|
9354
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9318
9355
|
once: (eventName: string, handler: Function) => void;
|
|
9319
9356
|
off: (eventName: string, handler: Function) => void;
|
|
9320
9357
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9428,6 +9465,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9428
9465
|
isConnecting: () => any;
|
|
9429
9466
|
isConnected: () => any;
|
|
9430
9467
|
on: (eventName: string, handler: Function) => () => void;
|
|
9468
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9431
9469
|
once: (eventName: string, handler: Function) => void;
|
|
9432
9470
|
off: (eventName: string, handler: Function) => void;
|
|
9433
9471
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9535,6 +9573,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9535
9573
|
isConnecting: () => any;
|
|
9536
9574
|
isConnected: () => any;
|
|
9537
9575
|
on: (eventName: string, handler: Function) => () => void;
|
|
9576
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9538
9577
|
once: (eventName: string, handler: Function) => void;
|
|
9539
9578
|
off: (eventName: string, handler: Function) => void;
|
|
9540
9579
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9643,6 +9682,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9643
9682
|
isConnecting: () => any;
|
|
9644
9683
|
isConnected: () => any;
|
|
9645
9684
|
on: (eventName: string, handler: Function) => () => void;
|
|
9685
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9646
9686
|
once: (eventName: string, handler: Function) => void;
|
|
9647
9687
|
off: (eventName: string, handler: Function) => void;
|
|
9648
9688
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9750,6 +9790,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9750
9790
|
isConnecting: () => any;
|
|
9751
9791
|
isConnected: () => any;
|
|
9752
9792
|
on: (eventName: string, handler: Function) => () => void;
|
|
9793
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9753
9794
|
once: (eventName: string, handler: Function) => void;
|
|
9754
9795
|
off: (eventName: string, handler: Function) => void;
|
|
9755
9796
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9858,6 +9899,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9858
9899
|
isConnecting: () => any;
|
|
9859
9900
|
isConnected: () => any;
|
|
9860
9901
|
on: (eventName: string, handler: Function) => () => void;
|
|
9902
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9861
9903
|
once: (eventName: string, handler: Function) => void;
|
|
9862
9904
|
off: (eventName: string, handler: Function) => void;
|
|
9863
9905
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9965,6 +10007,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9965
10007
|
isConnecting: () => any;
|
|
9966
10008
|
isConnected: () => any;
|
|
9967
10009
|
on: (eventName: string, handler: Function) => () => void;
|
|
10010
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9968
10011
|
once: (eventName: string, handler: Function) => void;
|
|
9969
10012
|
off: (eventName: string, handler: Function) => void;
|
|
9970
10013
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -11042,4 +11085,4 @@ declare function getFakeMediaStream({ canvas, hasAudio }: {
|
|
|
11042
11085
|
|
|
11043
11086
|
declare function parseUnverifiedRoomKeyData(roomKey: string): any;
|
|
11044
11087
|
|
|
11045
|
-
export { ApiClient, type AppConfig, type AppDispatch, type AppReducer, type AppStartListening, type AppState, type AppThunk, type AuthorizationState, type BreakoutState, type ChatMessage, type ChatMessageEvent, type ChatMessageEventProps, type ChatState, type ClientView, type CloudRecordingState, type ConnectionMonitorStart, type ConnectionMonitorState, type ConnectionStatus, Credentials, CredentialsService, type DeviceCredentialsState, type FullOrganizationPermissions, type LocalMediaOptions, type LocalMediaState, LocalParticipant, type LocalParticipantState, type LocalScreenshareState, type Notification, type NotificationEvent, type NotificationEventMap, type NotificationEvents, type NotificationsEventEmitter, type NotificationsState, OrganizationApiClient, type OrganizationLimits, type OrganizationOnboardingSurvey, type OrganizationPermissionAction, type OrganizationPermissions, type OrganizationPreferences, OrganizationService, OrganizationServiceCache, type OrganizationState, type RemoteParticipant, type RemoteParticipantData, type RemoteParticipantState, type RequestAudioEvent, type RequestAudioEventProps, type RequestVideoEvent, type RequestVideoEventProps, type RoomConnectionState, RoomService, type RoomState, type RootState, type RtcConnectionState, type Screenshare, type SignalClientEvent, type SignalClientEventProps, type SignalConnectionState, type SignalStatusEvent, type SignalStatusEventProps, type SpotlightsState, type StickyReaction, type StickyReactionEvent, type StickyReactionEventProps, type Store, type StreamState, type StreamingState, type ThunkConfig, type WaitingParticipant, type WaitingParticipantsState, addAppListener, addSpotlight, appSlice, authorizationSlice, breakoutSlice, chatSlice, cloudRecordingSlice, connectionMonitorSlice, connectionMonitorStarted, connectionMonitorStopped, createAppAsyncThunk, createAppAuthorizedThunk, createAppThunk, createAsyncRoomConnectedThunk, createAuthorizedRoomConnectedThunk, createReactor, createRemoteParticipant, createRoomConnectedThunk, createServices, createStore, createWebRtcEmitter, debounce, deviceBusy, deviceCredentialsSlice, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doBreakoutJoin, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLockRoom, doOrganizationFetch, doRejectWaitingParticipant, doRemoveSpotlight, doRequestAudioEnable, doRequestVideoEnable, doRtcAnalyticsCustomEventsInitialize, doRtcManagerCreated, doRtcManagerInitialize, doRtcReportStreamResolution, doSendChatMessage, doSendClientMetadata, doSetDevice, doSetDisplayName, doSetLocalStickyReaction, doSetNotification, doSignalConnect, doSignalDisconnect, doSignalIdentifyDevice, doSpotlightParticipant, doStartCloudRecording, doStartConnectionMonitor, doStartLocalMedia, doStartScreenshare, doStopCloudRecording, doStopConnectionMonitor, doStopLocalMedia, doStopScreenshare, doSwitchLocalStream, doToggleCamera, doToggleLowDataMode, doUpdateDeviceList, getAudioTrack, getFakeMediaStream, getVideoTrack, hasValue, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, initialState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localScreenshareSlice, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, parseUnverifiedRoomKeyData, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, removeSpotlight, resolutionReported, roomConnectionSlice, roomSlice, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, type rtcAnalyticsState, rtcClientConnectionStatusChanged, rtcConnectionSlice, rtcDisconnected, rtcDispatcherCreated, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAllClientViewsInCurrentGroup, selectAppDisplayName, selectAppExternalId, selectAppInitialConfig, selectAppIsActive, selectAppIsDialIn, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAuthorizationRoleName, selectBreakoutActive, selectBreakoutAssignments, selectBreakoutCurrentGroup, selectBreakoutCurrentId, selectBreakoutGroupedParticipants, selectBreakoutGroups, selectBreakoutInitiatedBy, selectBreakoutRaw, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingRaw, selectCloudRecordingStartedAt, selectCloudRecordingStatus, selectConnectionMonitorIsRunning, selectCurrentCameraDeviceId, selectCurrentMicrophoneDeviceId, selectCurrentSpeakerDeviceId, selectDeviceCredentialsRaw, selectDeviceId, selectHasFetchedDeviceCredentials, selectIsAcceptingStreams, selectIsAuthorizedToAskToSpeak, selectIsAuthorizedToEndMeeting, selectIsAuthorizedToKickClient, selectIsAuthorizedToLockRoom, selectIsAuthorizedToRequestAudioEnable, selectIsAuthorizedToRequestVideoEnable, selectIsAuthorizedToSpotlight, selectIsCameraEnabled, selectIsCloudRecording, selectIsLocalMediaStarting, selectIsLocalParticipantSpotlighted, selectIsLowDataModeEnabled, selectIsMicrophoneEnabled, selectIsSettingCameraDevice, selectIsSettingMicrophoneDevice, selectIsToggleCamera, selectLocalMediaConstraintsOptions, selectLocalMediaDevices, selectLocalMediaIsSwitchingStream, selectLocalMediaOptions, selectLocalMediaOwnsStream, selectLocalMediaRaw, selectLocalMediaShouldStartWithOptions, selectLocalMediaShouldStop, selectLocalMediaStartError, selectLocalMediaStatus, selectLocalMediaStream, selectLocalParticipantBreakoutAssigned, selectLocalParticipantBreakoutGroup, 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, setBreakoutGroupAssigned, setCurrentCameraDeviceId, setCurrentMicrophoneDeviceId, setCurrentSpeakerDeviceId, setDisplayName, setLocalMediaOptions, setLocalMediaStream, setRoomKey, signalConnectionSlice, signalEvents, socketConnected, socketConnecting, socketDisconnected, socketReconnecting, spotlightsSlice, startAppListening, stopScreenshare, streamIdForClient, streamStatusUpdated, streamingSlice, toggleCameraEnabled, toggleLowDataModeEnabled, toggleMicrophoneEnabled, updateReportedValues, waitingParticipantsSlice };
|
|
11088
|
+
export { ApiClient, type AppConfig, type AppDispatch, type AppReducer, type AppStartListening, type AppState, type AppThunk, type AuthorizationState, type BreakoutState, type ChatMessage, type ChatMessageEvent, type ChatMessageEventProps, type ChatState, type ClientView, type CloudRecordingState, type ConnectionMonitorStart, type ConnectionMonitorState, type ConnectionStatus, Credentials, CredentialsService, type DeviceCredentialsState, type FullOrganizationPermissions, type LocalMediaOptions, type LocalMediaState, LocalParticipant, type LocalParticipantState, type LocalScreenshareState, type Notification, type NotificationEvent, type NotificationEventMap, type NotificationEvents, type NotificationsEventEmitter, type NotificationsState, OrganizationApiClient, type OrganizationLimits, type OrganizationOnboardingSurvey, type OrganizationPermissionAction, type OrganizationPermissions, type OrganizationPreferences, OrganizationService, OrganizationServiceCache, type OrganizationState, type RemoteParticipant, type RemoteParticipantData, type RemoteParticipantState, type RequestAudioEvent, type RequestAudioEventProps, type RequestVideoEvent, type RequestVideoEventProps, type RoomConnectionState, RoomService, type RoomState, type RootState, type RtcConnectionState, type Screenshare, type SignalClientEvent, type SignalClientEventProps, type SignalConnectionState, type SignalStatusEvent, type SignalStatusEventProps, type SpotlightsState, type StickyReaction, type StickyReactionEvent, type StickyReactionEventProps, type Store, type StreamState, type StreamingState, type ThunkConfig, type WaitingParticipant, type WaitingParticipantsState, addAppListener, addSpotlight, appSlice, authorizationSlice, breakoutSlice, chatSlice, cloudRecordingSlice, connectionMonitorSlice, connectionMonitorStarted, connectionMonitorStopped, createAppAsyncThunk, createAppAuthorizedThunk, createAppThunk, createAsyncRoomConnectedThunk, createAuthorizedRoomConnectedThunk, createReactor, createRemoteParticipant, createRoomConnectedThunk, createServices, createStore, createWebRtcEmitter, debounce, deviceBusy, deviceCredentialsSlice, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doBreakoutJoin, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLockRoom, doOrganizationFetch, doRejectWaitingParticipant, doRemoveSpotlight, doRequestAudioEnable, doRequestVideoEnable, doRtcAnalyticsCustomEventsInitialize, doRtcManagerCreated, doRtcManagerInitialize, doRtcReportStreamResolution, doSendChatMessage, doSendClientMetadata, doSetDevice, doSetDisplayName, doSetLocalStickyReaction, doSetNotification, doSignalConnect, doSignalDisconnect, doSignalIdentifyDevice, doSpotlightParticipant, doStartCloudRecording, doStartConnectionMonitor, doStartLocalMedia, doStartScreenshare, doStopCloudRecording, doStopConnectionMonitor, doStopLocalMedia, doStopScreenshare, doSwitchLocalStream, doToggleCamera, doToggleLowDataMode, doUpdateDeviceList, getAudioTrack, getFakeMediaStream, getVideoTrack, hasValue, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, initialState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localScreenshareSlice, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, parseUnverifiedRoomKeyData, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, removeSpotlight, resolutionReported, roomConnectionSlice, roomSlice, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, type rtcAnalyticsState, rtcClientConnectionStatusChanged, rtcConnectionSlice, rtcDisconnected, rtcDispatcherCreated, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAllClientViewsInCurrentGroup, selectAppDisplayName, selectAppExternalId, selectAppIgnoreBreakoutGroups, selectAppInitialConfig, selectAppIsActive, selectAppIsDialIn, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAuthorizationRoleName, selectBreakoutActive, selectBreakoutAssignments, selectBreakoutCurrentGroup, selectBreakoutCurrentId, selectBreakoutGroupedParticipants, selectBreakoutGroups, selectBreakoutInitiatedBy, selectBreakoutRaw, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingRaw, selectCloudRecordingStartedAt, selectCloudRecordingStatus, selectConnectionMonitorIsRunning, selectCurrentCameraDeviceId, selectCurrentMicrophoneDeviceId, selectCurrentSpeakerDeviceId, selectDeviceCredentialsRaw, selectDeviceId, selectHasFetchedDeviceCredentials, selectIsAcceptingStreams, selectIsAuthorizedToAskToSpeak, selectIsAuthorizedToEndMeeting, selectIsAuthorizedToKickClient, selectIsAuthorizedToLockRoom, selectIsAuthorizedToRequestAudioEnable, selectIsAuthorizedToRequestVideoEnable, selectIsAuthorizedToSpotlight, selectIsCameraEnabled, selectIsCloudRecording, selectIsLocalMediaStarting, selectIsLocalParticipantSpotlighted, selectIsLowDataModeEnabled, selectIsMicrophoneEnabled, selectIsSettingCameraDevice, selectIsSettingMicrophoneDevice, selectIsToggleCamera, selectLocalMediaConstraintsOptions, selectLocalMediaDevices, selectLocalMediaIsSwitchingStream, selectLocalMediaOptions, selectLocalMediaOwnsStream, selectLocalMediaRaw, selectLocalMediaShouldStartWithOptions, selectLocalMediaShouldStop, selectLocalMediaStartError, selectLocalMediaStatus, selectLocalMediaStream, selectLocalParticipantBreakoutAssigned, selectLocalParticipantBreakoutGroup, 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, setBreakoutGroupAssigned, setCurrentCameraDeviceId, setCurrentMicrophoneDeviceId, setCurrentSpeakerDeviceId, setDisplayName, setLocalMediaOptions, setLocalMediaStream, setRoomKey, signalConnectionSlice, signalEvents, socketConnected, socketConnecting, socketDisconnected, socketReconnecting, spotlightsSlice, startAppListening, stopScreenshare, streamIdForClient, streamStatusUpdated, streamingSlice, toggleCameraEnabled, toggleLowDataModeEnabled, toggleMicrophoneEnabled, updateReportedValues, waitingParticipantsSlice };
|
package/dist/index.d.mts
CHANGED
|
@@ -1815,6 +1815,7 @@ declare const selectIsCloudRecording: (state: RootState) => boolean;
|
|
|
1815
1815
|
interface AppConfig {
|
|
1816
1816
|
isNodeSdk?: boolean;
|
|
1817
1817
|
isDialIn?: boolean;
|
|
1818
|
+
ignoreBreakoutGroups?: boolean;
|
|
1818
1819
|
displayName: string;
|
|
1819
1820
|
localMediaOptions?: LocalMediaOptions;
|
|
1820
1821
|
roomKey: string | null;
|
|
@@ -1826,6 +1827,7 @@ interface AppState {
|
|
|
1826
1827
|
isNodeSdk: boolean;
|
|
1827
1828
|
isActive: boolean;
|
|
1828
1829
|
isDialIn: boolean;
|
|
1830
|
+
ignoreBreakoutGroups: boolean;
|
|
1829
1831
|
roomUrl: string | null;
|
|
1830
1832
|
roomName: string | null;
|
|
1831
1833
|
displayName: string | null;
|
|
@@ -1839,6 +1841,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1839
1841
|
isNodeSdk: boolean;
|
|
1840
1842
|
isActive: boolean;
|
|
1841
1843
|
isDialIn: boolean;
|
|
1844
|
+
ignoreBreakoutGroups: boolean;
|
|
1842
1845
|
roomUrl: string | null;
|
|
1843
1846
|
roomName: string | null;
|
|
1844
1847
|
displayName: string | null;
|
|
@@ -1847,6 +1850,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1847
1850
|
initialConfig?: {
|
|
1848
1851
|
isNodeSdk?: boolean | undefined;
|
|
1849
1852
|
isDialIn?: boolean | undefined;
|
|
1853
|
+
ignoreBreakoutGroups?: boolean | undefined;
|
|
1850
1854
|
displayName: string;
|
|
1851
1855
|
localMediaOptions?: {
|
|
1852
1856
|
audio: boolean;
|
|
@@ -1862,6 +1866,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1862
1866
|
initialConfig: {
|
|
1863
1867
|
isNodeSdk?: boolean | undefined;
|
|
1864
1868
|
isDialIn?: boolean | undefined;
|
|
1869
|
+
ignoreBreakoutGroups?: boolean | undefined;
|
|
1865
1870
|
displayName: string;
|
|
1866
1871
|
localMediaOptions?: LocalMediaOptions | undefined;
|
|
1867
1872
|
roomKey: string | null;
|
|
@@ -1872,6 +1877,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1872
1877
|
isActive: true;
|
|
1873
1878
|
isNodeSdk: boolean;
|
|
1874
1879
|
isDialIn: boolean;
|
|
1880
|
+
ignoreBreakoutGroups: boolean;
|
|
1875
1881
|
displayName: string;
|
|
1876
1882
|
localMediaOptions?: LocalMediaOptions | undefined;
|
|
1877
1883
|
roomKey: string | null;
|
|
@@ -1883,6 +1889,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1883
1889
|
isNodeSdk: boolean;
|
|
1884
1890
|
isActive: boolean;
|
|
1885
1891
|
isDialIn: boolean;
|
|
1892
|
+
ignoreBreakoutGroups: boolean;
|
|
1886
1893
|
roomUrl: string | null;
|
|
1887
1894
|
roomName: string | null;
|
|
1888
1895
|
displayName: string | null;
|
|
@@ -1891,6 +1898,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1891
1898
|
initialConfig?: {
|
|
1892
1899
|
isNodeSdk?: boolean | undefined;
|
|
1893
1900
|
isDialIn?: boolean | undefined;
|
|
1901
|
+
ignoreBreakoutGroups?: boolean | undefined;
|
|
1894
1902
|
displayName: string;
|
|
1895
1903
|
localMediaOptions?: {
|
|
1896
1904
|
audio: boolean;
|
|
@@ -1905,6 +1913,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1905
1913
|
isActive: false;
|
|
1906
1914
|
isNodeSdk: boolean;
|
|
1907
1915
|
isDialIn: boolean;
|
|
1916
|
+
ignoreBreakoutGroups: boolean;
|
|
1908
1917
|
roomUrl: string | null;
|
|
1909
1918
|
roomName: string | null;
|
|
1910
1919
|
displayName: string | null;
|
|
@@ -1913,6 +1922,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1913
1922
|
initialConfig?: {
|
|
1914
1923
|
isNodeSdk?: boolean | undefined;
|
|
1915
1924
|
isDialIn?: boolean | undefined;
|
|
1925
|
+
ignoreBreakoutGroups?: boolean | undefined;
|
|
1916
1926
|
displayName: string;
|
|
1917
1927
|
localMediaOptions?: {
|
|
1918
1928
|
audio: boolean;
|
|
@@ -1937,6 +1947,7 @@ declare const selectAppUserAgent: (state: RootState) => string | null;
|
|
|
1937
1947
|
declare const selectAppExternalId: (state: RootState) => string | null;
|
|
1938
1948
|
declare const selectAppIsNodeSdk: (state: RootState) => boolean;
|
|
1939
1949
|
declare const selectAppInitialConfig: (state: RootState) => AppConfig | undefined;
|
|
1950
|
+
declare const selectAppIgnoreBreakoutGroups: (state: RootState) => boolean;
|
|
1940
1951
|
|
|
1941
1952
|
interface AuthorizationState {
|
|
1942
1953
|
roomKey: string | null;
|
|
@@ -8685,7 +8696,7 @@ declare const selectStreamsToAccept: ((state: {
|
|
|
8685
8696
|
resultFunc: (resultFuncArgs_0: "inactive" | "ready" | "reconnecting", resultFuncArgs_1: RemoteParticipant[], resultFuncArgs_2: string, resultFuncArgs_3: {
|
|
8686
8697
|
clientId: string;
|
|
8687
8698
|
streamId: string;
|
|
8688
|
-
}[]) => {
|
|
8699
|
+
}[], resultFuncArgs_4: boolean) => {
|
|
8689
8700
|
clientId: string;
|
|
8690
8701
|
streamId: string;
|
|
8691
8702
|
state: StreamState;
|
|
@@ -8693,7 +8704,7 @@ declare const selectStreamsToAccept: ((state: {
|
|
|
8693
8704
|
memoizedResultFunc: ((resultFuncArgs_0: "inactive" | "ready" | "reconnecting", resultFuncArgs_1: RemoteParticipant[], resultFuncArgs_2: string, resultFuncArgs_3: {
|
|
8694
8705
|
clientId: string;
|
|
8695
8706
|
streamId: string;
|
|
8696
|
-
}[]) => {
|
|
8707
|
+
}[], resultFuncArgs_4: boolean) => {
|
|
8697
8708
|
clientId: string;
|
|
8698
8709
|
streamId: string;
|
|
8699
8710
|
state: StreamState;
|
|
@@ -8840,7 +8851,29 @@ declare const selectStreamsToAccept: ((state: {
|
|
|
8840
8851
|
}) => {
|
|
8841
8852
|
clientId: string;
|
|
8842
8853
|
streamId: string;
|
|
8843
|
-
}[]
|
|
8854
|
+
}[], (state: {
|
|
8855
|
+
app: AppState;
|
|
8856
|
+
authorization: AuthorizationState;
|
|
8857
|
+
breakout: BreakoutState;
|
|
8858
|
+
chat: ChatState;
|
|
8859
|
+
cloudRecording: CloudRecordingState;
|
|
8860
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8861
|
+
deviceCredentials: DeviceCredentialsState;
|
|
8862
|
+
localMedia: LocalMediaState;
|
|
8863
|
+
localParticipant: LocalParticipantState;
|
|
8864
|
+
localScreenshare: LocalScreenshareState;
|
|
8865
|
+
notifications: NotificationsState;
|
|
8866
|
+
organization: OrganizationState;
|
|
8867
|
+
remoteParticipants: RemoteParticipantState;
|
|
8868
|
+
room: RoomState;
|
|
8869
|
+
roomConnection: RoomConnectionState;
|
|
8870
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
8871
|
+
rtcConnection: RtcConnectionState;
|
|
8872
|
+
signalConnection: SignalConnectionState;
|
|
8873
|
+
spotlights: SpotlightsState;
|
|
8874
|
+
streaming: StreamingState;
|
|
8875
|
+
waitingParticipants: WaitingParticipantsState;
|
|
8876
|
+
}) => boolean];
|
|
8844
8877
|
recomputations: () => number;
|
|
8845
8878
|
resetRecomputations: () => void;
|
|
8846
8879
|
dependencyRecomputations: () => number;
|
|
@@ -8987,6 +9020,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
8987
9020
|
isConnecting: () => any;
|
|
8988
9021
|
isConnected: () => any;
|
|
8989
9022
|
on: (eventName: string, handler: Function) => () => void;
|
|
9023
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
8990
9024
|
once: (eventName: string, handler: Function) => void;
|
|
8991
9025
|
off: (eventName: string, handler: Function) => void;
|
|
8992
9026
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9094,6 +9128,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9094
9128
|
isConnecting: () => any;
|
|
9095
9129
|
isConnected: () => any;
|
|
9096
9130
|
on: (eventName: string, handler: Function) => () => void;
|
|
9131
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9097
9132
|
once: (eventName: string, handler: Function) => void;
|
|
9098
9133
|
off: (eventName: string, handler: Function) => void;
|
|
9099
9134
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9202,6 +9237,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9202
9237
|
isConnecting: () => any;
|
|
9203
9238
|
isConnected: () => any;
|
|
9204
9239
|
on: (eventName: string, handler: Function) => () => void;
|
|
9240
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9205
9241
|
once: (eventName: string, handler: Function) => void;
|
|
9206
9242
|
off: (eventName: string, handler: Function) => void;
|
|
9207
9243
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9315,6 +9351,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9315
9351
|
isConnecting: () => any;
|
|
9316
9352
|
isConnected: () => any;
|
|
9317
9353
|
on: (eventName: string, handler: Function) => () => void;
|
|
9354
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9318
9355
|
once: (eventName: string, handler: Function) => void;
|
|
9319
9356
|
off: (eventName: string, handler: Function) => void;
|
|
9320
9357
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9428,6 +9465,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9428
9465
|
isConnecting: () => any;
|
|
9429
9466
|
isConnected: () => any;
|
|
9430
9467
|
on: (eventName: string, handler: Function) => () => void;
|
|
9468
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9431
9469
|
once: (eventName: string, handler: Function) => void;
|
|
9432
9470
|
off: (eventName: string, handler: Function) => void;
|
|
9433
9471
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9535,6 +9573,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9535
9573
|
isConnecting: () => any;
|
|
9536
9574
|
isConnected: () => any;
|
|
9537
9575
|
on: (eventName: string, handler: Function) => () => void;
|
|
9576
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9538
9577
|
once: (eventName: string, handler: Function) => void;
|
|
9539
9578
|
off: (eventName: string, handler: Function) => void;
|
|
9540
9579
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9643,6 +9682,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9643
9682
|
isConnecting: () => any;
|
|
9644
9683
|
isConnected: () => any;
|
|
9645
9684
|
on: (eventName: string, handler: Function) => () => void;
|
|
9685
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9646
9686
|
once: (eventName: string, handler: Function) => void;
|
|
9647
9687
|
off: (eventName: string, handler: Function) => void;
|
|
9648
9688
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9750,6 +9790,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9750
9790
|
isConnecting: () => any;
|
|
9751
9791
|
isConnected: () => any;
|
|
9752
9792
|
on: (eventName: string, handler: Function) => () => void;
|
|
9793
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9753
9794
|
once: (eventName: string, handler: Function) => void;
|
|
9754
9795
|
off: (eventName: string, handler: Function) => void;
|
|
9755
9796
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9858,6 +9899,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9858
9899
|
isConnecting: () => any;
|
|
9859
9900
|
isConnected: () => any;
|
|
9860
9901
|
on: (eventName: string, handler: Function) => () => void;
|
|
9902
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9861
9903
|
once: (eventName: string, handler: Function) => void;
|
|
9862
9904
|
off: (eventName: string, handler: Function) => void;
|
|
9863
9905
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9965,6 +10007,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9965
10007
|
isConnecting: () => any;
|
|
9966
10008
|
isConnected: () => any;
|
|
9967
10009
|
on: (eventName: string, handler: Function) => () => void;
|
|
10010
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9968
10011
|
once: (eventName: string, handler: Function) => void;
|
|
9969
10012
|
off: (eventName: string, handler: Function) => void;
|
|
9970
10013
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -11042,4 +11085,4 @@ declare function getFakeMediaStream({ canvas, hasAudio }: {
|
|
|
11042
11085
|
|
|
11043
11086
|
declare function parseUnverifiedRoomKeyData(roomKey: string): any;
|
|
11044
11087
|
|
|
11045
|
-
export { ApiClient, type AppConfig, type AppDispatch, type AppReducer, type AppStartListening, type AppState, type AppThunk, type AuthorizationState, type BreakoutState, type ChatMessage, type ChatMessageEvent, type ChatMessageEventProps, type ChatState, type ClientView, type CloudRecordingState, type ConnectionMonitorStart, type ConnectionMonitorState, type ConnectionStatus, Credentials, CredentialsService, type DeviceCredentialsState, type FullOrganizationPermissions, type LocalMediaOptions, type LocalMediaState, LocalParticipant, type LocalParticipantState, type LocalScreenshareState, type Notification, type NotificationEvent, type NotificationEventMap, type NotificationEvents, type NotificationsEventEmitter, type NotificationsState, OrganizationApiClient, type OrganizationLimits, type OrganizationOnboardingSurvey, type OrganizationPermissionAction, type OrganizationPermissions, type OrganizationPreferences, OrganizationService, OrganizationServiceCache, type OrganizationState, type RemoteParticipant, type RemoteParticipantData, type RemoteParticipantState, type RequestAudioEvent, type RequestAudioEventProps, type RequestVideoEvent, type RequestVideoEventProps, type RoomConnectionState, RoomService, type RoomState, type RootState, type RtcConnectionState, type Screenshare, type SignalClientEvent, type SignalClientEventProps, type SignalConnectionState, type SignalStatusEvent, type SignalStatusEventProps, type SpotlightsState, type StickyReaction, type StickyReactionEvent, type StickyReactionEventProps, type Store, type StreamState, type StreamingState, type ThunkConfig, type WaitingParticipant, type WaitingParticipantsState, addAppListener, addSpotlight, appSlice, authorizationSlice, breakoutSlice, chatSlice, cloudRecordingSlice, connectionMonitorSlice, connectionMonitorStarted, connectionMonitorStopped, createAppAsyncThunk, createAppAuthorizedThunk, createAppThunk, createAsyncRoomConnectedThunk, createAuthorizedRoomConnectedThunk, createReactor, createRemoteParticipant, createRoomConnectedThunk, createServices, createStore, createWebRtcEmitter, debounce, deviceBusy, deviceCredentialsSlice, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doBreakoutJoin, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLockRoom, doOrganizationFetch, doRejectWaitingParticipant, doRemoveSpotlight, doRequestAudioEnable, doRequestVideoEnable, doRtcAnalyticsCustomEventsInitialize, doRtcManagerCreated, doRtcManagerInitialize, doRtcReportStreamResolution, doSendChatMessage, doSendClientMetadata, doSetDevice, doSetDisplayName, doSetLocalStickyReaction, doSetNotification, doSignalConnect, doSignalDisconnect, doSignalIdentifyDevice, doSpotlightParticipant, doStartCloudRecording, doStartConnectionMonitor, doStartLocalMedia, doStartScreenshare, doStopCloudRecording, doStopConnectionMonitor, doStopLocalMedia, doStopScreenshare, doSwitchLocalStream, doToggleCamera, doToggleLowDataMode, doUpdateDeviceList, getAudioTrack, getFakeMediaStream, getVideoTrack, hasValue, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, initialState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localScreenshareSlice, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, parseUnverifiedRoomKeyData, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, removeSpotlight, resolutionReported, roomConnectionSlice, roomSlice, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, type rtcAnalyticsState, rtcClientConnectionStatusChanged, rtcConnectionSlice, rtcDisconnected, rtcDispatcherCreated, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAllClientViewsInCurrentGroup, selectAppDisplayName, selectAppExternalId, selectAppInitialConfig, selectAppIsActive, selectAppIsDialIn, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAuthorizationRoleName, selectBreakoutActive, selectBreakoutAssignments, selectBreakoutCurrentGroup, selectBreakoutCurrentId, selectBreakoutGroupedParticipants, selectBreakoutGroups, selectBreakoutInitiatedBy, selectBreakoutRaw, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingRaw, selectCloudRecordingStartedAt, selectCloudRecordingStatus, selectConnectionMonitorIsRunning, selectCurrentCameraDeviceId, selectCurrentMicrophoneDeviceId, selectCurrentSpeakerDeviceId, selectDeviceCredentialsRaw, selectDeviceId, selectHasFetchedDeviceCredentials, selectIsAcceptingStreams, selectIsAuthorizedToAskToSpeak, selectIsAuthorizedToEndMeeting, selectIsAuthorizedToKickClient, selectIsAuthorizedToLockRoom, selectIsAuthorizedToRequestAudioEnable, selectIsAuthorizedToRequestVideoEnable, selectIsAuthorizedToSpotlight, selectIsCameraEnabled, selectIsCloudRecording, selectIsLocalMediaStarting, selectIsLocalParticipantSpotlighted, selectIsLowDataModeEnabled, selectIsMicrophoneEnabled, selectIsSettingCameraDevice, selectIsSettingMicrophoneDevice, selectIsToggleCamera, selectLocalMediaConstraintsOptions, selectLocalMediaDevices, selectLocalMediaIsSwitchingStream, selectLocalMediaOptions, selectLocalMediaOwnsStream, selectLocalMediaRaw, selectLocalMediaShouldStartWithOptions, selectLocalMediaShouldStop, selectLocalMediaStartError, selectLocalMediaStatus, selectLocalMediaStream, selectLocalParticipantBreakoutAssigned, selectLocalParticipantBreakoutGroup, 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, setBreakoutGroupAssigned, setCurrentCameraDeviceId, setCurrentMicrophoneDeviceId, setCurrentSpeakerDeviceId, setDisplayName, setLocalMediaOptions, setLocalMediaStream, setRoomKey, signalConnectionSlice, signalEvents, socketConnected, socketConnecting, socketDisconnected, socketReconnecting, spotlightsSlice, startAppListening, stopScreenshare, streamIdForClient, streamStatusUpdated, streamingSlice, toggleCameraEnabled, toggleLowDataModeEnabled, toggleMicrophoneEnabled, updateReportedValues, waitingParticipantsSlice };
|
|
11088
|
+
export { ApiClient, type AppConfig, type AppDispatch, type AppReducer, type AppStartListening, type AppState, type AppThunk, type AuthorizationState, type BreakoutState, type ChatMessage, type ChatMessageEvent, type ChatMessageEventProps, type ChatState, type ClientView, type CloudRecordingState, type ConnectionMonitorStart, type ConnectionMonitorState, type ConnectionStatus, Credentials, CredentialsService, type DeviceCredentialsState, type FullOrganizationPermissions, type LocalMediaOptions, type LocalMediaState, LocalParticipant, type LocalParticipantState, type LocalScreenshareState, type Notification, type NotificationEvent, type NotificationEventMap, type NotificationEvents, type NotificationsEventEmitter, type NotificationsState, OrganizationApiClient, type OrganizationLimits, type OrganizationOnboardingSurvey, type OrganizationPermissionAction, type OrganizationPermissions, type OrganizationPreferences, OrganizationService, OrganizationServiceCache, type OrganizationState, type RemoteParticipant, type RemoteParticipantData, type RemoteParticipantState, type RequestAudioEvent, type RequestAudioEventProps, type RequestVideoEvent, type RequestVideoEventProps, type RoomConnectionState, RoomService, type RoomState, type RootState, type RtcConnectionState, type Screenshare, type SignalClientEvent, type SignalClientEventProps, type SignalConnectionState, type SignalStatusEvent, type SignalStatusEventProps, type SpotlightsState, type StickyReaction, type StickyReactionEvent, type StickyReactionEventProps, type Store, type StreamState, type StreamingState, type ThunkConfig, type WaitingParticipant, type WaitingParticipantsState, addAppListener, addSpotlight, appSlice, authorizationSlice, breakoutSlice, chatSlice, cloudRecordingSlice, connectionMonitorSlice, connectionMonitorStarted, connectionMonitorStopped, createAppAsyncThunk, createAppAuthorizedThunk, createAppThunk, createAsyncRoomConnectedThunk, createAuthorizedRoomConnectedThunk, createReactor, createRemoteParticipant, createRoomConnectedThunk, createServices, createStore, createWebRtcEmitter, debounce, deviceBusy, deviceCredentialsSlice, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doBreakoutJoin, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLockRoom, doOrganizationFetch, doRejectWaitingParticipant, doRemoveSpotlight, doRequestAudioEnable, doRequestVideoEnable, doRtcAnalyticsCustomEventsInitialize, doRtcManagerCreated, doRtcManagerInitialize, doRtcReportStreamResolution, doSendChatMessage, doSendClientMetadata, doSetDevice, doSetDisplayName, doSetLocalStickyReaction, doSetNotification, doSignalConnect, doSignalDisconnect, doSignalIdentifyDevice, doSpotlightParticipant, doStartCloudRecording, doStartConnectionMonitor, doStartLocalMedia, doStartScreenshare, doStopCloudRecording, doStopConnectionMonitor, doStopLocalMedia, doStopScreenshare, doSwitchLocalStream, doToggleCamera, doToggleLowDataMode, doUpdateDeviceList, getAudioTrack, getFakeMediaStream, getVideoTrack, hasValue, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, initialState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localScreenshareSlice, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, parseUnverifiedRoomKeyData, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, removeSpotlight, resolutionReported, roomConnectionSlice, roomSlice, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, type rtcAnalyticsState, rtcClientConnectionStatusChanged, rtcConnectionSlice, rtcDisconnected, rtcDispatcherCreated, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAllClientViewsInCurrentGroup, selectAppDisplayName, selectAppExternalId, selectAppIgnoreBreakoutGroups, selectAppInitialConfig, selectAppIsActive, selectAppIsDialIn, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAuthorizationRoleName, selectBreakoutActive, selectBreakoutAssignments, selectBreakoutCurrentGroup, selectBreakoutCurrentId, selectBreakoutGroupedParticipants, selectBreakoutGroups, selectBreakoutInitiatedBy, selectBreakoutRaw, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingRaw, selectCloudRecordingStartedAt, selectCloudRecordingStatus, selectConnectionMonitorIsRunning, selectCurrentCameraDeviceId, selectCurrentMicrophoneDeviceId, selectCurrentSpeakerDeviceId, selectDeviceCredentialsRaw, selectDeviceId, selectHasFetchedDeviceCredentials, selectIsAcceptingStreams, selectIsAuthorizedToAskToSpeak, selectIsAuthorizedToEndMeeting, selectIsAuthorizedToKickClient, selectIsAuthorizedToLockRoom, selectIsAuthorizedToRequestAudioEnable, selectIsAuthorizedToRequestVideoEnable, selectIsAuthorizedToSpotlight, selectIsCameraEnabled, selectIsCloudRecording, selectIsLocalMediaStarting, selectIsLocalParticipantSpotlighted, selectIsLowDataModeEnabled, selectIsMicrophoneEnabled, selectIsSettingCameraDevice, selectIsSettingMicrophoneDevice, selectIsToggleCamera, selectLocalMediaConstraintsOptions, selectLocalMediaDevices, selectLocalMediaIsSwitchingStream, selectLocalMediaOptions, selectLocalMediaOwnsStream, selectLocalMediaRaw, selectLocalMediaShouldStartWithOptions, selectLocalMediaShouldStop, selectLocalMediaStartError, selectLocalMediaStatus, selectLocalMediaStream, selectLocalParticipantBreakoutAssigned, selectLocalParticipantBreakoutGroup, 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, setBreakoutGroupAssigned, setCurrentCameraDeviceId, setCurrentMicrophoneDeviceId, setCurrentSpeakerDeviceId, setDisplayName, setLocalMediaOptions, setLocalMediaStream, setRoomKey, signalConnectionSlice, signalEvents, socketConnected, socketConnecting, socketDisconnected, socketReconnecting, spotlightsSlice, startAppListening, stopScreenshare, streamIdForClient, streamStatusUpdated, streamingSlice, toggleCameraEnabled, toggleLowDataModeEnabled, toggleMicrophoneEnabled, updateReportedValues, waitingParticipantsSlice };
|
package/dist/index.d.ts
CHANGED
|
@@ -1815,6 +1815,7 @@ declare const selectIsCloudRecording: (state: RootState) => boolean;
|
|
|
1815
1815
|
interface AppConfig {
|
|
1816
1816
|
isNodeSdk?: boolean;
|
|
1817
1817
|
isDialIn?: boolean;
|
|
1818
|
+
ignoreBreakoutGroups?: boolean;
|
|
1818
1819
|
displayName: string;
|
|
1819
1820
|
localMediaOptions?: LocalMediaOptions;
|
|
1820
1821
|
roomKey: string | null;
|
|
@@ -1826,6 +1827,7 @@ interface AppState {
|
|
|
1826
1827
|
isNodeSdk: boolean;
|
|
1827
1828
|
isActive: boolean;
|
|
1828
1829
|
isDialIn: boolean;
|
|
1830
|
+
ignoreBreakoutGroups: boolean;
|
|
1829
1831
|
roomUrl: string | null;
|
|
1830
1832
|
roomName: string | null;
|
|
1831
1833
|
displayName: string | null;
|
|
@@ -1839,6 +1841,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1839
1841
|
isNodeSdk: boolean;
|
|
1840
1842
|
isActive: boolean;
|
|
1841
1843
|
isDialIn: boolean;
|
|
1844
|
+
ignoreBreakoutGroups: boolean;
|
|
1842
1845
|
roomUrl: string | null;
|
|
1843
1846
|
roomName: string | null;
|
|
1844
1847
|
displayName: string | null;
|
|
@@ -1847,6 +1850,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1847
1850
|
initialConfig?: {
|
|
1848
1851
|
isNodeSdk?: boolean | undefined;
|
|
1849
1852
|
isDialIn?: boolean | undefined;
|
|
1853
|
+
ignoreBreakoutGroups?: boolean | undefined;
|
|
1850
1854
|
displayName: string;
|
|
1851
1855
|
localMediaOptions?: {
|
|
1852
1856
|
audio: boolean;
|
|
@@ -1862,6 +1866,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1862
1866
|
initialConfig: {
|
|
1863
1867
|
isNodeSdk?: boolean | undefined;
|
|
1864
1868
|
isDialIn?: boolean | undefined;
|
|
1869
|
+
ignoreBreakoutGroups?: boolean | undefined;
|
|
1865
1870
|
displayName: string;
|
|
1866
1871
|
localMediaOptions?: LocalMediaOptions | undefined;
|
|
1867
1872
|
roomKey: string | null;
|
|
@@ -1872,6 +1877,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1872
1877
|
isActive: true;
|
|
1873
1878
|
isNodeSdk: boolean;
|
|
1874
1879
|
isDialIn: boolean;
|
|
1880
|
+
ignoreBreakoutGroups: boolean;
|
|
1875
1881
|
displayName: string;
|
|
1876
1882
|
localMediaOptions?: LocalMediaOptions | undefined;
|
|
1877
1883
|
roomKey: string | null;
|
|
@@ -1883,6 +1889,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1883
1889
|
isNodeSdk: boolean;
|
|
1884
1890
|
isActive: boolean;
|
|
1885
1891
|
isDialIn: boolean;
|
|
1892
|
+
ignoreBreakoutGroups: boolean;
|
|
1886
1893
|
roomUrl: string | null;
|
|
1887
1894
|
roomName: string | null;
|
|
1888
1895
|
displayName: string | null;
|
|
@@ -1891,6 +1898,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1891
1898
|
initialConfig?: {
|
|
1892
1899
|
isNodeSdk?: boolean | undefined;
|
|
1893
1900
|
isDialIn?: boolean | undefined;
|
|
1901
|
+
ignoreBreakoutGroups?: boolean | undefined;
|
|
1894
1902
|
displayName: string;
|
|
1895
1903
|
localMediaOptions?: {
|
|
1896
1904
|
audio: boolean;
|
|
@@ -1905,6 +1913,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1905
1913
|
isActive: false;
|
|
1906
1914
|
isNodeSdk: boolean;
|
|
1907
1915
|
isDialIn: boolean;
|
|
1916
|
+
ignoreBreakoutGroups: boolean;
|
|
1908
1917
|
roomUrl: string | null;
|
|
1909
1918
|
roomName: string | null;
|
|
1910
1919
|
displayName: string | null;
|
|
@@ -1913,6 +1922,7 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
|
1913
1922
|
initialConfig?: {
|
|
1914
1923
|
isNodeSdk?: boolean | undefined;
|
|
1915
1924
|
isDialIn?: boolean | undefined;
|
|
1925
|
+
ignoreBreakoutGroups?: boolean | undefined;
|
|
1916
1926
|
displayName: string;
|
|
1917
1927
|
localMediaOptions?: {
|
|
1918
1928
|
audio: boolean;
|
|
@@ -1937,6 +1947,7 @@ declare const selectAppUserAgent: (state: RootState) => string | null;
|
|
|
1937
1947
|
declare const selectAppExternalId: (state: RootState) => string | null;
|
|
1938
1948
|
declare const selectAppIsNodeSdk: (state: RootState) => boolean;
|
|
1939
1949
|
declare const selectAppInitialConfig: (state: RootState) => AppConfig | undefined;
|
|
1950
|
+
declare const selectAppIgnoreBreakoutGroups: (state: RootState) => boolean;
|
|
1940
1951
|
|
|
1941
1952
|
interface AuthorizationState {
|
|
1942
1953
|
roomKey: string | null;
|
|
@@ -8685,7 +8696,7 @@ declare const selectStreamsToAccept: ((state: {
|
|
|
8685
8696
|
resultFunc: (resultFuncArgs_0: "inactive" | "ready" | "reconnecting", resultFuncArgs_1: RemoteParticipant[], resultFuncArgs_2: string, resultFuncArgs_3: {
|
|
8686
8697
|
clientId: string;
|
|
8687
8698
|
streamId: string;
|
|
8688
|
-
}[]) => {
|
|
8699
|
+
}[], resultFuncArgs_4: boolean) => {
|
|
8689
8700
|
clientId: string;
|
|
8690
8701
|
streamId: string;
|
|
8691
8702
|
state: StreamState;
|
|
@@ -8693,7 +8704,7 @@ declare const selectStreamsToAccept: ((state: {
|
|
|
8693
8704
|
memoizedResultFunc: ((resultFuncArgs_0: "inactive" | "ready" | "reconnecting", resultFuncArgs_1: RemoteParticipant[], resultFuncArgs_2: string, resultFuncArgs_3: {
|
|
8694
8705
|
clientId: string;
|
|
8695
8706
|
streamId: string;
|
|
8696
|
-
}[]) => {
|
|
8707
|
+
}[], resultFuncArgs_4: boolean) => {
|
|
8697
8708
|
clientId: string;
|
|
8698
8709
|
streamId: string;
|
|
8699
8710
|
state: StreamState;
|
|
@@ -8840,7 +8851,29 @@ declare const selectStreamsToAccept: ((state: {
|
|
|
8840
8851
|
}) => {
|
|
8841
8852
|
clientId: string;
|
|
8842
8853
|
streamId: string;
|
|
8843
|
-
}[]
|
|
8854
|
+
}[], (state: {
|
|
8855
|
+
app: AppState;
|
|
8856
|
+
authorization: AuthorizationState;
|
|
8857
|
+
breakout: BreakoutState;
|
|
8858
|
+
chat: ChatState;
|
|
8859
|
+
cloudRecording: CloudRecordingState;
|
|
8860
|
+
connectionMonitor: ConnectionMonitorState;
|
|
8861
|
+
deviceCredentials: DeviceCredentialsState;
|
|
8862
|
+
localMedia: LocalMediaState;
|
|
8863
|
+
localParticipant: LocalParticipantState;
|
|
8864
|
+
localScreenshare: LocalScreenshareState;
|
|
8865
|
+
notifications: NotificationsState;
|
|
8866
|
+
organization: OrganizationState;
|
|
8867
|
+
remoteParticipants: RemoteParticipantState;
|
|
8868
|
+
room: RoomState;
|
|
8869
|
+
roomConnection: RoomConnectionState;
|
|
8870
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
8871
|
+
rtcConnection: RtcConnectionState;
|
|
8872
|
+
signalConnection: SignalConnectionState;
|
|
8873
|
+
spotlights: SpotlightsState;
|
|
8874
|
+
streaming: StreamingState;
|
|
8875
|
+
waitingParticipants: WaitingParticipantsState;
|
|
8876
|
+
}) => boolean];
|
|
8844
8877
|
recomputations: () => number;
|
|
8845
8878
|
resetRecomputations: () => void;
|
|
8846
8879
|
dependencyRecomputations: () => number;
|
|
@@ -8987,6 +9020,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
8987
9020
|
isConnecting: () => any;
|
|
8988
9021
|
isConnected: () => any;
|
|
8989
9022
|
on: (eventName: string, handler: Function) => () => void;
|
|
9023
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
8990
9024
|
once: (eventName: string, handler: Function) => void;
|
|
8991
9025
|
off: (eventName: string, handler: Function) => void;
|
|
8992
9026
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9094,6 +9128,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9094
9128
|
isConnecting: () => any;
|
|
9095
9129
|
isConnected: () => any;
|
|
9096
9130
|
on: (eventName: string, handler: Function) => () => void;
|
|
9131
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9097
9132
|
once: (eventName: string, handler: Function) => void;
|
|
9098
9133
|
off: (eventName: string, handler: Function) => void;
|
|
9099
9134
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9202,6 +9237,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9202
9237
|
isConnecting: () => any;
|
|
9203
9238
|
isConnected: () => any;
|
|
9204
9239
|
on: (eventName: string, handler: Function) => () => void;
|
|
9240
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9205
9241
|
once: (eventName: string, handler: Function) => void;
|
|
9206
9242
|
off: (eventName: string, handler: Function) => void;
|
|
9207
9243
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9315,6 +9351,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9315
9351
|
isConnecting: () => any;
|
|
9316
9352
|
isConnected: () => any;
|
|
9317
9353
|
on: (eventName: string, handler: Function) => () => void;
|
|
9354
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9318
9355
|
once: (eventName: string, handler: Function) => void;
|
|
9319
9356
|
off: (eventName: string, handler: Function) => void;
|
|
9320
9357
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9428,6 +9465,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9428
9465
|
isConnecting: () => any;
|
|
9429
9466
|
isConnected: () => any;
|
|
9430
9467
|
on: (eventName: string, handler: Function) => () => void;
|
|
9468
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9431
9469
|
once: (eventName: string, handler: Function) => void;
|
|
9432
9470
|
off: (eventName: string, handler: Function) => void;
|
|
9433
9471
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9535,6 +9573,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9535
9573
|
isConnecting: () => any;
|
|
9536
9574
|
isConnected: () => any;
|
|
9537
9575
|
on: (eventName: string, handler: Function) => () => void;
|
|
9576
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9538
9577
|
once: (eventName: string, handler: Function) => void;
|
|
9539
9578
|
off: (eventName: string, handler: Function) => void;
|
|
9540
9579
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9643,6 +9682,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9643
9682
|
isConnecting: () => any;
|
|
9644
9683
|
isConnected: () => any;
|
|
9645
9684
|
on: (eventName: string, handler: Function) => () => void;
|
|
9685
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9646
9686
|
once: (eventName: string, handler: Function) => void;
|
|
9647
9687
|
off: (eventName: string, handler: Function) => void;
|
|
9648
9688
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9750,6 +9790,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9750
9790
|
isConnecting: () => any;
|
|
9751
9791
|
isConnected: () => any;
|
|
9752
9792
|
on: (eventName: string, handler: Function) => () => void;
|
|
9793
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9753
9794
|
once: (eventName: string, handler: Function) => void;
|
|
9754
9795
|
off: (eventName: string, handler: Function) => void;
|
|
9755
9796
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9858,6 +9899,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9858
9899
|
isConnecting: () => any;
|
|
9859
9900
|
isConnected: () => any;
|
|
9860
9901
|
on: (eventName: string, handler: Function) => () => void;
|
|
9902
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9861
9903
|
once: (eventName: string, handler: Function) => void;
|
|
9862
9904
|
off: (eventName: string, handler: Function) => void;
|
|
9863
9905
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -9965,6 +10007,7 @@ declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionStat
|
|
|
9965
10007
|
isConnecting: () => any;
|
|
9966
10008
|
isConnected: () => any;
|
|
9967
10009
|
on: (eventName: string, handler: Function) => () => void;
|
|
10010
|
+
onEngineEvent: (eventName: string, handler: Function) => () => void;
|
|
9968
10011
|
once: (eventName: string, handler: Function) => void;
|
|
9969
10012
|
off: (eventName: string, handler: Function) => void;
|
|
9970
10013
|
_interceptEvent: (eventName: string, handler: any) => () => void;
|
|
@@ -11042,4 +11085,4 @@ declare function getFakeMediaStream({ canvas, hasAudio }: {
|
|
|
11042
11085
|
|
|
11043
11086
|
declare function parseUnverifiedRoomKeyData(roomKey: string): any;
|
|
11044
11087
|
|
|
11045
|
-
export { ApiClient, type AppConfig, type AppDispatch, type AppReducer, type AppStartListening, type AppState, type AppThunk, type AuthorizationState, type BreakoutState, type ChatMessage, type ChatMessageEvent, type ChatMessageEventProps, type ChatState, type ClientView, type CloudRecordingState, type ConnectionMonitorStart, type ConnectionMonitorState, type ConnectionStatus, Credentials, CredentialsService, type DeviceCredentialsState, type FullOrganizationPermissions, type LocalMediaOptions, type LocalMediaState, LocalParticipant, type LocalParticipantState, type LocalScreenshareState, type Notification, type NotificationEvent, type NotificationEventMap, type NotificationEvents, type NotificationsEventEmitter, type NotificationsState, OrganizationApiClient, type OrganizationLimits, type OrganizationOnboardingSurvey, type OrganizationPermissionAction, type OrganizationPermissions, type OrganizationPreferences, OrganizationService, OrganizationServiceCache, type OrganizationState, type RemoteParticipant, type RemoteParticipantData, type RemoteParticipantState, type RequestAudioEvent, type RequestAudioEventProps, type RequestVideoEvent, type RequestVideoEventProps, type RoomConnectionState, RoomService, type RoomState, type RootState, type RtcConnectionState, type Screenshare, type SignalClientEvent, type SignalClientEventProps, type SignalConnectionState, type SignalStatusEvent, type SignalStatusEventProps, type SpotlightsState, type StickyReaction, type StickyReactionEvent, type StickyReactionEventProps, type Store, type StreamState, type StreamingState, type ThunkConfig, type WaitingParticipant, type WaitingParticipantsState, addAppListener, addSpotlight, appSlice, authorizationSlice, breakoutSlice, chatSlice, cloudRecordingSlice, connectionMonitorSlice, connectionMonitorStarted, connectionMonitorStopped, createAppAsyncThunk, createAppAuthorizedThunk, createAppThunk, createAsyncRoomConnectedThunk, createAuthorizedRoomConnectedThunk, createReactor, createRemoteParticipant, createRoomConnectedThunk, createServices, createStore, createWebRtcEmitter, debounce, deviceBusy, deviceCredentialsSlice, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doBreakoutJoin, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLockRoom, doOrganizationFetch, doRejectWaitingParticipant, doRemoveSpotlight, doRequestAudioEnable, doRequestVideoEnable, doRtcAnalyticsCustomEventsInitialize, doRtcManagerCreated, doRtcManagerInitialize, doRtcReportStreamResolution, doSendChatMessage, doSendClientMetadata, doSetDevice, doSetDisplayName, doSetLocalStickyReaction, doSetNotification, doSignalConnect, doSignalDisconnect, doSignalIdentifyDevice, doSpotlightParticipant, doStartCloudRecording, doStartConnectionMonitor, doStartLocalMedia, doStartScreenshare, doStopCloudRecording, doStopConnectionMonitor, doStopLocalMedia, doStopScreenshare, doSwitchLocalStream, doToggleCamera, doToggleLowDataMode, doUpdateDeviceList, getAudioTrack, getFakeMediaStream, getVideoTrack, hasValue, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, initialState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localScreenshareSlice, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, parseUnverifiedRoomKeyData, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, removeSpotlight, resolutionReported, roomConnectionSlice, roomSlice, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, type rtcAnalyticsState, rtcClientConnectionStatusChanged, rtcConnectionSlice, rtcDisconnected, rtcDispatcherCreated, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAllClientViewsInCurrentGroup, selectAppDisplayName, selectAppExternalId, selectAppInitialConfig, selectAppIsActive, selectAppIsDialIn, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAuthorizationRoleName, selectBreakoutActive, selectBreakoutAssignments, selectBreakoutCurrentGroup, selectBreakoutCurrentId, selectBreakoutGroupedParticipants, selectBreakoutGroups, selectBreakoutInitiatedBy, selectBreakoutRaw, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingRaw, selectCloudRecordingStartedAt, selectCloudRecordingStatus, selectConnectionMonitorIsRunning, selectCurrentCameraDeviceId, selectCurrentMicrophoneDeviceId, selectCurrentSpeakerDeviceId, selectDeviceCredentialsRaw, selectDeviceId, selectHasFetchedDeviceCredentials, selectIsAcceptingStreams, selectIsAuthorizedToAskToSpeak, selectIsAuthorizedToEndMeeting, selectIsAuthorizedToKickClient, selectIsAuthorizedToLockRoom, selectIsAuthorizedToRequestAudioEnable, selectIsAuthorizedToRequestVideoEnable, selectIsAuthorizedToSpotlight, selectIsCameraEnabled, selectIsCloudRecording, selectIsLocalMediaStarting, selectIsLocalParticipantSpotlighted, selectIsLowDataModeEnabled, selectIsMicrophoneEnabled, selectIsSettingCameraDevice, selectIsSettingMicrophoneDevice, selectIsToggleCamera, selectLocalMediaConstraintsOptions, selectLocalMediaDevices, selectLocalMediaIsSwitchingStream, selectLocalMediaOptions, selectLocalMediaOwnsStream, selectLocalMediaRaw, selectLocalMediaShouldStartWithOptions, selectLocalMediaShouldStop, selectLocalMediaStartError, selectLocalMediaStatus, selectLocalMediaStream, selectLocalParticipantBreakoutAssigned, selectLocalParticipantBreakoutGroup, 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, setBreakoutGroupAssigned, setCurrentCameraDeviceId, setCurrentMicrophoneDeviceId, setCurrentSpeakerDeviceId, setDisplayName, setLocalMediaOptions, setLocalMediaStream, setRoomKey, signalConnectionSlice, signalEvents, socketConnected, socketConnecting, socketDisconnected, socketReconnecting, spotlightsSlice, startAppListening, stopScreenshare, streamIdForClient, streamStatusUpdated, streamingSlice, toggleCameraEnabled, toggleLowDataModeEnabled, toggleMicrophoneEnabled, updateReportedValues, waitingParticipantsSlice };
|
|
11088
|
+
export { ApiClient, type AppConfig, type AppDispatch, type AppReducer, type AppStartListening, type AppState, type AppThunk, type AuthorizationState, type BreakoutState, type ChatMessage, type ChatMessageEvent, type ChatMessageEventProps, type ChatState, type ClientView, type CloudRecordingState, type ConnectionMonitorStart, type ConnectionMonitorState, type ConnectionStatus, Credentials, CredentialsService, type DeviceCredentialsState, type FullOrganizationPermissions, type LocalMediaOptions, type LocalMediaState, LocalParticipant, type LocalParticipantState, type LocalScreenshareState, type Notification, type NotificationEvent, type NotificationEventMap, type NotificationEvents, type NotificationsEventEmitter, type NotificationsState, OrganizationApiClient, type OrganizationLimits, type OrganizationOnboardingSurvey, type OrganizationPermissionAction, type OrganizationPermissions, type OrganizationPreferences, OrganizationService, OrganizationServiceCache, type OrganizationState, type RemoteParticipant, type RemoteParticipantData, type RemoteParticipantState, type RequestAudioEvent, type RequestAudioEventProps, type RequestVideoEvent, type RequestVideoEventProps, type RoomConnectionState, RoomService, type RoomState, type RootState, type RtcConnectionState, type Screenshare, type SignalClientEvent, type SignalClientEventProps, type SignalConnectionState, type SignalStatusEvent, type SignalStatusEventProps, type SpotlightsState, type StickyReaction, type StickyReactionEvent, type StickyReactionEventProps, type Store, type StreamState, type StreamingState, type ThunkConfig, type WaitingParticipant, type WaitingParticipantsState, addAppListener, addSpotlight, appSlice, authorizationSlice, breakoutSlice, chatSlice, cloudRecordingSlice, connectionMonitorSlice, connectionMonitorStarted, connectionMonitorStopped, createAppAsyncThunk, createAppAuthorizedThunk, createAppThunk, createAsyncRoomConnectedThunk, createAuthorizedRoomConnectedThunk, createReactor, createRemoteParticipant, createRoomConnectedThunk, createServices, createStore, createWebRtcEmitter, debounce, deviceBusy, deviceCredentialsSlice, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doBreakoutJoin, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLockRoom, doOrganizationFetch, doRejectWaitingParticipant, doRemoveSpotlight, doRequestAudioEnable, doRequestVideoEnable, doRtcAnalyticsCustomEventsInitialize, doRtcManagerCreated, doRtcManagerInitialize, doRtcReportStreamResolution, doSendChatMessage, doSendClientMetadata, doSetDevice, doSetDisplayName, doSetLocalStickyReaction, doSetNotification, doSignalConnect, doSignalDisconnect, doSignalIdentifyDevice, doSpotlightParticipant, doStartCloudRecording, doStartConnectionMonitor, doStartLocalMedia, doStartScreenshare, doStopCloudRecording, doStopConnectionMonitor, doStopLocalMedia, doStopScreenshare, doSwitchLocalStream, doToggleCamera, doToggleLowDataMode, doUpdateDeviceList, getAudioTrack, getFakeMediaStream, getVideoTrack, hasValue, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, initialState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localScreenshareSlice, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, parseUnverifiedRoomKeyData, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, removeSpotlight, resolutionReported, roomConnectionSlice, roomSlice, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, type rtcAnalyticsState, rtcClientConnectionStatusChanged, rtcConnectionSlice, rtcDisconnected, rtcDispatcherCreated, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAllClientViewsInCurrentGroup, selectAppDisplayName, selectAppExternalId, selectAppIgnoreBreakoutGroups, selectAppInitialConfig, selectAppIsActive, selectAppIsDialIn, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAuthorizationRoleName, selectBreakoutActive, selectBreakoutAssignments, selectBreakoutCurrentGroup, selectBreakoutCurrentId, selectBreakoutGroupedParticipants, selectBreakoutGroups, selectBreakoutInitiatedBy, selectBreakoutRaw, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingRaw, selectCloudRecordingStartedAt, selectCloudRecordingStatus, selectConnectionMonitorIsRunning, selectCurrentCameraDeviceId, selectCurrentMicrophoneDeviceId, selectCurrentSpeakerDeviceId, selectDeviceCredentialsRaw, selectDeviceId, selectHasFetchedDeviceCredentials, selectIsAcceptingStreams, selectIsAuthorizedToAskToSpeak, selectIsAuthorizedToEndMeeting, selectIsAuthorizedToKickClient, selectIsAuthorizedToLockRoom, selectIsAuthorizedToRequestAudioEnable, selectIsAuthorizedToRequestVideoEnable, selectIsAuthorizedToSpotlight, selectIsCameraEnabled, selectIsCloudRecording, selectIsLocalMediaStarting, selectIsLocalParticipantSpotlighted, selectIsLowDataModeEnabled, selectIsMicrophoneEnabled, selectIsSettingCameraDevice, selectIsSettingMicrophoneDevice, selectIsToggleCamera, selectLocalMediaConstraintsOptions, selectLocalMediaDevices, selectLocalMediaIsSwitchingStream, selectLocalMediaOptions, selectLocalMediaOwnsStream, selectLocalMediaRaw, selectLocalMediaShouldStartWithOptions, selectLocalMediaShouldStop, selectLocalMediaStartError, selectLocalMediaStatus, selectLocalMediaStream, selectLocalParticipantBreakoutAssigned, selectLocalParticipantBreakoutGroup, 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, setBreakoutGroupAssigned, setCurrentCameraDeviceId, setCurrentMicrophoneDeviceId, setCurrentSpeakerDeviceId, setDisplayName, setLocalMediaOptions, setLocalMediaStream, setRoomKey, signalConnectionSlice, signalEvents, socketConnected, socketConnecting, socketDisconnected, socketReconnecting, spotlightsSlice, startAppListening, stopScreenshare, streamIdForClient, streamStatusUpdated, streamingSlice, toggleCameraEnabled, toggleLowDataModeEnabled, toggleMicrophoneEnabled, updateReportedValues, waitingParticipantsSlice };
|
package/dist/index.mjs
CHANGED
|
@@ -73,12 +73,13 @@ const createReactor = (selectors, callback) => {
|
|
|
73
73
|
});
|
|
74
74
|
};
|
|
75
75
|
|
|
76
|
-
const coreVersion = "0.32.
|
|
76
|
+
const coreVersion = "0.32.4";
|
|
77
77
|
|
|
78
78
|
const initialState$h = {
|
|
79
79
|
isNodeSdk: false,
|
|
80
80
|
isActive: false,
|
|
81
81
|
isDialIn: false,
|
|
82
|
+
ignoreBreakoutGroups: false,
|
|
82
83
|
roomName: null,
|
|
83
84
|
roomUrl: null,
|
|
84
85
|
displayName: null,
|
|
@@ -109,6 +110,7 @@ const selectAppUserAgent = (state) => state.app.userAgent;
|
|
|
109
110
|
const selectAppExternalId = (state) => state.app.externalId;
|
|
110
111
|
const selectAppIsNodeSdk = (state) => state.app.isNodeSdk;
|
|
111
112
|
const selectAppInitialConfig = (state) => state.app.initialConfig;
|
|
113
|
+
const selectAppIgnoreBreakoutGroups = (state) => state.app.ignoreBreakoutGroups;
|
|
112
114
|
|
|
113
115
|
function createSignalEventAction(name) {
|
|
114
116
|
return createAction(`signalConnection/event/${name}`);
|
|
@@ -2068,7 +2070,7 @@ createReactor([selectShouldDisconnectRtc], ({ dispatch }, shouldDisconnectRtc) =
|
|
|
2068
2070
|
dispatch(doDisconnectRtc());
|
|
2069
2071
|
}
|
|
2070
2072
|
});
|
|
2071
|
-
const selectStreamsToAccept = createSelector(selectRtcStatus, selectRemoteClients, selectBreakoutCurrentId, selectSpotlights, (rtcStatus, remoteParticipants, breakoutCurrentId, spotlights) => {
|
|
2073
|
+
const selectStreamsToAccept = createSelector(selectRtcStatus, selectRemoteClients, selectBreakoutCurrentId, selectSpotlights, selectAppIgnoreBreakoutGroups, (rtcStatus, remoteParticipants, breakoutCurrentId, spotlights, ignoreBreakoutGroups) => {
|
|
2072
2074
|
if (rtcStatus !== "ready") {
|
|
2073
2075
|
return [];
|
|
2074
2076
|
}
|
|
@@ -2091,7 +2093,8 @@ const selectStreamsToAccept = createSelector(selectRtcStatus, selectRemoteClient
|
|
|
2091
2093
|
}
|
|
2092
2094
|
if ((!client.breakoutGroup && !breakoutCurrentId) ||
|
|
2093
2095
|
client.breakoutGroup === breakoutCurrentId ||
|
|
2094
|
-
("" === client.breakoutGroup && clientSpotlight)
|
|
2096
|
+
("" === client.breakoutGroup && clientSpotlight) ||
|
|
2097
|
+
ignoreBreakoutGroups) {
|
|
2095
2098
|
if (state === "done_accept")
|
|
2096
2099
|
continue;
|
|
2097
2100
|
upd.push({
|
|
@@ -4066,4 +4069,4 @@ function createServices() {
|
|
|
4066
4069
|
};
|
|
4067
4070
|
}
|
|
4068
4071
|
|
|
4069
|
-
export { ApiClient, Credentials, CredentialsService, LocalParticipant, OrganizationApiClient, OrganizationService, OrganizationServiceCache, RoomService, addAppListener, addSpotlight, appSlice, authorizationSlice, breakoutSlice, chatSlice, cloudRecordingSlice, connectionMonitorSlice, connectionMonitorStarted, connectionMonitorStopped, createAppAsyncThunk, createAppAuthorizedThunk, createAppThunk, createAsyncRoomConnectedThunk, createAuthorizedRoomConnectedThunk, createReactor, createRemoteParticipant, createRoomConnectedThunk, createServices, createStore, createWebRtcEmitter, debounce, deviceBusy, deviceCredentialsSlice, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doBreakoutJoin, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLockRoom, doOrganizationFetch, doRejectWaitingParticipant, doRemoveSpotlight, doRequestAudioEnable, doRequestVideoEnable, doRtcAnalyticsCustomEventsInitialize, doRtcManagerCreated, doRtcManagerInitialize, doRtcReportStreamResolution, doSendChatMessage, doSendClientMetadata, doSetDevice, doSetDisplayName, doSetLocalStickyReaction, doSetNotification, doSignalConnect, doSignalDisconnect, doSignalIdentifyDevice, doSpotlightParticipant, doStartCloudRecording, doStartConnectionMonitor, doStartLocalMedia, doStartScreenshare, doStopCloudRecording, doStopConnectionMonitor, doStopLocalMedia, doStopScreenshare, doSwitchLocalStream, doToggleCamera, doToggleLowDataMode, doUpdateDeviceList, getAudioTrack, getFakeMediaStream, getVideoTrack, hasValue, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, initialState$h as initialState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localScreenshareSlice, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, parseUnverifiedRoomKeyData, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, removeSpotlight, resolutionReported, roomConnectionSlice, roomSlice, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, rtcClientConnectionStatusChanged, rtcConnectionSlice, rtcDisconnected, rtcDispatcherCreated, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAllClientViewsInCurrentGroup, selectAppDisplayName, selectAppExternalId, selectAppInitialConfig, selectAppIsActive, selectAppIsDialIn, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAuthorizationRoleName, selectBreakoutActive, selectBreakoutAssignments, selectBreakoutCurrentGroup, selectBreakoutCurrentId, selectBreakoutGroupedParticipants, selectBreakoutGroups, selectBreakoutInitiatedBy, selectBreakoutRaw, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingRaw, selectCloudRecordingStartedAt, selectCloudRecordingStatus, selectConnectionMonitorIsRunning, selectCurrentCameraDeviceId, selectCurrentMicrophoneDeviceId, selectCurrentSpeakerDeviceId, selectDeviceCredentialsRaw, selectDeviceId, selectHasFetchedDeviceCredentials, selectIsAcceptingStreams, selectIsAuthorizedToAskToSpeak, selectIsAuthorizedToEndMeeting, selectIsAuthorizedToKickClient, selectIsAuthorizedToLockRoom, selectIsAuthorizedToRequestAudioEnable, selectIsAuthorizedToRequestVideoEnable, selectIsAuthorizedToSpotlight, selectIsCameraEnabled, selectIsCloudRecording, selectIsLocalMediaStarting, selectIsLocalParticipantSpotlighted, selectIsLowDataModeEnabled, selectIsMicrophoneEnabled, selectIsSettingCameraDevice, selectIsSettingMicrophoneDevice, selectIsToggleCamera, selectLocalMediaConstraintsOptions, selectLocalMediaDevices, selectLocalMediaIsSwitchingStream, selectLocalMediaOptions, selectLocalMediaOwnsStream, selectLocalMediaRaw, selectLocalMediaShouldStartWithOptions, selectLocalMediaShouldStop, selectLocalMediaStartError, selectLocalMediaStatus, selectLocalMediaStream, selectLocalParticipantBreakoutAssigned, selectLocalParticipantBreakoutGroup, 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, setBreakoutGroupAssigned, setCurrentCameraDeviceId, setCurrentMicrophoneDeviceId, setCurrentSpeakerDeviceId, setDisplayName, setLocalMediaOptions, setLocalMediaStream, setRoomKey, signalConnectionSlice, signalEvents, socketConnected, socketConnecting, socketDisconnected, socketReconnecting, spotlightsSlice, startAppListening, stopScreenshare, streamIdForClient, streamStatusUpdated, streamingSlice, toggleCameraEnabled, toggleLowDataModeEnabled, toggleMicrophoneEnabled, updateReportedValues, waitingParticipantsSlice };
|
|
4072
|
+
export { ApiClient, Credentials, CredentialsService, LocalParticipant, OrganizationApiClient, OrganizationService, OrganizationServiceCache, RoomService, addAppListener, addSpotlight, appSlice, authorizationSlice, breakoutSlice, chatSlice, cloudRecordingSlice, connectionMonitorSlice, connectionMonitorStarted, connectionMonitorStopped, createAppAsyncThunk, createAppAuthorizedThunk, createAppThunk, createAsyncRoomConnectedThunk, createAuthorizedRoomConnectedThunk, createReactor, createRemoteParticipant, createRoomConnectedThunk, createServices, createStore, createWebRtcEmitter, debounce, deviceBusy, deviceCredentialsSlice, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doBreakoutJoin, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLockRoom, doOrganizationFetch, doRejectWaitingParticipant, doRemoveSpotlight, doRequestAudioEnable, doRequestVideoEnable, doRtcAnalyticsCustomEventsInitialize, doRtcManagerCreated, doRtcManagerInitialize, doRtcReportStreamResolution, doSendChatMessage, doSendClientMetadata, doSetDevice, doSetDisplayName, doSetLocalStickyReaction, doSetNotification, doSignalConnect, doSignalDisconnect, doSignalIdentifyDevice, doSpotlightParticipant, doStartCloudRecording, doStartConnectionMonitor, doStartLocalMedia, doStartScreenshare, doStopCloudRecording, doStopConnectionMonitor, doStopLocalMedia, doStopScreenshare, doSwitchLocalStream, doToggleCamera, doToggleLowDataMode, doUpdateDeviceList, getAudioTrack, getFakeMediaStream, getVideoTrack, hasValue, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, initialState$h as initialState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localScreenshareSlice, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, parseUnverifiedRoomKeyData, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, removeSpotlight, resolutionReported, roomConnectionSlice, roomSlice, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, rtcClientConnectionStatusChanged, rtcConnectionSlice, rtcDisconnected, rtcDispatcherCreated, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAllClientViewsInCurrentGroup, selectAppDisplayName, selectAppExternalId, selectAppIgnoreBreakoutGroups, selectAppInitialConfig, selectAppIsActive, selectAppIsDialIn, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAuthorizationRoleName, selectBreakoutActive, selectBreakoutAssignments, selectBreakoutCurrentGroup, selectBreakoutCurrentId, selectBreakoutGroupedParticipants, selectBreakoutGroups, selectBreakoutInitiatedBy, selectBreakoutRaw, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingRaw, selectCloudRecordingStartedAt, selectCloudRecordingStatus, selectConnectionMonitorIsRunning, selectCurrentCameraDeviceId, selectCurrentMicrophoneDeviceId, selectCurrentSpeakerDeviceId, selectDeviceCredentialsRaw, selectDeviceId, selectHasFetchedDeviceCredentials, selectIsAcceptingStreams, selectIsAuthorizedToAskToSpeak, selectIsAuthorizedToEndMeeting, selectIsAuthorizedToKickClient, selectIsAuthorizedToLockRoom, selectIsAuthorizedToRequestAudioEnable, selectIsAuthorizedToRequestVideoEnable, selectIsAuthorizedToSpotlight, selectIsCameraEnabled, selectIsCloudRecording, selectIsLocalMediaStarting, selectIsLocalParticipantSpotlighted, selectIsLowDataModeEnabled, selectIsMicrophoneEnabled, selectIsSettingCameraDevice, selectIsSettingMicrophoneDevice, selectIsToggleCamera, selectLocalMediaConstraintsOptions, selectLocalMediaDevices, selectLocalMediaIsSwitchingStream, selectLocalMediaOptions, selectLocalMediaOwnsStream, selectLocalMediaRaw, selectLocalMediaShouldStartWithOptions, selectLocalMediaShouldStop, selectLocalMediaStartError, selectLocalMediaStatus, selectLocalMediaStream, selectLocalParticipantBreakoutAssigned, selectLocalParticipantBreakoutGroup, 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, setBreakoutGroupAssigned, setCurrentCameraDeviceId, setCurrentMicrophoneDeviceId, setCurrentSpeakerDeviceId, setDisplayName, setLocalMediaOptions, setLocalMediaStream, setRoomKey, signalConnectionSlice, signalEvents, socketConnected, socketConnecting, socketDisconnected, socketReconnecting, spotlightsSlice, startAppListening, stopScreenshare, streamIdForClient, streamStatusUpdated, streamingSlice, toggleCameraEnabled, toggleLowDataModeEnabled, toggleMicrophoneEnabled, updateReportedValues, waitingParticipantsSlice };
|
package/dist/legacy-esm.js
CHANGED
|
@@ -73,12 +73,13 @@ const createReactor = (selectors, callback) => {
|
|
|
73
73
|
});
|
|
74
74
|
};
|
|
75
75
|
|
|
76
|
-
const coreVersion = "0.32.
|
|
76
|
+
const coreVersion = "0.32.4";
|
|
77
77
|
|
|
78
78
|
const initialState$h = {
|
|
79
79
|
isNodeSdk: false,
|
|
80
80
|
isActive: false,
|
|
81
81
|
isDialIn: false,
|
|
82
|
+
ignoreBreakoutGroups: false,
|
|
82
83
|
roomName: null,
|
|
83
84
|
roomUrl: null,
|
|
84
85
|
displayName: null,
|
|
@@ -109,6 +110,7 @@ const selectAppUserAgent = (state) => state.app.userAgent;
|
|
|
109
110
|
const selectAppExternalId = (state) => state.app.externalId;
|
|
110
111
|
const selectAppIsNodeSdk = (state) => state.app.isNodeSdk;
|
|
111
112
|
const selectAppInitialConfig = (state) => state.app.initialConfig;
|
|
113
|
+
const selectAppIgnoreBreakoutGroups = (state) => state.app.ignoreBreakoutGroups;
|
|
112
114
|
|
|
113
115
|
function createSignalEventAction(name) {
|
|
114
116
|
return createAction(`signalConnection/event/${name}`);
|
|
@@ -2068,7 +2070,7 @@ createReactor([selectShouldDisconnectRtc], ({ dispatch }, shouldDisconnectRtc) =
|
|
|
2068
2070
|
dispatch(doDisconnectRtc());
|
|
2069
2071
|
}
|
|
2070
2072
|
});
|
|
2071
|
-
const selectStreamsToAccept = createSelector(selectRtcStatus, selectRemoteClients, selectBreakoutCurrentId, selectSpotlights, (rtcStatus, remoteParticipants, breakoutCurrentId, spotlights) => {
|
|
2073
|
+
const selectStreamsToAccept = createSelector(selectRtcStatus, selectRemoteClients, selectBreakoutCurrentId, selectSpotlights, selectAppIgnoreBreakoutGroups, (rtcStatus, remoteParticipants, breakoutCurrentId, spotlights, ignoreBreakoutGroups) => {
|
|
2072
2074
|
if (rtcStatus !== "ready") {
|
|
2073
2075
|
return [];
|
|
2074
2076
|
}
|
|
@@ -2091,7 +2093,8 @@ const selectStreamsToAccept = createSelector(selectRtcStatus, selectRemoteClient
|
|
|
2091
2093
|
}
|
|
2092
2094
|
if ((!client.breakoutGroup && !breakoutCurrentId) ||
|
|
2093
2095
|
client.breakoutGroup === breakoutCurrentId ||
|
|
2094
|
-
("" === client.breakoutGroup && clientSpotlight)
|
|
2096
|
+
("" === client.breakoutGroup && clientSpotlight) ||
|
|
2097
|
+
ignoreBreakoutGroups) {
|
|
2095
2098
|
if (state === "done_accept")
|
|
2096
2099
|
continue;
|
|
2097
2100
|
upd.push({
|
|
@@ -4066,4 +4069,4 @@ function createServices() {
|
|
|
4066
4069
|
};
|
|
4067
4070
|
}
|
|
4068
4071
|
|
|
4069
|
-
export { ApiClient, Credentials, CredentialsService, LocalParticipant, OrganizationApiClient, OrganizationService, OrganizationServiceCache, RoomService, addAppListener, addSpotlight, appSlice, authorizationSlice, breakoutSlice, chatSlice, cloudRecordingSlice, connectionMonitorSlice, connectionMonitorStarted, connectionMonitorStopped, createAppAsyncThunk, createAppAuthorizedThunk, createAppThunk, createAsyncRoomConnectedThunk, createAuthorizedRoomConnectedThunk, createReactor, createRemoteParticipant, createRoomConnectedThunk, createServices, createStore, createWebRtcEmitter, debounce, deviceBusy, deviceCredentialsSlice, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doBreakoutJoin, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLockRoom, doOrganizationFetch, doRejectWaitingParticipant, doRemoveSpotlight, doRequestAudioEnable, doRequestVideoEnable, doRtcAnalyticsCustomEventsInitialize, doRtcManagerCreated, doRtcManagerInitialize, doRtcReportStreamResolution, doSendChatMessage, doSendClientMetadata, doSetDevice, doSetDisplayName, doSetLocalStickyReaction, doSetNotification, doSignalConnect, doSignalDisconnect, doSignalIdentifyDevice, doSpotlightParticipant, doStartCloudRecording, doStartConnectionMonitor, doStartLocalMedia, doStartScreenshare, doStopCloudRecording, doStopConnectionMonitor, doStopLocalMedia, doStopScreenshare, doSwitchLocalStream, doToggleCamera, doToggleLowDataMode, doUpdateDeviceList, getAudioTrack, getFakeMediaStream, getVideoTrack, hasValue, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, initialState$h as initialState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localScreenshareSlice, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, parseUnverifiedRoomKeyData, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, removeSpotlight, resolutionReported, roomConnectionSlice, roomSlice, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, rtcClientConnectionStatusChanged, rtcConnectionSlice, rtcDisconnected, rtcDispatcherCreated, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAllClientViewsInCurrentGroup, selectAppDisplayName, selectAppExternalId, selectAppInitialConfig, selectAppIsActive, selectAppIsDialIn, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAuthorizationRoleName, selectBreakoutActive, selectBreakoutAssignments, selectBreakoutCurrentGroup, selectBreakoutCurrentId, selectBreakoutGroupedParticipants, selectBreakoutGroups, selectBreakoutInitiatedBy, selectBreakoutRaw, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingRaw, selectCloudRecordingStartedAt, selectCloudRecordingStatus, selectConnectionMonitorIsRunning, selectCurrentCameraDeviceId, selectCurrentMicrophoneDeviceId, selectCurrentSpeakerDeviceId, selectDeviceCredentialsRaw, selectDeviceId, selectHasFetchedDeviceCredentials, selectIsAcceptingStreams, selectIsAuthorizedToAskToSpeak, selectIsAuthorizedToEndMeeting, selectIsAuthorizedToKickClient, selectIsAuthorizedToLockRoom, selectIsAuthorizedToRequestAudioEnable, selectIsAuthorizedToRequestVideoEnable, selectIsAuthorizedToSpotlight, selectIsCameraEnabled, selectIsCloudRecording, selectIsLocalMediaStarting, selectIsLocalParticipantSpotlighted, selectIsLowDataModeEnabled, selectIsMicrophoneEnabled, selectIsSettingCameraDevice, selectIsSettingMicrophoneDevice, selectIsToggleCamera, selectLocalMediaConstraintsOptions, selectLocalMediaDevices, selectLocalMediaIsSwitchingStream, selectLocalMediaOptions, selectLocalMediaOwnsStream, selectLocalMediaRaw, selectLocalMediaShouldStartWithOptions, selectLocalMediaShouldStop, selectLocalMediaStartError, selectLocalMediaStatus, selectLocalMediaStream, selectLocalParticipantBreakoutAssigned, selectLocalParticipantBreakoutGroup, 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, setBreakoutGroupAssigned, setCurrentCameraDeviceId, setCurrentMicrophoneDeviceId, setCurrentSpeakerDeviceId, setDisplayName, setLocalMediaOptions, setLocalMediaStream, setRoomKey, signalConnectionSlice, signalEvents, socketConnected, socketConnecting, socketDisconnected, socketReconnecting, spotlightsSlice, startAppListening, stopScreenshare, streamIdForClient, streamStatusUpdated, streamingSlice, toggleCameraEnabled, toggleLowDataModeEnabled, toggleMicrophoneEnabled, updateReportedValues, waitingParticipantsSlice };
|
|
4072
|
+
export { ApiClient, Credentials, CredentialsService, LocalParticipant, OrganizationApiClient, OrganizationService, OrganizationServiceCache, RoomService, addAppListener, addSpotlight, appSlice, authorizationSlice, breakoutSlice, chatSlice, cloudRecordingSlice, connectionMonitorSlice, connectionMonitorStarted, connectionMonitorStopped, createAppAsyncThunk, createAppAuthorizedThunk, createAppThunk, createAsyncRoomConnectedThunk, createAuthorizedRoomConnectedThunk, createReactor, createRemoteParticipant, createRoomConnectedThunk, createServices, createStore, createWebRtcEmitter, debounce, deviceBusy, deviceCredentialsSlice, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doBreakoutJoin, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLockRoom, doOrganizationFetch, doRejectWaitingParticipant, doRemoveSpotlight, doRequestAudioEnable, doRequestVideoEnable, doRtcAnalyticsCustomEventsInitialize, doRtcManagerCreated, doRtcManagerInitialize, doRtcReportStreamResolution, doSendChatMessage, doSendClientMetadata, doSetDevice, doSetDisplayName, doSetLocalStickyReaction, doSetNotification, doSignalConnect, doSignalDisconnect, doSignalIdentifyDevice, doSpotlightParticipant, doStartCloudRecording, doStartConnectionMonitor, doStartLocalMedia, doStartScreenshare, doStopCloudRecording, doStopConnectionMonitor, doStopLocalMedia, doStopScreenshare, doSwitchLocalStream, doToggleCamera, doToggleLowDataMode, doUpdateDeviceList, getAudioTrack, getFakeMediaStream, getVideoTrack, hasValue, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, initialState$h as initialState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localScreenshareSlice, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, parseUnverifiedRoomKeyData, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, removeSpotlight, resolutionReported, roomConnectionSlice, roomSlice, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, rtcClientConnectionStatusChanged, rtcConnectionSlice, rtcDisconnected, rtcDispatcherCreated, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAllClientViewsInCurrentGroup, selectAppDisplayName, selectAppExternalId, selectAppIgnoreBreakoutGroups, selectAppInitialConfig, selectAppIsActive, selectAppIsDialIn, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAuthorizationRoleName, selectBreakoutActive, selectBreakoutAssignments, selectBreakoutCurrentGroup, selectBreakoutCurrentId, selectBreakoutGroupedParticipants, selectBreakoutGroups, selectBreakoutInitiatedBy, selectBreakoutRaw, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingRaw, selectCloudRecordingStartedAt, selectCloudRecordingStatus, selectConnectionMonitorIsRunning, selectCurrentCameraDeviceId, selectCurrentMicrophoneDeviceId, selectCurrentSpeakerDeviceId, selectDeviceCredentialsRaw, selectDeviceId, selectHasFetchedDeviceCredentials, selectIsAcceptingStreams, selectIsAuthorizedToAskToSpeak, selectIsAuthorizedToEndMeeting, selectIsAuthorizedToKickClient, selectIsAuthorizedToLockRoom, selectIsAuthorizedToRequestAudioEnable, selectIsAuthorizedToRequestVideoEnable, selectIsAuthorizedToSpotlight, selectIsCameraEnabled, selectIsCloudRecording, selectIsLocalMediaStarting, selectIsLocalParticipantSpotlighted, selectIsLowDataModeEnabled, selectIsMicrophoneEnabled, selectIsSettingCameraDevice, selectIsSettingMicrophoneDevice, selectIsToggleCamera, selectLocalMediaConstraintsOptions, selectLocalMediaDevices, selectLocalMediaIsSwitchingStream, selectLocalMediaOptions, selectLocalMediaOwnsStream, selectLocalMediaRaw, selectLocalMediaShouldStartWithOptions, selectLocalMediaShouldStop, selectLocalMediaStartError, selectLocalMediaStatus, selectLocalMediaStream, selectLocalParticipantBreakoutAssigned, selectLocalParticipantBreakoutGroup, 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, setBreakoutGroupAssigned, setCurrentCameraDeviceId, setCurrentMicrophoneDeviceId, setCurrentSpeakerDeviceId, setDisplayName, setLocalMediaOptions, setLocalMediaStream, setRoomKey, signalConnectionSlice, signalEvents, socketConnected, socketConnecting, socketDisconnected, socketReconnecting, spotlightsSlice, startAppListening, stopScreenshare, streamIdForClient, streamStatusUpdated, streamingSlice, toggleCameraEnabled, toggleLowDataModeEnabled, toggleMicrophoneEnabled, updateReportedValues, waitingParticipantsSlice };
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@whereby.com/core",
|
|
3
3
|
"description": "Core library for whereby.com sdk",
|
|
4
4
|
"author": "Whereby AS",
|
|
5
|
-
"version": "0.32.
|
|
5
|
+
"version": "0.32.4",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"clean": "rimraf dist node_modules .turbo",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@reduxjs/toolkit": "^2.2.3",
|
|
52
|
-
"@whereby.com/media": "1.
|
|
52
|
+
"@whereby.com/media": "1.18.1",
|
|
53
53
|
"axios": "^1.2.3",
|
|
54
54
|
"btoa": "^1.2.1",
|
|
55
55
|
"events": "^3.3.0"
|