tencentcloud-sdk-nodejs-ccc 4.0.283 → 4.0.287
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 +365 -0
- package/SERVICE_CHANGELOG.md +509 -75
- package/package.json +1 -1
- package/products.md +25 -24
- package/src/services/ccc/v20200210/ccc_client.ts +128 -91
- package/src/services/ccc/v20200210/ccc_models.ts +183 -6
- package/tencentcloud/services/ccc/v20200210/ccc_client.d.ts +47 -35
- package/tencentcloud/services/ccc/v20200210/ccc_client.js +69 -51
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +155 -6
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* StopAutoCalloutTask请求参数结构体
|
|
3
|
+
*/
|
|
4
|
+
export interface StopAutoCalloutTaskRequest {
|
|
5
|
+
/**
|
|
6
|
+
* 呼叫中心实例Id
|
|
7
|
+
*/
|
|
8
|
+
SdkAppId: number;
|
|
9
|
+
/**
|
|
10
|
+
* 任务Id
|
|
11
|
+
*/
|
|
12
|
+
TaskId: number;
|
|
13
|
+
}
|
|
1
14
|
/**
|
|
2
15
|
* BindStaffSkillGroupList请求参数结构体
|
|
3
16
|
*/
|
|
@@ -47,6 +60,47 @@ export interface IVRKeyPressedElement {
|
|
|
47
60
|
*/
|
|
48
61
|
Label: string;
|
|
49
62
|
}
|
|
63
|
+
/**
|
|
64
|
+
* CreateAutoCalloutTask请求参数结构体
|
|
65
|
+
*/
|
|
66
|
+
export interface CreateAutoCalloutTaskRequest {
|
|
67
|
+
/**
|
|
68
|
+
* 呼叫中心实例Id
|
|
69
|
+
*/
|
|
70
|
+
SdkAppId: number;
|
|
71
|
+
/**
|
|
72
|
+
* 任务起始时间戳,Unix 秒级时间戳
|
|
73
|
+
*/
|
|
74
|
+
NotBefore: number;
|
|
75
|
+
/**
|
|
76
|
+
* 被叫号码列表
|
|
77
|
+
*/
|
|
78
|
+
Callees: Array<string>;
|
|
79
|
+
/**
|
|
80
|
+
* 主叫号码列表
|
|
81
|
+
*/
|
|
82
|
+
Callers: Array<string>;
|
|
83
|
+
/**
|
|
84
|
+
* 呼叫使用的Ivr
|
|
85
|
+
*/
|
|
86
|
+
IvrId: number;
|
|
87
|
+
/**
|
|
88
|
+
* 任务名
|
|
89
|
+
*/
|
|
90
|
+
Name?: string;
|
|
91
|
+
/**
|
|
92
|
+
* 任务描述
|
|
93
|
+
*/
|
|
94
|
+
Description?: string;
|
|
95
|
+
/**
|
|
96
|
+
* 任务停止时间戳,Unix 秒级时间戳
|
|
97
|
+
*/
|
|
98
|
+
NotAfter?: number;
|
|
99
|
+
/**
|
|
100
|
+
* 最大尝试次数
|
|
101
|
+
*/
|
|
102
|
+
Tries?: number;
|
|
103
|
+
}
|
|
50
104
|
/**
|
|
51
105
|
* CreateSDKLoginToken返回参数结构体
|
|
52
106
|
*/
|
|
@@ -130,14 +184,13 @@ export interface DescribeStaffInfoListResponse {
|
|
|
130
184
|
RequestId?: string;
|
|
131
185
|
}
|
|
132
186
|
/**
|
|
133
|
-
*
|
|
187
|
+
* CreateAutoCalloutTask返回参数结构体
|
|
134
188
|
*/
|
|
135
|
-
export interface
|
|
189
|
+
export interface CreateAutoCalloutTaskResponse {
|
|
136
190
|
/**
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
ErrorStaffList: Array<ErrStaffItem>;
|
|
191
|
+
* 任务Id
|
|
192
|
+
*/
|
|
193
|
+
TaskId: number;
|
|
141
194
|
/**
|
|
142
195
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
143
196
|
*/
|
|
@@ -320,6 +373,11 @@ export interface TelCdrInfo {
|
|
|
320
373
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
321
374
|
*/
|
|
322
375
|
IVRKeyPressedEx: Array<IVRKeyPressedElement>;
|
|
376
|
+
/**
|
|
377
|
+
* 获取录音ASR文本信息地址
|
|
378
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
379
|
+
*/
|
|
380
|
+
AsrUrl: string;
|
|
323
381
|
}
|
|
324
382
|
/**
|
|
325
383
|
* CreateUserSig请求参数结构体
|
|
@@ -421,6 +479,48 @@ export interface DescribeIMCdrsRequest {
|
|
|
421
479
|
*/
|
|
422
480
|
Type?: number;
|
|
423
481
|
}
|
|
482
|
+
/**
|
|
483
|
+
* DescribeAutoCalloutTask返回参数结构体
|
|
484
|
+
*/
|
|
485
|
+
export interface DescribeAutoCalloutTaskResponse {
|
|
486
|
+
/**
|
|
487
|
+
* 任务名
|
|
488
|
+
*/
|
|
489
|
+
Name: string;
|
|
490
|
+
/**
|
|
491
|
+
* 任务描述
|
|
492
|
+
*/
|
|
493
|
+
Description: string;
|
|
494
|
+
/**
|
|
495
|
+
* 任务起始时间戳
|
|
496
|
+
*/
|
|
497
|
+
NotBefore: number;
|
|
498
|
+
/**
|
|
499
|
+
* 任务结束时间戳
|
|
500
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
501
|
+
*/
|
|
502
|
+
NotAfter: number;
|
|
503
|
+
/**
|
|
504
|
+
* 主叫列表
|
|
505
|
+
*/
|
|
506
|
+
Callers: Array<string>;
|
|
507
|
+
/**
|
|
508
|
+
* 被叫信息列表
|
|
509
|
+
*/
|
|
510
|
+
Callees: Array<AutoCalloutTaskCalleeInfo>;
|
|
511
|
+
/**
|
|
512
|
+
* 任务使用的IvrId
|
|
513
|
+
*/
|
|
514
|
+
IvrId: number;
|
|
515
|
+
/**
|
|
516
|
+
* 任务状态 0初始 1运行中 2已完成 3结束中 4已终止
|
|
517
|
+
*/
|
|
518
|
+
State: number;
|
|
519
|
+
/**
|
|
520
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
521
|
+
*/
|
|
522
|
+
RequestId?: string;
|
|
523
|
+
}
|
|
424
524
|
/**
|
|
425
525
|
* DescribeStaffStatusMetrics请求参数结构体
|
|
426
526
|
*/
|
|
@@ -434,6 +534,19 @@ export interface DescribeStaffStatusMetricsRequest {
|
|
|
434
534
|
*/
|
|
435
535
|
StaffList?: Array<string>;
|
|
436
536
|
}
|
|
537
|
+
/**
|
|
538
|
+
* DescribeAutoCalloutTask请求参数结构体
|
|
539
|
+
*/
|
|
540
|
+
export interface DescribeAutoCalloutTaskRequest {
|
|
541
|
+
/**
|
|
542
|
+
* 呼叫中心实例Id
|
|
543
|
+
*/
|
|
544
|
+
SdkAppId: number;
|
|
545
|
+
/**
|
|
546
|
+
* 任务Id
|
|
547
|
+
*/
|
|
548
|
+
TaskId: number;
|
|
549
|
+
}
|
|
437
550
|
/**
|
|
438
551
|
* 技能组信息
|
|
439
552
|
*/
|
|
@@ -693,6 +806,19 @@ export interface CallInNumberMetrics {
|
|
|
693
806
|
*/
|
|
694
807
|
SkillGroupMetrics: Array<CallInSkillGroupMetrics>;
|
|
695
808
|
}
|
|
809
|
+
/**
|
|
810
|
+
* 外呼任务被叫信息
|
|
811
|
+
*/
|
|
812
|
+
export interface AutoCalloutTaskCalleeInfo {
|
|
813
|
+
/**
|
|
814
|
+
* 被叫号码
|
|
815
|
+
*/
|
|
816
|
+
Callee: string;
|
|
817
|
+
/**
|
|
818
|
+
* 呼叫状态 0初始 1已接听 2未接听 3呼叫中 4待重试
|
|
819
|
+
*/
|
|
820
|
+
State: number;
|
|
821
|
+
}
|
|
696
822
|
/**
|
|
697
823
|
* DescribePSTNActiveSessionList返回参数结构体
|
|
698
824
|
*/
|
|
@@ -1256,6 +1382,15 @@ export interface SkillGroupInfoItem {
|
|
|
1256
1382
|
*/
|
|
1257
1383
|
LastModifyTimestamp: number;
|
|
1258
1384
|
}
|
|
1385
|
+
/**
|
|
1386
|
+
* StopAutoCalloutTask返回参数结构体
|
|
1387
|
+
*/
|
|
1388
|
+
export interface StopAutoCalloutTaskResponse {
|
|
1389
|
+
/**
|
|
1390
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1391
|
+
*/
|
|
1392
|
+
RequestId?: string;
|
|
1393
|
+
}
|
|
1259
1394
|
/**
|
|
1260
1395
|
* DescribeSeatUserList返回参数结构体
|
|
1261
1396
|
*/
|
|
@@ -1601,6 +1736,20 @@ export interface DescribeCallInMetricsRequest {
|
|
|
1601
1736
|
*/
|
|
1602
1737
|
EnabledNumber?: boolean;
|
|
1603
1738
|
}
|
|
1739
|
+
/**
|
|
1740
|
+
* CreateStaff返回参数结构体
|
|
1741
|
+
*/
|
|
1742
|
+
export interface CreateStaffResponse {
|
|
1743
|
+
/**
|
|
1744
|
+
* 错误坐席列表及错误信息
|
|
1745
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1746
|
+
*/
|
|
1747
|
+
ErrorStaffList: Array<ErrStaffItem>;
|
|
1748
|
+
/**
|
|
1749
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1750
|
+
*/
|
|
1751
|
+
RequestId?: string;
|
|
1752
|
+
}
|
|
1604
1753
|
/**
|
|
1605
1754
|
* 单条消息
|
|
1606
1755
|
*/
|