tencentcloud-sdk-nodejs 4.0.504 → 4.0.505
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 +149 -0
- package/SERVICE_CHANGELOG.md +182 -66
- package/package.json +1 -1
- package/products.md +14 -14
- package/src/common/sdk_version.ts +1 -1
- package/src/services/antiddos/v20200309/antiddos_models.ts +23 -1
- package/src/services/ccc/v20200210/ccc_client.ts +13 -1
- package/src/services/ccc/v20200210/ccc_models.ts +54 -29
- package/src/services/cfw/v20190904/cfw_models.ts +1 -1
- package/src/services/cvm/v20170312/cvm_models.ts +18 -38
- package/src/services/gme/v20180711/gme_client.ts +6 -6
- package/src/services/gme/v20180711/gme_models.ts +7 -7
- package/src/services/mps/v20190612/mps_models.ts +15 -6
- package/src/services/nlp/v20190408/nlp_client.ts +28 -4
- package/src/services/nlp/v20190408/nlp_models.ts +118 -38
- package/src/services/ses/v20201002/ses_client.ts +12 -0
- package/src/services/ses/v20201002/ses_models.ts +25 -0
- package/src/services/tione/v20211111/tione_models.ts +5 -0
- package/src/services/tsf/v20180326/tsf_models.ts +3 -2
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/antiddos/v20200309/antiddos_models.d.ts +19 -1
- package/tencentcloud/services/ccc/v20200210/ccc_client.d.ts +5 -1
- package/tencentcloud/services/ccc/v20200210/ccc_client.js +6 -0
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +46 -24
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +1 -1
- package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +14 -37
- package/tencentcloud/services/gme/v20180711/gme_client.d.ts +6 -6
- package/tencentcloud/services/gme/v20180711/gme_client.js +6 -6
- package/tencentcloud/services/gme/v20180711/gme_models.d.ts +7 -7
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +12 -4
- package/tencentcloud/services/nlp/v20190408/nlp_client.d.ts +9 -1
- package/tencentcloud/services/nlp/v20190408/nlp_client.js +12 -0
- package/tencentcloud/services/nlp/v20190408/nlp_models.d.ts +103 -35
- package/tencentcloud/services/ses/v20201002/ses_client.d.ts +5 -1
- package/tencentcloud/services/ses/v20201002/ses_client.js +6 -0
- package/tencentcloud/services/ses/v20201002/ses_models.d.ts +22 -0
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +4 -0
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +1 -0
- package/test/ccc.v20200210.test.js +10 -0
- package/test/nlp.v20190408.test.js +20 -0
- package/test/ses.v20201002.test.js +10 -0
|
@@ -50,6 +50,23 @@ export interface SentenceEmbeddingRequest {
|
|
|
50
50
|
Text: string
|
|
51
51
|
}
|
|
52
52
|
|
|
53
|
+
/**
|
|
54
|
+
* TextClassification请求参数结构体
|
|
55
|
+
*/
|
|
56
|
+
export interface TextClassificationRequest {
|
|
57
|
+
/**
|
|
58
|
+
* 待分类的文本(仅支持UTF-8格式,不超过10000字)
|
|
59
|
+
*/
|
|
60
|
+
Text: string
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* 领域分类体系(默认取1值):
|
|
64
|
+
1、通用领域,二分类
|
|
65
|
+
2、新闻领域,五分类。类别数据不一定全部返回,详情见类目映射表(注意:目前五分类已下线不可用)
|
|
66
|
+
*/
|
|
67
|
+
Flag?: number
|
|
68
|
+
}
|
|
69
|
+
|
|
53
70
|
/**
|
|
54
71
|
* WordSimilarity请求参数结构体
|
|
55
72
|
*/
|
|
@@ -567,20 +584,28 @@ export interface DescribeWordItemsRequest {
|
|
|
567
584
|
}
|
|
568
585
|
|
|
569
586
|
/**
|
|
570
|
-
*
|
|
587
|
+
* GenerateCouplet返回参数结构体
|
|
571
588
|
*/
|
|
572
|
-
export interface
|
|
589
|
+
export interface GenerateCoupletResponse {
|
|
573
590
|
/**
|
|
574
|
-
*
|
|
591
|
+
* 横批。
|
|
575
592
|
*/
|
|
576
|
-
|
|
593
|
+
TopScroll: string
|
|
577
594
|
|
|
578
595
|
/**
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
596
|
+
* 上联与下联。
|
|
597
|
+
*/
|
|
598
|
+
Content: Array<string>
|
|
599
|
+
|
|
600
|
+
/**
|
|
601
|
+
* 当对联随机生成时,展示随机生成原因。
|
|
602
|
+
*/
|
|
603
|
+
RandomCause: string
|
|
604
|
+
|
|
605
|
+
/**
|
|
606
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
607
|
+
*/
|
|
608
|
+
RequestId?: string
|
|
584
609
|
}
|
|
585
610
|
|
|
586
611
|
/**
|
|
@@ -726,32 +751,18 @@ export interface PosToken {
|
|
|
726
751
|
}
|
|
727
752
|
|
|
728
753
|
/**
|
|
729
|
-
*
|
|
754
|
+
* GeneratePoetry返回参数结构体
|
|
730
755
|
*/
|
|
731
|
-
export interface
|
|
756
|
+
export interface GeneratePoetryResponse {
|
|
732
757
|
/**
|
|
733
|
-
*
|
|
758
|
+
* 诗题,即输入的生成诗词的关键词。
|
|
734
759
|
*/
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
/**
|
|
738
|
-
* 中性情感概率,当输入参数Mode取值为3class时有效,否则值为空
|
|
739
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
740
|
-
*/
|
|
741
|
-
Neutral: number
|
|
760
|
+
Title: string
|
|
742
761
|
|
|
743
762
|
/**
|
|
744
|
-
*
|
|
763
|
+
* 诗的内容。
|
|
745
764
|
*/
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
/**
|
|
749
|
-
* 情感分类结果:
|
|
750
|
-
1、positive,表示正面情感
|
|
751
|
-
2、negative,表示负面情感
|
|
752
|
-
3、neutral,表示中性、无情感
|
|
753
|
-
*/
|
|
754
|
-
Sentiment: string
|
|
765
|
+
Content: Array<string>
|
|
755
766
|
|
|
756
767
|
/**
|
|
757
768
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -877,6 +888,21 @@ export interface DeleteDictRequest {
|
|
|
877
888
|
DictId: string
|
|
878
889
|
}
|
|
879
890
|
|
|
891
|
+
/**
|
|
892
|
+
* 文本相似度
|
|
893
|
+
*/
|
|
894
|
+
export interface Similarity {
|
|
895
|
+
/**
|
|
896
|
+
* 目标文本句子
|
|
897
|
+
*/
|
|
898
|
+
Text: string
|
|
899
|
+
|
|
900
|
+
/**
|
|
901
|
+
* 相似度分数
|
|
902
|
+
*/
|
|
903
|
+
Score: number
|
|
904
|
+
}
|
|
905
|
+
|
|
880
906
|
/**
|
|
881
907
|
* 命名实体识别结果
|
|
882
908
|
*/
|
|
@@ -903,13 +929,32 @@ export interface NerToken {
|
|
|
903
929
|
}
|
|
904
930
|
|
|
905
931
|
/**
|
|
906
|
-
*
|
|
932
|
+
* SentimentAnalysis返回参数结构体
|
|
907
933
|
*/
|
|
908
|
-
export interface
|
|
934
|
+
export interface SentimentAnalysisResponse {
|
|
909
935
|
/**
|
|
910
|
-
*
|
|
936
|
+
* 正面情感概率
|
|
911
937
|
*/
|
|
912
|
-
|
|
938
|
+
Positive: number
|
|
939
|
+
|
|
940
|
+
/**
|
|
941
|
+
* 中性情感概率,当输入参数Mode取值为3class时有效,否则值为空
|
|
942
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
943
|
+
*/
|
|
944
|
+
Neutral: number
|
|
945
|
+
|
|
946
|
+
/**
|
|
947
|
+
* 负面情感概率
|
|
948
|
+
*/
|
|
949
|
+
Negative: number
|
|
950
|
+
|
|
951
|
+
/**
|
|
952
|
+
* 情感分类结果:
|
|
953
|
+
1、positive,表示正面情感
|
|
954
|
+
2、negative,表示负面情感
|
|
955
|
+
3、neutral,表示中性、无情感
|
|
956
|
+
*/
|
|
957
|
+
Sentiment: string
|
|
913
958
|
|
|
914
959
|
/**
|
|
915
960
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -948,18 +993,33 @@ export interface DependencyParsingResponse {
|
|
|
948
993
|
}
|
|
949
994
|
|
|
950
995
|
/**
|
|
951
|
-
*
|
|
996
|
+
* SimilarWords返回参数结构体
|
|
952
997
|
*/
|
|
953
|
-
export interface
|
|
998
|
+
export interface SimilarWordsResponse {
|
|
954
999
|
/**
|
|
955
|
-
*
|
|
1000
|
+
* 相似词数组
|
|
1001
|
+
*/
|
|
1002
|
+
SimilarWords?: Array<string>
|
|
1003
|
+
|
|
1004
|
+
/**
|
|
1005
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1006
|
+
*/
|
|
1007
|
+
RequestId?: string
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
/**
|
|
1011
|
+
* GenerateCouplet请求参数结构体
|
|
1012
|
+
*/
|
|
1013
|
+
export interface GenerateCoupletRequest {
|
|
1014
|
+
/**
|
|
1015
|
+
* 生成对联的关键词。长度需>=2,当长度>2时,自动截取前两个字作为关键字。内容需为常用汉字(不含有数字、英文、韩语、日语、符号等等其他)。
|
|
956
1016
|
*/
|
|
957
1017
|
Text: string
|
|
958
1018
|
|
|
959
1019
|
/**
|
|
960
|
-
*
|
|
1020
|
+
* 返回的文本结果为繁体还是简体。0:简体;1:繁体。默认为0。
|
|
961
1021
|
*/
|
|
962
|
-
|
|
1022
|
+
TargetType?: number
|
|
963
1023
|
}
|
|
964
1024
|
|
|
965
1025
|
/**
|
|
@@ -1004,6 +1064,26 @@ export interface LexicalAnalysisRequest {
|
|
|
1004
1064
|
Flag?: number
|
|
1005
1065
|
}
|
|
1006
1066
|
|
|
1067
|
+
/**
|
|
1068
|
+
* GeneratePoetry请求参数结构体
|
|
1069
|
+
*/
|
|
1070
|
+
export interface GeneratePoetryRequest {
|
|
1071
|
+
/**
|
|
1072
|
+
* 生成诗词的关键词。
|
|
1073
|
+
*/
|
|
1074
|
+
Text: string
|
|
1075
|
+
|
|
1076
|
+
/**
|
|
1077
|
+
* 生成诗词的类型。0:藏头或藏身;1:藏头;2:藏身。默认为0。
|
|
1078
|
+
*/
|
|
1079
|
+
PoetryType?: number
|
|
1080
|
+
|
|
1081
|
+
/**
|
|
1082
|
+
* 诗的体裁。0:五言律诗或七言律诗;5:五言律诗;7:七言律诗。默认为0。
|
|
1083
|
+
*/
|
|
1084
|
+
Genre?: number
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1007
1087
|
/**
|
|
1008
1088
|
* CreateWordItems返回参数结构体
|
|
1009
1089
|
*/
|
|
@@ -25,6 +25,7 @@ import {
|
|
|
25
25
|
CreateEmailTemplateRequest,
|
|
26
26
|
ListEmailAddressResponse,
|
|
27
27
|
ListEmailAddressRequest,
|
|
28
|
+
UpdateEmailSmtpPassWordResponse,
|
|
28
29
|
ListReceiversRequest,
|
|
29
30
|
GetEmailIdentityResponse,
|
|
30
31
|
ListBlackEmailAddressRequest,
|
|
@@ -47,6 +48,7 @@ import {
|
|
|
47
48
|
DeleteEmailTemplateResponse,
|
|
48
49
|
Volume,
|
|
49
50
|
CreateEmailIdentityRequest,
|
|
51
|
+
UpdateEmailSmtpPassWordRequest,
|
|
50
52
|
ReceiverData,
|
|
51
53
|
UpdateEmailIdentityResponse,
|
|
52
54
|
DeleteEmailTemplateRequest,
|
|
@@ -247,6 +249,16 @@ export class Client extends AbstractClient {
|
|
|
247
249
|
return this.request("BatchSendEmail", req, cb)
|
|
248
250
|
}
|
|
249
251
|
|
|
252
|
+
/**
|
|
253
|
+
* 设置邮箱的smtp密码。若要通过smtp发送邮件,必须为邮箱设置smtp密码。初始时,邮箱没有设置smtp密码,不能使用smtp的方式发送邮件。设置smtp密码后,可以修改密码。
|
|
254
|
+
*/
|
|
255
|
+
async UpdateEmailSmtpPassWord(
|
|
256
|
+
req: UpdateEmailSmtpPassWordRequest,
|
|
257
|
+
cb?: (error: string, rep: UpdateEmailSmtpPassWordResponse) => void
|
|
258
|
+
): Promise<UpdateEmailSmtpPassWordResponse> {
|
|
259
|
+
return this.request("UpdateEmailSmtpPassWord", req, cb)
|
|
260
|
+
}
|
|
261
|
+
|
|
250
262
|
/**
|
|
251
263
|
* 删除发信模板
|
|
252
264
|
*/
|
|
@@ -163,6 +163,16 @@ export interface ListEmailAddressResponse {
|
|
|
163
163
|
*/
|
|
164
164
|
export type ListEmailAddressRequest = null
|
|
165
165
|
|
|
166
|
+
/**
|
|
167
|
+
* UpdateEmailSmtpPassWord返回参数结构体
|
|
168
|
+
*/
|
|
169
|
+
export interface UpdateEmailSmtpPassWordResponse {
|
|
170
|
+
/**
|
|
171
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
172
|
+
*/
|
|
173
|
+
RequestId?: string
|
|
174
|
+
}
|
|
175
|
+
|
|
166
176
|
/**
|
|
167
177
|
* ListReceivers请求参数结构体
|
|
168
178
|
*/
|
|
@@ -690,6 +700,21 @@ export interface CreateEmailIdentityRequest {
|
|
|
690
700
|
EmailIdentity: string
|
|
691
701
|
}
|
|
692
702
|
|
|
703
|
+
/**
|
|
704
|
+
* UpdateEmailSmtpPassWord请求参数结构体
|
|
705
|
+
*/
|
|
706
|
+
export interface UpdateEmailSmtpPassWordRequest {
|
|
707
|
+
/**
|
|
708
|
+
* smtp密码,长度限制64
|
|
709
|
+
*/
|
|
710
|
+
Password: string
|
|
711
|
+
|
|
712
|
+
/**
|
|
713
|
+
* 发信邮箱,长度限制128
|
|
714
|
+
*/
|
|
715
|
+
EmailAddress: string
|
|
716
|
+
}
|
|
717
|
+
|
|
693
718
|
/**
|
|
694
719
|
* 收件人列表数据类型
|
|
695
720
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const sdkVersion = "4.0.
|
|
1
|
+
export declare const sdkVersion = "4.0.505";
|
|
@@ -4223,6 +4223,10 @@ export interface SwitchWaterPrintConfigRequest {
|
|
|
4223
4223
|
* 水印开启/关闭状态,1表示开启;0表示关闭
|
|
4224
4224
|
*/
|
|
4225
4225
|
OpenStatus: number;
|
|
4226
|
+
/**
|
|
4227
|
+
* 是否开启代理,1开启则忽略IP+端口校验;0关闭则需要IP+端口校验
|
|
4228
|
+
*/
|
|
4229
|
+
CloudSdkProxy?: number;
|
|
4226
4230
|
}
|
|
4227
4231
|
/**
|
|
4228
4232
|
* AssociateDDoSEipLoadBalancer请求参数结构体
|
|
@@ -4342,6 +4346,11 @@ shortfpcheckall(精简模式)
|
|
|
4342
4346
|
]
|
|
4343
4347
|
*/
|
|
4344
4348
|
Verify?: string;
|
|
4349
|
+
/**
|
|
4350
|
+
* 是否开启代理,1开启则忽略IP+端口校验;0关闭则需要IP+端口校验
|
|
4351
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4352
|
+
*/
|
|
4353
|
+
CloudSdkProxy?: number;
|
|
4345
4354
|
}
|
|
4346
4355
|
/**
|
|
4347
4356
|
* ModifyDomainUsrName返回参数结构体
|
|
@@ -4696,6 +4705,15 @@ export interface BGPInstance {
|
|
|
4696
4705
|
* 攻击封堵套餐标记
|
|
4697
4706
|
*/
|
|
4698
4707
|
VitalityVersion: number;
|
|
4708
|
+
/**
|
|
4709
|
+
* 网络线路
|
|
4710
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4711
|
+
*/
|
|
4712
|
+
Line: number;
|
|
4713
|
+
/**
|
|
4714
|
+
* 弹性业务带宽开关
|
|
4715
|
+
*/
|
|
4716
|
+
ElasticServiceBandwidth: number;
|
|
4699
4717
|
}
|
|
4700
4718
|
/**
|
|
4701
4719
|
* DescribeListPortAclList返回参数结构体
|
|
@@ -4765,7 +4783,7 @@ export interface DescribeBizTrendRequest {
|
|
|
4765
4783
|
*/
|
|
4766
4784
|
Business: string;
|
|
4767
4785
|
/**
|
|
4768
|
-
* 统计周期,可取值300,1800,3600,21600,86400,单位秒
|
|
4786
|
+
* 统计周期,可取值60,300,1800,3600,21600,86400,单位秒
|
|
4769
4787
|
*/
|
|
4770
4788
|
Period: number;
|
|
4771
4789
|
/**
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
2
|
import { ClientConfig } from "../../../common/interface";
|
|
3
|
-
import { DescribeExtensionRequest, StopAutoCalloutTaskRequest, CreateSDKLoginTokenResponse, ModifyStaffRequest, DeleteStaffResponse, DisableCCCPhoneNumberResponse, DescribeProtectedTelCdrResponse, DescribeAutoCalloutTaskRequest, CreateUserSigResponse, DescribeIMCdrsResponse, CreateCallOutSessionResponse, DescribeCarrierPrivilegeNumberApplicantsRequest, DisableCCCPhoneNumberRequest, DescribeExtensionsResponse, DeleteExtensionRequest, DescribeTelCallInfoResponse, DescribeTelCdrRequest, DescribeAutoCalloutTasksResponse, ModifyExtensionResponse, CreateStaffResponse, DescribeSkillGroupInfoListResponse, UnbindStaffSkillGroupListResponse, DescribeStaffInfoListResponse, CreateCarrierPrivilegeNumberApplicantRequest, CreateExtensionResponse, CreateUserSigRequest, CreateCCCSkillGroupRequest, DescribeAutoCalloutTaskResponse, CreateCCCSkillGroupResponse, DescribeTelSessionRequest, DescribeIMCdrsRequest, DescribeSkillGroupInfoListRequest, CreateCarrierPrivilegeNumberApplicantResponse, DescribeStaffInfoListRequest, ResetExtensionPasswordResponse, ModifyExtensionRequest, CreateAutoCalloutTaskResponse, DeleteStaffRequest, DescribeCCCBuyInfoListRequest, DescribeTelCallInfoRequest, CreateExtensionRequest, CreateAutoCalloutTaskRequest, UnbindStaffSkillGroupListRequest, StopAutoCalloutTaskResponse, DescribeCCCBuyInfoListResponse, DeleteExtensionResponse, BindStaffSkillGroupListRequest, DescribePSTNActiveSessionListRequest, DescribeCallInMetricsResponse, DescribeActiveCarrierPrivilegeNumberResponse, DescribeTelCdrResponse, DescribeStaffStatusMetricsRequest, ResetExtensionPasswordRequest, CreateStaffRequest, DescribeChatMessagesResponse, DescribePSTNActiveSessionListResponse, DescribeAutoCalloutTasksRequest, DescribeChatMessagesRequest, DescribeTelSessionResponse, ModifyStaffResponse, DescribeStaffStatusMetricsResponse, DescribeCarrierPrivilegeNumberApplicantsResponse,
|
|
3
|
+
import { DescribeExtensionRequest, StopAutoCalloutTaskRequest, HangUpCallRequest, CreateSDKLoginTokenResponse, ModifyStaffRequest, DeleteStaffResponse, DisableCCCPhoneNumberResponse, DescribeProtectedTelCdrResponse, DescribeAutoCalloutTaskRequest, CreateUserSigResponse, DescribeIMCdrsResponse, CreateCallOutSessionResponse, DescribeCarrierPrivilegeNumberApplicantsRequest, DisableCCCPhoneNumberRequest, DescribeExtensionsResponse, DeleteExtensionRequest, DescribeTelCallInfoResponse, DescribeTelCdrRequest, DescribeAutoCalloutTasksResponse, ModifyExtensionResponse, CreateStaffResponse, DescribeSkillGroupInfoListResponse, UnbindStaffSkillGroupListResponse, DescribeStaffInfoListResponse, CreateCarrierPrivilegeNumberApplicantRequest, CreateExtensionResponse, CreateUserSigRequest, CreateCCCSkillGroupRequest, DescribeAutoCalloutTaskResponse, CreateCCCSkillGroupResponse, DescribeTelSessionRequest, DescribeIMCdrsRequest, DescribeSkillGroupInfoListRequest, CreateCarrierPrivilegeNumberApplicantResponse, DescribeStaffInfoListRequest, ResetExtensionPasswordResponse, ModifyExtensionRequest, CreateAutoCalloutTaskResponse, DeleteStaffRequest, DescribeCCCBuyInfoListRequest, DescribeTelCallInfoRequest, CreateExtensionRequest, CreateAutoCalloutTaskRequest, UnbindStaffSkillGroupListRequest, CreateCallOutSessionRequest, StopAutoCalloutTaskResponse, DescribeCCCBuyInfoListResponse, DeleteExtensionResponse, BindStaffSkillGroupListRequest, DescribePSTNActiveSessionListRequest, DescribeCallInMetricsResponse, DescribeActiveCarrierPrivilegeNumberResponse, DescribeTelCdrResponse, DescribeStaffStatusMetricsRequest, ResetExtensionPasswordRequest, CreateStaffRequest, DescribeChatMessagesResponse, DescribePSTNActiveSessionListResponse, DescribeAutoCalloutTasksRequest, DescribeChatMessagesRequest, DescribeTelSessionResponse, ModifyStaffResponse, DescribeStaffStatusMetricsResponse, DescribeCarrierPrivilegeNumberApplicantsResponse, HangUpCallResponse, BindStaffSkillGroupListResponse, DescribeExtensionsRequest, DescribeProtectedTelCdrRequest, CreateSDKLoginTokenRequest, DescribeActiveCarrierPrivilegeNumberRequest, DescribeCallInMetricsRequest, DescribeExtensionResponse } from "./ccc_models";
|
|
4
4
|
/**
|
|
5
5
|
* ccc client
|
|
6
6
|
* @class
|
|
@@ -19,6 +19,10 @@ export declare class Client extends AbstractClient {
|
|
|
19
19
|
* 获取坐席信息列表
|
|
20
20
|
*/
|
|
21
21
|
DescribeStaffInfoList(req: DescribeStaffInfoListRequest, cb?: (error: string, rep: DescribeStaffInfoListResponse) => void): Promise<DescribeStaffInfoListResponse>;
|
|
22
|
+
/**
|
|
23
|
+
* 挂断电话
|
|
24
|
+
*/
|
|
25
|
+
HangUpCall(req: HangUpCallRequest, cb?: (error: string, rep: HangUpCallResponse) => void): Promise<HangUpCallResponse>;
|
|
22
26
|
/**
|
|
23
27
|
* 获取当前正在通话的会话列表
|
|
24
28
|
*/
|
|
@@ -45,6 +45,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
45
45
|
async DescribeStaffInfoList(req, cb) {
|
|
46
46
|
return this.request("DescribeStaffInfoList", req, cb);
|
|
47
47
|
}
|
|
48
|
+
/**
|
|
49
|
+
* 挂断电话
|
|
50
|
+
*/
|
|
51
|
+
async HangUpCall(req, cb) {
|
|
52
|
+
return this.request("HangUpCall", req, cb);
|
|
53
|
+
}
|
|
48
54
|
/**
|
|
49
55
|
* 获取当前正在通话的会话列表
|
|
50
56
|
*/
|
|
@@ -24,6 +24,19 @@ export interface StopAutoCalloutTaskRequest {
|
|
|
24
24
|
*/
|
|
25
25
|
TaskId: number;
|
|
26
26
|
}
|
|
27
|
+
/**
|
|
28
|
+
* HangUpCall请求参数结构体
|
|
29
|
+
*/
|
|
30
|
+
export interface HangUpCallRequest {
|
|
31
|
+
/**
|
|
32
|
+
* TCCC 实例应用 ID
|
|
33
|
+
*/
|
|
34
|
+
SdkAppId: number;
|
|
35
|
+
/**
|
|
36
|
+
* 会话ID
|
|
37
|
+
*/
|
|
38
|
+
SessionId: string;
|
|
39
|
+
}
|
|
27
40
|
/**
|
|
28
41
|
* CreateSDKLoginToken返回参数结构体
|
|
29
42
|
*/
|
|
@@ -1722,6 +1735,35 @@ export interface UnbindStaffSkillGroupListRequest {
|
|
|
1722
1735
|
*/
|
|
1723
1736
|
SkillGroupList: Array<number>;
|
|
1724
1737
|
}
|
|
1738
|
+
/**
|
|
1739
|
+
* CreateCallOutSession请求参数结构体
|
|
1740
|
+
*/
|
|
1741
|
+
export interface CreateCallOutSessionRequest {
|
|
1742
|
+
/**
|
|
1743
|
+
* 应用 ID
|
|
1744
|
+
*/
|
|
1745
|
+
SdkAppId: number;
|
|
1746
|
+
/**
|
|
1747
|
+
* 客服用户 ID,一般为客服邮箱
|
|
1748
|
+
*/
|
|
1749
|
+
UserId: string;
|
|
1750
|
+
/**
|
|
1751
|
+
* 被叫号码,须带 0086 前缀
|
|
1752
|
+
*/
|
|
1753
|
+
Callee: string;
|
|
1754
|
+
/**
|
|
1755
|
+
* 主叫号码,须带 0086 前缀
|
|
1756
|
+
*/
|
|
1757
|
+
Caller?: string;
|
|
1758
|
+
/**
|
|
1759
|
+
* 是否强制使用手机外呼,当前只支持 true,若为 true 请确保已配置白名单
|
|
1760
|
+
*/
|
|
1761
|
+
IsForceUseMobile?: boolean;
|
|
1762
|
+
/**
|
|
1763
|
+
* 自定义数据,长度限制 1024 字节
|
|
1764
|
+
*/
|
|
1765
|
+
Uui?: string;
|
|
1766
|
+
}
|
|
1725
1767
|
/**
|
|
1726
1768
|
* StopAutoCalloutTask返回参数结构体
|
|
1727
1769
|
*/
|
|
@@ -2243,33 +2285,13 @@ export interface DescribeCarrierPrivilegeNumberApplicantsResponse {
|
|
|
2243
2285
|
RequestId?: string;
|
|
2244
2286
|
}
|
|
2245
2287
|
/**
|
|
2246
|
-
*
|
|
2288
|
+
* HangUpCall返回参数结构体
|
|
2247
2289
|
*/
|
|
2248
|
-
export interface
|
|
2249
|
-
/**
|
|
2250
|
-
* 应用 ID
|
|
2251
|
-
*/
|
|
2252
|
-
SdkAppId: number;
|
|
2253
|
-
/**
|
|
2254
|
-
* 客服用户 ID,一般为客服邮箱
|
|
2255
|
-
*/
|
|
2256
|
-
UserId: string;
|
|
2290
|
+
export interface HangUpCallResponse {
|
|
2257
2291
|
/**
|
|
2258
|
-
*
|
|
2259
|
-
*/
|
|
2260
|
-
Callee: string;
|
|
2261
|
-
/**
|
|
2262
|
-
* 主叫号码,须带 0086 前缀
|
|
2263
|
-
*/
|
|
2264
|
-
Caller?: string;
|
|
2265
|
-
/**
|
|
2266
|
-
* 是否强制使用手机外呼,当前只支持 true,若为 true 请确保已配置白名单
|
|
2267
|
-
*/
|
|
2268
|
-
IsForceUseMobile?: boolean;
|
|
2269
|
-
/**
|
|
2270
|
-
* 自定义数据,长度限制 1024 字节
|
|
2292
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2271
2293
|
*/
|
|
2272
|
-
|
|
2294
|
+
RequestId?: string;
|
|
2273
2295
|
}
|
|
2274
2296
|
/**
|
|
2275
2297
|
* BindStaffSkillGroupList返回参数结构体
|
|
@@ -2703,6 +2703,19 @@ export interface Instance {
|
|
|
2703
2703
|
* 实例销毁保护标志,表示是否允许通过api接口删除实例。取值范围:<br><li>TRUE:表示开启实例保护,不允许通过api接口删除实例<br><li>FALSE:表示关闭实例保护,允许通过api接口删除实例<br><br>默认取值:FALSE。
|
|
2704
2704
|
*/
|
|
2705
2705
|
DisableApiTermination?: boolean;
|
|
2706
|
+
/**
|
|
2707
|
+
* 默认登录用户。
|
|
2708
|
+
*/
|
|
2709
|
+
DefaultLoginUser?: string;
|
|
2710
|
+
/**
|
|
2711
|
+
* 默认登录端口。
|
|
2712
|
+
*/
|
|
2713
|
+
DefaultLoginPort?: number;
|
|
2714
|
+
/**
|
|
2715
|
+
* 实例的最新操作错误信息。
|
|
2716
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2717
|
+
*/
|
|
2718
|
+
LatestOperationErrorMsg?: string;
|
|
2706
2719
|
}
|
|
2707
2720
|
/**
|
|
2708
2721
|
* CreateLaunchTemplateVersion请求参数结构体
|
|
@@ -3435,43 +3448,7 @@ export interface DescribeInstancesRequest {
|
|
|
3435
3448
|
*/
|
|
3436
3449
|
InstanceIds?: Array<string>;
|
|
3437
3450
|
/**
|
|
3438
|
-
* <li><strong>zone</strong></li>
|
|
3439
|
-
<p style="padding-left: 30px;">按照【<strong>可用区</strong>】进行过滤。可用区形如:ap-guangzhou-1。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p><p style="padding-left: 30px;">可选项:<a href="https://cloud.tencent.com/document/product/213/6091">可用区列表</a></p>
|
|
3440
|
-
<li><strong>project-id</strong></li>
|
|
3441
|
-
<p style="padding-left: 30px;">按照【<strong>项目ID</strong>】进行过滤,可通过调用[DescribeProject](https://cloud.tencent.com/document/api/378/4400)查询已创建的项目列表或登录[控制台](https://console.cloud.tencent.com/cvm/index)进行查看;也可以调用[AddProject](https://cloud.tencent.com/document/api/378/4398)创建新的项目。项目ID形如:1002189。</p><p style="padding-left: 30px;">类型:Integer</p><p style="padding-left: 30px;">必选:否</p>
|
|
3442
|
-
<li><strong>host-id</strong></li>
|
|
3443
|
-
<p style="padding-left: 30px;">按照【<strong>[CDH](https://cloud.tencent.com/document/product/416) ID</strong>】进行过滤。[CDH](https://cloud.tencent.com/document/product/416) ID形如:host-xxxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
|
|
3444
|
-
<li><strong>dedicated-cluster-id</strong></li>
|
|
3445
|
-
<p style="padding-left: 30px;">按照【<strong>[CDC](https://cloud.tencent.com/document/product/1346) ID</strong>】进行过滤。[CDC](https://cloud.tencent.com/document/product/1346) ID形如:cluster-xxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
|
|
3446
|
-
<li><strong>vpc-id</strong></li>
|
|
3447
|
-
<p style="padding-left: 30px;">按照【<strong>VPC ID</strong>】进行过滤。VPC ID形如:vpc-xxxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
|
|
3448
|
-
<li><strong>subnet-id</strong></li>
|
|
3449
|
-
<p style="padding-left: 30px;">按照【<strong>子网ID</strong>】进行过滤。子网ID形如:subnet-xxxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
|
|
3450
|
-
<li><strong>instance-id</strong></li>
|
|
3451
|
-
<p style="padding-left: 30px;">按照【<strong>实例ID</strong>】进行过滤。实例ID形如:ins-xxxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
|
|
3452
|
-
<li><strong>uuid</strong></li>
|
|
3453
|
-
<p style="padding-left: 30px;">按照【<strong>实例UUID</strong>】进行过滤。实例UUID形如:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
|
|
3454
|
-
<li><strong>security-group-id</strong></li>
|
|
3455
|
-
<p style="padding-left: 30px;">按照【<strong>安全组ID</strong>】进行过滤。安全组ID形如: sg-8jlk3f3r。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
|
|
3456
|
-
<li><strong>instance-name</strong></li>
|
|
3457
|
-
<p style="padding-left: 30px;">按照【<strong>实例名称</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
|
|
3458
|
-
<li><strong>instance-charge-type</strong></li>
|
|
3459
|
-
<p style="padding-left: 30px;">按照【<strong>实例计费模式</strong>】进行过滤。(PREPAID:表示预付费,即包年包月 | POSTPAID_BY_HOUR:表示后付费,即按量计费 | CDHPAID:表示[CDH](https://cloud.tencent.com/document/product/416)付费,即只对[CDH](https://cloud.tencent.com/document/product/416)计费,不对[CDH](https://cloud.tencent.com/document/product/416)上的实例计费。)</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
|
|
3460
|
-
<li><strong>instance-state</strong></li>
|
|
3461
|
-
<p style="padding-left: 30px;">按照【<strong>实例状态</strong>】进行过滤。状态类型详见[实例状态表](https://cloud.tencent.com/document/api/213/15753#InstanceStatus)</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
|
|
3462
|
-
<li><strong>private-ip-address</strong></li>
|
|
3463
|
-
<p style="padding-left: 30px;">按照【<strong>实例主网卡的内网IP</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
|
|
3464
|
-
<li><strong>public-ip-address</strong></li>
|
|
3465
|
-
<p style="padding-left: 30px;">按照【<strong>实例主网卡的公网IP</strong>】进行过滤,包含实例创建时自动分配的IP和实例创建后手动绑定的弹性IP。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
|
|
3466
|
-
<li><strong>ipv6-address</strong></li>
|
|
3467
|
-
<p style="padding-left: 30px;">按照【<strong>实例的IPv6地址</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
|
|
3468
|
-
<li><strong>tag-key</strong></li>
|
|
3469
|
-
<p style="padding-left: 30px;">按照【<strong>标签键</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
|
|
3470
|
-
<li><strong>tag-value</strong></li>
|
|
3471
|
-
<p style="padding-left: 30px;">按照【<strong>标签值</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
|
|
3472
|
-
<li><strong>tag:tag-key</strong></li>
|
|
3473
|
-
<p style="padding-left: 30px;">按照【<strong>标签键值对</strong>】进行过滤。tag-key使用具体的标签键进行替换。使用请参考示例2。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
|
|
3474
|
-
每次请求的`Filters`的上限为10,`Filter.Values`的上限为5。参数不支持同时指定`InstanceIds`和`Filters`。
|
|
3451
|
+
* <li><strong>zone</strong></li> <p style="padding-left: 30px;">按照【<strong>可用区</strong>】进行过滤。可用区形如:ap-guangzhou-1。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p><p style="padding-left: 30px;">可选项:<a href="https://cloud.tencent.com/document/product/213/6091">可用区列表</a></p> <li><strong>project-id</strong></li> <p style="padding-left: 30px;">按照【<strong>项目ID</strong>】进行过滤,可通过调用[DescribeProject](https://cloud.tencent.com/document/api/378/4400)查询已创建的项目列表或登录[控制台](https://console.cloud.tencent.com/cvm/index)进行查看;也可以调用[AddProject](https://cloud.tencent.com/document/api/378/4398)创建新的项目。项目ID形如:1002189。</p><p style="padding-left: 30px;">类型:Integer</p><p style="padding-left: 30px;">必选:否</p> <li><strong>host-id</strong></li> <p style="padding-left: 30px;">按照【<strong>[CDH](https://cloud.tencent.com/document/product/416) ID</strong>】进行过滤。[CDH](https://cloud.tencent.com/document/product/416) ID形如:host-xxxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>dedicated-cluster-id</strong></li> <p style="padding-left: 30px;">按照【<strong>[CDC](https://cloud.tencent.com/document/product/1346) ID</strong>】进行过滤。[CDC](https://cloud.tencent.com/document/product/1346) ID形如:cluster-xxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>vpc-id</strong></li> <p style="padding-left: 30px;">按照【<strong>VPC ID</strong>】进行过滤。VPC ID形如:vpc-xxxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>subnet-id</strong></li> <p style="padding-left: 30px;">按照【<strong>子网ID</strong>】进行过滤。子网ID形如:subnet-xxxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>instance-id</strong></li> <p style="padding-left: 30px;">按照【<strong>实例ID</strong>】进行过滤。实例ID形如:ins-xxxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>uuid</strong></li> <p style="padding-left: 30px;">按照【<strong>实例UUID</strong>】进行过滤。实例UUID形如:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>security-group-id</strong></li> <p style="padding-left: 30px;">按照【<strong>安全组ID</strong>】进行过滤。安全组ID形如: sg-8jlk3f3r。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>instance-name</strong></li> <p style="padding-left: 30px;">按照【<strong>实例名称</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>instance-charge-type</strong></li> <p style="padding-left: 30px;">按照【<strong>实例计费模式</strong>】进行过滤。(PREPAID:表示预付费,即包年包月 | POSTPAID_BY_HOUR:表示后付费,即按量计费 | CDHPAID:表示[CDH](https://cloud.tencent.com/document/product/416)付费,即只对[CDH](https://cloud.tencent.com/document/product/416)计费,不对[CDH](https://cloud.tencent.com/document/product/416)上的实例计费。)</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>instance-state</strong></li> <p style="padding-left: 30px;">按照【<strong>实例状态</strong>】进行过滤。状态类型详见[实例状态表](https://cloud.tencent.com/document/api/213/15753#InstanceStatus)</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>private-ip-address</strong></li> <p style="padding-left: 30px;">按照【<strong>实例主网卡的内网IP</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>public-ip-address</strong></li> <p style="padding-left: 30px;">按照【<strong>实例主网卡的公网IP</strong>】进行过滤,包含实例创建时自动分配的IP和实例创建后手动绑定的弹性IP。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>ipv6-address</strong></li> <p style="padding-left: 30px;">按照【<strong>实例的IPv6地址</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>tag-key</strong></li> <p style="padding-left: 30px;">按照【<strong>标签键</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>tag-value</strong></li> <p style="padding-left: 30px;">按照【<strong>标签值</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>tag:tag-key</strong></li> <p style="padding-left: 30px;">按照【<strong>标签键值对</strong>】进行过滤。tag-key使用具体的标签键进行替换。使用请参考示例2。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> 每次请求的`Filters`的上限为10,`Filter.Values`的上限为5。参数不支持同时指定`InstanceIds`和`Filters`。
|
|
3475
3452
|
*/
|
|
3476
3453
|
Filters?: Array<Filter>;
|
|
3477
3454
|
/**
|
|
@@ -20,7 +20,7 @@ export declare class Client extends AbstractClient {
|
|
|
20
20
|
*/
|
|
21
21
|
UpdateScanUsers(req: UpdateScanUsersRequest, cb?: (error: string, rep: UpdateScanUsersResponse) => void): Promise<UpdateScanUsersResponse>;
|
|
22
22
|
/**
|
|
23
|
-
*
|
|
23
|
+
* 查询语音消息转文本热句模型列表
|
|
24
24
|
*/
|
|
25
25
|
GetCustomizationList(req: GetCustomizationListRequest, cb?: (error: string, rep: GetCustomizationListResponse) => void): Promise<GetCustomizationListResponse>;
|
|
26
26
|
/**
|
|
@@ -32,7 +32,7 @@ export declare class Client extends AbstractClient {
|
|
|
32
32
|
*/
|
|
33
33
|
DescribeRealtimeScanConfig(req: DescribeRealtimeScanConfigRequest, cb?: (error: string, rep: DescribeRealtimeScanConfigResponse) => void): Promise<DescribeRealtimeScanConfigResponse>;
|
|
34
34
|
/**
|
|
35
|
-
*
|
|
35
|
+
* 用户使用该接口可以创建语音消息转文本热句模型,以供识别调用
|
|
36
36
|
*/
|
|
37
37
|
CreateCustomization(req: CreateCustomizationRequest, cb?: (error: string, rep: CreateCustomizationResponse) => void): Promise<CreateCustomizationResponse>;
|
|
38
38
|
/**
|
|
@@ -112,7 +112,7 @@ export declare class Client extends AbstractClient {
|
|
|
112
112
|
<h4 id="Callback_Declare"><b>回调相关说明:</b></h4>
|
|
113
113
|
<li>如果在请求参数中指定了回调地址参数 Callback,即一个 HTTP(S) 协议接口的 URL,则需要支持 POST 方法,传输数据编码采用 UTF-8。</li>
|
|
114
114
|
<li>在推送回调数据后,接收到的 HTTP 状态码为 200 时,表示推送成功。</li>
|
|
115
|
-
<li>HTTP
|
|
115
|
+
<li>HTTP 请求参数(query)说明:</li>
|
|
116
116
|
<table>
|
|
117
117
|
<thread>
|
|
118
118
|
<tr>
|
|
@@ -205,7 +205,7 @@ export declare class Client extends AbstractClient {
|
|
|
205
205
|
*/
|
|
206
206
|
DescribeAppStatistics(req: DescribeAppStatisticsRequest, cb?: (error: string, rep: DescribeAppStatisticsResponse) => void): Promise<DescribeAppStatisticsResponse>;
|
|
207
207
|
/**
|
|
208
|
-
*
|
|
208
|
+
* 用户通过该接口可以更新语音消息转文本热句模型。
|
|
209
209
|
*/
|
|
210
210
|
ModifyCustomization(req: ModifyCustomizationRequest, cb?: (error: string, rep: ModifyCustomizationResponse) => void): Promise<ModifyCustomizationResponse>;
|
|
211
211
|
/**
|
|
@@ -226,7 +226,7 @@ export declare class Client extends AbstractClient {
|
|
|
226
226
|
*/
|
|
227
227
|
DescribeApplicationList(req: DescribeApplicationListRequest, cb?: (error: string, rep: DescribeApplicationListResponse) => void): Promise<DescribeApplicationListResponse>;
|
|
228
228
|
/**
|
|
229
|
-
*
|
|
229
|
+
* 通过该接口,用户可以修改语音消息转文本热句模型状态,上下线热句模型
|
|
230
230
|
*/
|
|
231
231
|
ModifyCustomizationState(req: ModifyCustomizationStateRequest, cb?: (error: string, rep: ModifyCustomizationStateResponse) => void): Promise<ModifyCustomizationStateResponse>;
|
|
232
232
|
/**
|
|
@@ -236,7 +236,7 @@ export declare class Client extends AbstractClient {
|
|
|
236
236
|
*/
|
|
237
237
|
ModifyUserMicStatus(req: ModifyUserMicStatusRequest, cb?: (error: string, rep: ModifyUserMicStatusResponse) => void): Promise<ModifyUserMicStatusResponse>;
|
|
238
238
|
/**
|
|
239
|
-
*
|
|
239
|
+
* 用户通过该接口可以删除语音消息转文本热句模型
|
|
240
240
|
*/
|
|
241
241
|
DeleteCustomization(req: DeleteCustomizationRequest, cb?: (error: string, rep: DeleteCustomizationResponse) => void): Promise<DeleteCustomizationResponse>;
|
|
242
242
|
/**
|