@stream-io/video-client 1.0.6 → 1.0.7
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/CHANGELOG.md +7 -0
- package/dist/index.browser.es.js +52 -18
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +58 -21
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +52 -18
- package/dist/index.es.js.map +1 -1
- package/dist/src/Call.d.ts +3 -3
- package/dist/src/gen/coordinator/index.d.ts +3204 -1800
- package/dist/src/gen/shims.d.ts +3 -0
- package/dist/src/rtc/videoLayers.d.ts +3 -3
- package/index.ts +1 -0
- package/package.json +1 -1
- package/src/Call.ts +14 -14
- package/src/coordinator/connection/connection.ts +2 -5
- package/src/gen/coordinator/index.ts +3199 -1808
- package/src/gen/shims.ts +4 -0
- package/src/rtc/Publisher.ts +5 -2
- package/src/rtc/videoLayers.ts +4 -4
- package/src/store/CallState.ts +8 -0
package/dist/src/Call.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Publisher, Subscriber } from './rtc';
|
|
2
2
|
import { TrackType } from './gen/video/sfu/models/models';
|
|
3
3
|
import { CallState } from './store';
|
|
4
|
-
import { AcceptCallResponse, BlockUserResponse, CollectUserFeedbackResponse, EndCallResponse, GetCallResponse, GetCallStatsResponse, GetOrCreateCallRequest, GetOrCreateCallResponse, GoLiveRequest, GoLiveResponse, ListRecordingsResponse, ListTranscriptionsResponse, MuteUsersResponse, PinRequest, PinResponse,
|
|
4
|
+
import { AcceptCallResponse, BlockUserResponse, CollectUserFeedbackResponse, EndCallResponse, GetCallResponse, GetCallStatsResponse, GetOrCreateCallRequest, GetOrCreateCallResponse, GoLiveRequest, GoLiveResponse, ListRecordingsResponse, ListTranscriptionsResponse, MuteUsersResponse, PinRequest, PinResponse, QueryCallMembersRequest, QueryCallMembersResponse, RejectCallResponse, RequestPermissionRequest, RequestPermissionResponse, SendCallEventResponse, SendReactionRequest, SendReactionResponse, StartHLSBroadcastingResponse, StartRecordingRequest, StartRecordingResponse, StartTranscriptionRequest, StartTranscriptionResponse, StopHLSBroadcastingResponse, StopLiveResponse, StopRecordingResponse, StopTranscriptionResponse, UnblockUserResponse, UnpinRequest, UnpinResponse, UpdateCallMembersRequest, UpdateCallMembersResponse, UpdateCallRequest, UpdateCallResponse, UpdateUserPermissionsRequest, UpdateUserPermissionsResponse } from './gen/coordinator';
|
|
5
5
|
import { AudioTrackType, CallConstructor, CallLeaveOptions, DebounceType, JoinCallData, PublishOptions, SubscriptionChanges, TrackMuteType, VideoTrackType } from './types';
|
|
6
6
|
import { VideoLayerSetting } from './gen/video/sfu/event/events';
|
|
7
7
|
import { DynascaleManager } from './helpers/DynascaleManager';
|
|
@@ -448,7 +448,7 @@ export declare class Call {
|
|
|
448
448
|
* @param request
|
|
449
449
|
* @returns
|
|
450
450
|
*/
|
|
451
|
-
queryMembers: (request?: Omit<
|
|
451
|
+
queryMembers: (request?: Omit<QueryCallMembersRequest, 'type' | 'id'>) => Promise<QueryCallMembersResponse>;
|
|
452
452
|
/**
|
|
453
453
|
* Will update the call members.
|
|
454
454
|
*
|
|
@@ -502,7 +502,7 @@ export declare class Call {
|
|
|
502
502
|
*/
|
|
503
503
|
sendCustomEvent: (payload: {
|
|
504
504
|
[key: string]: any;
|
|
505
|
-
}) => Promise<
|
|
505
|
+
}) => Promise<SendCallEventResponse>;
|
|
506
506
|
applyDeviceConfig: () => void;
|
|
507
507
|
private initCamera;
|
|
508
508
|
private initMic;
|