tencentcloud-sdk-nodejs 4.0.551 → 4.0.552
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/CHANGELOG.md +112 -0
- package/SERVICE_CHANGELOG.md +125 -127
- package/package.json +1 -1
- package/products.md +11 -11
- package/src/common/sdk_version.ts +1 -1
- package/src/services/asr/v20190614/asr_client.ts +2 -2
- package/src/services/asr/v20190614/asr_models.ts +4 -0
- package/src/services/bma/v20221115/bma_models.ts +6 -0
- package/src/services/ckafka/v20190819/ckafka_models.ts +2 -2
- package/src/services/ess/v20201111/ess_client.ts +40 -2
- package/src/services/ess/v20201111/ess_models.ts +292 -92
- package/src/services/essbasic/v20210526/essbasic_client.ts +11 -11
- package/src/services/essbasic/v20210526/essbasic_models.ts +61 -53
- package/src/services/gme/v20180711/gme_client.ts +130 -67
- package/src/services/gme/v20180711/gme_models.ts +1040 -813
- package/src/services/trtc/v20190722/trtc_client.ts +3 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/asr/v20190614/asr_client.d.ts +2 -2
- package/tencentcloud/services/asr/v20190614/asr_client.js +2 -2
- package/tencentcloud/services/asr/v20190614/asr_models.d.ts +4 -0
- package/tencentcloud/services/bma/v20221115/bma_models.d.ts +5 -0
- package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +2 -2
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +13 -1
- package/tencentcloud/services/ess/v20201111/ess_client.js +18 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +251 -80
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +11 -11
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +11 -11
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +60 -53
- package/tencentcloud/services/gme/v20180711/gme_client.d.ts +26 -5
- package/tencentcloud/services/gme/v20180711/gme_client.js +37 -6
- package/tencentcloud/services/gme/v20180711/gme_models.d.ts +978 -783
- package/tencentcloud/services/trtc/v20190722/trtc_client.d.ts +3 -1
- package/tencentcloud/services/trtc/v20190722/trtc_client.js +3 -1
- package/test/ess.v20201111.test.js +30 -0
- package/test/gme.v20180711.test.js +54 -4
|
@@ -175,7 +175,9 @@ TRTC 的一个房间中可能会同时存在多路音视频流,您可以通过
|
|
|
175
175
|
*/
|
|
176
176
|
CreateCloudRecording(req: CreateCloudRecordingRequest, cb?: (error: string, rep: CreateCloudRecordingResponse) => void): Promise<CreateCloudRecordingResponse>;
|
|
177
177
|
/**
|
|
178
|
-
*
|
|
178
|
+
* 接口内部调用计量接口,计量接口迁通用集群后不可用。目前已有新的对外接口可以供用户使用。
|
|
179
|
+
|
|
180
|
+
获取Trtc的用量统计数据。走计费渠道二期 只允许查两天的数据。
|
|
179
181
|
当前接口已不再更新维护,请使用新版音视频用量接口:DescribeTrtcUsage (https://cloud.tencent.com/document/product/647/81425)
|
|
180
182
|
*/
|
|
181
183
|
DescribeExternalTrtcMeasure(req: DescribeExternalTrtcMeasureRequest, cb?: (error: string, rep: DescribeExternalTrtcMeasureResponse) => void): Promise<DescribeExternalTrtcMeasureResponse>;
|
|
@@ -227,7 +227,9 @@ TRTC 的一个房间中可能会同时存在多路音视频流,您可以通过
|
|
|
227
227
|
return this.request("CreateCloudRecording", req, cb);
|
|
228
228
|
}
|
|
229
229
|
/**
|
|
230
|
-
*
|
|
230
|
+
* 接口内部调用计量接口,计量接口迁通用集群后不可用。目前已有新的对外接口可以供用户使用。
|
|
231
|
+
|
|
232
|
+
获取Trtc的用量统计数据。走计费渠道二期 只允许查两天的数据。
|
|
231
233
|
当前接口已不再更新维护,请使用新版音视频用量接口:DescribeTrtcUsage (https://cloud.tencent.com/document/product/647/81425)
|
|
232
234
|
*/
|
|
233
235
|
async DescribeExternalTrtcMeasure(req, cb) {
|
|
@@ -88,6 +88,16 @@ it("ess.v20201111.DescribeFileUrls", async function () {
|
|
|
88
88
|
}
|
|
89
89
|
})
|
|
90
90
|
|
|
91
|
+
it("ess.v20201111.CreateUserAutoSignEnableUrl", async function () {
|
|
92
|
+
try {
|
|
93
|
+
const data = await client.CreateUserAutoSignEnableUrl({})
|
|
94
|
+
expect(data).to.be.ok
|
|
95
|
+
} catch(error) {
|
|
96
|
+
expect(error.requestId).to.be.ok
|
|
97
|
+
expect(error.code).to.be.ok
|
|
98
|
+
}
|
|
99
|
+
})
|
|
100
|
+
|
|
91
101
|
it("ess.v20201111.CreateFlowEvidenceReport", async function () {
|
|
92
102
|
try {
|
|
93
103
|
const data = await client.CreateFlowEvidenceReport({})
|
|
@@ -128,6 +138,16 @@ it("ess.v20201111.CreateFlowApprovers", async function () {
|
|
|
128
138
|
}
|
|
129
139
|
})
|
|
130
140
|
|
|
141
|
+
it("ess.v20201111.DisableUserAutoSign", async function () {
|
|
142
|
+
try {
|
|
143
|
+
const data = await client.DisableUserAutoSign({})
|
|
144
|
+
expect(data).to.be.ok
|
|
145
|
+
} catch(error) {
|
|
146
|
+
expect(error.requestId).to.be.ok
|
|
147
|
+
expect(error.code).to.be.ok
|
|
148
|
+
}
|
|
149
|
+
})
|
|
150
|
+
|
|
131
151
|
it("ess.v20201111.CreateFlowSignReview", async function () {
|
|
132
152
|
try {
|
|
133
153
|
const data = await client.CreateFlowSignReview({})
|
|
@@ -188,6 +208,16 @@ it("ess.v20201111.CreateFlow", async function () {
|
|
|
188
208
|
}
|
|
189
209
|
})
|
|
190
210
|
|
|
211
|
+
it("ess.v20201111.DescribeUserAutoSignStatus", async function () {
|
|
212
|
+
try {
|
|
213
|
+
const data = await client.DescribeUserAutoSignStatus({})
|
|
214
|
+
expect(data).to.be.ok
|
|
215
|
+
} catch(error) {
|
|
216
|
+
expect(error.requestId).to.be.ok
|
|
217
|
+
expect(error.code).to.be.ok
|
|
218
|
+
}
|
|
219
|
+
})
|
|
220
|
+
|
|
191
221
|
it("ess.v20201111.DescribeFlowEvidenceReport", async function () {
|
|
192
222
|
try {
|
|
193
223
|
const data = await client.DescribeFlowEvidenceReport({})
|
|
@@ -28,6 +28,16 @@ it("gme.v20180711.DescribeRoomInfo", async function () {
|
|
|
28
28
|
}
|
|
29
29
|
})
|
|
30
30
|
|
|
31
|
+
it("gme.v20180711.StopRecord", async function () {
|
|
32
|
+
try {
|
|
33
|
+
const data = await client.StopRecord({})
|
|
34
|
+
expect(data).to.be.ok
|
|
35
|
+
} catch(error) {
|
|
36
|
+
expect(error.requestId).to.be.ok
|
|
37
|
+
expect(error.code).to.be.ok
|
|
38
|
+
}
|
|
39
|
+
})
|
|
40
|
+
|
|
31
41
|
it("gme.v20180711.DeleteScanUser", async function () {
|
|
32
42
|
try {
|
|
33
43
|
const data = await client.DeleteScanUser({})
|
|
@@ -68,9 +78,9 @@ it("gme.v20180711.DescribeUserInAndOutTime", async function () {
|
|
|
68
78
|
}
|
|
69
79
|
})
|
|
70
80
|
|
|
71
|
-
it("gme.v20180711.
|
|
81
|
+
it("gme.v20180711.UpdateScanRooms", async function () {
|
|
72
82
|
try {
|
|
73
|
-
const data = await client.
|
|
83
|
+
const data = await client.UpdateScanRooms({})
|
|
74
84
|
expect(data).to.be.ok
|
|
75
85
|
} catch(error) {
|
|
76
86
|
expect(error.requestId).to.be.ok
|
|
@@ -88,6 +98,16 @@ it("gme.v20180711.CreateCustomization", async function () {
|
|
|
88
98
|
}
|
|
89
99
|
})
|
|
90
100
|
|
|
101
|
+
it("gme.v20180711.DescribeTaskInfo", async function () {
|
|
102
|
+
try {
|
|
103
|
+
const data = await client.DescribeTaskInfo({})
|
|
104
|
+
expect(data).to.be.ok
|
|
105
|
+
} catch(error) {
|
|
106
|
+
expect(error.requestId).to.be.ok
|
|
107
|
+
expect(error.code).to.be.ok
|
|
108
|
+
}
|
|
109
|
+
})
|
|
110
|
+
|
|
91
111
|
it("gme.v20180711.CreateAgeDetectTask", async function () {
|
|
92
112
|
try {
|
|
93
113
|
const data = await client.CreateAgeDetectTask({})
|
|
@@ -158,9 +178,19 @@ it("gme.v20180711.ModifyCustomization", async function () {
|
|
|
158
178
|
}
|
|
159
179
|
})
|
|
160
180
|
|
|
161
|
-
it("gme.v20180711.
|
|
181
|
+
it("gme.v20180711.DescribeRealtimeScanConfig", async function () {
|
|
162
182
|
try {
|
|
163
|
-
const data = await client.
|
|
183
|
+
const data = await client.DescribeRealtimeScanConfig({})
|
|
184
|
+
expect(data).to.be.ok
|
|
185
|
+
} catch(error) {
|
|
186
|
+
expect(error.requestId).to.be.ok
|
|
187
|
+
expect(error.code).to.be.ok
|
|
188
|
+
}
|
|
189
|
+
})
|
|
190
|
+
|
|
191
|
+
it("gme.v20180711.ModifyRecordInfo", async function () {
|
|
192
|
+
try {
|
|
193
|
+
const data = await client.ModifyRecordInfo({})
|
|
164
194
|
expect(data).to.be.ok
|
|
165
195
|
} catch(error) {
|
|
166
196
|
expect(error.requestId).to.be.ok
|
|
@@ -208,6 +238,16 @@ it("gme.v20180711.ModifyCustomizationState", async function () {
|
|
|
208
238
|
}
|
|
209
239
|
})
|
|
210
240
|
|
|
241
|
+
it("gme.v20180711.DescribeRecordInfo", async function () {
|
|
242
|
+
try {
|
|
243
|
+
const data = await client.DescribeRecordInfo({})
|
|
244
|
+
expect(data).to.be.ok
|
|
245
|
+
} catch(error) {
|
|
246
|
+
expect(error.requestId).to.be.ok
|
|
247
|
+
expect(error.code).to.be.ok
|
|
248
|
+
}
|
|
249
|
+
})
|
|
250
|
+
|
|
211
251
|
it("gme.v20180711.ModifyUserMicStatus", async function () {
|
|
212
252
|
try {
|
|
213
253
|
const data = await client.ModifyUserMicStatus({})
|
|
@@ -228,6 +268,16 @@ it("gme.v20180711.DeleteCustomization", async function () {
|
|
|
228
268
|
}
|
|
229
269
|
})
|
|
230
270
|
|
|
271
|
+
it("gme.v20180711.StartRecord", async function () {
|
|
272
|
+
try {
|
|
273
|
+
const data = await client.StartRecord({})
|
|
274
|
+
expect(data).to.be.ok
|
|
275
|
+
} catch(error) {
|
|
276
|
+
expect(error.requestId).to.be.ok
|
|
277
|
+
expect(error.code).to.be.ok
|
|
278
|
+
}
|
|
279
|
+
})
|
|
280
|
+
|
|
231
281
|
it("gme.v20180711.ModifyAppStatus", async function () {
|
|
232
282
|
try {
|
|
233
283
|
const data = await client.ModifyAppStatus({})
|