tencentcloud-sdk-nodejs-lcic 4.1.120 → 4.1.122
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": "tencentcloud-sdk-nodejs-lcic",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.122",
|
|
4
4
|
"description": "腾讯云 API NODEJS SDK",
|
|
5
5
|
"main": "./tencentcloud/index.js",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"url": "https://github.com/tencentcloud/tencentcloud-sdk-nodejs"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
+
"@types/ini": "^4.1.1",
|
|
48
49
|
"@types/json-bigint": "^1.0.1",
|
|
49
50
|
"@types/node": "^18.0.0",
|
|
50
51
|
"@types/node-fetch": "^2.5.7",
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
export interface CreateRoomRequest {
|
|
5
5
|
/**
|
|
6
6
|
* 课堂名称。
|
|
7
|
+
字符数不超过256
|
|
7
8
|
*/
|
|
8
9
|
Name: string;
|
|
9
10
|
/**
|
|
@@ -152,7 +153,9 @@ export interface CreateRoomRequest {
|
|
|
152
153
|
*/
|
|
153
154
|
WhiteBoardSnapshotMode?: number;
|
|
154
155
|
/**
|
|
155
|
-
*
|
|
156
|
+
* 字幕转写功能开关。可以有以下取值:
|
|
157
|
+
0 不开启字幕转写功能(默认值)
|
|
158
|
+
1 自动转写模式:上课自动开启,下课自动停止
|
|
156
159
|
*/
|
|
157
160
|
SubtitlesTranscription?: number;
|
|
158
161
|
/**
|
|
@@ -2871,6 +2874,7 @@ export interface SetWatermarkResponse {
|
|
|
2871
2874
|
export interface RoomInfo {
|
|
2872
2875
|
/**
|
|
2873
2876
|
* 房间名称。
|
|
2877
|
+
字符数不超过256
|
|
2874
2878
|
*/
|
|
2875
2879
|
Name: string;
|
|
2876
2880
|
/**
|
|
@@ -2995,7 +2999,9 @@ export interface RoomInfo {
|
|
|
2995
2999
|
*/
|
|
2996
3000
|
WhiteBoardSnapshotMode?: number;
|
|
2997
3001
|
/**
|
|
2998
|
-
*
|
|
3002
|
+
* 字幕转写功能开关。可以有以下取值:
|
|
3003
|
+
0 不开启字幕转写功能(默认值)
|
|
3004
|
+
1 自动转写模式:上课自动开启,下课自动停止
|
|
2999
3005
|
*/
|
|
3000
3006
|
SubtitlesTranscription?: number;
|
|
3001
3007
|
/**
|
|
@@ -3718,6 +3724,7 @@ export interface DescribeGroupListResponse {
|
|
|
3718
3724
|
export interface ModifyRoomRequest {
|
|
3719
3725
|
/**
|
|
3720
3726
|
* 房间ID。
|
|
3727
|
+
字符数不超过256
|
|
3721
3728
|
*/
|
|
3722
3729
|
RoomId: number;
|
|
3723
3730
|
/**
|
|
@@ -3845,7 +3852,9 @@ export interface ModifyRoomRequest {
|
|
|
3845
3852
|
*/
|
|
3846
3853
|
WhiteBoardSnapshotMode?: number;
|
|
3847
3854
|
/**
|
|
3848
|
-
*
|
|
3855
|
+
* 字幕转写功能开关。可以有以下取值:
|
|
3856
|
+
0 不开启字幕转写功能(默认值)
|
|
3857
|
+
1 自动转写模式:上课自动开启,下课自动停止
|
|
3849
3858
|
*/
|
|
3850
3859
|
SubtitlesTranscription?: number;
|
|
3851
3860
|
/**
|