tencentcloud-sdk-nodejs-tdai 4.1.157 → 4.1.159
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
|
@@ -238,6 +238,10 @@ export interface DescribeAgentDutyTasksResponse {
|
|
|
238
238
|
* 查询结果总数量
|
|
239
239
|
*/
|
|
240
240
|
TotalCount?: number;
|
|
241
|
+
/**
|
|
242
|
+
* 任务详细信息
|
|
243
|
+
*/
|
|
244
|
+
DutyTasks?: Array<AgentDutyTask>;
|
|
241
245
|
/**
|
|
242
246
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
243
247
|
*/
|
|
@@ -454,6 +458,14 @@ export interface CreateAgentInstanceResponse {
|
|
|
454
458
|
* DescribeAgentDutyTasks请求参数结构体
|
|
455
459
|
*/
|
|
456
460
|
export interface DescribeAgentDutyTasksRequest {
|
|
461
|
+
/**
|
|
462
|
+
* agent实例ID
|
|
463
|
+
*/
|
|
464
|
+
InstanceId: string;
|
|
465
|
+
/**
|
|
466
|
+
* 会话ID
|
|
467
|
+
*/
|
|
468
|
+
ChatId?: string;
|
|
457
469
|
/**
|
|
458
470
|
* 查询开始位置
|
|
459
471
|
*/
|
|
@@ -462,6 +474,22 @@ export interface DescribeAgentDutyTasksRequest {
|
|
|
462
474
|
* 列表查询数量
|
|
463
475
|
*/
|
|
464
476
|
Limit?: number;
|
|
477
|
+
/**
|
|
478
|
+
* 任务启动时间
|
|
479
|
+
*/
|
|
480
|
+
StartTime?: string;
|
|
481
|
+
/**
|
|
482
|
+
* 任务结束时间
|
|
483
|
+
*/
|
|
484
|
+
EndTime?: string;
|
|
485
|
+
/**
|
|
486
|
+
* 任务类型
|
|
487
|
+
*/
|
|
488
|
+
AgentTaskType?: string;
|
|
489
|
+
/**
|
|
490
|
+
* 业务参数
|
|
491
|
+
*/
|
|
492
|
+
Parameters?: Array<Parameter>;
|
|
465
493
|
}
|
|
466
494
|
/**
|
|
467
495
|
* PauseAgentWork返回参数结构体
|