tencentcloud-sdk-nodejs-ccc 4.1.162 → 4.1.170
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
|
@@ -48,9 +48,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
48
48
|
*/
|
|
49
49
|
AbortAgentCruiseDialingCampaign(req: AbortAgentCruiseDialingCampaignRequest, cb?: (error: string, rep: AbortAgentCruiseDialingCampaignResponse) => void): Promise<AbortAgentCruiseDialingCampaignResponse>;
|
|
50
50
|
/**
|
|
51
|
-
*
|
|
51
|
+
* 用于 **直接调用AI模型** 发起 **单次** 外呼通话,支持通过API参数直接配置模型、提示词、语音等全部通话要素。
|
|
52
52
|
|
|
53
|
-
|
|
53
|
+
该功能需购买语音智能体通话套餐,并且仅限自有电话号码使用。详情请参考 [语音智能体通话购买指引](https://cloud.tencent.com/document/product/679/125953)。
|
|
54
54
|
*/
|
|
55
55
|
CreateAICall(req: CreateAICallRequest, cb?: (error: string, rep: CreateAICallResponse) => void): Promise<CreateAICallResponse>;
|
|
56
56
|
/**
|
|
@@ -164,8 +164,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
164
164
|
*/
|
|
165
165
|
DescribePredictiveDialingCampaigns(req: DescribePredictiveDialingCampaignsRequest, cb?: (error: string, rep: DescribePredictiveDialingCampaignsResponse) => void): Promise<DescribePredictiveDialingCampaignsResponse>;
|
|
166
166
|
/**
|
|
167
|
-
|
|
168
|
-
|
|
167
|
+
* 用于通过 TaskId 查询**自动外呼任务的详细信息**,包括任务基础配置、起止时间、外呼名单、执行状态以及实际通话情况等。
|
|
168
|
+
该接口通常与 [创建批量自动外呼任务](https://cloud.tencent.com/document/product/679/69194) 配合使用,用于在任务创建后查看任务配置是否生效、任务当前状态,以及后续执行过程中的实时进展。
|
|
169
|
+
*/
|
|
169
170
|
DescribeAutoCalloutTask(req: DescribeAutoCalloutTaskRequest, cb?: (error: string, rep: DescribeAutoCalloutTaskResponse) => void): Promise<DescribeAutoCalloutTaskResponse>;
|
|
170
171
|
/**
|
|
171
172
|
* 查询预测式外呼呼叫列表
|
|
@@ -88,9 +88,9 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
88
88
|
return this.request("AbortAgentCruiseDialingCampaign", req, cb);
|
|
89
89
|
}
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* 用于 **直接调用AI模型** 发起 **单次** 外呼通话,支持通过API参数直接配置模型、提示词、语音等全部通话要素。
|
|
92
92
|
|
|
93
|
-
|
|
93
|
+
该功能需购买语音智能体通话套餐,并且仅限自有电话号码使用。详情请参考 [语音智能体通话购买指引](https://cloud.tencent.com/document/product/679/125953)。
|
|
94
94
|
*/
|
|
95
95
|
async CreateAICall(req, cb) {
|
|
96
96
|
return this.request("CreateAICall", req, cb);
|
|
@@ -258,8 +258,9 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
258
258
|
return this.request("DescribePredictiveDialingCampaigns", req, cb);
|
|
259
259
|
}
|
|
260
260
|
/**
|
|
261
|
-
|
|
262
|
-
|
|
261
|
+
* 用于通过 TaskId 查询**自动外呼任务的详细信息**,包括任务基础配置、起止时间、外呼名单、执行状态以及实际通话情况等。
|
|
262
|
+
该接口通常与 [创建批量自动外呼任务](https://cloud.tencent.com/document/product/679/69194) 配合使用,用于在任务创建后查看任务配置是否生效、任务当前状态,以及后续执行过程中的实时进展。
|
|
263
|
+
*/
|
|
263
264
|
async DescribeAutoCalloutTask(req, cb) {
|
|
264
265
|
return this.request("DescribeAutoCalloutTask", req, cb);
|
|
265
266
|
}
|
|
@@ -82,6 +82,10 @@ export interface CreateIVRSessionRequest {
|
|
|
82
82
|
* 用户数据
|
|
83
83
|
*/
|
|
84
84
|
UUI?: string;
|
|
85
|
+
/**
|
|
86
|
+
* 最大振铃时长,达到时长阈值自动挂断。 仅自携号码支持当前参数
|
|
87
|
+
*/
|
|
88
|
+
MaxRingTimeoutSecond?: number;
|
|
85
89
|
}
|
|
86
90
|
/**
|
|
87
91
|
* 企业资质申请信息
|
|
@@ -797,6 +801,10 @@ export interface CreateAICallRequest {
|
|
|
797
801
|
* 大模型拓展参数, 格式为json字符串
|
|
798
802
|
*/
|
|
799
803
|
LLMExtraBody?: string;
|
|
804
|
+
/**
|
|
805
|
+
* 最大通话时长, 默认不限制。单位毫秒(ms)
|
|
806
|
+
*/
|
|
807
|
+
MaxCallDurationMs?: number;
|
|
800
808
|
}
|
|
801
809
|
/**
|
|
802
810
|
* 带有技能组优先级的座席信息
|
|
@@ -1283,6 +1291,10 @@ export interface ServeParticipant {
|
|
|
1283
1291
|
SkillGroupId?: number;
|
|
1284
1292
|
/**
|
|
1285
1293
|
* 结束状态
|
|
1294
|
+
|
|
1295
|
+
中文详情[参考](https://www.tencentcloud.com/zh/document/product/1229/71847)
|
|
1296
|
+
|
|
1297
|
+
英文详情[参考](https://www.tencentcloud.com/document/product/1229/71847?lang=en)
|
|
1286
1298
|
*/
|
|
1287
1299
|
EndStatusString?: string;
|
|
1288
1300
|
/**
|
|
@@ -2645,6 +2657,10 @@ export interface AutoCalloutTaskInfo {
|
|
|
2645
2657
|
* 任务Id
|
|
2646
2658
|
*/
|
|
2647
2659
|
TaskId?: number;
|
|
2660
|
+
/**
|
|
2661
|
+
* 最大振铃时长,达到时长阈值自动挂断。 仅自携号码支持当前参数
|
|
2662
|
+
*/
|
|
2663
|
+
MaxRingTimeoutSecond?: number;
|
|
2648
2664
|
}
|
|
2649
2665
|
/**
|
|
2650
2666
|
* DescribeIvrAudioList请求参数结构体
|
|
@@ -2801,6 +2817,10 @@ export interface CreateAIAgentCallRequest {
|
|
|
2801
2817
|
3. dify-inputs-conversation_id 为dify的conversation_id值
|
|
2802
2818
|
*/
|
|
2803
2819
|
Variables?: Array<Variable>;
|
|
2820
|
+
/**
|
|
2821
|
+
* 最大振铃时长,达到时长阈值自动挂断。 仅自携号码支持当前参数
|
|
2822
|
+
*/
|
|
2823
|
+
MaxRingTimeoutSecond?: number;
|
|
2804
2824
|
}
|
|
2805
2825
|
/**
|
|
2806
2826
|
* UpdateCCCSkillGroup请求参数结构体
|
|
@@ -3718,6 +3738,10 @@ export interface CreateAutoCalloutTaskRequest {
|
|
|
3718
3738
|
* 任务失败重试时间间隔,重试间隔 600秒~86400 秒
|
|
3719
3739
|
*/
|
|
3720
3740
|
RetryInterval?: number;
|
|
3741
|
+
/**
|
|
3742
|
+
* 最大振铃时长,达到时长阈值自动挂断。 仅自携号码支持当前参数
|
|
3743
|
+
*/
|
|
3744
|
+
MaxRingTimeoutSecond?: number;
|
|
3721
3745
|
}
|
|
3722
3746
|
/**
|
|
3723
3747
|
* AI时延明细
|
|
@@ -5131,6 +5155,10 @@ export interface DescribeAutoCalloutTaskResponse {
|
|
|
5131
5155
|
* 任务状态 0初始 1运行中 2已完成 3结束中 4已终止
|
|
5132
5156
|
*/
|
|
5133
5157
|
State?: number;
|
|
5158
|
+
/**
|
|
5159
|
+
* 最大振铃时长,达到时长阈值自动挂断。 仅自携号码支持当前参数
|
|
5160
|
+
*/
|
|
5161
|
+
MaxRingTimeoutSecond?: number;
|
|
5134
5162
|
/**
|
|
5135
5163
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5136
5164
|
*/
|
|
@@ -5205,7 +5233,7 @@ export interface CreateCallOutSessionRequest {
|
|
|
5205
5233
|
*/
|
|
5206
5234
|
SdkAppId: number;
|
|
5207
5235
|
/**
|
|
5208
|
-
*
|
|
5236
|
+
* 座席邮箱,确保已经绑定了手机号 https://cloud.tencent.com/document/product/679/76067#.E6.AD.A5.E9.AA.A42.EF.BC.9A.E5.AE.8C.E5.96.84.E8.B4.A6.E5.8F.B7.E4.BF.A1.E6.81.AF
|
|
5209
5237
|
*/
|
|
5210
5238
|
UserId: string;
|
|
5211
5239
|
/**
|