quickvo-sdk-js 0.1.2 → 0.1.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 +2 -1
- package/dist/enums/notifyName.d.ts +3 -1
- package/dist/index.js +4580 -4337
- package/dist/index.umd.cjs +2 -2
- package/dist/protos/compiled.d.ts +6 -0
- package/dist/room/RoomBase.d.ts +5 -4
- package/dist/room/RoomCalls.d.ts +15 -6
- package/dist/room/RoomPeer.d.ts +29 -6
- package/dist/room/RoomUsers.d.ts +26 -3
- package/dist/room/mediaStreamsContext/AudioMediaStreamContext.d.ts +4 -0
- package/dist/room/mediaStreamsContext/VideoMediaStreamContext.d.ts +4 -0
- package/dist/types.d.ts +8 -3
- package/package.json +43 -42
|
@@ -11,6 +11,7 @@ export declare const enum_eventName: {
|
|
|
11
11
|
readonly joinRoom: "加入房间";
|
|
12
12
|
readonly login: "登录";
|
|
13
13
|
readonly debugger: "调试";
|
|
14
|
+
readonly pubNotify: "webrtc发布状态正常";
|
|
14
15
|
readonly heartbeat: "心跳";
|
|
15
16
|
};
|
|
16
17
|
export type T_eventName = typeof enum_eventName;
|
|
@@ -21,4 +22,4 @@ export declare const eventName_options: {
|
|
|
21
22
|
label: any;
|
|
22
23
|
}[];
|
|
23
24
|
export declare const eventName_keys: (keyof typeof enum_eventName)[];
|
|
24
|
-
export declare const eventName_vals: ("更新网络状态" | "更新通话状态" | "同步房间" | "关闭轨道" | "协商流" | "订阅流" | "发布流" | "连接CF" | "退出房间" | "加入房间" | "登录" | "调试" | "心跳")[];
|
|
25
|
+
export declare const eventName_vals: ("更新网络状态" | "更新通话状态" | "同步房间" | "关闭轨道" | "协商流" | "订阅流" | "发布流" | "连接CF" | "退出房间" | "加入房间" | "登录" | "调试" | "webrtc发布状态正常" | "心跳")[];
|
|
@@ -12,7 +12,9 @@ export declare const enum_notifyName: {
|
|
|
12
12
|
readonly onPublish: "监听到流发布";
|
|
13
13
|
readonly onCloseTrack: "关闭轨道";
|
|
14
14
|
readonly onUpdateCall: "更新通讯状态";
|
|
15
|
+
readonly onUpdatePermissions: "更新推流权限通知";
|
|
15
16
|
readonly onTokenExpired: "Token已过期";
|
|
17
|
+
readonly onDestroyRoom: "直播模式房间销毁";
|
|
16
18
|
readonly destroyRoom: "销毁房间";
|
|
17
19
|
readonly onDestroy: "销毁";
|
|
18
20
|
};
|
|
@@ -24,4 +26,4 @@ export declare const notifyName_options: {
|
|
|
24
26
|
label: any;
|
|
25
27
|
}[];
|
|
26
28
|
export declare const notifyName_keys: (keyof typeof enum_notifyName)[];
|
|
27
|
-
export declare const notifyName_vals: ("关闭轨道" | "网络情况变更" | "房间网络情况变更" | "心跳检测" | "网络质量回调" | "登录回调" | "更新本地媒体流" | "房间用户变化" | "房间状态变化" | "加入房间回调" | "退出房间回调" | "监听到流发布" | "更新通讯状态" | "Token已过期" | "销毁房间" | "销毁")[];
|
|
29
|
+
export declare const notifyName_vals: ("关闭轨道" | "网络情况变更" | "房间网络情况变更" | "心跳检测" | "网络质量回调" | "登录回调" | "更新本地媒体流" | "房间用户变化" | "房间状态变化" | "加入房间回调" | "退出房间回调" | "监听到流发布" | "更新通讯状态" | "更新推流权限通知" | "Token已过期" | "直播模式房间销毁" | "销毁房间" | "销毁")[];
|