@whereby.com/core 0.32.10 → 0.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +124 -75
- package/dist/index.d.cts +18 -1
- package/dist/index.d.mts +18 -1
- package/dist/index.d.ts +18 -1
- package/dist/index.mjs +107 -75
- package/dist/legacy-esm.js +107 -75
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -237,6 +237,7 @@ interface Screenshare {
|
|
|
237
237
|
interface WaitingParticipantsState {
|
|
238
238
|
waitingParticipants: WaitingParticipant[];
|
|
239
239
|
}
|
|
240
|
+
declare const waitingParticipantsSliceInitialState: WaitingParticipantsState;
|
|
240
241
|
declare const waitingParticipantsSlice: _reduxjs_toolkit.Slice<WaitingParticipantsState, {}, "waitingParticipants", "waitingParticipants", _reduxjs_toolkit.SliceSelectors<WaitingParticipantsState>>;
|
|
241
242
|
declare const doAcceptWaitingParticipant: (args: {
|
|
242
243
|
participantId: string;
|
|
@@ -252,6 +253,7 @@ interface StreamingState {
|
|
|
252
253
|
error: unknown;
|
|
253
254
|
startedAt?: number;
|
|
254
255
|
}
|
|
256
|
+
declare const streamingSliceInitialState: StreamingState;
|
|
255
257
|
declare const streamingSlice: _reduxjs_toolkit.Slice<StreamingState, {
|
|
256
258
|
doHandleStreamingStarted: (state: {
|
|
257
259
|
isStreaming: boolean;
|
|
@@ -290,6 +292,7 @@ interface rtcAnalyticsState {
|
|
|
290
292
|
[key: string]: unknown;
|
|
291
293
|
};
|
|
292
294
|
}
|
|
295
|
+
declare const rtcAnalyticsSliceInitialState: rtcAnalyticsState;
|
|
293
296
|
declare const rtcAnalyticsSlice: _reduxjs_toolkit.Slice<rtcAnalyticsState, {
|
|
294
297
|
updateReportedValues(state: {
|
|
295
298
|
reportedValues: {
|
|
@@ -314,6 +317,7 @@ type ChatMessage = Pick<ChatMessage$1, "senderId" | "timestamp" | "text">;
|
|
|
314
317
|
interface ChatState {
|
|
315
318
|
chatMessages: ChatMessage[];
|
|
316
319
|
}
|
|
320
|
+
declare const chatSliceInitialState: ChatState;
|
|
317
321
|
declare const chatSlice: _reduxjs_toolkit.Slice<ChatState, {}, "chat", "chat", _reduxjs_toolkit.SliceSelectors<ChatState>>;
|
|
318
322
|
declare const doSendChatMessage: (args: {
|
|
319
323
|
text: string;
|
|
@@ -1549,6 +1553,7 @@ interface LocalScreenshareState {
|
|
|
1549
1553
|
stream: MediaStream | null;
|
|
1550
1554
|
error: unknown | null;
|
|
1551
1555
|
}
|
|
1556
|
+
declare const localScreenshareSliceInitialState: LocalScreenshareState;
|
|
1552
1557
|
declare const localScreenshareSlice: _reduxjs_toolkit.Slice<LocalScreenshareState, {
|
|
1553
1558
|
stopScreenshare(state: {
|
|
1554
1559
|
status: "inactive" | "starting" | "active";
|
|
@@ -1600,6 +1605,7 @@ interface LocalParticipantState extends LocalParticipant {
|
|
|
1600
1605
|
clientClaim?: string;
|
|
1601
1606
|
breakoutGroupAssigned: string;
|
|
1602
1607
|
}
|
|
1608
|
+
declare const localParticipantSliceInitialState: LocalParticipantState;
|
|
1603
1609
|
declare const localParticipantSlice: _reduxjs_toolkit.Slice<LocalParticipantState, {
|
|
1604
1610
|
setDisplayName: (state: {
|
|
1605
1611
|
isScreenSharing: boolean;
|
|
@@ -1953,6 +1959,7 @@ interface AuthorizationState {
|
|
|
1953
1959
|
roomKey: string | null;
|
|
1954
1960
|
roleName: RoleName;
|
|
1955
1961
|
}
|
|
1962
|
+
declare const authorizationSliceInitialState: AuthorizationState;
|
|
1956
1963
|
declare const authorizationSlice: _reduxjs_toolkit.Slice<AuthorizationState, {
|
|
1957
1964
|
setRoomKey: (state: {
|
|
1958
1965
|
roomKey: string | null;
|
|
@@ -2270,6 +2277,7 @@ declare const selectIsAuthorizedToSpotlight: ((state: {
|
|
|
2270
2277
|
interface BreakoutState extends BreakoutConfig {
|
|
2271
2278
|
groupId: string | null;
|
|
2272
2279
|
}
|
|
2280
|
+
declare const breakoutSliceInitialState: BreakoutState;
|
|
2273
2281
|
declare const breakoutSlice: _reduxjs_toolkit.Slice<BreakoutState, {}, "breakout", "breakout", _reduxjs_toolkit.SliceSelectors<BreakoutState>>;
|
|
2274
2282
|
declare const doBreakoutJoin: (args: {
|
|
2275
2283
|
group: string;
|
|
@@ -2480,6 +2488,7 @@ interface ConnectionMonitorState {
|
|
|
2480
2488
|
running: boolean;
|
|
2481
2489
|
stopCallbackFunction?: () => void;
|
|
2482
2490
|
}
|
|
2491
|
+
declare const connectionMonitorSliceInitialState: ConnectionMonitorState;
|
|
2483
2492
|
declare const connectionMonitorSlice: _reduxjs_toolkit.Slice<ConnectionMonitorState, {
|
|
2484
2493
|
connectionMonitorStarted: (state: {
|
|
2485
2494
|
running: boolean;
|
|
@@ -2863,6 +2872,7 @@ interface DeviceCredentialsState {
|
|
|
2863
2872
|
isFetching: boolean;
|
|
2864
2873
|
data?: Credentials | null;
|
|
2865
2874
|
}
|
|
2875
|
+
declare const deviceCredentialsSliceInitialState: DeviceCredentialsState;
|
|
2866
2876
|
declare const deviceCredentialsSlice: _reduxjs_toolkit.Slice<DeviceCredentialsState, {}, "deviceCredentials", "deviceCredentials", _reduxjs_toolkit.SliceSelectors<DeviceCredentialsState>>;
|
|
2867
2877
|
declare const doGetDeviceCredentials: _reduxjs_toolkit.AsyncThunk<Credentials | null | undefined, undefined, ThunkConfig>;
|
|
2868
2878
|
declare const selectDeviceCredentialsRaw: (state: RootState) => DeviceCredentialsState;
|
|
@@ -4718,6 +4728,7 @@ interface OrganizationState {
|
|
|
4718
4728
|
isFetching: boolean;
|
|
4719
4729
|
error: unknown;
|
|
4720
4730
|
}
|
|
4731
|
+
declare const organizationSliceInitialState: OrganizationState;
|
|
4721
4732
|
declare const organizationSlice: _reduxjs_toolkit.Slice<OrganizationState, {}, "organization", "organization", _reduxjs_toolkit.SliceSelectors<OrganizationState>>;
|
|
4722
4733
|
declare const doOrganizationFetch: _reduxjs_toolkit.AsyncThunk<Organization | undefined, undefined, ThunkConfig>;
|
|
4723
4734
|
declare const selectOrganizationRaw: (state: RootState) => OrganizationState;
|
|
@@ -4820,6 +4831,7 @@ declare function createRemoteParticipant(client: SignalClient, newJoiner?: boole
|
|
|
4820
4831
|
interface RemoteParticipantState {
|
|
4821
4832
|
remoteParticipants: RemoteParticipant[];
|
|
4822
4833
|
}
|
|
4834
|
+
declare const remoteParticipantsSliceInitialState: RemoteParticipantState;
|
|
4823
4835
|
declare const remoteParticipantsSlice: _reduxjs_toolkit.Slice<RemoteParticipantState, {
|
|
4824
4836
|
streamStatusUpdated: (state: {
|
|
4825
4837
|
remoteParticipants: {
|
|
@@ -5324,6 +5336,7 @@ type ClientView = {
|
|
|
5324
5336
|
interface RoomState {
|
|
5325
5337
|
isLocked: boolean;
|
|
5326
5338
|
}
|
|
5339
|
+
declare const roomSliceInitialState: RoomState;
|
|
5327
5340
|
declare const roomSlice: _reduxjs_toolkit.Slice<RoomState, {}, "room", "room", _reduxjs_toolkit.SliceSelectors<RoomState>>;
|
|
5328
5341
|
declare const doLockRoom: (args: {
|
|
5329
5342
|
locked: boolean;
|
|
@@ -7206,6 +7219,7 @@ interface RoomConnectionState {
|
|
|
7206
7219
|
status: ConnectionStatus;
|
|
7207
7220
|
error: string | null;
|
|
7208
7221
|
}
|
|
7222
|
+
declare const roomConnectionSliceInitialState: RoomConnectionState;
|
|
7209
7223
|
declare const roomConnectionSlice: _reduxjs_toolkit.Slice<RoomConnectionState, {
|
|
7210
7224
|
connectionStatusChanged: (state: {
|
|
7211
7225
|
session: {
|
|
@@ -7429,6 +7443,7 @@ interface RtcConnectionState {
|
|
|
7429
7443
|
status: "inactive" | "ready" | "reconnecting";
|
|
7430
7444
|
isAcceptingStreams: boolean;
|
|
7431
7445
|
}
|
|
7446
|
+
declare const rtcConnectionSliceInitialState: RtcConnectionState;
|
|
7432
7447
|
declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
7433
7448
|
isAcceptingStreams: (state: {
|
|
7434
7449
|
dispatcherCreated: boolean;
|
|
@@ -8930,6 +8945,7 @@ interface SignalConnectionState {
|
|
|
8930
8945
|
status: "ready" | "connecting" | "connected" | "disconnected" | "reconnecting";
|
|
8931
8946
|
socket: ServerSocket | null;
|
|
8932
8947
|
}
|
|
8948
|
+
declare const signalConnectionSliceInitialState: SignalConnectionState;
|
|
8933
8949
|
declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionState, {
|
|
8934
8950
|
socketConnecting: (state: {
|
|
8935
8951
|
deviceIdentified: boolean;
|
|
@@ -10188,6 +10204,7 @@ interface SpotlightsState {
|
|
|
10188
10204
|
streamId: string;
|
|
10189
10205
|
}[];
|
|
10190
10206
|
}
|
|
10207
|
+
declare const spotlightsSliceInitialState: SpotlightsState;
|
|
10191
10208
|
declare const spotlightsSlice: _reduxjs_toolkit.Slice<SpotlightsState, {
|
|
10192
10209
|
addSpotlight(state: {
|
|
10193
10210
|
sorted: {
|
|
@@ -11092,4 +11109,4 @@ declare function getFakeMediaStream({ canvas, hasAudio }: {
|
|
|
11092
11109
|
|
|
11093
11110
|
declare function parseUnverifiedRoomKeyData(roomKey: string): any;
|
|
11094
11111
|
|
|
11095
|
-
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, rtcEvents, 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 };
|
|
11112
|
+
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, authorizationSliceInitialState, breakoutSlice, breakoutSliceInitialState, chatSlice, chatSliceInitialState, cloudRecordingSlice, connectionMonitorSlice, connectionMonitorSliceInitialState, connectionMonitorStarted, connectionMonitorStopped, createAppAsyncThunk, createAppAuthorizedThunk, createAppThunk, createAsyncRoomConnectedThunk, createAuthorizedRoomConnectedThunk, createReactor, createRemoteParticipant, createRoomConnectedThunk, createServices, createStore, createWebRtcEmitter, debounce, deviceBusy, deviceCredentialsSlice, deviceCredentialsSliceInitialState, 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, localParticipantSliceInitialState, localScreenshareSlice, localScreenshareSliceInitialState, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, organizationSliceInitialState, parseUnverifiedRoomKeyData, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, remoteParticipantsSliceInitialState, removeSpotlight, resolutionReported, roomConnectionSlice, roomConnectionSliceInitialState, roomSlice, roomSliceInitialState, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, rtcAnalyticsSliceInitialState, type rtcAnalyticsState, rtcClientConnectionStatusChanged, rtcConnectionSlice, rtcConnectionSliceInitialState, rtcDisconnected, rtcDispatcherCreated, rtcEvents, 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, signalConnectionSliceInitialState, signalEvents, socketConnected, socketConnecting, socketDisconnected, socketReconnecting, spotlightsSlice, spotlightsSliceInitialState, startAppListening, stopScreenshare, streamIdForClient, streamStatusUpdated, streamingSlice, streamingSliceInitialState, toggleCameraEnabled, toggleLowDataModeEnabled, toggleMicrophoneEnabled, updateReportedValues, waitingParticipantsSlice, waitingParticipantsSliceInitialState };
|
package/dist/index.d.mts
CHANGED
|
@@ -237,6 +237,7 @@ interface Screenshare {
|
|
|
237
237
|
interface WaitingParticipantsState {
|
|
238
238
|
waitingParticipants: WaitingParticipant[];
|
|
239
239
|
}
|
|
240
|
+
declare const waitingParticipantsSliceInitialState: WaitingParticipantsState;
|
|
240
241
|
declare const waitingParticipantsSlice: _reduxjs_toolkit.Slice<WaitingParticipantsState, {}, "waitingParticipants", "waitingParticipants", _reduxjs_toolkit.SliceSelectors<WaitingParticipantsState>>;
|
|
241
242
|
declare const doAcceptWaitingParticipant: (args: {
|
|
242
243
|
participantId: string;
|
|
@@ -252,6 +253,7 @@ interface StreamingState {
|
|
|
252
253
|
error: unknown;
|
|
253
254
|
startedAt?: number;
|
|
254
255
|
}
|
|
256
|
+
declare const streamingSliceInitialState: StreamingState;
|
|
255
257
|
declare const streamingSlice: _reduxjs_toolkit.Slice<StreamingState, {
|
|
256
258
|
doHandleStreamingStarted: (state: {
|
|
257
259
|
isStreaming: boolean;
|
|
@@ -290,6 +292,7 @@ interface rtcAnalyticsState {
|
|
|
290
292
|
[key: string]: unknown;
|
|
291
293
|
};
|
|
292
294
|
}
|
|
295
|
+
declare const rtcAnalyticsSliceInitialState: rtcAnalyticsState;
|
|
293
296
|
declare const rtcAnalyticsSlice: _reduxjs_toolkit.Slice<rtcAnalyticsState, {
|
|
294
297
|
updateReportedValues(state: {
|
|
295
298
|
reportedValues: {
|
|
@@ -314,6 +317,7 @@ type ChatMessage = Pick<ChatMessage$1, "senderId" | "timestamp" | "text">;
|
|
|
314
317
|
interface ChatState {
|
|
315
318
|
chatMessages: ChatMessage[];
|
|
316
319
|
}
|
|
320
|
+
declare const chatSliceInitialState: ChatState;
|
|
317
321
|
declare const chatSlice: _reduxjs_toolkit.Slice<ChatState, {}, "chat", "chat", _reduxjs_toolkit.SliceSelectors<ChatState>>;
|
|
318
322
|
declare const doSendChatMessage: (args: {
|
|
319
323
|
text: string;
|
|
@@ -1549,6 +1553,7 @@ interface LocalScreenshareState {
|
|
|
1549
1553
|
stream: MediaStream | null;
|
|
1550
1554
|
error: unknown | null;
|
|
1551
1555
|
}
|
|
1556
|
+
declare const localScreenshareSliceInitialState: LocalScreenshareState;
|
|
1552
1557
|
declare const localScreenshareSlice: _reduxjs_toolkit.Slice<LocalScreenshareState, {
|
|
1553
1558
|
stopScreenshare(state: {
|
|
1554
1559
|
status: "inactive" | "starting" | "active";
|
|
@@ -1600,6 +1605,7 @@ interface LocalParticipantState extends LocalParticipant {
|
|
|
1600
1605
|
clientClaim?: string;
|
|
1601
1606
|
breakoutGroupAssigned: string;
|
|
1602
1607
|
}
|
|
1608
|
+
declare const localParticipantSliceInitialState: LocalParticipantState;
|
|
1603
1609
|
declare const localParticipantSlice: _reduxjs_toolkit.Slice<LocalParticipantState, {
|
|
1604
1610
|
setDisplayName: (state: {
|
|
1605
1611
|
isScreenSharing: boolean;
|
|
@@ -1953,6 +1959,7 @@ interface AuthorizationState {
|
|
|
1953
1959
|
roomKey: string | null;
|
|
1954
1960
|
roleName: RoleName;
|
|
1955
1961
|
}
|
|
1962
|
+
declare const authorizationSliceInitialState: AuthorizationState;
|
|
1956
1963
|
declare const authorizationSlice: _reduxjs_toolkit.Slice<AuthorizationState, {
|
|
1957
1964
|
setRoomKey: (state: {
|
|
1958
1965
|
roomKey: string | null;
|
|
@@ -2270,6 +2277,7 @@ declare const selectIsAuthorizedToSpotlight: ((state: {
|
|
|
2270
2277
|
interface BreakoutState extends BreakoutConfig {
|
|
2271
2278
|
groupId: string | null;
|
|
2272
2279
|
}
|
|
2280
|
+
declare const breakoutSliceInitialState: BreakoutState;
|
|
2273
2281
|
declare const breakoutSlice: _reduxjs_toolkit.Slice<BreakoutState, {}, "breakout", "breakout", _reduxjs_toolkit.SliceSelectors<BreakoutState>>;
|
|
2274
2282
|
declare const doBreakoutJoin: (args: {
|
|
2275
2283
|
group: string;
|
|
@@ -2480,6 +2488,7 @@ interface ConnectionMonitorState {
|
|
|
2480
2488
|
running: boolean;
|
|
2481
2489
|
stopCallbackFunction?: () => void;
|
|
2482
2490
|
}
|
|
2491
|
+
declare const connectionMonitorSliceInitialState: ConnectionMonitorState;
|
|
2483
2492
|
declare const connectionMonitorSlice: _reduxjs_toolkit.Slice<ConnectionMonitorState, {
|
|
2484
2493
|
connectionMonitorStarted: (state: {
|
|
2485
2494
|
running: boolean;
|
|
@@ -2863,6 +2872,7 @@ interface DeviceCredentialsState {
|
|
|
2863
2872
|
isFetching: boolean;
|
|
2864
2873
|
data?: Credentials | null;
|
|
2865
2874
|
}
|
|
2875
|
+
declare const deviceCredentialsSliceInitialState: DeviceCredentialsState;
|
|
2866
2876
|
declare const deviceCredentialsSlice: _reduxjs_toolkit.Slice<DeviceCredentialsState, {}, "deviceCredentials", "deviceCredentials", _reduxjs_toolkit.SliceSelectors<DeviceCredentialsState>>;
|
|
2867
2877
|
declare const doGetDeviceCredentials: _reduxjs_toolkit.AsyncThunk<Credentials | null | undefined, undefined, ThunkConfig>;
|
|
2868
2878
|
declare const selectDeviceCredentialsRaw: (state: RootState) => DeviceCredentialsState;
|
|
@@ -4718,6 +4728,7 @@ interface OrganizationState {
|
|
|
4718
4728
|
isFetching: boolean;
|
|
4719
4729
|
error: unknown;
|
|
4720
4730
|
}
|
|
4731
|
+
declare const organizationSliceInitialState: OrganizationState;
|
|
4721
4732
|
declare const organizationSlice: _reduxjs_toolkit.Slice<OrganizationState, {}, "organization", "organization", _reduxjs_toolkit.SliceSelectors<OrganizationState>>;
|
|
4722
4733
|
declare const doOrganizationFetch: _reduxjs_toolkit.AsyncThunk<Organization | undefined, undefined, ThunkConfig>;
|
|
4723
4734
|
declare const selectOrganizationRaw: (state: RootState) => OrganizationState;
|
|
@@ -4820,6 +4831,7 @@ declare function createRemoteParticipant(client: SignalClient, newJoiner?: boole
|
|
|
4820
4831
|
interface RemoteParticipantState {
|
|
4821
4832
|
remoteParticipants: RemoteParticipant[];
|
|
4822
4833
|
}
|
|
4834
|
+
declare const remoteParticipantsSliceInitialState: RemoteParticipantState;
|
|
4823
4835
|
declare const remoteParticipantsSlice: _reduxjs_toolkit.Slice<RemoteParticipantState, {
|
|
4824
4836
|
streamStatusUpdated: (state: {
|
|
4825
4837
|
remoteParticipants: {
|
|
@@ -5324,6 +5336,7 @@ type ClientView = {
|
|
|
5324
5336
|
interface RoomState {
|
|
5325
5337
|
isLocked: boolean;
|
|
5326
5338
|
}
|
|
5339
|
+
declare const roomSliceInitialState: RoomState;
|
|
5327
5340
|
declare const roomSlice: _reduxjs_toolkit.Slice<RoomState, {}, "room", "room", _reduxjs_toolkit.SliceSelectors<RoomState>>;
|
|
5328
5341
|
declare const doLockRoom: (args: {
|
|
5329
5342
|
locked: boolean;
|
|
@@ -7206,6 +7219,7 @@ interface RoomConnectionState {
|
|
|
7206
7219
|
status: ConnectionStatus;
|
|
7207
7220
|
error: string | null;
|
|
7208
7221
|
}
|
|
7222
|
+
declare const roomConnectionSliceInitialState: RoomConnectionState;
|
|
7209
7223
|
declare const roomConnectionSlice: _reduxjs_toolkit.Slice<RoomConnectionState, {
|
|
7210
7224
|
connectionStatusChanged: (state: {
|
|
7211
7225
|
session: {
|
|
@@ -7429,6 +7443,7 @@ interface RtcConnectionState {
|
|
|
7429
7443
|
status: "inactive" | "ready" | "reconnecting";
|
|
7430
7444
|
isAcceptingStreams: boolean;
|
|
7431
7445
|
}
|
|
7446
|
+
declare const rtcConnectionSliceInitialState: RtcConnectionState;
|
|
7432
7447
|
declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
7433
7448
|
isAcceptingStreams: (state: {
|
|
7434
7449
|
dispatcherCreated: boolean;
|
|
@@ -8930,6 +8945,7 @@ interface SignalConnectionState {
|
|
|
8930
8945
|
status: "ready" | "connecting" | "connected" | "disconnected" | "reconnecting";
|
|
8931
8946
|
socket: ServerSocket | null;
|
|
8932
8947
|
}
|
|
8948
|
+
declare const signalConnectionSliceInitialState: SignalConnectionState;
|
|
8933
8949
|
declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionState, {
|
|
8934
8950
|
socketConnecting: (state: {
|
|
8935
8951
|
deviceIdentified: boolean;
|
|
@@ -10188,6 +10204,7 @@ interface SpotlightsState {
|
|
|
10188
10204
|
streamId: string;
|
|
10189
10205
|
}[];
|
|
10190
10206
|
}
|
|
10207
|
+
declare const spotlightsSliceInitialState: SpotlightsState;
|
|
10191
10208
|
declare const spotlightsSlice: _reduxjs_toolkit.Slice<SpotlightsState, {
|
|
10192
10209
|
addSpotlight(state: {
|
|
10193
10210
|
sorted: {
|
|
@@ -11092,4 +11109,4 @@ declare function getFakeMediaStream({ canvas, hasAudio }: {
|
|
|
11092
11109
|
|
|
11093
11110
|
declare function parseUnverifiedRoomKeyData(roomKey: string): any;
|
|
11094
11111
|
|
|
11095
|
-
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, rtcEvents, 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 };
|
|
11112
|
+
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, authorizationSliceInitialState, breakoutSlice, breakoutSliceInitialState, chatSlice, chatSliceInitialState, cloudRecordingSlice, connectionMonitorSlice, connectionMonitorSliceInitialState, connectionMonitorStarted, connectionMonitorStopped, createAppAsyncThunk, createAppAuthorizedThunk, createAppThunk, createAsyncRoomConnectedThunk, createAuthorizedRoomConnectedThunk, createReactor, createRemoteParticipant, createRoomConnectedThunk, createServices, createStore, createWebRtcEmitter, debounce, deviceBusy, deviceCredentialsSlice, deviceCredentialsSliceInitialState, 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, localParticipantSliceInitialState, localScreenshareSlice, localScreenshareSliceInitialState, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, organizationSliceInitialState, parseUnverifiedRoomKeyData, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, remoteParticipantsSliceInitialState, removeSpotlight, resolutionReported, roomConnectionSlice, roomConnectionSliceInitialState, roomSlice, roomSliceInitialState, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, rtcAnalyticsSliceInitialState, type rtcAnalyticsState, rtcClientConnectionStatusChanged, rtcConnectionSlice, rtcConnectionSliceInitialState, rtcDisconnected, rtcDispatcherCreated, rtcEvents, 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, signalConnectionSliceInitialState, signalEvents, socketConnected, socketConnecting, socketDisconnected, socketReconnecting, spotlightsSlice, spotlightsSliceInitialState, startAppListening, stopScreenshare, streamIdForClient, streamStatusUpdated, streamingSlice, streamingSliceInitialState, toggleCameraEnabled, toggleLowDataModeEnabled, toggleMicrophoneEnabled, updateReportedValues, waitingParticipantsSlice, waitingParticipantsSliceInitialState };
|
package/dist/index.d.ts
CHANGED
|
@@ -237,6 +237,7 @@ interface Screenshare {
|
|
|
237
237
|
interface WaitingParticipantsState {
|
|
238
238
|
waitingParticipants: WaitingParticipant[];
|
|
239
239
|
}
|
|
240
|
+
declare const waitingParticipantsSliceInitialState: WaitingParticipantsState;
|
|
240
241
|
declare const waitingParticipantsSlice: _reduxjs_toolkit.Slice<WaitingParticipantsState, {}, "waitingParticipants", "waitingParticipants", _reduxjs_toolkit.SliceSelectors<WaitingParticipantsState>>;
|
|
241
242
|
declare const doAcceptWaitingParticipant: (args: {
|
|
242
243
|
participantId: string;
|
|
@@ -252,6 +253,7 @@ interface StreamingState {
|
|
|
252
253
|
error: unknown;
|
|
253
254
|
startedAt?: number;
|
|
254
255
|
}
|
|
256
|
+
declare const streamingSliceInitialState: StreamingState;
|
|
255
257
|
declare const streamingSlice: _reduxjs_toolkit.Slice<StreamingState, {
|
|
256
258
|
doHandleStreamingStarted: (state: {
|
|
257
259
|
isStreaming: boolean;
|
|
@@ -290,6 +292,7 @@ interface rtcAnalyticsState {
|
|
|
290
292
|
[key: string]: unknown;
|
|
291
293
|
};
|
|
292
294
|
}
|
|
295
|
+
declare const rtcAnalyticsSliceInitialState: rtcAnalyticsState;
|
|
293
296
|
declare const rtcAnalyticsSlice: _reduxjs_toolkit.Slice<rtcAnalyticsState, {
|
|
294
297
|
updateReportedValues(state: {
|
|
295
298
|
reportedValues: {
|
|
@@ -314,6 +317,7 @@ type ChatMessage = Pick<ChatMessage$1, "senderId" | "timestamp" | "text">;
|
|
|
314
317
|
interface ChatState {
|
|
315
318
|
chatMessages: ChatMessage[];
|
|
316
319
|
}
|
|
320
|
+
declare const chatSliceInitialState: ChatState;
|
|
317
321
|
declare const chatSlice: _reduxjs_toolkit.Slice<ChatState, {}, "chat", "chat", _reduxjs_toolkit.SliceSelectors<ChatState>>;
|
|
318
322
|
declare const doSendChatMessage: (args: {
|
|
319
323
|
text: string;
|
|
@@ -1549,6 +1553,7 @@ interface LocalScreenshareState {
|
|
|
1549
1553
|
stream: MediaStream | null;
|
|
1550
1554
|
error: unknown | null;
|
|
1551
1555
|
}
|
|
1556
|
+
declare const localScreenshareSliceInitialState: LocalScreenshareState;
|
|
1552
1557
|
declare const localScreenshareSlice: _reduxjs_toolkit.Slice<LocalScreenshareState, {
|
|
1553
1558
|
stopScreenshare(state: {
|
|
1554
1559
|
status: "inactive" | "starting" | "active";
|
|
@@ -1600,6 +1605,7 @@ interface LocalParticipantState extends LocalParticipant {
|
|
|
1600
1605
|
clientClaim?: string;
|
|
1601
1606
|
breakoutGroupAssigned: string;
|
|
1602
1607
|
}
|
|
1608
|
+
declare const localParticipantSliceInitialState: LocalParticipantState;
|
|
1603
1609
|
declare const localParticipantSlice: _reduxjs_toolkit.Slice<LocalParticipantState, {
|
|
1604
1610
|
setDisplayName: (state: {
|
|
1605
1611
|
isScreenSharing: boolean;
|
|
@@ -1953,6 +1959,7 @@ interface AuthorizationState {
|
|
|
1953
1959
|
roomKey: string | null;
|
|
1954
1960
|
roleName: RoleName;
|
|
1955
1961
|
}
|
|
1962
|
+
declare const authorizationSliceInitialState: AuthorizationState;
|
|
1956
1963
|
declare const authorizationSlice: _reduxjs_toolkit.Slice<AuthorizationState, {
|
|
1957
1964
|
setRoomKey: (state: {
|
|
1958
1965
|
roomKey: string | null;
|
|
@@ -2270,6 +2277,7 @@ declare const selectIsAuthorizedToSpotlight: ((state: {
|
|
|
2270
2277
|
interface BreakoutState extends BreakoutConfig {
|
|
2271
2278
|
groupId: string | null;
|
|
2272
2279
|
}
|
|
2280
|
+
declare const breakoutSliceInitialState: BreakoutState;
|
|
2273
2281
|
declare const breakoutSlice: _reduxjs_toolkit.Slice<BreakoutState, {}, "breakout", "breakout", _reduxjs_toolkit.SliceSelectors<BreakoutState>>;
|
|
2274
2282
|
declare const doBreakoutJoin: (args: {
|
|
2275
2283
|
group: string;
|
|
@@ -2480,6 +2488,7 @@ interface ConnectionMonitorState {
|
|
|
2480
2488
|
running: boolean;
|
|
2481
2489
|
stopCallbackFunction?: () => void;
|
|
2482
2490
|
}
|
|
2491
|
+
declare const connectionMonitorSliceInitialState: ConnectionMonitorState;
|
|
2483
2492
|
declare const connectionMonitorSlice: _reduxjs_toolkit.Slice<ConnectionMonitorState, {
|
|
2484
2493
|
connectionMonitorStarted: (state: {
|
|
2485
2494
|
running: boolean;
|
|
@@ -2863,6 +2872,7 @@ interface DeviceCredentialsState {
|
|
|
2863
2872
|
isFetching: boolean;
|
|
2864
2873
|
data?: Credentials | null;
|
|
2865
2874
|
}
|
|
2875
|
+
declare const deviceCredentialsSliceInitialState: DeviceCredentialsState;
|
|
2866
2876
|
declare const deviceCredentialsSlice: _reduxjs_toolkit.Slice<DeviceCredentialsState, {}, "deviceCredentials", "deviceCredentials", _reduxjs_toolkit.SliceSelectors<DeviceCredentialsState>>;
|
|
2867
2877
|
declare const doGetDeviceCredentials: _reduxjs_toolkit.AsyncThunk<Credentials | null | undefined, undefined, ThunkConfig>;
|
|
2868
2878
|
declare const selectDeviceCredentialsRaw: (state: RootState) => DeviceCredentialsState;
|
|
@@ -4718,6 +4728,7 @@ interface OrganizationState {
|
|
|
4718
4728
|
isFetching: boolean;
|
|
4719
4729
|
error: unknown;
|
|
4720
4730
|
}
|
|
4731
|
+
declare const organizationSliceInitialState: OrganizationState;
|
|
4721
4732
|
declare const organizationSlice: _reduxjs_toolkit.Slice<OrganizationState, {}, "organization", "organization", _reduxjs_toolkit.SliceSelectors<OrganizationState>>;
|
|
4722
4733
|
declare const doOrganizationFetch: _reduxjs_toolkit.AsyncThunk<Organization | undefined, undefined, ThunkConfig>;
|
|
4723
4734
|
declare const selectOrganizationRaw: (state: RootState) => OrganizationState;
|
|
@@ -4820,6 +4831,7 @@ declare function createRemoteParticipant(client: SignalClient, newJoiner?: boole
|
|
|
4820
4831
|
interface RemoteParticipantState {
|
|
4821
4832
|
remoteParticipants: RemoteParticipant[];
|
|
4822
4833
|
}
|
|
4834
|
+
declare const remoteParticipantsSliceInitialState: RemoteParticipantState;
|
|
4823
4835
|
declare const remoteParticipantsSlice: _reduxjs_toolkit.Slice<RemoteParticipantState, {
|
|
4824
4836
|
streamStatusUpdated: (state: {
|
|
4825
4837
|
remoteParticipants: {
|
|
@@ -5324,6 +5336,7 @@ type ClientView = {
|
|
|
5324
5336
|
interface RoomState {
|
|
5325
5337
|
isLocked: boolean;
|
|
5326
5338
|
}
|
|
5339
|
+
declare const roomSliceInitialState: RoomState;
|
|
5327
5340
|
declare const roomSlice: _reduxjs_toolkit.Slice<RoomState, {}, "room", "room", _reduxjs_toolkit.SliceSelectors<RoomState>>;
|
|
5328
5341
|
declare const doLockRoom: (args: {
|
|
5329
5342
|
locked: boolean;
|
|
@@ -7206,6 +7219,7 @@ interface RoomConnectionState {
|
|
|
7206
7219
|
status: ConnectionStatus;
|
|
7207
7220
|
error: string | null;
|
|
7208
7221
|
}
|
|
7222
|
+
declare const roomConnectionSliceInitialState: RoomConnectionState;
|
|
7209
7223
|
declare const roomConnectionSlice: _reduxjs_toolkit.Slice<RoomConnectionState, {
|
|
7210
7224
|
connectionStatusChanged: (state: {
|
|
7211
7225
|
session: {
|
|
@@ -7429,6 +7443,7 @@ interface RtcConnectionState {
|
|
|
7429
7443
|
status: "inactive" | "ready" | "reconnecting";
|
|
7430
7444
|
isAcceptingStreams: boolean;
|
|
7431
7445
|
}
|
|
7446
|
+
declare const rtcConnectionSliceInitialState: RtcConnectionState;
|
|
7432
7447
|
declare const rtcConnectionSlice: _reduxjs_toolkit.Slice<RtcConnectionState, {
|
|
7433
7448
|
isAcceptingStreams: (state: {
|
|
7434
7449
|
dispatcherCreated: boolean;
|
|
@@ -8930,6 +8945,7 @@ interface SignalConnectionState {
|
|
|
8930
8945
|
status: "ready" | "connecting" | "connected" | "disconnected" | "reconnecting";
|
|
8931
8946
|
socket: ServerSocket | null;
|
|
8932
8947
|
}
|
|
8948
|
+
declare const signalConnectionSliceInitialState: SignalConnectionState;
|
|
8933
8949
|
declare const signalConnectionSlice: _reduxjs_toolkit.Slice<SignalConnectionState, {
|
|
8934
8950
|
socketConnecting: (state: {
|
|
8935
8951
|
deviceIdentified: boolean;
|
|
@@ -10188,6 +10204,7 @@ interface SpotlightsState {
|
|
|
10188
10204
|
streamId: string;
|
|
10189
10205
|
}[];
|
|
10190
10206
|
}
|
|
10207
|
+
declare const spotlightsSliceInitialState: SpotlightsState;
|
|
10191
10208
|
declare const spotlightsSlice: _reduxjs_toolkit.Slice<SpotlightsState, {
|
|
10192
10209
|
addSpotlight(state: {
|
|
10193
10210
|
sorted: {
|
|
@@ -11092,4 +11109,4 @@ declare function getFakeMediaStream({ canvas, hasAudio }: {
|
|
|
11092
11109
|
|
|
11093
11110
|
declare function parseUnverifiedRoomKeyData(roomKey: string): any;
|
|
11094
11111
|
|
|
11095
|
-
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, rtcEvents, 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 };
|
|
11112
|
+
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, authorizationSliceInitialState, breakoutSlice, breakoutSliceInitialState, chatSlice, chatSliceInitialState, cloudRecordingSlice, connectionMonitorSlice, connectionMonitorSliceInitialState, connectionMonitorStarted, connectionMonitorStopped, createAppAsyncThunk, createAppAuthorizedThunk, createAppThunk, createAsyncRoomConnectedThunk, createAuthorizedRoomConnectedThunk, createReactor, createRemoteParticipant, createRoomConnectedThunk, createServices, createStore, createWebRtcEmitter, debounce, deviceBusy, deviceCredentialsSlice, deviceCredentialsSliceInitialState, 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, localParticipantSliceInitialState, localScreenshareSlice, localScreenshareSliceInitialState, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, organizationSliceInitialState, parseUnverifiedRoomKeyData, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, remoteParticipantsSliceInitialState, removeSpotlight, resolutionReported, roomConnectionSlice, roomConnectionSliceInitialState, roomSlice, roomSliceInitialState, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, rtcAnalyticsSliceInitialState, type rtcAnalyticsState, rtcClientConnectionStatusChanged, rtcConnectionSlice, rtcConnectionSliceInitialState, rtcDisconnected, rtcDispatcherCreated, rtcEvents, 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, signalConnectionSliceInitialState, signalEvents, socketConnected, socketConnecting, socketDisconnected, socketReconnecting, spotlightsSlice, spotlightsSliceInitialState, startAppListening, stopScreenshare, streamIdForClient, streamStatusUpdated, streamingSlice, streamingSliceInitialState, toggleCameraEnabled, toggleLowDataModeEnabled, toggleMicrophoneEnabled, updateReportedValues, waitingParticipantsSlice, waitingParticipantsSliceInitialState };
|