quickvo-sdk-js 0.2.2 → 0.2.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/README.md +8 -0
- package/dist/enums/notifyName.d.ts +7 -3
- package/dist/index.d.ts +0 -1
- package/dist/index.js +810 -669
- package/dist/index.umd.cjs +2 -2
- package/dist/protos/compiled.d.ts +3724 -3615
- package/dist/room/CallsWebSocket.d.ts +2 -2
- package/dist/room/Room.d.ts +0 -8
- package/dist/room/RoomBase.d.ts +38 -5
- package/dist/room/RoomCalls.d.ts +6 -6
- package/dist/room/RoomMedias.d.ts +104 -0
- package/dist/room/RoomPeer.d.ts +4 -1
- package/dist/room/RoomUsers.d.ts +10 -10
- package/dist/room/{mediaStreamsContext/AudioMediaStreamContext.d.ts → mediaStreams/AudioMediaContext.d.ts} +3 -2
- package/dist/room/{mediaStreamsContext/VideoMediaStreamContext.d.ts → mediaStreams/VideoMediaContext.d.ts} +3 -2
- package/dist/tools.d.ts +0 -17
- package/dist/types.d.ts +2 -2
- package/package.json +1 -1
- package/dist/PrAsyncQueue.d.ts +0 -33
- package/dist/room/MediaStreams.d.ts +0 -60
package/README.md
CHANGED
|
@@ -405,6 +405,14 @@ quickvo.quitRoom()
|
|
|
405
405
|
|
|
406
406
|
### 版本迭代说明
|
|
407
407
|
|
|
408
|
+
- 版本:0.2.3 (2025-03-28)
|
|
409
|
+
|
|
410
|
+
```
|
|
411
|
+
设置输出音频:quickvo.setAudioOutput(devices[0].deviceId) 在此版本之后被移除。
|
|
412
|
+
新版本提高更加全面的能力。使用:quickvo.setMediaDeviceKind('audiooutput', devices[0].deviceId) 替换为原来的api
|
|
413
|
+
|
|
414
|
+
```
|
|
415
|
+
|
|
408
416
|
- 版本:0.1.9 (2025-03-21)
|
|
409
417
|
|
|
410
418
|
```
|
|
@@ -4,14 +4,18 @@ export declare const enum_notifyName: {
|
|
|
4
4
|
readonly healthCheck: "心跳检测";
|
|
5
5
|
readonly onNetQuality: "网络质量回调";
|
|
6
6
|
readonly onLogin: "登录回调";
|
|
7
|
-
readonly onLocalStream: "
|
|
8
|
-
readonly
|
|
7
|
+
readonly onLocalStream: "本地媒体流发生变化";
|
|
8
|
+
readonly onDevicechange: "媒体设备发生变化";
|
|
9
|
+
readonly onRoomUser: "房间用户变化";
|
|
10
|
+
readonly onRoomUsers: "房间所有用户所有变化";
|
|
11
|
+
readonly onRoomUsersStreams: "房间某些用户媒体流变化";
|
|
9
12
|
readonly onRoomState: "房间状态变化";
|
|
10
13
|
readonly onJoinRoom: "加入房间回调";
|
|
11
14
|
readonly onQuitRoom: "退出房间回调";
|
|
12
15
|
readonly onPublish: "监听到流发布";
|
|
13
16
|
readonly onCloseTrack: "关闭轨道";
|
|
14
17
|
readonly onUpdateCall: "更新通讯状态";
|
|
18
|
+
readonly onUpdateStreams: "更新媒体流";
|
|
15
19
|
readonly onUpdatePermissions: "更新推流权限通知";
|
|
16
20
|
readonly onTokenExpired: "Token已过期";
|
|
17
21
|
readonly onDestroyRoom: "直播模式房间销毁";
|
|
@@ -26,4 +30,4 @@ export declare const notifyName_options: {
|
|
|
26
30
|
label: any;
|
|
27
31
|
}[];
|
|
28
32
|
export declare const notifyName_keys: (keyof typeof enum_notifyName)[];
|
|
29
|
-
export declare const notifyName_vals: ("关闭轨道" | "网络情况变更" | "房间网络情况变更" | "心跳检测" | "网络质量回调" | "登录回调" | "
|
|
33
|
+
export declare const notifyName_vals: ("关闭轨道" | "网络情况变更" | "房间网络情况变更" | "心跳检测" | "网络质量回调" | "登录回调" | "本地媒体流发生变化" | "媒体设备发生变化" | "房间用户变化" | "房间所有用户所有变化" | "房间某些用户媒体流变化" | "房间状态变化" | "加入房间回调" | "退出房间回调" | "监听到流发布" | "更新通讯状态" | "更新媒体流" | "更新推流权限通知" | "Token已过期" | "直播模式房间销毁" | "服务器要求销毁房间" | "SDK销毁")[];
|
package/dist/index.d.ts
CHANGED