@trtc/calls-uikit-vue 4.5.0 → 4.5.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trtc/calls-uikit-vue",
3
- "version": "4.5.0",
3
+ "version": "4.5.1",
4
4
  "main": "./tuicall-uikit-vue.umd.js",
5
5
  "module": "./tuicall-uikit-vue.es.js",
6
6
  "types": "./types/index.d.ts",
@@ -15,7 +15,7 @@
15
15
  "dependencies": {
16
16
  "@tencentcloud/lite-chat": "^1.6.3",
17
17
  "@tencentcloud/tui-core-lite": "~1.0.1",
18
- "@trtc/call-engine-lite-js": "~4.0.0"
18
+ "@trtc/call-engine-lite-js": "~4.0.1"
19
19
  },
20
20
  "bugs": {
21
21
  "url": "https://github.com/tencentyun/TUICallKit/issues"
@@ -27,7 +27,7 @@ const TUIGlobal: ITUIGlobal = TuiGlobal.getInstance();
27
27
  const TUIStore: ITUIStore = TuiStore.getInstance();
28
28
  const uiDesign = UIDesign.getInstance();
29
29
  uiDesign.setTUIStore(TUIStore);
30
- const version = '4.5.0';
30
+ const version = '4.5.1';
31
31
  import AIAssistant from './AIAssistant'; // 仅 web 支持 AI 实时字幕
32
32
  const frameWork = 'vue3';
33
33
  export { TUIGlobal, TUIStore, uiDesign };
@@ -54,7 +54,9 @@ export enum VideoDisplayMode {
54
54
  * @property {String} 1080p
55
55
  */
56
56
  export enum VideoResolution {
57
- RESOLUTION_480P = '480p',
57
+ RESOLUTION_360P = '360p',
58
+ RESOLUTION_480P = '480p', // c++ 重构后, 480p 不支持, 使用的是 540p
59
+ RESOLUTION_540P = '540p',
58
60
  RESOLUTION_720P = '720p',
59
61
  RESOLUTION_1080P = '1080p',
60
62
  }
package/src/index.ts CHANGED
@@ -37,7 +37,7 @@ const TUICallType = {
37
37
  AUDIO_CALL: 1,
38
38
  VIDEO_CALL: 2,
39
39
  };
40
- const Version = '4.5.0'; // basic-demo 原来上报使用
40
+ const Version = '4.5.1'; // basic-demo 原来上报使用
41
41
 
42
42
  // 输出产物
43
43
  export {