@tencentcloud/tuiroom-engine-js 3.2.2 → 3.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/index.cjs.js +1 -0
- package/{dist/index.d.ts → index.d.ts} +1 -2
- package/index.esm.js +1 -0
- package/index.js +1 -0
- package/package.json +17 -55
- package/dist/index.cjs.js +0 -3
- package/dist/index.esm.js +0 -3
- package/dist/index.js +0 -3
- package/dist/src/error/error-info.d.ts +0 -51
- package/dist/src/error/tui-error.d.ts +0 -10
- package/dist/src/index.d.ts +0 -1502
- package/dist/src/modules/conferenceInvitationManager.d.ts +0 -163
- package/dist/src/modules/conferenceListManager.d.ts +0 -244
- package/dist/src/modules/deviceManager.d.ts +0 -162
- package/dist/src/modules/liveConnectionManager.d.ts +0 -109
- package/dist/src/modules/liveLayoutManager.d.ts +0 -98
- package/dist/src/modules/liveListManager.d.ts +0 -120
- package/dist/src/types.d.ts +0 -1356
- package/dist/src/utils/apiCallQueue.d.ts +0 -18
- package/dist/src/utils/common.d.ts +0 -10
- package/dist/src/utils/constant.d.ts +0 -13
- package/dist/src/utils/environment.d.ts +0 -2
- package/dist/src/utils/logger.d.ts +0 -21
- package/dist/src/utils/utils.d.ts +0 -35
- package/dist/src/utils/validate-config.d.ts +0 -722
- package/dist/src/utils/validate.d.ts +0 -69
package/package.json
CHANGED
|
@@ -1,65 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tencentcloud/tuiroom-engine-js",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.4",
|
|
4
4
|
"description": "TUIRoomEngine Web SDK",
|
|
5
|
-
"main": "
|
|
6
|
-
"module": "
|
|
7
|
-
"types": "
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"module": "index.esm.js",
|
|
7
|
+
"types": "index.d.ts",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"tuiroom",
|
|
10
|
+
"webrtc",
|
|
11
|
+
"im",
|
|
12
|
+
"javascript"
|
|
11
13
|
],
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"build:typedoc": "typedoc --options ./build/typedoc.json",
|
|
17
|
-
"test": "karma start karma.config.js"
|
|
14
|
+
"homepage": "https://cloud.tencent.com/document/product/647/81970",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git@github.com:tencentyun/TUIRoom.git"
|
|
18
18
|
},
|
|
19
|
-
"
|
|
20
|
-
"author": "xinlxinli",
|
|
19
|
+
"author": "Tencent Cloud Client R&D Center",
|
|
21
20
|
"license": "ISC",
|
|
22
|
-
"devDependencies": {
|
|
23
|
-
"@babel/core": "^7.12.16",
|
|
24
|
-
"@babel/preset-env": "^7.19.4",
|
|
25
|
-
"@rollup/plugin-commonjs": "^23.0.4",
|
|
26
|
-
"@rollup/plugin-json": "^5.0.2",
|
|
27
|
-
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
28
|
-
"@typescript-eslint/eslint-plugin": "^5.33.1",
|
|
29
|
-
"@typescript-eslint/parser": "^5.33.1",
|
|
30
|
-
"docdash-blue": "^1.1.9",
|
|
31
|
-
"eslint": "^8.22.0",
|
|
32
|
-
"eslint-config-tencent": "^1.0.4",
|
|
33
|
-
"fs-extra": "^11.0.0",
|
|
34
|
-
"jasmine-core": "^4.4.0",
|
|
35
|
-
"jsdoc": "^3.6.11",
|
|
36
|
-
"karma": "^6.4.1",
|
|
37
|
-
"karma-chrome-launcher": "^3.1.1",
|
|
38
|
-
"karma-jasmine": "^5.1.0",
|
|
39
|
-
"pretty": "^2.0.0",
|
|
40
|
-
"replace": "^1.2.1",
|
|
41
|
-
"rollup": "^2.78.0",
|
|
42
|
-
"rollup-plugin-babel": "^4.4.0",
|
|
43
|
-
"rollup-plugin-dts": "^6.1.0",
|
|
44
|
-
"rollup-plugin-terser": "^7.0.2",
|
|
45
|
-
"rollup-plugin-typescript2": "^0.34.1",
|
|
46
|
-
"tslib": "^2.4.0",
|
|
47
|
-
"typedoc": "^0.23.15",
|
|
48
|
-
"typescript": "^4.7.4",
|
|
49
|
-
"rimraf": "^6.0.1"
|
|
50
|
-
},
|
|
51
21
|
"dependencies": {
|
|
52
|
-
"@tencentcloud/chat": "^3.5.5",
|
|
53
|
-
"core-js": "^3.8.3",
|
|
54
|
-
"eventemitter3": "^4.0.7",
|
|
55
22
|
"rtc-detect": "^0.0.5",
|
|
56
|
-
"
|
|
57
|
-
"trtc-cloud-js-sdk": "2.9.3"
|
|
58
|
-
|
|
59
|
-
"browser": {
|
|
60
|
-
"fs": false,
|
|
61
|
-
"path": false,
|
|
62
|
-
"os": false,
|
|
63
|
-
"url": false
|
|
23
|
+
"@tencentcloud/chat": "^3.5.5",
|
|
24
|
+
"trtc-cloud-js-sdk": "2.9.3",
|
|
25
|
+
"tcplayer.js": "5.3.4"
|
|
64
26
|
}
|
|
65
27
|
}
|