quickvo-sdk-js 1.5.14 → 1.5.16
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.js +21192 -21366
- package/dist/index.umd.cjs +3 -3
- package/dist/protos/compiled.d.ts +6 -0
- package/dist/room/P2P.d.ts +1 -0
- package/dist/room/RoomBase.d.ts +2 -2
- package/package.json +7 -7
|
@@ -6109,6 +6109,9 @@ export namespace com {
|
|
|
6109
6109
|
|
|
6110
6110
|
/** RoomSpeechNotify timestamp */
|
|
6111
6111
|
timestamp?: (number|Long|null);
|
|
6112
|
+
|
|
6113
|
+
/** RoomSpeechNotify origin */
|
|
6114
|
+
origin?: (string|null);
|
|
6112
6115
|
}
|
|
6113
6116
|
|
|
6114
6117
|
/** Represents a RoomSpeechNotify. */
|
|
@@ -6132,6 +6135,9 @@ export namespace com {
|
|
|
6132
6135
|
/** RoomSpeechNotify timestamp. */
|
|
6133
6136
|
public timestamp: (number|Long);
|
|
6134
6137
|
|
|
6138
|
+
/** RoomSpeechNotify origin. */
|
|
6139
|
+
public origin: string;
|
|
6140
|
+
|
|
6135
6141
|
/**
|
|
6136
6142
|
* Creates a new RoomSpeechNotify instance using the specified properties.
|
|
6137
6143
|
* @param [properties] Properties to set
|
package/dist/room/P2P.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export declare class P2P {
|
|
|
22
22
|
tracks: MediaStreamTrack[];
|
|
23
23
|
onClose: () => void;
|
|
24
24
|
constructor(roomId: string, userId: string, remoteUserId: string, phoney_streams: Map<K_mediaType, MediaStream>, local_streams_map: Map<K_mediaType, MediaStream>);
|
|
25
|
+
filterSdp: (description: RTCSessionDescriptionInit) => void;
|
|
25
26
|
remoteChannelSend: (message: Message) => void;
|
|
26
27
|
init: () => Promise<void>;
|
|
27
28
|
/**
|
package/dist/room/RoomBase.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { PrAsyncQueue } from 'pr-async-queue';
|
|
|
7
7
|
import { P2P } from './P2P';
|
|
8
8
|
import { K_iceState } from '../enums/iceState';
|
|
9
9
|
import { PrResolves } from './PrResolves';
|
|
10
|
-
import {
|
|
10
|
+
import { PrIntervalQueue } from 'pr-interval-queue';
|
|
11
11
|
type Options = QuickOptions & RoomOptions & CallsWebSocketOptions & {
|
|
12
12
|
earlyId?: string;
|
|
13
13
|
};
|
|
@@ -20,7 +20,7 @@ export declare class RoomBase {
|
|
|
20
20
|
historical_publish_mediaTypes: K_mediaType[];
|
|
21
21
|
historical_subscribe_mediaTypes: UserMediaTypes[];
|
|
22
22
|
prResolves: PrResolves;
|
|
23
|
-
intervalQueue:
|
|
23
|
+
intervalQueue: PrIntervalQueue;
|
|
24
24
|
sdk_service_version: string;
|
|
25
25
|
sdk_session: string;
|
|
26
26
|
isEarly: boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quickvo-sdk-js",
|
|
3
3
|
"description": "提供快捷接入单对单、单对多、群体会议、舞台会议等音视频功能。",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.16",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
@@ -21,19 +21,19 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"pako": "^2.1.0",
|
|
23
23
|
"pr-async-queue": "^0.1.3",
|
|
24
|
-
"pr-audio-stream": "^0.2.
|
|
25
|
-
"pr-interval-queue": "^1.1.
|
|
24
|
+
"pr-audio-stream": "^0.2.1",
|
|
25
|
+
"pr-interval-queue": "^1.1.6",
|
|
26
26
|
"pr-nat-type": "^0.1.2",
|
|
27
|
-
"pr-tools": "^1.6.
|
|
27
|
+
"pr-tools": "^1.6.7",
|
|
28
28
|
"pr-ws": "^0.3.3",
|
|
29
29
|
"sdp-transform": "^3.0.0",
|
|
30
30
|
"webm-duration-fix": "^1.0.4"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"protobufjs": "^
|
|
33
|
+
"protobufjs": "^8.0.0",
|
|
34
34
|
"typescript": "^5.9.3",
|
|
35
|
-
"vite": "^7.1
|
|
36
|
-
"vite-plugin-bundle-obfuscator": "^1.
|
|
35
|
+
"vite": "^7.3.1",
|
|
36
|
+
"vite-plugin-bundle-obfuscator": "^1.10.0",
|
|
37
37
|
"vite-plugin-dts": "^4.5.4"
|
|
38
38
|
},
|
|
39
39
|
"private": false,
|