@whereby.com/core 0.16.3 → 0.18.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 +59 -10
- package/dist/index.d.cts +368 -28
- package/dist/index.d.mts +368 -28
- package/dist/index.d.ts +368 -28
- package/dist/index.mjs +56 -11
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3908,18 +3908,18 @@ declare const selectLocalParticipantView: ((state: {
|
|
|
3908
3908
|
spotlights: SpotlightsState;
|
|
3909
3909
|
streaming: StreamingState;
|
|
3910
3910
|
waitingParticipants: WaitingParticipantsState;
|
|
3911
|
-
}) => ClientView) & {
|
|
3911
|
+
}) => ClientView | null) & {
|
|
3912
3912
|
clearCache: () => void;
|
|
3913
3913
|
resultsCount: () => number;
|
|
3914
3914
|
resetResultsCount: () => void;
|
|
3915
3915
|
} & {
|
|
3916
|
-
resultFunc: (resultFuncArgs_0: LocalParticipantState, resultFuncArgs_1: MediaStream | undefined) => ClientView;
|
|
3917
|
-
memoizedResultFunc: ((resultFuncArgs_0: LocalParticipantState, resultFuncArgs_1: MediaStream | undefined) => ClientView) & {
|
|
3916
|
+
resultFunc: (resultFuncArgs_0: LocalParticipantState, resultFuncArgs_1: MediaStream | undefined) => ClientView | null;
|
|
3917
|
+
memoizedResultFunc: ((resultFuncArgs_0: LocalParticipantState, resultFuncArgs_1: MediaStream | undefined) => ClientView | null) & {
|
|
3918
3918
|
clearCache: () => void;
|
|
3919
3919
|
resultsCount: () => number;
|
|
3920
3920
|
resetResultsCount: () => void;
|
|
3921
3921
|
};
|
|
3922
|
-
lastResult: () => ClientView;
|
|
3922
|
+
lastResult: () => ClientView | null;
|
|
3923
3923
|
dependencies: [(state: RootState) => LocalParticipantState, (state: {
|
|
3924
3924
|
app: AppState;
|
|
3925
3925
|
authorization: AuthorizationState;
|
|
@@ -4326,8 +4326,49 @@ declare const participantStreamIdAdded: _reduxjs_toolkit.ActionCreatorWithPayloa
|
|
|
4326
4326
|
declare const streamStatusUpdated: _reduxjs_toolkit.ActionCreatorWithPayload<StreamStatusUpdate[], "remoteParticipants/streamStatusUpdated">;
|
|
4327
4327
|
declare const doRequestAudioEnable: (args: AudioEnableRequest) => AppThunk<void>;
|
|
4328
4328
|
declare const selectRemoteParticipantsRaw: (state: RootState) => RemoteParticipantState;
|
|
4329
|
-
declare const
|
|
4330
|
-
declare const
|
|
4329
|
+
declare const selectRemoteClients: (state: RootState) => RemoteParticipant[];
|
|
4330
|
+
declare const selectRemoteParticipants: ((state: {
|
|
4331
|
+
app: AppState;
|
|
4332
|
+
authorization: AuthorizationState;
|
|
4333
|
+
chat: ChatState;
|
|
4334
|
+
cloudRecording: CloudRecordingState;
|
|
4335
|
+
deviceCredentials: DeviceCredentialsState;
|
|
4336
|
+
localMedia: LocalMediaState;
|
|
4337
|
+
localParticipant: LocalParticipantState;
|
|
4338
|
+
localScreenshare: LocalScreenshareState;
|
|
4339
|
+
notifications: NotificationsState;
|
|
4340
|
+
organization: OrganizationState;
|
|
4341
|
+
remoteParticipants: RemoteParticipantState;
|
|
4342
|
+
room: RoomState;
|
|
4343
|
+
roomConnection: RoomConnectionState;
|
|
4344
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
4345
|
+
rtcConnection: RtcConnectionState;
|
|
4346
|
+
signalConnection: SignalConnectionState;
|
|
4347
|
+
spotlights: SpotlightsState;
|
|
4348
|
+
streaming: StreamingState;
|
|
4349
|
+
waitingParticipants: WaitingParticipantsState;
|
|
4350
|
+
}) => RemoteParticipant[]) & {
|
|
4351
|
+
clearCache: () => void;
|
|
4352
|
+
resultsCount: () => number;
|
|
4353
|
+
resetResultsCount: () => void;
|
|
4354
|
+
} & {
|
|
4355
|
+
resultFunc: (resultFuncArgs_0: RemoteParticipant[]) => RemoteParticipant[];
|
|
4356
|
+
memoizedResultFunc: ((resultFuncArgs_0: RemoteParticipant[]) => RemoteParticipant[]) & {
|
|
4357
|
+
clearCache: () => void;
|
|
4358
|
+
resultsCount: () => number;
|
|
4359
|
+
resetResultsCount: () => void;
|
|
4360
|
+
};
|
|
4361
|
+
lastResult: () => RemoteParticipant[];
|
|
4362
|
+
dependencies: [(state: RootState) => RemoteParticipant[]];
|
|
4363
|
+
recomputations: () => number;
|
|
4364
|
+
resetRecomputations: () => void;
|
|
4365
|
+
dependencyRecomputations: () => number;
|
|
4366
|
+
resetDependencyRecomputations: () => void;
|
|
4367
|
+
} & {
|
|
4368
|
+
argsMemoize: typeof reselect.weakMapMemoize;
|
|
4369
|
+
memoize: typeof reselect.weakMapMemoize;
|
|
4370
|
+
};
|
|
4371
|
+
declare const selectNumClients: ((state: {
|
|
4331
4372
|
app: AppState;
|
|
4332
4373
|
authorization: AuthorizationState;
|
|
4333
4374
|
chat: ChatState;
|
|
@@ -4368,6 +4409,107 @@ declare const selectNumParticipants: ((state: {
|
|
|
4368
4409
|
argsMemoize: typeof reselect.weakMapMemoize;
|
|
4369
4410
|
memoize: typeof reselect.weakMapMemoize;
|
|
4370
4411
|
};
|
|
4412
|
+
declare const selectNumParticipants: ((state: {
|
|
4413
|
+
app: AppState;
|
|
4414
|
+
authorization: AuthorizationState;
|
|
4415
|
+
chat: ChatState;
|
|
4416
|
+
cloudRecording: CloudRecordingState;
|
|
4417
|
+
deviceCredentials: DeviceCredentialsState;
|
|
4418
|
+
localMedia: LocalMediaState;
|
|
4419
|
+
localParticipant: LocalParticipantState;
|
|
4420
|
+
localScreenshare: LocalScreenshareState;
|
|
4421
|
+
notifications: NotificationsState;
|
|
4422
|
+
organization: OrganizationState;
|
|
4423
|
+
remoteParticipants: RemoteParticipantState;
|
|
4424
|
+
room: RoomState;
|
|
4425
|
+
roomConnection: RoomConnectionState;
|
|
4426
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
4427
|
+
rtcConnection: RtcConnectionState;
|
|
4428
|
+
signalConnection: SignalConnectionState;
|
|
4429
|
+
spotlights: SpotlightsState;
|
|
4430
|
+
streaming: StreamingState;
|
|
4431
|
+
waitingParticipants: WaitingParticipantsState;
|
|
4432
|
+
}) => number) & {
|
|
4433
|
+
clearCache: () => void;
|
|
4434
|
+
resultsCount: () => number;
|
|
4435
|
+
resetResultsCount: () => void;
|
|
4436
|
+
} & {
|
|
4437
|
+
resultFunc: (resultFuncArgs_0: RemoteParticipant[], resultFuncArgs_1: LocalParticipantState) => number;
|
|
4438
|
+
memoizedResultFunc: ((resultFuncArgs_0: RemoteParticipant[], resultFuncArgs_1: LocalParticipantState) => number) & {
|
|
4439
|
+
clearCache: () => void;
|
|
4440
|
+
resultsCount: () => number;
|
|
4441
|
+
resetResultsCount: () => void;
|
|
4442
|
+
};
|
|
4443
|
+
lastResult: () => number;
|
|
4444
|
+
dependencies: [((state: {
|
|
4445
|
+
app: AppState;
|
|
4446
|
+
authorization: AuthorizationState;
|
|
4447
|
+
chat: ChatState;
|
|
4448
|
+
cloudRecording: CloudRecordingState;
|
|
4449
|
+
deviceCredentials: DeviceCredentialsState;
|
|
4450
|
+
localMedia: LocalMediaState;
|
|
4451
|
+
localParticipant: LocalParticipantState;
|
|
4452
|
+
localScreenshare: LocalScreenshareState;
|
|
4453
|
+
notifications: NotificationsState;
|
|
4454
|
+
organization: OrganizationState;
|
|
4455
|
+
remoteParticipants: RemoteParticipantState;
|
|
4456
|
+
room: RoomState;
|
|
4457
|
+
roomConnection: RoomConnectionState;
|
|
4458
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
4459
|
+
rtcConnection: RtcConnectionState;
|
|
4460
|
+
signalConnection: SignalConnectionState;
|
|
4461
|
+
spotlights: SpotlightsState;
|
|
4462
|
+
streaming: StreamingState;
|
|
4463
|
+
waitingParticipants: WaitingParticipantsState;
|
|
4464
|
+
}) => RemoteParticipant[]) & {
|
|
4465
|
+
clearCache: () => void;
|
|
4466
|
+
resultsCount: () => number;
|
|
4467
|
+
resetResultsCount: () => void;
|
|
4468
|
+
} & {
|
|
4469
|
+
resultFunc: (resultFuncArgs_0: RemoteParticipant[]) => RemoteParticipant[];
|
|
4470
|
+
memoizedResultFunc: ((resultFuncArgs_0: RemoteParticipant[]) => RemoteParticipant[]) & {
|
|
4471
|
+
clearCache: () => void;
|
|
4472
|
+
resultsCount: () => number;
|
|
4473
|
+
resetResultsCount: () => void;
|
|
4474
|
+
};
|
|
4475
|
+
lastResult: () => RemoteParticipant[];
|
|
4476
|
+
dependencies: [(state: RootState) => RemoteParticipant[]];
|
|
4477
|
+
recomputations: () => number;
|
|
4478
|
+
resetRecomputations: () => void;
|
|
4479
|
+
dependencyRecomputations: () => number;
|
|
4480
|
+
resetDependencyRecomputations: () => void;
|
|
4481
|
+
} & {
|
|
4482
|
+
argsMemoize: typeof reselect.weakMapMemoize;
|
|
4483
|
+
memoize: typeof reselect.weakMapMemoize;
|
|
4484
|
+
}, (state: {
|
|
4485
|
+
app: AppState;
|
|
4486
|
+
authorization: AuthorizationState;
|
|
4487
|
+
chat: ChatState;
|
|
4488
|
+
cloudRecording: CloudRecordingState;
|
|
4489
|
+
deviceCredentials: DeviceCredentialsState;
|
|
4490
|
+
localMedia: LocalMediaState;
|
|
4491
|
+
localParticipant: LocalParticipantState;
|
|
4492
|
+
localScreenshare: LocalScreenshareState;
|
|
4493
|
+
notifications: NotificationsState;
|
|
4494
|
+
organization: OrganizationState;
|
|
4495
|
+
remoteParticipants: RemoteParticipantState;
|
|
4496
|
+
room: RoomState;
|
|
4497
|
+
roomConnection: RoomConnectionState;
|
|
4498
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
4499
|
+
rtcConnection: RtcConnectionState;
|
|
4500
|
+
signalConnection: SignalConnectionState;
|
|
4501
|
+
spotlights: SpotlightsState;
|
|
4502
|
+
streaming: StreamingState;
|
|
4503
|
+
waitingParticipants: WaitingParticipantsState;
|
|
4504
|
+
}) => LocalParticipantState];
|
|
4505
|
+
recomputations: () => number;
|
|
4506
|
+
resetRecomputations: () => void;
|
|
4507
|
+
dependencyRecomputations: () => number;
|
|
4508
|
+
resetDependencyRecomputations: () => void;
|
|
4509
|
+
} & {
|
|
4510
|
+
argsMemoize: typeof reselect.weakMapMemoize;
|
|
4511
|
+
memoize: typeof reselect.weakMapMemoize;
|
|
4512
|
+
};
|
|
4371
4513
|
|
|
4372
4514
|
interface RoomState {
|
|
4373
4515
|
isLocked: boolean;
|
|
@@ -4435,7 +4577,7 @@ declare const selectScreenshares: ((state: {
|
|
|
4435
4577
|
spotlights: SpotlightsState;
|
|
4436
4578
|
streaming: StreamingState;
|
|
4437
4579
|
waitingParticipants: WaitingParticipantsState;
|
|
4438
|
-
}) => MediaStream | null, (state: {
|
|
4580
|
+
}) => MediaStream | null, ((state: {
|
|
4439
4581
|
app: AppState;
|
|
4440
4582
|
authorization: AuthorizationState;
|
|
4441
4583
|
chat: ChatState;
|
|
@@ -4455,7 +4597,47 @@ declare const selectScreenshares: ((state: {
|
|
|
4455
4597
|
spotlights: SpotlightsState;
|
|
4456
4598
|
streaming: StreamingState;
|
|
4457
4599
|
waitingParticipants: WaitingParticipantsState;
|
|
4458
|
-
}) => RemoteParticipant[]
|
|
4600
|
+
}) => RemoteParticipant[]) & {
|
|
4601
|
+
clearCache: () => void;
|
|
4602
|
+
resultsCount: () => number;
|
|
4603
|
+
resetResultsCount: () => void;
|
|
4604
|
+
} & {
|
|
4605
|
+
resultFunc: (resultFuncArgs_0: RemoteParticipant[]) => RemoteParticipant[];
|
|
4606
|
+
memoizedResultFunc: ((resultFuncArgs_0: RemoteParticipant[]) => RemoteParticipant[]) & {
|
|
4607
|
+
clearCache: () => void;
|
|
4608
|
+
resultsCount: () => number;
|
|
4609
|
+
resetResultsCount: () => void;
|
|
4610
|
+
};
|
|
4611
|
+
lastResult: () => RemoteParticipant[];
|
|
4612
|
+
dependencies: [(state: {
|
|
4613
|
+
app: AppState;
|
|
4614
|
+
authorization: AuthorizationState;
|
|
4615
|
+
chat: ChatState;
|
|
4616
|
+
cloudRecording: CloudRecordingState;
|
|
4617
|
+
deviceCredentials: DeviceCredentialsState;
|
|
4618
|
+
localMedia: LocalMediaState;
|
|
4619
|
+
localParticipant: LocalParticipantState;
|
|
4620
|
+
localScreenshare: LocalScreenshareState;
|
|
4621
|
+
notifications: NotificationsState;
|
|
4622
|
+
organization: OrganizationState;
|
|
4623
|
+
remoteParticipants: RemoteParticipantState;
|
|
4624
|
+
room: RoomState;
|
|
4625
|
+
roomConnection: RoomConnectionState;
|
|
4626
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
4627
|
+
rtcConnection: RtcConnectionState;
|
|
4628
|
+
signalConnection: SignalConnectionState;
|
|
4629
|
+
spotlights: SpotlightsState;
|
|
4630
|
+
streaming: StreamingState;
|
|
4631
|
+
waitingParticipants: WaitingParticipantsState;
|
|
4632
|
+
}) => RemoteParticipant[]];
|
|
4633
|
+
recomputations: () => number;
|
|
4634
|
+
resetRecomputations: () => void;
|
|
4635
|
+
dependencyRecomputations: () => number;
|
|
4636
|
+
resetDependencyRecomputations: () => void;
|
|
4637
|
+
} & {
|
|
4638
|
+
argsMemoize: typeof reselect.weakMapMemoize;
|
|
4639
|
+
memoize: typeof reselect.weakMapMemoize;
|
|
4640
|
+
}];
|
|
4459
4641
|
recomputations: () => number;
|
|
4460
4642
|
resetRecomputations: () => void;
|
|
4461
4643
|
dependencyRecomputations: () => number;
|
|
@@ -4536,7 +4718,7 @@ declare const selectRemoteClientViews: ((state: {
|
|
|
4536
4718
|
spotlights: SpotlightsState;
|
|
4537
4719
|
streaming: StreamingState;
|
|
4538
4720
|
waitingParticipants: WaitingParticipantsState;
|
|
4539
|
-
}) => LocalParticipantState, (state: {
|
|
4721
|
+
}) => LocalParticipantState, ((state: {
|
|
4540
4722
|
app: AppState;
|
|
4541
4723
|
authorization: AuthorizationState;
|
|
4542
4724
|
chat: ChatState;
|
|
@@ -4556,7 +4738,47 @@ declare const selectRemoteClientViews: ((state: {
|
|
|
4556
4738
|
spotlights: SpotlightsState;
|
|
4557
4739
|
streaming: StreamingState;
|
|
4558
4740
|
waitingParticipants: WaitingParticipantsState;
|
|
4559
|
-
}) => RemoteParticipant[]
|
|
4741
|
+
}) => RemoteParticipant[]) & {
|
|
4742
|
+
clearCache: () => void;
|
|
4743
|
+
resultsCount: () => number;
|
|
4744
|
+
resetResultsCount: () => void;
|
|
4745
|
+
} & {
|
|
4746
|
+
resultFunc: (resultFuncArgs_0: RemoteParticipant[]) => RemoteParticipant[];
|
|
4747
|
+
memoizedResultFunc: ((resultFuncArgs_0: RemoteParticipant[]) => RemoteParticipant[]) & {
|
|
4748
|
+
clearCache: () => void;
|
|
4749
|
+
resultsCount: () => number;
|
|
4750
|
+
resetResultsCount: () => void;
|
|
4751
|
+
};
|
|
4752
|
+
lastResult: () => RemoteParticipant[];
|
|
4753
|
+
dependencies: [(state: {
|
|
4754
|
+
app: AppState;
|
|
4755
|
+
authorization: AuthorizationState;
|
|
4756
|
+
chat: ChatState;
|
|
4757
|
+
cloudRecording: CloudRecordingState;
|
|
4758
|
+
deviceCredentials: DeviceCredentialsState;
|
|
4759
|
+
localMedia: LocalMediaState;
|
|
4760
|
+
localParticipant: LocalParticipantState;
|
|
4761
|
+
localScreenshare: LocalScreenshareState;
|
|
4762
|
+
notifications: NotificationsState;
|
|
4763
|
+
organization: OrganizationState;
|
|
4764
|
+
remoteParticipants: RemoteParticipantState;
|
|
4765
|
+
room: RoomState;
|
|
4766
|
+
roomConnection: RoomConnectionState;
|
|
4767
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
4768
|
+
rtcConnection: RtcConnectionState;
|
|
4769
|
+
signalConnection: SignalConnectionState;
|
|
4770
|
+
spotlights: SpotlightsState;
|
|
4771
|
+
streaming: StreamingState;
|
|
4772
|
+
waitingParticipants: WaitingParticipantsState;
|
|
4773
|
+
}) => RemoteParticipant[]];
|
|
4774
|
+
recomputations: () => number;
|
|
4775
|
+
resetRecomputations: () => void;
|
|
4776
|
+
dependencyRecomputations: () => number;
|
|
4777
|
+
resetDependencyRecomputations: () => void;
|
|
4778
|
+
} & {
|
|
4779
|
+
argsMemoize: typeof reselect.weakMapMemoize;
|
|
4780
|
+
memoize: typeof reselect.weakMapMemoize;
|
|
4781
|
+
}];
|
|
4560
4782
|
recomputations: () => number;
|
|
4561
4783
|
resetRecomputations: () => void;
|
|
4562
4784
|
dependencyRecomputations: () => number;
|
|
@@ -4590,8 +4812,8 @@ declare const selectAllClientViews: ((state: {
|
|
|
4590
4812
|
resultsCount: () => number;
|
|
4591
4813
|
resetResultsCount: () => void;
|
|
4592
4814
|
} & {
|
|
4593
|
-
resultFunc: (resultFuncArgs_0: ClientView, resultFuncArgs_1: ClientView[]) => ClientView[];
|
|
4594
|
-
memoizedResultFunc: ((resultFuncArgs_0: ClientView, resultFuncArgs_1: ClientView[]) => ClientView[]) & {
|
|
4815
|
+
resultFunc: (resultFuncArgs_0: ClientView | null, resultFuncArgs_1: ClientView[]) => ClientView[];
|
|
4816
|
+
memoizedResultFunc: ((resultFuncArgs_0: ClientView | null, resultFuncArgs_1: ClientView[]) => ClientView[]) & {
|
|
4595
4817
|
clearCache: () => void;
|
|
4596
4818
|
resultsCount: () => number;
|
|
4597
4819
|
resetResultsCount: () => void;
|
|
@@ -4617,18 +4839,18 @@ declare const selectAllClientViews: ((state: {
|
|
|
4617
4839
|
spotlights: SpotlightsState;
|
|
4618
4840
|
streaming: StreamingState;
|
|
4619
4841
|
waitingParticipants: WaitingParticipantsState;
|
|
4620
|
-
}) => ClientView) & {
|
|
4842
|
+
}) => ClientView | null) & {
|
|
4621
4843
|
clearCache: () => void;
|
|
4622
4844
|
resultsCount: () => number;
|
|
4623
4845
|
resetResultsCount: () => void;
|
|
4624
4846
|
} & {
|
|
4625
|
-
resultFunc: (resultFuncArgs_0: LocalParticipantState, resultFuncArgs_1: MediaStream | undefined) => ClientView;
|
|
4626
|
-
memoizedResultFunc: ((resultFuncArgs_0: LocalParticipantState, resultFuncArgs_1: MediaStream | undefined) => ClientView) & {
|
|
4847
|
+
resultFunc: (resultFuncArgs_0: LocalParticipantState, resultFuncArgs_1: MediaStream | undefined) => ClientView | null;
|
|
4848
|
+
memoizedResultFunc: ((resultFuncArgs_0: LocalParticipantState, resultFuncArgs_1: MediaStream | undefined) => ClientView | null) & {
|
|
4627
4849
|
clearCache: () => void;
|
|
4628
4850
|
resultsCount: () => number;
|
|
4629
4851
|
resetResultsCount: () => void;
|
|
4630
4852
|
};
|
|
4631
|
-
lastResult: () => ClientView;
|
|
4853
|
+
lastResult: () => ClientView | null;
|
|
4632
4854
|
dependencies: [(state: {
|
|
4633
4855
|
app: AppState;
|
|
4634
4856
|
authorization: AuthorizationState;
|
|
@@ -4749,7 +4971,7 @@ declare const selectAllClientViews: ((state: {
|
|
|
4749
4971
|
spotlights: SpotlightsState;
|
|
4750
4972
|
streaming: StreamingState;
|
|
4751
4973
|
waitingParticipants: WaitingParticipantsState;
|
|
4752
|
-
}) => LocalParticipantState, (state: {
|
|
4974
|
+
}) => LocalParticipantState, ((state: {
|
|
4753
4975
|
app: AppState;
|
|
4754
4976
|
authorization: AuthorizationState;
|
|
4755
4977
|
chat: ChatState;
|
|
@@ -4769,7 +4991,47 @@ declare const selectAllClientViews: ((state: {
|
|
|
4769
4991
|
spotlights: SpotlightsState;
|
|
4770
4992
|
streaming: StreamingState;
|
|
4771
4993
|
waitingParticipants: WaitingParticipantsState;
|
|
4772
|
-
}) => RemoteParticipant[]
|
|
4994
|
+
}) => RemoteParticipant[]) & {
|
|
4995
|
+
clearCache: () => void;
|
|
4996
|
+
resultsCount: () => number;
|
|
4997
|
+
resetResultsCount: () => void;
|
|
4998
|
+
} & {
|
|
4999
|
+
resultFunc: (resultFuncArgs_0: RemoteParticipant[]) => RemoteParticipant[];
|
|
5000
|
+
memoizedResultFunc: ((resultFuncArgs_0: RemoteParticipant[]) => RemoteParticipant[]) & {
|
|
5001
|
+
clearCache: () => void;
|
|
5002
|
+
resultsCount: () => number;
|
|
5003
|
+
resetResultsCount: () => void;
|
|
5004
|
+
};
|
|
5005
|
+
lastResult: () => RemoteParticipant[];
|
|
5006
|
+
dependencies: [(state: {
|
|
5007
|
+
app: AppState;
|
|
5008
|
+
authorization: AuthorizationState;
|
|
5009
|
+
chat: ChatState;
|
|
5010
|
+
cloudRecording: CloudRecordingState;
|
|
5011
|
+
deviceCredentials: DeviceCredentialsState;
|
|
5012
|
+
localMedia: LocalMediaState;
|
|
5013
|
+
localParticipant: LocalParticipantState;
|
|
5014
|
+
localScreenshare: LocalScreenshareState;
|
|
5015
|
+
notifications: NotificationsState;
|
|
5016
|
+
organization: OrganizationState;
|
|
5017
|
+
remoteParticipants: RemoteParticipantState;
|
|
5018
|
+
room: RoomState;
|
|
5019
|
+
roomConnection: RoomConnectionState;
|
|
5020
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
5021
|
+
rtcConnection: RtcConnectionState;
|
|
5022
|
+
signalConnection: SignalConnectionState;
|
|
5023
|
+
spotlights: SpotlightsState;
|
|
5024
|
+
streaming: StreamingState;
|
|
5025
|
+
waitingParticipants: WaitingParticipantsState;
|
|
5026
|
+
}) => RemoteParticipant[]];
|
|
5027
|
+
recomputations: () => number;
|
|
5028
|
+
resetRecomputations: () => void;
|
|
5029
|
+
dependencyRecomputations: () => number;
|
|
5030
|
+
resetDependencyRecomputations: () => void;
|
|
5031
|
+
} & {
|
|
5032
|
+
argsMemoize: typeof reselect.weakMapMemoize;
|
|
5033
|
+
memoize: typeof reselect.weakMapMemoize;
|
|
5034
|
+
}];
|
|
4773
5035
|
recomputations: () => number;
|
|
4774
5036
|
resetRecomputations: () => void;
|
|
4775
5037
|
dependencyRecomputations: () => number;
|
|
@@ -7381,7 +7643,45 @@ interface SpotlightsState {
|
|
|
7381
7643
|
streamId: string;
|
|
7382
7644
|
}[];
|
|
7383
7645
|
}
|
|
7384
|
-
declare const spotlightsSlice: _reduxjs_toolkit.Slice<SpotlightsState, {
|
|
7646
|
+
declare const spotlightsSlice: _reduxjs_toolkit.Slice<SpotlightsState, {
|
|
7647
|
+
addSpotlight(state: {
|
|
7648
|
+
sorted: {
|
|
7649
|
+
clientId: string;
|
|
7650
|
+
streamId: string;
|
|
7651
|
+
}[];
|
|
7652
|
+
}, action: {
|
|
7653
|
+
payload: {
|
|
7654
|
+
clientId: string;
|
|
7655
|
+
streamId: string;
|
|
7656
|
+
};
|
|
7657
|
+
}): {
|
|
7658
|
+
sorted: Spotlight[];
|
|
7659
|
+
};
|
|
7660
|
+
removeSpotlight(state: {
|
|
7661
|
+
sorted: {
|
|
7662
|
+
clientId: string;
|
|
7663
|
+
streamId: string;
|
|
7664
|
+
}[];
|
|
7665
|
+
}, action: {
|
|
7666
|
+
payload: {
|
|
7667
|
+
clientId: string;
|
|
7668
|
+
streamId: string;
|
|
7669
|
+
};
|
|
7670
|
+
}): {
|
|
7671
|
+
sorted: {
|
|
7672
|
+
clientId: string;
|
|
7673
|
+
streamId: string;
|
|
7674
|
+
}[];
|
|
7675
|
+
};
|
|
7676
|
+
}, "spotlights", "spotlights", _reduxjs_toolkit.SliceSelectors<SpotlightsState>>;
|
|
7677
|
+
declare const addSpotlight: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
7678
|
+
clientId: string;
|
|
7679
|
+
streamId: string;
|
|
7680
|
+
}, "spotlights/addSpotlight">;
|
|
7681
|
+
declare const removeSpotlight: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
7682
|
+
clientId: string;
|
|
7683
|
+
streamId: string;
|
|
7684
|
+
}, "spotlights/removeSpotlight">;
|
|
7385
7685
|
declare const doSpotlightParticipant: (args: {
|
|
7386
7686
|
id: string;
|
|
7387
7687
|
}) => AppThunk<void>;
|
|
@@ -7526,8 +7826,8 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
7526
7826
|
resultsCount: () => number;
|
|
7527
7827
|
resetResultsCount: () => void;
|
|
7528
7828
|
} & {
|
|
7529
|
-
resultFunc: (resultFuncArgs_0: ClientView, resultFuncArgs_1: ClientView[]) => ClientView[];
|
|
7530
|
-
memoizedResultFunc: ((resultFuncArgs_0: ClientView, resultFuncArgs_1: ClientView[]) => ClientView[]) & {
|
|
7829
|
+
resultFunc: (resultFuncArgs_0: ClientView | null, resultFuncArgs_1: ClientView[]) => ClientView[];
|
|
7830
|
+
memoizedResultFunc: ((resultFuncArgs_0: ClientView | null, resultFuncArgs_1: ClientView[]) => ClientView[]) & {
|
|
7531
7831
|
clearCache: () => void;
|
|
7532
7832
|
resultsCount: () => number;
|
|
7533
7833
|
resetResultsCount: () => void;
|
|
@@ -7553,18 +7853,18 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
7553
7853
|
spotlights: SpotlightsState;
|
|
7554
7854
|
streaming: StreamingState;
|
|
7555
7855
|
waitingParticipants: WaitingParticipantsState;
|
|
7556
|
-
}) => ClientView) & {
|
|
7856
|
+
}) => ClientView | null) & {
|
|
7557
7857
|
clearCache: () => void;
|
|
7558
7858
|
resultsCount: () => number;
|
|
7559
7859
|
resetResultsCount: () => void;
|
|
7560
7860
|
} & {
|
|
7561
|
-
resultFunc: (resultFuncArgs_0: LocalParticipantState, resultFuncArgs_1: MediaStream | undefined) => ClientView;
|
|
7562
|
-
memoizedResultFunc: ((resultFuncArgs_0: LocalParticipantState, resultFuncArgs_1: MediaStream | undefined) => ClientView) & {
|
|
7861
|
+
resultFunc: (resultFuncArgs_0: LocalParticipantState, resultFuncArgs_1: MediaStream | undefined) => ClientView | null;
|
|
7862
|
+
memoizedResultFunc: ((resultFuncArgs_0: LocalParticipantState, resultFuncArgs_1: MediaStream | undefined) => ClientView | null) & {
|
|
7563
7863
|
clearCache: () => void;
|
|
7564
7864
|
resultsCount: () => number;
|
|
7565
7865
|
resetResultsCount: () => void;
|
|
7566
7866
|
};
|
|
7567
|
-
lastResult: () => ClientView;
|
|
7867
|
+
lastResult: () => ClientView | null;
|
|
7568
7868
|
dependencies: [(state: {
|
|
7569
7869
|
app: AppState;
|
|
7570
7870
|
authorization: AuthorizationState;
|
|
@@ -7685,7 +7985,7 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
7685
7985
|
spotlights: SpotlightsState;
|
|
7686
7986
|
streaming: StreamingState;
|
|
7687
7987
|
waitingParticipants: WaitingParticipantsState;
|
|
7688
|
-
}) => LocalParticipantState, (state: {
|
|
7988
|
+
}) => LocalParticipantState, ((state: {
|
|
7689
7989
|
app: AppState;
|
|
7690
7990
|
authorization: AuthorizationState;
|
|
7691
7991
|
chat: ChatState;
|
|
@@ -7705,7 +8005,47 @@ declare const selectSpotlightedClientViews: ((state: {
|
|
|
7705
8005
|
spotlights: SpotlightsState;
|
|
7706
8006
|
streaming: StreamingState;
|
|
7707
8007
|
waitingParticipants: WaitingParticipantsState;
|
|
7708
|
-
}) => RemoteParticipant[]
|
|
8008
|
+
}) => RemoteParticipant[]) & {
|
|
8009
|
+
clearCache: () => void;
|
|
8010
|
+
resultsCount: () => number;
|
|
8011
|
+
resetResultsCount: () => void;
|
|
8012
|
+
} & {
|
|
8013
|
+
resultFunc: (resultFuncArgs_0: RemoteParticipant[]) => RemoteParticipant[];
|
|
8014
|
+
memoizedResultFunc: ((resultFuncArgs_0: RemoteParticipant[]) => RemoteParticipant[]) & {
|
|
8015
|
+
clearCache: () => void;
|
|
8016
|
+
resultsCount: () => number;
|
|
8017
|
+
resetResultsCount: () => void;
|
|
8018
|
+
};
|
|
8019
|
+
lastResult: () => RemoteParticipant[];
|
|
8020
|
+
dependencies: [(state: {
|
|
8021
|
+
app: AppState;
|
|
8022
|
+
authorization: AuthorizationState;
|
|
8023
|
+
chat: ChatState;
|
|
8024
|
+
cloudRecording: CloudRecordingState;
|
|
8025
|
+
deviceCredentials: DeviceCredentialsState;
|
|
8026
|
+
localMedia: LocalMediaState;
|
|
8027
|
+
localParticipant: LocalParticipantState;
|
|
8028
|
+
localScreenshare: LocalScreenshareState;
|
|
8029
|
+
notifications: NotificationsState;
|
|
8030
|
+
organization: OrganizationState;
|
|
8031
|
+
remoteParticipants: RemoteParticipantState;
|
|
8032
|
+
room: RoomState;
|
|
8033
|
+
roomConnection: RoomConnectionState;
|
|
8034
|
+
rtcAnalytics: rtcAnalyticsState;
|
|
8035
|
+
rtcConnection: RtcConnectionState;
|
|
8036
|
+
signalConnection: SignalConnectionState;
|
|
8037
|
+
spotlights: SpotlightsState;
|
|
8038
|
+
streaming: StreamingState;
|
|
8039
|
+
waitingParticipants: WaitingParticipantsState;
|
|
8040
|
+
}) => RemoteParticipant[]];
|
|
8041
|
+
recomputations: () => number;
|
|
8042
|
+
resetRecomputations: () => void;
|
|
8043
|
+
dependencyRecomputations: () => number;
|
|
8044
|
+
resetDependencyRecomputations: () => void;
|
|
8045
|
+
} & {
|
|
8046
|
+
argsMemoize: typeof reselect.weakMapMemoize;
|
|
8047
|
+
memoize: typeof reselect.weakMapMemoize;
|
|
8048
|
+
}];
|
|
7709
8049
|
recomputations: () => number;
|
|
7710
8050
|
resetRecomputations: () => void;
|
|
7711
8051
|
dependencyRecomputations: () => number;
|
|
@@ -7972,4 +8312,4 @@ declare function parseRoomUrlAndSubdomain(roomAttribute?: string, subdomainAttri
|
|
|
7972
8312
|
|
|
7973
8313
|
declare function parseUnverifiedRoomKeyData(roomKey: string): any;
|
|
7974
8314
|
|
|
7975
|
-
export { ApiClient, type AppConfig, type AppDispatch, type AppReducer, type AppStartListening, type AppState, type AppThunk, type AuthorizationState, type ChatMessage, type ChatMessageEvent, type ChatMessageEventProps, type ChatState, type ClientView, type CloudRecordingState, type ConnectionStatus, Credentials, CredentialsService, type DeviceCredentialsState, type FullOrganizationPermissions, type LocalMediaOptions, type LocalMediaState, LocalParticipant, type LocalParticipantState, type LocalScreenshareState, type Notification, type NotificationEvent, type NotificationEventMap, type NotificationEvents, type NotificationsEventEmitter, type NotificationsState, OrganizationApiClient, type OrganizationLimits, type OrganizationOnboardingSurvey, type OrganizationPermissionAction, type OrganizationPermissions, type OrganizationPreferences, OrganizationService, OrganizationServiceCache, type OrganizationState, type RemoteParticipant, type RemoteParticipantData, type RemoteParticipantState, type RequestAudioEvent, type RequestAudioEventProps, type RoomConnectionState, RoomService, type RoomState, type RootState, type RtcConnectionState, type Screenshare, type 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, appSlice, authorizationSlice, chatSlice, cloudRecordingSlice, createAppAsyncThunk, createAppAuthorizedThunk, createAppThunk, createReactor, createServices, createStore, createWebRtcEmitter, debounce, deviceBusy, deviceCredentialsSlice, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLockRoom, doOrganizationFetch, doRejectWaitingParticipant, doRemoveSpotlight, doRequestAudioEnable, doRtcAnalyticsCustomEventsInitialize, doRtcManagerCreated, doRtcManagerInitialize, doRtcReportStreamResolution, doSendChatMessage, doSendClientMetadata, doSetDevice, doSetDisplayName, doSetLocalStickyReaction, doSetNotification, doSignalConnect, doSignalDisconnect, doSignalIdentifyDevice, doSpotlightParticipant, doStartCloudRecording, doStartLocalMedia, doStartScreenshare, doStopCloudRecording, doStopLocalMedia, doStopScreenshare, doSwitchLocalStream, doToggleCamera, doToggleLowDataMode, doUpdateDeviceList, getAudioTrack, getFakeMediaStream, getVideoTrack, hasValue, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localScreenshareSlice, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, parseRoomUrlAndSubdomain, parseUnverifiedRoomKeyData, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, resolutionReported, roomConnectionSlice, roomSlice, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, type rtcAnalyticsState, rtcConnectionSlice, rtcDisconnected, rtcDispatcherCreated, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAppDisplayName, selectAppExternalId, selectAppInitialConfig, selectAppIsActive, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAuthorizationRoleName, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingRaw, selectCloudRecordingStartedAt, selectCloudRecordingStatus, selectCurrentCameraDeviceId, selectCurrentMicrophoneDeviceId, selectCurrentSpeakerDeviceId, selectDeviceCredentialsRaw, selectDeviceId, selectHasFetchedDeviceCredentials, selectIsAcceptingStreams, selectIsAuthorizedToAskToSpeak, selectIsAuthorizedToEndMeeting, selectIsAuthorizedToKickClient, selectIsAuthorizedToLockRoom, selectIsAuthorizedToRequestAudioEnable, selectIsAuthorizedToSpotlight, selectIsCameraEnabled, selectIsCloudRecording, selectIsLocalMediaStarting, selectIsLocalParticipantSpotlighted, selectIsLowDataModeEnabled, selectIsMicrophoneEnabled, selectIsSettingCameraDevice, selectIsSettingMicrophoneDevice, selectIsToggleCamera, selectLocalMediaConstraintsOptions, selectLocalMediaDevices, selectLocalMediaIsSwitchingStream, selectLocalMediaOptions, selectLocalMediaOwnsStream, selectLocalMediaRaw, selectLocalMediaShouldStartWithOptions, selectLocalMediaShouldStop, selectLocalMediaStartError, selectLocalMediaStatus, selectLocalMediaStream, selectLocalParticipantClientClaim, selectLocalParticipantDisplayName, selectLocalParticipantIsScreenSharing, selectLocalParticipantRaw, selectLocalParticipantStickyReaction, selectLocalParticipantView, selectLocalScreenshareRaw, selectLocalScreenshareStatus, selectLocalScreenshareStream, selectMicrophoneDeviceError, selectMicrophoneDevices, selectNotificationsEmitter, selectNotificationsEvents, selectNotificationsRaw, selectNumParticipants, selectOrganizationId, selectOrganizationRaw, selectRemoteClientViews, selectRemoteParticipants, selectRemoteParticipantsRaw, selectRoomConnectionError, selectRoomConnectionRaw, selectRoomConnectionSession, selectRoomConnectionSessionId, selectRoomConnectionStatus, selectRoomIsLocked, selectRoomKey, selectRtcConnectionRaw, selectRtcDispatcherCreated, selectRtcIsCreatingDispatcher, selectRtcManager, selectRtcManagerInitialized, selectRtcStatus, selectScreenshares, selectSelfId, selectShouldConnectRoom, selectShouldConnectRtc, selectShouldConnectSignal, selectShouldDisconnectRtc, selectShouldFetchDeviceCredentials, selectShouldFetchOrganization, selectShouldIdentifyDevice, selectShouldInitializeRtc, selectSignalConnectionDeviceIdentified, selectSignalConnectionRaw, selectSignalConnectionSocket, selectSignalIsIdentifyingDevice, selectSignalStatus, selectSpeakerDevices, selectSpotlightedClientViews, selectSpotlights, selectSpotlightsRaw, selectStreamingRaw, selectStreamsToAccept, selectWaitingParticipants, selectWaitingParticipantsRaw, setCurrentCameraDeviceId, setCurrentMicrophoneDeviceId, setCurrentSpeakerDeviceId, setLocalMediaOptions, setLocalMediaStream, setRoomKey, signalConnectionSlice, signalEvents, socketConnected, socketConnecting, socketDisconnected, socketReconnecting, spotlightsSlice, startAppListening, stopScreenshare, streamIdForClient, streamStatusUpdated, streamingSlice, toggleCameraEnabled, toggleLowDataModeEnabled, toggleMicrophoneEnabled, updateReportedValues, waitingParticipantsSlice };
|
|
8315
|
+
export { ApiClient, type AppConfig, type AppDispatch, type AppReducer, type AppStartListening, type AppState, type AppThunk, type AuthorizationState, type ChatMessage, type ChatMessageEvent, type ChatMessageEventProps, type ChatState, type ClientView, type CloudRecordingState, type ConnectionStatus, Credentials, CredentialsService, type DeviceCredentialsState, type FullOrganizationPermissions, type LocalMediaOptions, type LocalMediaState, LocalParticipant, type LocalParticipantState, type LocalScreenshareState, type Notification, type NotificationEvent, type NotificationEventMap, type NotificationEvents, type NotificationsEventEmitter, type NotificationsState, OrganizationApiClient, type OrganizationLimits, type OrganizationOnboardingSurvey, type OrganizationPermissionAction, type OrganizationPermissions, type OrganizationPreferences, OrganizationService, OrganizationServiceCache, type OrganizationState, type RemoteParticipant, type RemoteParticipantData, type RemoteParticipantState, type RequestAudioEvent, type RequestAudioEventProps, type RoomConnectionState, RoomService, type RoomState, type RootState, type RtcConnectionState, type Screenshare, type SignalConnectionState, type SignalStatusEvent, type SignalStatusEventProps, type SpotlightsState, type StickyReaction, type StickyReactionEvent, type StickyReactionEventProps, type Store, type StreamState, type StreamingState, type ThunkConfig, type WaitingParticipant, type WaitingParticipantsState, addAppListener, addSpotlight, appSlice, authorizationSlice, chatSlice, cloudRecordingSlice, createAppAsyncThunk, createAppAuthorizedThunk, createAppThunk, createReactor, createServices, createStore, createWebRtcEmitter, debounce, deviceBusy, deviceCredentialsSlice, deviceIdentified, deviceIdentifying, doAcceptWaitingParticipant, doAppStart, doAppStop, doClearNotifications, doConnectRoom, doConnectRtc, doDisconnectRtc, doEnableAudio, doEnableVideo, doEndMeeting, doGetDeviceCredentials, doHandleAcceptStreams, doHandleStreamingStarted, doHandleStreamingStopped, doKickParticipant, doKnockRoom, doLockRoom, doOrganizationFetch, doRejectWaitingParticipant, doRemoveSpotlight, doRequestAudioEnable, doRtcAnalyticsCustomEventsInitialize, doRtcManagerCreated, doRtcManagerInitialize, doRtcReportStreamResolution, doSendChatMessage, doSendClientMetadata, doSetDevice, doSetDisplayName, doSetLocalStickyReaction, doSetNotification, doSignalConnect, doSignalDisconnect, doSignalIdentifyDevice, doSpotlightParticipant, doStartCloudRecording, doStartLocalMedia, doStartScreenshare, doStopCloudRecording, doStopLocalMedia, doStopScreenshare, doSwitchLocalStream, doToggleCamera, doToggleLowDataMode, doUpdateDeviceList, getAudioTrack, getFakeMediaStream, getVideoTrack, hasValue, initialCloudRecordingState, initialLocalMediaState, initialNotificationsState, isAcceptingStreams, isClientSpotlighted, listenerMiddleware, localMediaSlice, localMediaStopped, localParticipantSlice, localScreenshareSlice, localStreamMetadataUpdated, notificationsSlice, observeStore, organizationSlice, parseRoomUrlAndSubdomain, parseUnverifiedRoomKeyData, participantStreamAdded, participantStreamIdAdded, recordingRequestStarted, remoteParticipantsSlice, removeSpotlight, resolutionReported, roomConnectionSlice, roomSlice, rootReducer, rtcAnalyticsCustomEvents, rtcAnalyticsSlice, type rtcAnalyticsState, rtcConnectionSlice, rtcDisconnected, rtcDispatcherCreated, rtcManagerCreated, rtcManagerDestroyed, rtcManagerInitialized, selectAllClientViews, selectAppDisplayName, selectAppExternalId, selectAppInitialConfig, selectAppIsActive, selectAppIsNodeSdk, selectAppRaw, selectAppRoomName, selectAppRoomUrl, selectAppUserAgent, selectAuthorizationRoleName, selectBusyDeviceIds, selectCameraDeviceError, selectCameraDevices, selectChatMessages, selectChatRaw, selectCloudRecordingError, selectCloudRecordingRaw, selectCloudRecordingStartedAt, selectCloudRecordingStatus, selectCurrentCameraDeviceId, selectCurrentMicrophoneDeviceId, selectCurrentSpeakerDeviceId, selectDeviceCredentialsRaw, selectDeviceId, selectHasFetchedDeviceCredentials, selectIsAcceptingStreams, selectIsAuthorizedToAskToSpeak, selectIsAuthorizedToEndMeeting, selectIsAuthorizedToKickClient, selectIsAuthorizedToLockRoom, selectIsAuthorizedToRequestAudioEnable, selectIsAuthorizedToSpotlight, selectIsCameraEnabled, selectIsCloudRecording, selectIsLocalMediaStarting, selectIsLocalParticipantSpotlighted, selectIsLowDataModeEnabled, selectIsMicrophoneEnabled, selectIsSettingCameraDevice, selectIsSettingMicrophoneDevice, selectIsToggleCamera, selectLocalMediaConstraintsOptions, selectLocalMediaDevices, selectLocalMediaIsSwitchingStream, selectLocalMediaOptions, selectLocalMediaOwnsStream, selectLocalMediaRaw, selectLocalMediaShouldStartWithOptions, selectLocalMediaShouldStop, selectLocalMediaStartError, selectLocalMediaStatus, selectLocalMediaStream, selectLocalParticipantClientClaim, selectLocalParticipantDisplayName, selectLocalParticipantIsScreenSharing, selectLocalParticipantRaw, selectLocalParticipantStickyReaction, selectLocalParticipantView, selectLocalScreenshareRaw, selectLocalScreenshareStatus, selectLocalScreenshareStream, selectMicrophoneDeviceError, selectMicrophoneDevices, selectNotificationsEmitter, selectNotificationsEvents, selectNotificationsRaw, selectNumClients, selectNumParticipants, selectOrganizationId, selectOrganizationRaw, selectRemoteClientViews, selectRemoteClients, selectRemoteParticipants, selectRemoteParticipantsRaw, selectRoomConnectionError, selectRoomConnectionRaw, selectRoomConnectionSession, selectRoomConnectionSessionId, selectRoomConnectionStatus, selectRoomIsLocked, selectRoomKey, selectRtcConnectionRaw, selectRtcDispatcherCreated, selectRtcIsCreatingDispatcher, selectRtcManager, selectRtcManagerInitialized, selectRtcStatus, selectScreenshares, selectSelfId, selectShouldConnectRoom, selectShouldConnectRtc, selectShouldConnectSignal, selectShouldDisconnectRtc, selectShouldFetchDeviceCredentials, selectShouldFetchOrganization, selectShouldIdentifyDevice, selectShouldInitializeRtc, selectSignalConnectionDeviceIdentified, selectSignalConnectionRaw, selectSignalConnectionSocket, selectSignalIsIdentifyingDevice, selectSignalStatus, selectSpeakerDevices, selectSpotlightedClientViews, selectSpotlights, selectSpotlightsRaw, selectStreamingRaw, selectStreamsToAccept, selectWaitingParticipants, selectWaitingParticipantsRaw, setCurrentCameraDeviceId, setCurrentMicrophoneDeviceId, setCurrentSpeakerDeviceId, setLocalMediaOptions, setLocalMediaStream, setRoomKey, signalConnectionSlice, signalEvents, socketConnected, socketConnecting, socketDisconnected, socketReconnecting, spotlightsSlice, startAppListening, stopScreenshare, streamIdForClient, streamStatusUpdated, streamingSlice, toggleCameraEnabled, toggleLowDataModeEnabled, toggleMicrophoneEnabled, updateReportedValues, waitingParticipantsSlice };
|