quickvo-sdk-js 0.9.3 → 0.9.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/enums/eventName.d.ts +14 -12
- package/dist/enums/notifyName.d.ts +3 -1
- package/dist/index.js +19397 -13272
- package/dist/index.umd.cjs +201 -2
- package/dist/protos/compiled.d.ts +5009 -5009
- package/dist/room/NetworkQualityTester.d.ts +44 -0
- package/dist/room/RoomBase.d.ts +21 -6
- package/dist/room/RoomCalls.d.ts +15 -0
- package/dist/room/RoomMedias.d.ts +15 -4
- package/dist/room/RoomPeer.d.ts +8 -0
- package/dist/room/RoomUsers.d.ts +10 -2
- package/dist/room/StreamRecorder.d.ts +36 -0
- package/dist/room/mediaStreams/AudioMediaContext.d.ts +2 -2
- package/dist/types.d.ts +29 -0
- package/package.json +49 -44
|
@@ -1,23 +1,25 @@
|
|
|
1
1
|
export declare const enum_eventName: {
|
|
2
|
+
readonly connectCF: "连接CF";
|
|
3
|
+
readonly publish: "发布流";
|
|
4
|
+
readonly subscribe: "订阅流";
|
|
5
|
+
readonly subChannel: "订阅数据通道";
|
|
6
|
+
readonly pubChannel: "发布数据通道";
|
|
7
|
+
readonly renegotiate: "协商流";
|
|
8
|
+
readonly closeTrack: "关闭轨道";
|
|
9
|
+
readonly joinRoom: "加入房间";
|
|
10
|
+
readonly joinRoomEx: "加入房间(提前建连)";
|
|
11
|
+
readonly preventUsersBehavior: "阻止用户行为";
|
|
2
12
|
readonly networkQualityChange: "更新网络状态";
|
|
3
13
|
readonly updateCall: "更新通话状态";
|
|
4
14
|
readonly syncRoomInfo: "同步房间";
|
|
5
|
-
readonly closeTrack: "关闭轨道";
|
|
6
|
-
readonly renegotiate: "协商流";
|
|
7
|
-
readonly subscribe: "订阅流";
|
|
8
|
-
readonly publish: "发布流";
|
|
9
|
-
readonly connectCF: "连接CF";
|
|
10
15
|
readonly quitRoom: "退出房间";
|
|
11
16
|
readonly quitRoomEx: "退出房间不断开连接";
|
|
12
|
-
readonly joinRoom: "加入房间";
|
|
13
|
-
readonly joinRoomEx: "加入房间(提前建连)";
|
|
14
|
-
readonly login: "登录";
|
|
15
|
-
readonly debugger: "调试";
|
|
16
|
-
readonly preventUsersBehavior: "阻止用户行为";
|
|
17
|
-
readonly pubNotify: "webrtc发布状态正常";
|
|
18
17
|
readonly heartbeat: "心跳";
|
|
19
18
|
readonly heartbeatEx: "慢心跳";
|
|
19
|
+
readonly debugger: "调试";
|
|
20
20
|
readonly shutdown: "清除缓存";
|
|
21
|
+
readonly login: "登录";
|
|
22
|
+
readonly pubNotify: "webrtc发布状态正常";
|
|
21
23
|
};
|
|
22
24
|
export type T_eventName = typeof enum_eventName;
|
|
23
25
|
export type K_eventName = keyof T_eventName;
|
|
@@ -27,4 +29,4 @@ export declare const eventName_options: {
|
|
|
27
29
|
label: any;
|
|
28
30
|
}[];
|
|
29
31
|
export declare const eventName_keys: (keyof typeof enum_eventName)[];
|
|
30
|
-
export declare const eventName_vals: ("
|
|
32
|
+
export declare const eventName_vals: ("连接CF" | "发布流" | "订阅流" | "订阅数据通道" | "发布数据通道" | "协商流" | "关闭轨道" | "加入房间" | "加入房间(提前建连)" | "阻止用户行为" | "更新网络状态" | "更新通话状态" | "同步房间" | "退出房间" | "退出房间不断开连接" | "心跳" | "慢心跳" | "调试" | "清除缓存" | "登录" | "webrtc发布状态正常")[];
|
|
@@ -12,12 +12,14 @@ export declare const enum_notifyName: {
|
|
|
12
12
|
readonly onJoinRoom: "加入房间回调";
|
|
13
13
|
readonly onQuitRoom: "退出房间回调";
|
|
14
14
|
readonly onPublish: "监听到流发布";
|
|
15
|
+
readonly onDataChannelPublish: "监听数据通道发布";
|
|
15
16
|
readonly onCloseTrack: "关闭轨道";
|
|
16
17
|
readonly onUpdateCall: "更新通讯状态";
|
|
17
18
|
readonly onUpdateStreams: "更新媒体流";
|
|
18
19
|
readonly onUpdatePermissions: "更新推流权限通知";
|
|
19
20
|
readonly onTokenExpired: "Token已过期";
|
|
20
21
|
readonly onDestroyRoom: "直播模式房间销毁";
|
|
22
|
+
readonly onUpdateBehavior: "行为允许权限变更";
|
|
21
23
|
readonly destroyRoom: "服务器要求销毁房间";
|
|
22
24
|
readonly onCDNPlayUrlAdd: "cdn播放地址变化";
|
|
23
25
|
readonly onDestroy: "SDK销毁";
|
|
@@ -30,4 +32,4 @@ export declare const notifyName_options: {
|
|
|
30
32
|
label: any;
|
|
31
33
|
}[];
|
|
32
34
|
export declare const notifyName_keys: (keyof typeof enum_notifyName)[];
|
|
33
|
-
export declare const notifyName_vals: ("关闭轨道" | "网络情况变更" | "心跳检测" | "网络质量回调" | "登录回调" | "本地媒体流发生变化" | "媒体设备发生变化" | "房间用户变化" | "房间所有用户所有变化" | "房间某些用户媒体流变化" | "房间状态变化" | "加入房间回调" | "退出房间回调" | "监听到流发布" | "更新通讯状态" | "更新媒体流" | "更新推流权限通知" | "Token已过期" | "直播模式房间销毁" | "服务器要求销毁房间" | "cdn播放地址变化" | "SDK销毁")[];
|
|
35
|
+
export declare const notifyName_vals: ("关闭轨道" | "网络情况变更" | "心跳检测" | "网络质量回调" | "登录回调" | "本地媒体流发生变化" | "媒体设备发生变化" | "房间用户变化" | "房间所有用户所有变化" | "房间某些用户媒体流变化" | "房间状态变化" | "加入房间回调" | "退出房间回调" | "监听到流发布" | "监听数据通道发布" | "更新通讯状态" | "更新媒体流" | "更新推流权限通知" | "Token已过期" | "直播模式房间销毁" | "行为允许权限变更" | "服务器要求销毁房间" | "cdn播放地址变化" | "SDK销毁")[];
|