quickvo-sdk-js 1.6.71 → 1.6.73
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/chunk-BXUcB7os.js +58 -0
- package/dist/index.js +18438 -18577
- package/dist/index.umd.cjs +4 -4
- package/dist/lib-9TnBQie8.js +11083 -0
- package/dist/src/action/ActionSFU.d.ts +12 -23
- package/dist/src/action/Task.d.ts +3 -27
- package/dist/src/base/Base.d.ts +1 -1
- package/dist/src/base/modules/Notifys.d.ts +15 -5
- package/dist/src/base/modules/Peer.d.ts +17 -1
- package/dist/src/base/modules/cws/CallsWebSocket.d.ts +34 -22
- package/dist/src/base/modules/cws/CallsWebSocketEvent.d.ts +7 -8
- package/dist/src/base/modules/cws/PrWebSocket.d.ts +2 -0
- package/dist/src/base/modules/users/Users.d.ts +3 -7
- package/dist/src/base/modules/users/modules/RemotePeerTrackAnalysis.d.ts +5 -0
- package/dist/src/base/modules/users/modules/RemoteUser.d.ts +6 -0
- package/dist/src/base/modules/users/modules/RemoteUserP2P.d.ts +3 -5
- package/dist/src/base/modules/users/modules/UserBase.d.ts +14 -2
- package/dist/src/base/modules/webmDurationFixWorkerMain.d.ts +2 -0
- package/dist/src/enums/eventName.d.ts +6 -1
- package/dist/src/enums/mediaType.d.ts +3 -0
- package/dist/src/enums/notifyName.d.ts +3 -1
- package/dist/src/index.d.ts +0 -4
- package/dist/src/protos/gen/{modules/BaseData_pb.d.ts → BaseData_pb.d.ts} +2 -2
- package/dist/src/protos/gen/{modules/Room_pb.d.ts → Room_pb.d.ts} +16 -90
- package/dist/src/protos/gen/Rtc_pb.d.ts +154 -0
- package/dist/src/protos/index.d.ts +3 -4
- package/dist/src/protos/protoEvent.d.ts +76 -146
- package/dist/src/tools.d.ts +1 -1
- package/dist/src/types.d.ts +0 -12
- package/dist/src/workers/protos/WorkerCore.d.ts +8 -0
- package/dist/src/workers/protos/index.d.ts +10 -0
- package/dist/src/workers/protos/types.d.ts +8 -0
- package/package.json +6 -5
- package/dist/chunk-C3ZmwZ-K.js +0 -57
- package/dist/index.d.ts +0 -2
- package/dist/lib-Cen0reYH.js +0 -11194
- package/dist/src/QuickVO.d.ts +0 -85
- package/dist/src/base/modules/cws/quickvoCodecWorkerMain.d.ts +0 -6
- package/dist/src/base/modules/notifyPayloadMap.d.ts +0 -119
- package/dist/src/protos/gen/modules/Rtc_pb.d.ts +0 -70
- package/dist/src/protos/protoCodec.d.ts +0 -19
- package/dist/src/workers/cwsCodec/CwsCodecCore.d.ts +0 -7
- package/dist/src/workers/cwsCodec/CwsCodecWorker.d.ts +0 -15
- package/dist/src/workers/cwsCodec/type.d.ts +0 -33
- /package/dist/src/workers/{cwsCodec/cwsCodec.worker.d.ts → protos/protos.worker.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quickvo-sdk-js",
|
|
3
3
|
"description": "提供快捷接入单对单、单对多、群体会议、舞台会议等音视频功能。",
|
|
4
|
-
"version": "1.6.
|
|
4
|
+
"version": "1.6.73",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
8
8
|
],
|
|
9
9
|
"main": "./dist/index.umd.cjs",
|
|
10
10
|
"module": "./dist/index.js",
|
|
11
|
-
"types": "./dist/index.d.ts",
|
|
11
|
+
"types": "./dist/src/index.d.ts",
|
|
12
12
|
"exports": {
|
|
13
13
|
".": {
|
|
14
14
|
"import": "./dist/index.js",
|
|
15
|
-
"require": "./dist/index.umd.cjs"
|
|
15
|
+
"require": "./dist/index.umd.cjs",
|
|
16
|
+
"types": "./dist/src/index.d.ts"
|
|
16
17
|
}
|
|
17
18
|
},
|
|
18
19
|
"scripts": {
|
|
@@ -23,7 +24,7 @@
|
|
|
23
24
|
"@bufbuild/protobuf": "^2.11.0",
|
|
24
25
|
"pako": "^2.1.0",
|
|
25
26
|
"pr-async-queue": "^0.1.3",
|
|
26
|
-
"pr-audio-stream": "^0.2.
|
|
27
|
+
"pr-audio-stream": "^0.2.12",
|
|
27
28
|
"pr-interval-queue": "^1.1.7",
|
|
28
29
|
"pr-nat-type": "^0.1.2",
|
|
29
30
|
"pr-tools": "^1.7.2",
|
|
@@ -36,7 +37,7 @@
|
|
|
36
37
|
"@bufbuild/buf": "^1.66.1",
|
|
37
38
|
"@bufbuild/protoc-gen-es": "^2.11.0",
|
|
38
39
|
"typescript": "~6.0.2",
|
|
39
|
-
"vite": "^8.0.
|
|
40
|
+
"vite": "^8.0.7",
|
|
40
41
|
"vite-plugin-dts": "^4.5.4"
|
|
41
42
|
},
|
|
42
43
|
"private": false,
|
package/dist/chunk-C3ZmwZ-K.js
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
function e(e, t) {
|
|
2
|
-
return e -= 298, n()[e];
|
|
3
|
-
}
|
|
4
|
-
var t = e;
|
|
5
|
-
function n() {
|
|
6
|
-
var e = /* @__PURE__ */ "2308388lXGSZb.29845764AGjRKZ.bind.UcVdm.hasOwnProperty.tGkWM.2554647EfTMTm.4255056HaPjHR.777038bpSwJr.defineProperty.JvObn.toStringTag.35utAsFI.3903475YdbIRX.exports.enumerable.getOwnPropertyNames.gqkGJ.create.function.call.Module.YKlim.getPrototypeOf.prototype.2oxqlAf.984056EdTDUe.__esModule.default".split(".");
|
|
7
|
-
return n = function() {
|
|
8
|
-
return e;
|
|
9
|
-
}, n();
|
|
10
|
-
}
|
|
11
|
-
(function(t, n) {
|
|
12
|
-
for (var r = e, i = t();;) try {
|
|
13
|
-
if (-parseInt(r(312)) / 1 + -parseInt(r(300)) / 2 * (parseInt(r(310)) / 3) + -parseInt(r(304)) / 4 + parseInt(r(317)) / 5 + -parseInt(r(311)) / 6 + -parseInt(r(316)) / 7 * (parseInt(r(301)) / 8) + parseInt(r(305)) / 9 === n) break;
|
|
14
|
-
i.push(i.shift());
|
|
15
|
-
} catch {
|
|
16
|
-
i.push(i.shift());
|
|
17
|
-
}
|
|
18
|
-
})(n, 566996);
|
|
19
|
-
var r = Object[t(322)], i = Object[t(313)], a = Object.getOwnPropertyDescriptor, o = Object[t(320)], s = Object[t(298)], c = Object[t(299)][t(308)], l = (e, n) => () => (n || e((n = { exports: {} })[t(318)], n), n[t(318)]), u = (e, n) => {
|
|
20
|
-
var r = t, a = {
|
|
21
|
-
UcVdm: function(e, t, n, r) {
|
|
22
|
-
return e(t, n, r);
|
|
23
|
-
},
|
|
24
|
-
tGkWM: r(325)
|
|
25
|
-
};
|
|
26
|
-
let o = {};
|
|
27
|
-
for (var s in e) a.UcVdm(i, o, s, {
|
|
28
|
-
get: e[s],
|
|
29
|
-
enumerable: !0
|
|
30
|
-
});
|
|
31
|
-
return !n && a[r(307)](i, o, Symbol[r(315)], { value: a[r(309)] }), o;
|
|
32
|
-
}, d = (e, n, r, s) => {
|
|
33
|
-
var l = t, u = {
|
|
34
|
-
gqkGJ: function(e, t) {
|
|
35
|
-
return e === t;
|
|
36
|
-
},
|
|
37
|
-
KkMWB: l(323),
|
|
38
|
-
YKlim: function(e, t) {
|
|
39
|
-
return e(t);
|
|
40
|
-
},
|
|
41
|
-
qKwtb: function(e, t) {
|
|
42
|
-
return e < t;
|
|
43
|
-
},
|
|
44
|
-
JvObn: function(e, t, n) {
|
|
45
|
-
return e(t, n);
|
|
46
|
-
}
|
|
47
|
-
};
|
|
48
|
-
if (n && typeof n == "object" || u[l(321)](typeof n, u.KkMWB)) for (var d = u[l(326)](o, n), f = 0, p = d.length, m; u.qKwtb(f, p); f++) m = d[f], !c[l(324)](e, m) && m !== r && i(e, m, {
|
|
49
|
-
get: ((e) => n[e])[l(306)](null, m),
|
|
50
|
-
enumerable: !(s = u[l(314)](a, n, m)) || s[l(319)]
|
|
51
|
-
});
|
|
52
|
-
return e;
|
|
53
|
-
}, f = (e, n, a) => (a = e == null ? {} : r(s(e)), d(n || !e || !e[t(302)] ? i(a, t(303), {
|
|
54
|
-
value: e,
|
|
55
|
-
enumerable: !0
|
|
56
|
-
}) : a, e));
|
|
57
|
-
export { u as n, f as r, l as t };
|
package/dist/index.d.ts
DELETED