tencentcloud-sdk-nodejs-live 4.1.49 → 4.1.58
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
|
@@ -55,7 +55,6 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
55
55
|
- 使用前提
|
|
56
56
|
1. 仅用于查询由 CreateRecordTask 接口创建的录制任务。
|
|
57
57
|
2. 不能查询被 DeleteRecordTask 接口删除以及已过期(平台侧保留3个月)的录制任务。
|
|
58
|
-
|
|
59
58
|
*/
|
|
60
59
|
DescribeRecordTask(req: DescribeRecordTaskRequest, cb?: (error: string, rep: DescribeRecordTaskResponse) => void): Promise<DescribeRecordTaskResponse>;
|
|
61
60
|
/**
|
|
@@ -91,7 +91,6 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
91
91
|
- 使用前提
|
|
92
92
|
1. 仅用于查询由 CreateRecordTask 接口创建的录制任务。
|
|
93
93
|
2. 不能查询被 DeleteRecordTask 接口删除以及已过期(平台侧保留3个月)的录制任务。
|
|
94
|
-
|
|
95
94
|
*/
|
|
96
95
|
async DescribeRecordTask(req, cb) {
|
|
97
96
|
return this.request("DescribeRecordTask", req, cb);
|
|
@@ -10441,11 +10441,11 @@ export interface DescribeRecordTaskResponse {
|
|
|
10441
10441
|
/**
|
|
10442
10442
|
* 翻页标识,当请求未返回所有数据,该字段表示下一条记录的 Token。当该字段为空,说明已无更多数据。
|
|
10443
10443
|
*/
|
|
10444
|
-
ScrollToken
|
|
10444
|
+
ScrollToken?: string;
|
|
10445
10445
|
/**
|
|
10446
10446
|
* 录制任务列表。当该字段为空,说明已返回所有数据。
|
|
10447
10447
|
*/
|
|
10448
|
-
TaskList
|
|
10448
|
+
TaskList?: Array<RecordTask>;
|
|
10449
10449
|
/**
|
|
10450
10450
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
10451
10451
|
*/
|