@whereby.com/core 1.5.13 → 1.6.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 +36 -16
- package/dist/index.d.cts +36 -31
- package/dist/index.d.mts +36 -31
- package/dist/index.d.ts +36 -31
- package/dist/index.mjs +36 -16
- package/dist/legacy-esm.js +36 -16
- package/dist/redux/index.cjs +21 -13
- package/dist/redux/index.d.cts +57 -46
- package/dist/redux/index.d.mts +57 -46
- package/dist/redux/index.d.ts +57 -46
- package/dist/redux/index.js +21 -14
- package/dist/redux/index.mjs +21 -14
- package/package.json +3 -3
package/dist/redux/index.d.mts
CHANGED
|
@@ -311,14 +311,15 @@ interface StickyReaction {
|
|
|
311
311
|
timestamp: string;
|
|
312
312
|
}
|
|
313
313
|
interface RoomParticipantData {
|
|
314
|
+
breakoutGroup: string | null;
|
|
314
315
|
displayName: string;
|
|
315
316
|
id: string;
|
|
316
|
-
stream?: MediaStream;
|
|
317
317
|
isAudioEnabled: boolean;
|
|
318
|
+
isAudioRecorder: boolean;
|
|
319
|
+
isDialIn: boolean;
|
|
318
320
|
isVideoEnabled: boolean;
|
|
319
|
-
breakoutGroup: string | null;
|
|
320
321
|
stickyReaction?: StickyReaction | null;
|
|
321
|
-
|
|
322
|
+
stream?: MediaStream;
|
|
322
323
|
}
|
|
323
324
|
declare class RoomParticipant {
|
|
324
325
|
readonly displayName: string;
|
|
@@ -330,7 +331,8 @@ declare class RoomParticipant {
|
|
|
330
331
|
readonly breakoutGroup: string | null;
|
|
331
332
|
readonly stickyReaction?: StickyReaction | null;
|
|
332
333
|
readonly isDialIn: boolean;
|
|
333
|
-
|
|
334
|
+
readonly isAudioRecorder: boolean;
|
|
335
|
+
constructor({ breakoutGroup, displayName, id, isAudioEnabled, isAudioRecorder, isDialIn, isVideoEnabled, stickyReaction, stream, }: RoomParticipantData);
|
|
334
336
|
}
|
|
335
337
|
type StreamState = "new_accept" | "to_accept" | "old_accept" | "done_accept" | "to_unaccept" | "done_unaccept" | "auto";
|
|
336
338
|
interface Stream {
|
|
@@ -338,29 +340,30 @@ interface Stream {
|
|
|
338
340
|
state: StreamState;
|
|
339
341
|
}
|
|
340
342
|
interface RemoteParticipant {
|
|
341
|
-
|
|
342
|
-
displayName: string;
|
|
343
|
+
breakoutGroup: string | null;
|
|
343
344
|
deviceId: string;
|
|
344
|
-
|
|
345
|
+
displayName: string;
|
|
346
|
+
externalId: string | null;
|
|
347
|
+
id: string;
|
|
345
348
|
isAudioEnabled: boolean;
|
|
346
|
-
|
|
349
|
+
isAudioRecorder: boolean;
|
|
350
|
+
isDialIn: boolean;
|
|
347
351
|
isLocalParticipant: boolean;
|
|
348
|
-
|
|
349
|
-
stream: (MediaStream & {
|
|
350
|
-
inboundId?: string;
|
|
351
|
-
}) | null;
|
|
352
|
-
streams: Stream[];
|
|
352
|
+
isVideoEnabled: boolean;
|
|
353
353
|
newJoiner: boolean;
|
|
354
354
|
presentationStream: (MediaStream & {
|
|
355
355
|
inboundId?: string;
|
|
356
356
|
}) | null;
|
|
357
|
-
|
|
357
|
+
roleName: RoleName;
|
|
358
358
|
stickyReaction?: StickyReaction | null;
|
|
359
|
-
|
|
359
|
+
stream: (MediaStream & {
|
|
360
|
+
inboundId?: string;
|
|
361
|
+
}) | null;
|
|
362
|
+
streams: Stream[];
|
|
360
363
|
}
|
|
361
364
|
declare class LocalParticipant extends RoomParticipant {
|
|
362
365
|
readonly isLocalParticipant = true;
|
|
363
|
-
constructor({ displayName, id,
|
|
366
|
+
constructor({ breakoutGroup, displayName, id, isAudioEnabled, isAudioRecorder, isDialIn, isVideoEnabled, stickyReaction, stream, }: RoomParticipantData);
|
|
364
367
|
}
|
|
365
368
|
interface WaitingParticipant {
|
|
366
369
|
id: string;
|
|
@@ -582,6 +585,7 @@ declare const localParticipantSlice: _reduxjs_toolkit.Slice<LocalParticipantStat
|
|
|
582
585
|
breakoutGroup: string | null;
|
|
583
586
|
stickyReaction?: immer.WritableDraft<StickyReaction> | null | undefined;
|
|
584
587
|
isDialIn: boolean;
|
|
588
|
+
isAudioRecorder: boolean;
|
|
585
589
|
};
|
|
586
590
|
setBreakoutGroupAssigned: (state: immer.WritableDraft<LocalParticipantState>, action: PayloadAction<{
|
|
587
591
|
breakoutGroupAssigned: string;
|
|
@@ -599,6 +603,7 @@ declare const localParticipantSlice: _reduxjs_toolkit.Slice<LocalParticipantStat
|
|
|
599
603
|
breakoutGroup: string | null;
|
|
600
604
|
stickyReaction?: immer.WritableDraft<StickyReaction> | null | undefined;
|
|
601
605
|
isDialIn: boolean;
|
|
606
|
+
isAudioRecorder: boolean;
|
|
602
607
|
};
|
|
603
608
|
}, "localParticipant", "localParticipant", _reduxjs_toolkit.SliceSelectors<LocalParticipantState>>;
|
|
604
609
|
declare const setDisplayName: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
@@ -667,71 +672,76 @@ interface CameraEffectsState {
|
|
|
667
672
|
}
|
|
668
673
|
|
|
669
674
|
interface AppConfig {
|
|
670
|
-
|
|
671
|
-
isDialIn?: boolean;
|
|
672
|
-
ignoreBreakoutGroups?: boolean;
|
|
675
|
+
assistantKey?: string | null;
|
|
673
676
|
displayName: string;
|
|
677
|
+
externalId: string | null;
|
|
678
|
+
ignoreBreakoutGroups?: boolean;
|
|
679
|
+
isAudioRecorder?: boolean;
|
|
680
|
+
isDialIn?: boolean;
|
|
681
|
+
isNodeSdk?: boolean;
|
|
674
682
|
localMediaOptions?: LocalMediaOptions;
|
|
675
683
|
roomKey: string | null;
|
|
676
|
-
assistantKey?: string | null;
|
|
677
684
|
roomUrl: string;
|
|
678
685
|
userAgent?: string;
|
|
679
|
-
externalId: string | null;
|
|
680
686
|
}
|
|
681
687
|
interface AppState {
|
|
682
|
-
|
|
688
|
+
displayName: string | null;
|
|
689
|
+
externalId: string | null;
|
|
690
|
+
ignoreBreakoutGroups: boolean;
|
|
691
|
+
initialConfig?: AppConfig;
|
|
683
692
|
isActive: boolean;
|
|
684
|
-
isDialIn: boolean;
|
|
685
693
|
isAssistant: boolean;
|
|
686
|
-
|
|
687
|
-
|
|
694
|
+
isAudioRecorder: boolean;
|
|
695
|
+
isDialIn: boolean;
|
|
696
|
+
isNodeSdk: boolean;
|
|
688
697
|
roomName: string | null;
|
|
689
|
-
|
|
698
|
+
roomUrl: string | null;
|
|
690
699
|
userAgent: string | null;
|
|
691
|
-
externalId: string | null;
|
|
692
|
-
initialConfig?: AppConfig;
|
|
693
700
|
}
|
|
694
701
|
declare const initialState: AppState;
|
|
695
702
|
declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
696
703
|
doAppStart: (state: immer.WritableDraft<AppState>, action: PayloadAction<AppConfig>) => {
|
|
697
704
|
roomName: string;
|
|
698
705
|
initialConfig: {
|
|
699
|
-
|
|
700
|
-
isDialIn?: boolean;
|
|
701
|
-
ignoreBreakoutGroups?: boolean;
|
|
706
|
+
assistantKey?: string | null;
|
|
702
707
|
displayName: string;
|
|
708
|
+
externalId: string | null;
|
|
709
|
+
ignoreBreakoutGroups?: boolean;
|
|
710
|
+
isAudioRecorder?: boolean;
|
|
711
|
+
isDialIn?: boolean;
|
|
712
|
+
isNodeSdk?: boolean;
|
|
703
713
|
localMediaOptions?: LocalMediaOptions;
|
|
704
714
|
roomKey: string | null;
|
|
705
|
-
assistantKey?: string | null;
|
|
706
715
|
roomUrl: string;
|
|
707
716
|
userAgent?: string;
|
|
708
|
-
externalId: string | null;
|
|
709
717
|
};
|
|
710
718
|
isActive: true;
|
|
711
719
|
isAssistant: boolean;
|
|
712
|
-
|
|
713
|
-
isDialIn: boolean;
|
|
714
|
-
ignoreBreakoutGroups: boolean;
|
|
720
|
+
assistantKey?: string | null;
|
|
715
721
|
displayName: string;
|
|
722
|
+
externalId: string | null;
|
|
723
|
+
ignoreBreakoutGroups: boolean;
|
|
724
|
+
isAudioRecorder: boolean;
|
|
725
|
+
isDialIn: boolean;
|
|
726
|
+
isNodeSdk: boolean;
|
|
716
727
|
localMediaOptions?: LocalMediaOptions;
|
|
717
728
|
roomKey: string | null;
|
|
718
|
-
assistantKey?: string | null;
|
|
719
729
|
roomUrl: string;
|
|
720
730
|
userAgent: string | null;
|
|
721
|
-
externalId: string | null;
|
|
722
731
|
};
|
|
723
732
|
doAppStop: (state: immer.WritableDraft<AppState>) => {
|
|
724
733
|
isActive: false;
|
|
725
|
-
isNodeSdk: boolean;
|
|
726
|
-
isDialIn: boolean;
|
|
727
|
-
isAssistant: boolean;
|
|
728
|
-
ignoreBreakoutGroups: boolean;
|
|
729
|
-
roomUrl: string | null;
|
|
730
|
-
roomName: string | null;
|
|
731
734
|
displayName: string | null;
|
|
732
|
-
userAgent: string | null;
|
|
733
735
|
externalId: string | null;
|
|
736
|
+
ignoreBreakoutGroups: boolean;
|
|
734
737
|
initialConfig?: immer.WritableDraft<AppConfig> | undefined;
|
|
738
|
+
isAssistant: boolean;
|
|
739
|
+
isAudioRecorder: boolean;
|
|
740
|
+
isDialIn: boolean;
|
|
741
|
+
isNodeSdk: boolean;
|
|
742
|
+
roomName: string | null;
|
|
743
|
+
roomUrl: string | null;
|
|
744
|
+
userAgent: string | null;
|
|
735
745
|
};
|
|
736
746
|
}, "app", "app", _reduxjs_toolkit.SliceSelectors<AppState>>;
|
|
737
747
|
declare const doAppStop: _reduxjs_toolkit.ActionCreatorWithoutPayload<"app/doAppStop">;
|
|
@@ -739,6 +749,7 @@ declare const doAppStart: _reduxjs_toolkit.ActionCreatorWithPayload<AppConfig, "
|
|
|
739
749
|
declare const selectAppRaw: (state: RootState) => AppState;
|
|
740
750
|
declare const selectAppIsActive: (state: RootState) => boolean;
|
|
741
751
|
declare const selectAppIsDialIn: (state: RootState) => boolean;
|
|
752
|
+
declare const selectAppIsAudioRecorder: (state: RootState) => boolean;
|
|
742
753
|
declare const selectAppIsAssistant: (state: RootState) => boolean;
|
|
743
754
|
declare const selectAppRoomName: (state: RootState) => string | null;
|
|
744
755
|
declare const selectAppRoomUrl: (state: RootState) => string | null;
|
|
@@ -4859,5 +4870,5 @@ declare const selectRoomConnectionSessionId: (state: RootState) => string | unde
|
|
|
4859
4870
|
declare const selectRoomConnectionStatus: (state: RootState) => ConnectionStatus;
|
|
4860
4871
|
declare const selectRoomConnectionError: (state: RootState) => string | null;
|
|
4861
4872
|
|
|
4862
|
-
export { 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, deviceBusy, deviceCredentialsSlice, deviceCredentialsSliceInitialState, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doBreakoutJoin, doCancelKnock, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLocalStreamEffect, 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, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, initialState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localParticipantSliceInitialState, localScreenshareSlice, localScreenshareSliceInitialState, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, organizationSliceInitialState, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, remoteParticipantsSliceInitialState, removeSpotlight, resolutionReported, roomConnectionSlice, roomConnectionSliceInitialState, roomSlice, roomSliceInitialState, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, rtcAnalyticsSliceInitialState, rtcClientConnectionStatusChanged, rtcConnectionSlice, rtcConnectionSliceInitialState, rtcDisconnected, rtcDispatcherCreated, rtcEvents, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAllClientViewsInCurrentGroup, selectAppDisplayName, selectAppExternalId, selectAppIgnoreBreakoutGroups, selectAppInitialConfig, selectAppIsActive, selectAppIsAssistant, selectAppIsDialIn, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAssistantKey, selectAuthorizationRoleName, selectBreakoutActive, selectBreakoutAssignments, selectBreakoutCurrentGroup, selectBreakoutCurrentId, selectBreakoutGroupedParticipants, selectBreakoutGroups, selectBreakoutInitiatedBy, selectBreakoutRaw, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingIsInitiator, 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, selectLocalMediaBeforeEffectTracks, 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, selectOrganizationPreferences, 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 };
|
|
4873
|
+
export { 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, deviceBusy, deviceCredentialsSlice, deviceCredentialsSliceInitialState, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doBreakoutJoin, doCancelKnock, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLocalStreamEffect, 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, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, initialState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localParticipantSliceInitialState, localScreenshareSlice, localScreenshareSliceInitialState, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, organizationSliceInitialState, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, remoteParticipantsSliceInitialState, removeSpotlight, resolutionReported, roomConnectionSlice, roomConnectionSliceInitialState, roomSlice, roomSliceInitialState, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, rtcAnalyticsSliceInitialState, rtcClientConnectionStatusChanged, rtcConnectionSlice, rtcConnectionSliceInitialState, rtcDisconnected, rtcDispatcherCreated, rtcEvents, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAllClientViewsInCurrentGroup, selectAppDisplayName, selectAppExternalId, selectAppIgnoreBreakoutGroups, selectAppInitialConfig, selectAppIsActive, selectAppIsAssistant, selectAppIsAudioRecorder, selectAppIsDialIn, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAssistantKey, selectAuthorizationRoleName, selectBreakoutActive, selectBreakoutAssignments, selectBreakoutCurrentGroup, selectBreakoutCurrentId, selectBreakoutGroupedParticipants, selectBreakoutGroups, selectBreakoutInitiatedBy, selectBreakoutRaw, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingIsInitiator, 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, selectLocalMediaBeforeEffectTracks, 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, selectOrganizationPreferences, 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 };
|
|
4863
4874
|
export type { AppConfig, AppDispatch, AppReducer, AppStartListening, AppState, AppThunk, AuthorizationState, BreakoutState, ChatMessage, ChatMessageEvent, ChatMessageEventProps, ChatState, ClientView, CloudRecordingState, ConnectionMonitorStart, ConnectionMonitorState, ConnectionStatus, DeviceCredentialsState, LocalMediaOptions, LocalMediaState, LocalParticipantState, LocalScreenshareState, Notification, NotificationEvent, NotificationEventMap, NotificationEvents, NotificationsEventEmitter, NotificationsState, OrganizationState, RemoteParticipantSliceState, RequestAudioEvent, RequestAudioEventProps, RequestVideoEvent, RequestVideoEventProps, RoomConnectionState, RoomState, RootState, RtcConnectionState, SignalClientEvent, SignalClientEventProps, SignalConnectionState, SignalStatusEvent, SignalStatusEventProps, SpotlightsState, StickyReactionEvent, StickyReactionEventProps, Store, StreamingState, ThunkConfig, WaitingParticipantsState, rtcAnalyticsState };
|
package/dist/redux/index.d.ts
CHANGED
|
@@ -311,14 +311,15 @@ interface StickyReaction {
|
|
|
311
311
|
timestamp: string;
|
|
312
312
|
}
|
|
313
313
|
interface RoomParticipantData {
|
|
314
|
+
breakoutGroup: string | null;
|
|
314
315
|
displayName: string;
|
|
315
316
|
id: string;
|
|
316
|
-
stream?: MediaStream;
|
|
317
317
|
isAudioEnabled: boolean;
|
|
318
|
+
isAudioRecorder: boolean;
|
|
319
|
+
isDialIn: boolean;
|
|
318
320
|
isVideoEnabled: boolean;
|
|
319
|
-
breakoutGroup: string | null;
|
|
320
321
|
stickyReaction?: StickyReaction | null;
|
|
321
|
-
|
|
322
|
+
stream?: MediaStream;
|
|
322
323
|
}
|
|
323
324
|
declare class RoomParticipant {
|
|
324
325
|
readonly displayName: string;
|
|
@@ -330,7 +331,8 @@ declare class RoomParticipant {
|
|
|
330
331
|
readonly breakoutGroup: string | null;
|
|
331
332
|
readonly stickyReaction?: StickyReaction | null;
|
|
332
333
|
readonly isDialIn: boolean;
|
|
333
|
-
|
|
334
|
+
readonly isAudioRecorder: boolean;
|
|
335
|
+
constructor({ breakoutGroup, displayName, id, isAudioEnabled, isAudioRecorder, isDialIn, isVideoEnabled, stickyReaction, stream, }: RoomParticipantData);
|
|
334
336
|
}
|
|
335
337
|
type StreamState = "new_accept" | "to_accept" | "old_accept" | "done_accept" | "to_unaccept" | "done_unaccept" | "auto";
|
|
336
338
|
interface Stream {
|
|
@@ -338,29 +340,30 @@ interface Stream {
|
|
|
338
340
|
state: StreamState;
|
|
339
341
|
}
|
|
340
342
|
interface RemoteParticipant {
|
|
341
|
-
|
|
342
|
-
displayName: string;
|
|
343
|
+
breakoutGroup: string | null;
|
|
343
344
|
deviceId: string;
|
|
344
|
-
|
|
345
|
+
displayName: string;
|
|
346
|
+
externalId: string | null;
|
|
347
|
+
id: string;
|
|
345
348
|
isAudioEnabled: boolean;
|
|
346
|
-
|
|
349
|
+
isAudioRecorder: boolean;
|
|
350
|
+
isDialIn: boolean;
|
|
347
351
|
isLocalParticipant: boolean;
|
|
348
|
-
|
|
349
|
-
stream: (MediaStream & {
|
|
350
|
-
inboundId?: string;
|
|
351
|
-
}) | null;
|
|
352
|
-
streams: Stream[];
|
|
352
|
+
isVideoEnabled: boolean;
|
|
353
353
|
newJoiner: boolean;
|
|
354
354
|
presentationStream: (MediaStream & {
|
|
355
355
|
inboundId?: string;
|
|
356
356
|
}) | null;
|
|
357
|
-
|
|
357
|
+
roleName: RoleName;
|
|
358
358
|
stickyReaction?: StickyReaction | null;
|
|
359
|
-
|
|
359
|
+
stream: (MediaStream & {
|
|
360
|
+
inboundId?: string;
|
|
361
|
+
}) | null;
|
|
362
|
+
streams: Stream[];
|
|
360
363
|
}
|
|
361
364
|
declare class LocalParticipant extends RoomParticipant {
|
|
362
365
|
readonly isLocalParticipant = true;
|
|
363
|
-
constructor({ displayName, id,
|
|
366
|
+
constructor({ breakoutGroup, displayName, id, isAudioEnabled, isAudioRecorder, isDialIn, isVideoEnabled, stickyReaction, stream, }: RoomParticipantData);
|
|
364
367
|
}
|
|
365
368
|
interface WaitingParticipant {
|
|
366
369
|
id: string;
|
|
@@ -582,6 +585,7 @@ declare const localParticipantSlice: _reduxjs_toolkit.Slice<LocalParticipantStat
|
|
|
582
585
|
breakoutGroup: string | null;
|
|
583
586
|
stickyReaction?: immer.WritableDraft<StickyReaction> | null | undefined;
|
|
584
587
|
isDialIn: boolean;
|
|
588
|
+
isAudioRecorder: boolean;
|
|
585
589
|
};
|
|
586
590
|
setBreakoutGroupAssigned: (state: immer.WritableDraft<LocalParticipantState>, action: PayloadAction<{
|
|
587
591
|
breakoutGroupAssigned: string;
|
|
@@ -599,6 +603,7 @@ declare const localParticipantSlice: _reduxjs_toolkit.Slice<LocalParticipantStat
|
|
|
599
603
|
breakoutGroup: string | null;
|
|
600
604
|
stickyReaction?: immer.WritableDraft<StickyReaction> | null | undefined;
|
|
601
605
|
isDialIn: boolean;
|
|
606
|
+
isAudioRecorder: boolean;
|
|
602
607
|
};
|
|
603
608
|
}, "localParticipant", "localParticipant", _reduxjs_toolkit.SliceSelectors<LocalParticipantState>>;
|
|
604
609
|
declare const setDisplayName: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
@@ -667,71 +672,76 @@ interface CameraEffectsState {
|
|
|
667
672
|
}
|
|
668
673
|
|
|
669
674
|
interface AppConfig {
|
|
670
|
-
|
|
671
|
-
isDialIn?: boolean;
|
|
672
|
-
ignoreBreakoutGroups?: boolean;
|
|
675
|
+
assistantKey?: string | null;
|
|
673
676
|
displayName: string;
|
|
677
|
+
externalId: string | null;
|
|
678
|
+
ignoreBreakoutGroups?: boolean;
|
|
679
|
+
isAudioRecorder?: boolean;
|
|
680
|
+
isDialIn?: boolean;
|
|
681
|
+
isNodeSdk?: boolean;
|
|
674
682
|
localMediaOptions?: LocalMediaOptions;
|
|
675
683
|
roomKey: string | null;
|
|
676
|
-
assistantKey?: string | null;
|
|
677
684
|
roomUrl: string;
|
|
678
685
|
userAgent?: string;
|
|
679
|
-
externalId: string | null;
|
|
680
686
|
}
|
|
681
687
|
interface AppState {
|
|
682
|
-
|
|
688
|
+
displayName: string | null;
|
|
689
|
+
externalId: string | null;
|
|
690
|
+
ignoreBreakoutGroups: boolean;
|
|
691
|
+
initialConfig?: AppConfig;
|
|
683
692
|
isActive: boolean;
|
|
684
|
-
isDialIn: boolean;
|
|
685
693
|
isAssistant: boolean;
|
|
686
|
-
|
|
687
|
-
|
|
694
|
+
isAudioRecorder: boolean;
|
|
695
|
+
isDialIn: boolean;
|
|
696
|
+
isNodeSdk: boolean;
|
|
688
697
|
roomName: string | null;
|
|
689
|
-
|
|
698
|
+
roomUrl: string | null;
|
|
690
699
|
userAgent: string | null;
|
|
691
|
-
externalId: string | null;
|
|
692
|
-
initialConfig?: AppConfig;
|
|
693
700
|
}
|
|
694
701
|
declare const initialState: AppState;
|
|
695
702
|
declare const appSlice: _reduxjs_toolkit.Slice<AppState, {
|
|
696
703
|
doAppStart: (state: immer.WritableDraft<AppState>, action: PayloadAction<AppConfig>) => {
|
|
697
704
|
roomName: string;
|
|
698
705
|
initialConfig: {
|
|
699
|
-
|
|
700
|
-
isDialIn?: boolean;
|
|
701
|
-
ignoreBreakoutGroups?: boolean;
|
|
706
|
+
assistantKey?: string | null;
|
|
702
707
|
displayName: string;
|
|
708
|
+
externalId: string | null;
|
|
709
|
+
ignoreBreakoutGroups?: boolean;
|
|
710
|
+
isAudioRecorder?: boolean;
|
|
711
|
+
isDialIn?: boolean;
|
|
712
|
+
isNodeSdk?: boolean;
|
|
703
713
|
localMediaOptions?: LocalMediaOptions;
|
|
704
714
|
roomKey: string | null;
|
|
705
|
-
assistantKey?: string | null;
|
|
706
715
|
roomUrl: string;
|
|
707
716
|
userAgent?: string;
|
|
708
|
-
externalId: string | null;
|
|
709
717
|
};
|
|
710
718
|
isActive: true;
|
|
711
719
|
isAssistant: boolean;
|
|
712
|
-
|
|
713
|
-
isDialIn: boolean;
|
|
714
|
-
ignoreBreakoutGroups: boolean;
|
|
720
|
+
assistantKey?: string | null;
|
|
715
721
|
displayName: string;
|
|
722
|
+
externalId: string | null;
|
|
723
|
+
ignoreBreakoutGroups: boolean;
|
|
724
|
+
isAudioRecorder: boolean;
|
|
725
|
+
isDialIn: boolean;
|
|
726
|
+
isNodeSdk: boolean;
|
|
716
727
|
localMediaOptions?: LocalMediaOptions;
|
|
717
728
|
roomKey: string | null;
|
|
718
|
-
assistantKey?: string | null;
|
|
719
729
|
roomUrl: string;
|
|
720
730
|
userAgent: string | null;
|
|
721
|
-
externalId: string | null;
|
|
722
731
|
};
|
|
723
732
|
doAppStop: (state: immer.WritableDraft<AppState>) => {
|
|
724
733
|
isActive: false;
|
|
725
|
-
isNodeSdk: boolean;
|
|
726
|
-
isDialIn: boolean;
|
|
727
|
-
isAssistant: boolean;
|
|
728
|
-
ignoreBreakoutGroups: boolean;
|
|
729
|
-
roomUrl: string | null;
|
|
730
|
-
roomName: string | null;
|
|
731
734
|
displayName: string | null;
|
|
732
|
-
userAgent: string | null;
|
|
733
735
|
externalId: string | null;
|
|
736
|
+
ignoreBreakoutGroups: boolean;
|
|
734
737
|
initialConfig?: immer.WritableDraft<AppConfig> | undefined;
|
|
738
|
+
isAssistant: boolean;
|
|
739
|
+
isAudioRecorder: boolean;
|
|
740
|
+
isDialIn: boolean;
|
|
741
|
+
isNodeSdk: boolean;
|
|
742
|
+
roomName: string | null;
|
|
743
|
+
roomUrl: string | null;
|
|
744
|
+
userAgent: string | null;
|
|
735
745
|
};
|
|
736
746
|
}, "app", "app", _reduxjs_toolkit.SliceSelectors<AppState>>;
|
|
737
747
|
declare const doAppStop: _reduxjs_toolkit.ActionCreatorWithoutPayload<"app/doAppStop">;
|
|
@@ -739,6 +749,7 @@ declare const doAppStart: _reduxjs_toolkit.ActionCreatorWithPayload<AppConfig, "
|
|
|
739
749
|
declare const selectAppRaw: (state: RootState) => AppState;
|
|
740
750
|
declare const selectAppIsActive: (state: RootState) => boolean;
|
|
741
751
|
declare const selectAppIsDialIn: (state: RootState) => boolean;
|
|
752
|
+
declare const selectAppIsAudioRecorder: (state: RootState) => boolean;
|
|
742
753
|
declare const selectAppIsAssistant: (state: RootState) => boolean;
|
|
743
754
|
declare const selectAppRoomName: (state: RootState) => string | null;
|
|
744
755
|
declare const selectAppRoomUrl: (state: RootState) => string | null;
|
|
@@ -4859,5 +4870,5 @@ declare const selectRoomConnectionSessionId: (state: RootState) => string | unde
|
|
|
4859
4870
|
declare const selectRoomConnectionStatus: (state: RootState) => ConnectionStatus;
|
|
4860
4871
|
declare const selectRoomConnectionError: (state: RootState) => string | null;
|
|
4861
4872
|
|
|
4862
|
-
export { 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, deviceBusy, deviceCredentialsSlice, deviceCredentialsSliceInitialState, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doBreakoutJoin, doCancelKnock, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLocalStreamEffect, 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, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, initialState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localParticipantSliceInitialState, localScreenshareSlice, localScreenshareSliceInitialState, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, organizationSliceInitialState, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, remoteParticipantsSliceInitialState, removeSpotlight, resolutionReported, roomConnectionSlice, roomConnectionSliceInitialState, roomSlice, roomSliceInitialState, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, rtcAnalyticsSliceInitialState, rtcClientConnectionStatusChanged, rtcConnectionSlice, rtcConnectionSliceInitialState, rtcDisconnected, rtcDispatcherCreated, rtcEvents, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAllClientViewsInCurrentGroup, selectAppDisplayName, selectAppExternalId, selectAppIgnoreBreakoutGroups, selectAppInitialConfig, selectAppIsActive, selectAppIsAssistant, selectAppIsDialIn, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAssistantKey, selectAuthorizationRoleName, selectBreakoutActive, selectBreakoutAssignments, selectBreakoutCurrentGroup, selectBreakoutCurrentId, selectBreakoutGroupedParticipants, selectBreakoutGroups, selectBreakoutInitiatedBy, selectBreakoutRaw, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingIsInitiator, 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, selectLocalMediaBeforeEffectTracks, 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, selectOrganizationPreferences, 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 };
|
|
4873
|
+
export { 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, deviceBusy, deviceCredentialsSlice, deviceCredentialsSliceInitialState, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doBreakoutJoin, doCancelKnock, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLocalStreamEffect, 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, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, initialState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localParticipantSliceInitialState, localScreenshareSlice, localScreenshareSliceInitialState, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, organizationSliceInitialState, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, remoteParticipantsSliceInitialState, removeSpotlight, resolutionReported, roomConnectionSlice, roomConnectionSliceInitialState, roomSlice, roomSliceInitialState, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, rtcAnalyticsSliceInitialState, rtcClientConnectionStatusChanged, rtcConnectionSlice, rtcConnectionSliceInitialState, rtcDisconnected, rtcDispatcherCreated, rtcEvents, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAllClientViewsInCurrentGroup, selectAppDisplayName, selectAppExternalId, selectAppIgnoreBreakoutGroups, selectAppInitialConfig, selectAppIsActive, selectAppIsAssistant, selectAppIsAudioRecorder, selectAppIsDialIn, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAssistantKey, selectAuthorizationRoleName, selectBreakoutActive, selectBreakoutAssignments, selectBreakoutCurrentGroup, selectBreakoutCurrentId, selectBreakoutGroupedParticipants, selectBreakoutGroups, selectBreakoutInitiatedBy, selectBreakoutRaw, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingIsInitiator, 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, selectLocalMediaBeforeEffectTracks, 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, selectOrganizationPreferences, 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 };
|
|
4863
4874
|
export type { AppConfig, AppDispatch, AppReducer, AppStartListening, AppState, AppThunk, AuthorizationState, BreakoutState, ChatMessage, ChatMessageEvent, ChatMessageEventProps, ChatState, ClientView, CloudRecordingState, ConnectionMonitorStart, ConnectionMonitorState, ConnectionStatus, DeviceCredentialsState, LocalMediaOptions, LocalMediaState, LocalParticipantState, LocalScreenshareState, Notification, NotificationEvent, NotificationEventMap, NotificationEvents, NotificationsEventEmitter, NotificationsState, OrganizationState, RemoteParticipantSliceState, RequestAudioEvent, RequestAudioEventProps, RequestVideoEvent, RequestVideoEventProps, RoomConnectionState, RoomState, RootState, RtcConnectionState, SignalClientEvent, SignalClientEventProps, SignalConnectionState, SignalStatusEvent, SignalStatusEventProps, SpotlightsState, StickyReactionEvent, StickyReactionEventProps, Store, StreamingState, ThunkConfig, WaitingParticipantsState, rtcAnalyticsState };
|
package/dist/redux/index.js
CHANGED
|
@@ -73,19 +73,20 @@ const createReactor = (selectors, callback) => {
|
|
|
73
73
|
});
|
|
74
74
|
};
|
|
75
75
|
|
|
76
|
-
const coreVersion = "1.
|
|
76
|
+
const coreVersion = "1.6.0";
|
|
77
77
|
|
|
78
78
|
const initialState$1 = {
|
|
79
|
-
|
|
79
|
+
displayName: null,
|
|
80
|
+
externalId: null,
|
|
81
|
+
ignoreBreakoutGroups: false,
|
|
80
82
|
isActive: false,
|
|
81
|
-
isDialIn: false,
|
|
82
83
|
isAssistant: false,
|
|
83
|
-
|
|
84
|
+
isAudioRecorder: false,
|
|
85
|
+
isDialIn: false,
|
|
86
|
+
isNodeSdk: false,
|
|
84
87
|
roomName: null,
|
|
85
88
|
roomUrl: null,
|
|
86
|
-
displayName: null,
|
|
87
89
|
userAgent: `core:${coreVersion}`,
|
|
88
|
-
externalId: null,
|
|
89
90
|
};
|
|
90
91
|
const appSlice = createSlice({
|
|
91
92
|
name: "app",
|
|
@@ -104,6 +105,7 @@ const { doAppStop, doAppStart } = appSlice.actions;
|
|
|
104
105
|
const selectAppRaw = (state) => state.app;
|
|
105
106
|
const selectAppIsActive = (state) => state.app.isActive;
|
|
106
107
|
const selectAppIsDialIn = (state) => state.app.isDialIn;
|
|
108
|
+
const selectAppIsAudioRecorder = (state) => state.app.isAudioRecorder;
|
|
107
109
|
const selectAppIsAssistant = (state) => state.app.isAssistant;
|
|
108
110
|
const selectAppRoomName = (state) => state.app.roomName;
|
|
109
111
|
const selectAppRoomUrl = (state) => state.app.roomUrl;
|
|
@@ -2238,19 +2240,20 @@ createReactor([selectShouldStopConnectionMonitor], ({ dispatch }, shouldStartCon
|
|
|
2238
2240
|
});
|
|
2239
2241
|
|
|
2240
2242
|
const localParticipantSliceInitialState = {
|
|
2241
|
-
displayName: "",
|
|
2242
|
-
id: "",
|
|
2243
2243
|
breakoutGroup: null,
|
|
2244
2244
|
breakoutGroupAssigned: "",
|
|
2245
|
+
clientClaim: undefined,
|
|
2246
|
+
displayName: "",
|
|
2247
|
+
id: "",
|
|
2245
2248
|
isAudioEnabled: true,
|
|
2246
|
-
|
|
2249
|
+
isAudioRecorder: false,
|
|
2250
|
+
isDialIn: false,
|
|
2247
2251
|
isLocalParticipant: true,
|
|
2248
|
-
stream: undefined,
|
|
2249
2252
|
isScreenSharing: false,
|
|
2253
|
+
isVideoEnabled: true,
|
|
2250
2254
|
roleName: "none",
|
|
2251
|
-
clientClaim: undefined,
|
|
2252
2255
|
stickyReaction: undefined,
|
|
2253
|
-
|
|
2256
|
+
stream: undefined,
|
|
2254
2257
|
};
|
|
2255
2258
|
const localParticipantSlice = createSlice({
|
|
2256
2259
|
name: "localParticipant",
|
|
@@ -2673,6 +2676,7 @@ const doKnockRoom = createAppThunk(() => (dispatch, getState) => {
|
|
|
2673
2676
|
const roomKey = selectRoomKey(state);
|
|
2674
2677
|
const displayName = selectAppDisplayName(state);
|
|
2675
2678
|
const isDialIn = selectAppIsDialIn(state);
|
|
2679
|
+
const isAudioRecorder = selectAppIsAudioRecorder(state);
|
|
2676
2680
|
const userAgent = selectAppUserAgent(state);
|
|
2677
2681
|
const externalId = selectAppExternalId(state);
|
|
2678
2682
|
const organizationId = selectOrganizationId(state);
|
|
@@ -2691,6 +2695,7 @@ const doKnockRoom = createAppThunk(() => (dispatch, getState) => {
|
|
|
2691
2695
|
displayName,
|
|
2692
2696
|
isCoLocated: false,
|
|
2693
2697
|
isDialIn,
|
|
2698
|
+
isAudioRecorder,
|
|
2694
2699
|
isDevicePermissionDenied: false,
|
|
2695
2700
|
kickFromOtherRooms: false,
|
|
2696
2701
|
organizationId,
|
|
@@ -2722,6 +2727,7 @@ const doConnectRoom = createAppThunk(() => (dispatch, getState) => {
|
|
|
2722
2727
|
const userAgent = selectAppUserAgent(state);
|
|
2723
2728
|
const externalId = selectAppExternalId(state);
|
|
2724
2729
|
const isDialIn = selectAppIsDialIn(state);
|
|
2730
|
+
const isAudioRecorder = selectAppIsAudioRecorder(state);
|
|
2725
2731
|
const organizationId = selectOrganizationId(state);
|
|
2726
2732
|
const isCameraEnabled = selectIsCameraEnabled(getState());
|
|
2727
2733
|
const isMicrophoneEnabled = selectIsMicrophoneEnabled(getState());
|
|
@@ -2729,7 +2735,8 @@ const doConnectRoom = createAppThunk(() => (dispatch, getState) => {
|
|
|
2729
2735
|
socket === null || socket === void 0 ? void 0 : socket.emit("join_room", Object.assign({ avatarUrl: null, config: {
|
|
2730
2736
|
isAudioEnabled: isMicrophoneEnabled,
|
|
2731
2737
|
isVideoEnabled: isCameraEnabled,
|
|
2732
|
-
}, deviceCapabilities: { canScreenshare: true }, displayName, isCoLocated: false, isDialIn,
|
|
2738
|
+
}, deviceCapabilities: { canScreenshare: true }, displayName, isCoLocated: false, isDialIn,
|
|
2739
|
+
isAudioRecorder, isDevicePermissionDenied: false, kickFromOtherRooms: false, organizationId,
|
|
2733
2740
|
roomKey,
|
|
2734
2741
|
assistantKey,
|
|
2735
2742
|
roomName,
|
|
@@ -3932,4 +3939,4 @@ function createServices() {
|
|
|
3932
3939
|
};
|
|
3933
3940
|
}
|
|
3934
3941
|
|
|
3935
|
-
export { 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, deviceBusy, deviceCredentialsSlice, deviceCredentialsSliceInitialState, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doBreakoutJoin, doCancelKnock, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLocalStreamEffect, 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, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, initialState$1 as initialState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localParticipantSliceInitialState, localScreenshareSlice, localScreenshareSliceInitialState, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, organizationSliceInitialState, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, remoteParticipantsSliceInitialState, removeSpotlight, resolutionReported, roomConnectionSlice, roomConnectionSliceInitialState, roomSlice, roomSliceInitialState, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, rtcAnalyticsSliceInitialState, rtcClientConnectionStatusChanged, rtcConnectionSlice, rtcConnectionSliceInitialState, rtcDisconnected, rtcDispatcherCreated, rtcEvents, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAllClientViewsInCurrentGroup, selectAppDisplayName, selectAppExternalId, selectAppIgnoreBreakoutGroups, selectAppInitialConfig, selectAppIsActive, selectAppIsAssistant, selectAppIsDialIn, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAssistantKey, selectAuthorizationRoleName, selectBreakoutActive, selectBreakoutAssignments, selectBreakoutCurrentGroup, selectBreakoutCurrentId, selectBreakoutGroupedParticipants, selectBreakoutGroups, selectBreakoutInitiatedBy, selectBreakoutRaw, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingIsInitiator, 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, selectLocalMediaBeforeEffectTracks, 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, selectOrganizationPreferences, 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 };
|
|
3942
|
+
export { 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, deviceBusy, deviceCredentialsSlice, deviceCredentialsSliceInitialState, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doBreakoutJoin, doCancelKnock, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLocalStreamEffect, 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, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, initialState$1 as initialState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localParticipantSliceInitialState, localScreenshareSlice, localScreenshareSliceInitialState, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, organizationSliceInitialState, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, remoteParticipantsSliceInitialState, removeSpotlight, resolutionReported, roomConnectionSlice, roomConnectionSliceInitialState, roomSlice, roomSliceInitialState, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, rtcAnalyticsSliceInitialState, rtcClientConnectionStatusChanged, rtcConnectionSlice, rtcConnectionSliceInitialState, rtcDisconnected, rtcDispatcherCreated, rtcEvents, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAllClientViewsInCurrentGroup, selectAppDisplayName, selectAppExternalId, selectAppIgnoreBreakoutGroups, selectAppInitialConfig, selectAppIsActive, selectAppIsAssistant, selectAppIsAudioRecorder, selectAppIsDialIn, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAssistantKey, selectAuthorizationRoleName, selectBreakoutActive, selectBreakoutAssignments, selectBreakoutCurrentGroup, selectBreakoutCurrentId, selectBreakoutGroupedParticipants, selectBreakoutGroups, selectBreakoutInitiatedBy, selectBreakoutRaw, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingIsInitiator, 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, selectLocalMediaBeforeEffectTracks, 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, selectOrganizationPreferences, 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 };
|