tencentcloud-sdk-nodejs-intl-en 3.0.1092 → 3.0.1094
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 +1 -1
- package/tencentcloud/apigateway/v20180808/apigateway_client.js +30 -17
- package/tencentcloud/apigateway/v20180808/models.js +92 -41
- package/tencentcloud/ccc/v20200210/ccc_client.js +2 -1
- package/tencentcloud/ccc/v20200210/models.js +80 -0
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/ssl/v20191205/models.js +14 -0
package/package.json
CHANGED
|
@@ -135,7 +135,7 @@ const DescribeUsagePlanSecretIdsResponse = models.DescribeUsagePlanSecretIdsResp
|
|
|
135
135
|
const CreatePluginRequest = models.CreatePluginRequest;
|
|
136
136
|
const MicroServiceReq = models.MicroServiceReq;
|
|
137
137
|
const ModifySubDomainResponse = models.ModifySubDomainResponse;
|
|
138
|
-
const
|
|
138
|
+
const DescribeExclusiveInstanceRegionsResponse = models.DescribeExclusiveInstanceRegionsResponse;
|
|
139
139
|
const BindSecretIdsRequest = models.BindSecretIdsRequest;
|
|
140
140
|
const UnBindEnvironmentResponse = models.UnBindEnvironmentResponse;
|
|
141
141
|
const ModifyUpstreamResultInfo = models.ModifyUpstreamResultInfo;
|
|
@@ -185,8 +185,9 @@ const BindSecretIdsResponse = models.BindSecretIdsResponse;
|
|
|
185
185
|
const CreateApiRsp = models.CreateApiRsp;
|
|
186
186
|
const UsagePlanBindEnvironment = models.UsagePlanBindEnvironment;
|
|
187
187
|
const DeleteApiRequest = models.DeleteApiRequest;
|
|
188
|
-
const
|
|
188
|
+
const DescribeExclusiveInstanceRegionsRequest = models.DescribeExclusiveInstanceRegionsRequest;
|
|
189
189
|
const DescribeApiAppResponse = models.DescribeApiAppResponse;
|
|
190
|
+
const DescribeServiceSubDomainMappingsResponse = models.DescribeServiceSubDomainMappingsResponse;
|
|
190
191
|
const OauthConfig = models.OauthConfig;
|
|
191
192
|
const DescribeApiAppsStatusResponse = models.DescribeApiAppsStatusResponse;
|
|
192
193
|
const ServiceSubDomainMappings = models.ServiceSubDomainMappings;
|
|
@@ -208,7 +209,7 @@ const ResetAPIDocPasswordRequest = models.ResetAPIDocPasswordRequest;
|
|
|
208
209
|
const ApiUsagePlan = models.ApiUsagePlan;
|
|
209
210
|
const IPStrategyApi = models.IPStrategyApi;
|
|
210
211
|
const DescribeAPIDocsResponse = models.DescribeAPIDocsResponse;
|
|
211
|
-
const
|
|
212
|
+
const DescribeServiceSubDomainMappingsRequest = models.DescribeServiceSubDomainMappingsRequest;
|
|
212
213
|
const DeletePluginResponse = models.DeletePluginResponse;
|
|
213
214
|
const DescribeUpstreamBindApis = models.DescribeUpstreamBindApis;
|
|
214
215
|
const ModifyServiceEnvironmentStrategyRequest = models.ModifyServiceEnvironmentStrategyRequest;
|
|
@@ -268,6 +269,7 @@ const DescribeApiKeysStatusResponse = models.DescribeApiKeysStatusResponse;
|
|
|
268
269
|
const UsagePlanStatusInfo = models.UsagePlanStatusInfo;
|
|
269
270
|
const DescribeLogSearchRequest = models.DescribeLogSearchRequest;
|
|
270
271
|
const BuildAPIDocRequest = models.BuildAPIDocRequest;
|
|
272
|
+
const DetachPluginResponse = models.DetachPluginResponse;
|
|
271
273
|
const ApiKeysStatus = models.ApiKeysStatus;
|
|
272
274
|
const APIDoc = models.APIDoc;
|
|
273
275
|
const DescribeServiceUsagePlanResponse = models.DescribeServiceUsagePlanResponse;
|
|
@@ -446,15 +448,15 @@ In API Gateway, a usage plan can be bound to multiple key pairs. You can use thi
|
|
|
446
448
|
}
|
|
447
449
|
|
|
448
450
|
/**
|
|
449
|
-
* This API is used to
|
|
450
|
-
|
|
451
|
-
* @param {
|
|
452
|
-
* @param {function(string,
|
|
451
|
+
* This API is used to create a usage plan.
|
|
452
|
+
To use API Gateway, you need to create a usage plan and bind it to a service environment.
|
|
453
|
+
* @param {CreateUsagePlanRequest} req
|
|
454
|
+
* @param {function(string, CreateUsagePlanResponse):void} cb
|
|
453
455
|
* @public
|
|
454
456
|
*/
|
|
455
|
-
|
|
456
|
-
let resp = new
|
|
457
|
-
this.request("
|
|
457
|
+
CreateUsagePlan(req, cb) {
|
|
458
|
+
let resp = new CreateUsagePlanResponse();
|
|
459
|
+
this.request("CreateUsagePlan", req, resp, cb);
|
|
458
460
|
}
|
|
459
461
|
|
|
460
462
|
/**
|
|
@@ -858,6 +860,18 @@ A service is generally published on several versions. This API can be used to qu
|
|
|
858
860
|
this.request("CreateApi", req, resp, cb);
|
|
859
861
|
}
|
|
860
862
|
|
|
863
|
+
/**
|
|
864
|
+
* This API is used to query the path mappings of a custom domain name.
|
|
865
|
+
In API Gateway, you can bind a custom domain name to a service and map its paths. You can customize different path mappings to up to 3 environments under the service. This API is used to query the list of path mappings of a custom domain name bound to a service.
|
|
866
|
+
* @param {DescribeServiceSubDomainMappingsRequest} req
|
|
867
|
+
* @param {function(string, DescribeServiceSubDomainMappingsResponse):void} cb
|
|
868
|
+
* @public
|
|
869
|
+
*/
|
|
870
|
+
DescribeServiceSubDomainMappings(req, cb) {
|
|
871
|
+
let resp = new DescribeServiceSubDomainMappingsResponse();
|
|
872
|
+
this.request("DescribeServiceSubDomainMappings", req, resp, cb);
|
|
873
|
+
}
|
|
874
|
+
|
|
861
875
|
/**
|
|
862
876
|
* This API is used to bind a plugin to an API.
|
|
863
877
|
* @param {AttachPluginRequest} req
|
|
@@ -1200,15 +1214,14 @@ To make authentication and throttling for a service take effect, you need to bin
|
|
|
1200
1214
|
}
|
|
1201
1215
|
|
|
1202
1216
|
/**
|
|
1203
|
-
*
|
|
1204
|
-
|
|
1205
|
-
* @param {
|
|
1206
|
-
* @param {function(string, CreateUsagePlanResponse):void} cb
|
|
1217
|
+
* Get the list of supported regions for dedicated instances
|
|
1218
|
+
* @param {DescribeExclusiveInstanceRegionsRequest} req
|
|
1219
|
+
* @param {function(string, DescribeExclusiveInstanceRegionsResponse):void} cb
|
|
1207
1220
|
* @public
|
|
1208
1221
|
*/
|
|
1209
|
-
|
|
1210
|
-
let resp = new
|
|
1211
|
-
this.request("
|
|
1222
|
+
DescribeExclusiveInstanceRegions(req, cb) {
|
|
1223
|
+
let resp = new DescribeExclusiveInstanceRegionsResponse();
|
|
1224
|
+
this.request("DescribeExclusiveInstanceRegions", req, resp, cb);
|
|
1212
1225
|
}
|
|
1213
1226
|
|
|
1214
1227
|
/**
|
|
@@ -6672,19 +6672,13 @@ class ModifySubDomainResponse extends AbstractModel {
|
|
|
6672
6672
|
}
|
|
6673
6673
|
|
|
6674
6674
|
/**
|
|
6675
|
-
*
|
|
6675
|
+
* DescribeExclusiveInstanceRegions response structure.
|
|
6676
6676
|
* @class
|
|
6677
6677
|
*/
|
|
6678
|
-
class
|
|
6678
|
+
class DescribeExclusiveInstanceRegionsResponse extends AbstractModel {
|
|
6679
6679
|
constructor(){
|
|
6680
6680
|
super();
|
|
6681
6681
|
|
|
6682
|
-
/**
|
|
6683
|
-
* Custom path mapping list.
|
|
6684
|
-
* @type {ServiceSubDomainMappings || null}
|
|
6685
|
-
*/
|
|
6686
|
-
this.Result = null;
|
|
6687
|
-
|
|
6688
6682
|
/**
|
|
6689
6683
|
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
6690
6684
|
* @type {string || null}
|
|
@@ -6700,12 +6694,6 @@ class DescribeServiceSubDomainMappingsResponse extends AbstractModel {
|
|
|
6700
6694
|
if (!params) {
|
|
6701
6695
|
return;
|
|
6702
6696
|
}
|
|
6703
|
-
|
|
6704
|
-
if (params.Result) {
|
|
6705
|
-
let obj = new ServiceSubDomainMappings();
|
|
6706
|
-
obj.deserialize(params.Result)
|
|
6707
|
-
this.Result = obj;
|
|
6708
|
-
}
|
|
6709
6697
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
6710
6698
|
|
|
6711
6699
|
}
|
|
@@ -10107,24 +10095,46 @@ class DeleteApiRequest extends AbstractModel {
|
|
|
10107
10095
|
}
|
|
10108
10096
|
|
|
10109
10097
|
/**
|
|
10110
|
-
*
|
|
10098
|
+
* DescribeExclusiveInstanceRegions request structure.
|
|
10111
10099
|
* @class
|
|
10112
10100
|
*/
|
|
10113
|
-
class
|
|
10101
|
+
class DescribeExclusiveInstanceRegionsRequest extends AbstractModel {
|
|
10102
|
+
constructor(){
|
|
10103
|
+
super();
|
|
10104
|
+
|
|
10105
|
+
}
|
|
10106
|
+
|
|
10107
|
+
/**
|
|
10108
|
+
* @private
|
|
10109
|
+
*/
|
|
10110
|
+
deserialize(params) {
|
|
10111
|
+
if (!params) {
|
|
10112
|
+
return;
|
|
10113
|
+
}
|
|
10114
|
+
|
|
10115
|
+
}
|
|
10116
|
+
}
|
|
10117
|
+
|
|
10118
|
+
/**
|
|
10119
|
+
* DescribeApiApp response structure.
|
|
10120
|
+
* @class
|
|
10121
|
+
*/
|
|
10122
|
+
class DescribeApiAppResponse extends AbstractModel {
|
|
10114
10123
|
constructor(){
|
|
10115
10124
|
super();
|
|
10116
10125
|
|
|
10117
10126
|
/**
|
|
10118
|
-
*
|
|
10119
|
-
|
|
10127
|
+
* Application details.
|
|
10128
|
+
Note: this field may return null, indicating that no valid values can be obtained.
|
|
10129
|
+
* @type {ApiAppInfos || null}
|
|
10120
10130
|
*/
|
|
10121
|
-
this.
|
|
10131
|
+
this.Result = null;
|
|
10122
10132
|
|
|
10123
10133
|
/**
|
|
10124
|
-
*
|
|
10134
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
10125
10135
|
* @type {string || null}
|
|
10126
10136
|
*/
|
|
10127
|
-
this.
|
|
10137
|
+
this.RequestId = null;
|
|
10128
10138
|
|
|
10129
10139
|
}
|
|
10130
10140
|
|
|
@@ -10135,24 +10145,28 @@ class DescribeServiceSubDomainMappingsRequest extends AbstractModel {
|
|
|
10135
10145
|
if (!params) {
|
|
10136
10146
|
return;
|
|
10137
10147
|
}
|
|
10138
|
-
|
|
10139
|
-
|
|
10148
|
+
|
|
10149
|
+
if (params.Result) {
|
|
10150
|
+
let obj = new ApiAppInfos();
|
|
10151
|
+
obj.deserialize(params.Result)
|
|
10152
|
+
this.Result = obj;
|
|
10153
|
+
}
|
|
10154
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
10140
10155
|
|
|
10141
10156
|
}
|
|
10142
10157
|
}
|
|
10143
10158
|
|
|
10144
10159
|
/**
|
|
10145
|
-
*
|
|
10160
|
+
* DescribeServiceSubDomainMappings response structure.
|
|
10146
10161
|
* @class
|
|
10147
10162
|
*/
|
|
10148
|
-
class
|
|
10163
|
+
class DescribeServiceSubDomainMappingsResponse extends AbstractModel {
|
|
10149
10164
|
constructor(){
|
|
10150
10165
|
super();
|
|
10151
10166
|
|
|
10152
10167
|
/**
|
|
10153
|
-
*
|
|
10154
|
-
|
|
10155
|
-
* @type {ApiAppInfos || null}
|
|
10168
|
+
* Custom path mapping list.
|
|
10169
|
+
* @type {ServiceSubDomainMappings || null}
|
|
10156
10170
|
*/
|
|
10157
10171
|
this.Result = null;
|
|
10158
10172
|
|
|
@@ -10173,7 +10187,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
10173
10187
|
}
|
|
10174
10188
|
|
|
10175
10189
|
if (params.Result) {
|
|
10176
|
-
let obj = new
|
|
10190
|
+
let obj = new ServiceSubDomainMappings();
|
|
10177
10191
|
obj.deserialize(params.Result)
|
|
10178
10192
|
this.Result = obj;
|
|
10179
10193
|
}
|
|
@@ -11231,24 +11245,24 @@ class DescribeAPIDocsResponse extends AbstractModel {
|
|
|
11231
11245
|
}
|
|
11232
11246
|
|
|
11233
11247
|
/**
|
|
11234
|
-
*
|
|
11248
|
+
* DescribeServiceSubDomainMappings request structure.
|
|
11235
11249
|
* @class
|
|
11236
11250
|
*/
|
|
11237
|
-
class
|
|
11251
|
+
class DescribeServiceSubDomainMappingsRequest extends AbstractModel {
|
|
11238
11252
|
constructor(){
|
|
11239
11253
|
super();
|
|
11240
11254
|
|
|
11241
11255
|
/**
|
|
11242
|
-
*
|
|
11243
|
-
* @type {
|
|
11256
|
+
* Unique service ID.
|
|
11257
|
+
* @type {string || null}
|
|
11244
11258
|
*/
|
|
11245
|
-
this.
|
|
11259
|
+
this.ServiceId = null;
|
|
11246
11260
|
|
|
11247
11261
|
/**
|
|
11248
|
-
*
|
|
11262
|
+
* Custom domain name bound to service.
|
|
11249
11263
|
* @type {string || null}
|
|
11250
11264
|
*/
|
|
11251
|
-
this.
|
|
11265
|
+
this.SubDomain = null;
|
|
11252
11266
|
|
|
11253
11267
|
}
|
|
11254
11268
|
|
|
@@ -11259,8 +11273,8 @@ class DetachPluginResponse extends AbstractModel {
|
|
|
11259
11273
|
if (!params) {
|
|
11260
11274
|
return;
|
|
11261
11275
|
}
|
|
11262
|
-
this.
|
|
11263
|
-
this.
|
|
11276
|
+
this.ServiceId = 'ServiceId' in params ? params.ServiceId : null;
|
|
11277
|
+
this.SubDomain = 'SubDomain' in params ? params.SubDomain : null;
|
|
11264
11278
|
|
|
11265
11279
|
}
|
|
11266
11280
|
}
|
|
@@ -14509,6 +14523,41 @@ class BuildAPIDocRequest extends AbstractModel {
|
|
|
14509
14523
|
}
|
|
14510
14524
|
}
|
|
14511
14525
|
|
|
14526
|
+
/**
|
|
14527
|
+
* DetachPlugin response structure.
|
|
14528
|
+
* @class
|
|
14529
|
+
*/
|
|
14530
|
+
class DetachPluginResponse extends AbstractModel {
|
|
14531
|
+
constructor(){
|
|
14532
|
+
super();
|
|
14533
|
+
|
|
14534
|
+
/**
|
|
14535
|
+
* Whether unbinding succeeded.
|
|
14536
|
+
* @type {boolean || null}
|
|
14537
|
+
*/
|
|
14538
|
+
this.Result = null;
|
|
14539
|
+
|
|
14540
|
+
/**
|
|
14541
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
14542
|
+
* @type {string || null}
|
|
14543
|
+
*/
|
|
14544
|
+
this.RequestId = null;
|
|
14545
|
+
|
|
14546
|
+
}
|
|
14547
|
+
|
|
14548
|
+
/**
|
|
14549
|
+
* @private
|
|
14550
|
+
*/
|
|
14551
|
+
deserialize(params) {
|
|
14552
|
+
if (!params) {
|
|
14553
|
+
return;
|
|
14554
|
+
}
|
|
14555
|
+
this.Result = 'Result' in params ? params.Result : null;
|
|
14556
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
14557
|
+
|
|
14558
|
+
}
|
|
14559
|
+
}
|
|
14560
|
+
|
|
14512
14561
|
/**
|
|
14513
14562
|
* Key list
|
|
14514
14563
|
* @class
|
|
@@ -15555,7 +15604,7 @@ module.exports = {
|
|
|
15555
15604
|
CreatePluginRequest: CreatePluginRequest,
|
|
15556
15605
|
MicroServiceReq: MicroServiceReq,
|
|
15557
15606
|
ModifySubDomainResponse: ModifySubDomainResponse,
|
|
15558
|
-
|
|
15607
|
+
DescribeExclusiveInstanceRegionsResponse: DescribeExclusiveInstanceRegionsResponse,
|
|
15559
15608
|
BindSecretIdsRequest: BindSecretIdsRequest,
|
|
15560
15609
|
UnBindEnvironmentResponse: UnBindEnvironmentResponse,
|
|
15561
15610
|
ModifyUpstreamResultInfo: ModifyUpstreamResultInfo,
|
|
@@ -15605,8 +15654,9 @@ module.exports = {
|
|
|
15605
15654
|
CreateApiRsp: CreateApiRsp,
|
|
15606
15655
|
UsagePlanBindEnvironment: UsagePlanBindEnvironment,
|
|
15607
15656
|
DeleteApiRequest: DeleteApiRequest,
|
|
15608
|
-
|
|
15657
|
+
DescribeExclusiveInstanceRegionsRequest: DescribeExclusiveInstanceRegionsRequest,
|
|
15609
15658
|
DescribeApiAppResponse: DescribeApiAppResponse,
|
|
15659
|
+
DescribeServiceSubDomainMappingsResponse: DescribeServiceSubDomainMappingsResponse,
|
|
15610
15660
|
OauthConfig: OauthConfig,
|
|
15611
15661
|
DescribeApiAppsStatusResponse: DescribeApiAppsStatusResponse,
|
|
15612
15662
|
ServiceSubDomainMappings: ServiceSubDomainMappings,
|
|
@@ -15628,7 +15678,7 @@ module.exports = {
|
|
|
15628
15678
|
ApiUsagePlan: ApiUsagePlan,
|
|
15629
15679
|
IPStrategyApi: IPStrategyApi,
|
|
15630
15680
|
DescribeAPIDocsResponse: DescribeAPIDocsResponse,
|
|
15631
|
-
|
|
15681
|
+
DescribeServiceSubDomainMappingsRequest: DescribeServiceSubDomainMappingsRequest,
|
|
15632
15682
|
DeletePluginResponse: DeletePluginResponse,
|
|
15633
15683
|
DescribeUpstreamBindApis: DescribeUpstreamBindApis,
|
|
15634
15684
|
ModifyServiceEnvironmentStrategyRequest: ModifyServiceEnvironmentStrategyRequest,
|
|
@@ -15688,6 +15738,7 @@ module.exports = {
|
|
|
15688
15738
|
UsagePlanStatusInfo: UsagePlanStatusInfo,
|
|
15689
15739
|
DescribeLogSearchRequest: DescribeLogSearchRequest,
|
|
15690
15740
|
BuildAPIDocRequest: BuildAPIDocRequest,
|
|
15741
|
+
DetachPluginResponse: DetachPluginResponse,
|
|
15691
15742
|
ApiKeysStatus: ApiKeysStatus,
|
|
15692
15743
|
APIDoc: APIDoc,
|
|
15693
15744
|
DescribeServiceUsagePlanResponse: DescribeServiceUsagePlanResponse,
|
|
@@ -108,6 +108,7 @@ const Variable = models.Variable;
|
|
|
108
108
|
const CallInNumberMetrics = models.CallInNumberMetrics;
|
|
109
109
|
const CreateExtensionRequest = models.CreateExtensionRequest;
|
|
110
110
|
const StaffSkillGroupList = models.StaffSkillGroupList;
|
|
111
|
+
const AITransferItem = models.AITransferItem;
|
|
111
112
|
const AbortAgentCruiseDialingCampaignRequest = models.AbortAgentCruiseDialingCampaignRequest;
|
|
112
113
|
const DescribePredictiveDialingCampaignsElement = models.DescribePredictiveDialingCampaignsElement;
|
|
113
114
|
const HangUpCallResponse = models.HangUpCallResponse;
|
|
@@ -209,7 +210,7 @@ class CccClient extends AbstractClient {
|
|
|
209
210
|
/**
|
|
210
211
|
* Used to make outbound calls by invoking AI models, limited to the use of proprietary phone numbers. Currently, the Advanced version seats are available for a **limited time** free trial.
|
|
211
212
|
|
|
212
|
-
Before initiating a call, please ensure your AI model is compatible with OpenAI, Azure, or Minimax protocols, and visit the model provider's website to obtain relevant authentication information. For detailed feature descriptions, please refer to the documentation [Tencent Cloud Contact Center AI Call Platform](https://
|
|
213
|
+
Before initiating a call, please ensure your AI model is compatible with OpenAI, Azure, or Minimax protocols, and visit the model provider's website to obtain relevant authentication information. For detailed feature descriptions, please refer to the documentation [Tencent Cloud Contact Center AI Call Platform](https://www.tencentcloud.com/document/product/1229/66889).
|
|
213
214
|
* @param {CreateAICallRequest} req
|
|
214
215
|
* @param {function(string, CreateAICallResponse):void} cb
|
|
215
216
|
* @public
|
|
@@ -794,6 +794,18 @@ Currently, the supported languages are as follows. The English name of the langu
|
|
|
794
794
|
*/
|
|
795
795
|
this.EndFunctionDesc = null;
|
|
796
796
|
|
|
797
|
+
/**
|
|
798
|
+
*
|
|
799
|
+
* @type {boolean || null}
|
|
800
|
+
*/
|
|
801
|
+
this.TransferFunctionEnable = null;
|
|
802
|
+
|
|
803
|
+
/**
|
|
804
|
+
*
|
|
805
|
+
* @type {Array.<AITransferItem> || null}
|
|
806
|
+
*/
|
|
807
|
+
this.TransferItems = null;
|
|
808
|
+
|
|
797
809
|
/**
|
|
798
810
|
* The duration after which the user hasn't spoken to trigger a notification, minimum 10 seconds, default 10 seconds
|
|
799
811
|
* @type {number || null}
|
|
@@ -896,6 +908,12 @@ Please refer to the specific protocol standards in the <a href="https://doc.weix
|
|
|
896
908
|
*/
|
|
897
909
|
this.CustomTTSConfig = null;
|
|
898
910
|
|
|
911
|
+
/**
|
|
912
|
+
*
|
|
913
|
+
* @type {Array.<Variable> || null}
|
|
914
|
+
*/
|
|
915
|
+
this.PromptVariables = null;
|
|
916
|
+
|
|
899
917
|
}
|
|
900
918
|
|
|
901
919
|
/**
|
|
@@ -922,11 +940,30 @@ Please refer to the specific protocol standards in the <a href="https://doc.weix
|
|
|
922
940
|
this.InterruptSpeechDuration = 'InterruptSpeechDuration' in params ? params.InterruptSpeechDuration : null;
|
|
923
941
|
this.EndFunctionEnable = 'EndFunctionEnable' in params ? params.EndFunctionEnable : null;
|
|
924
942
|
this.EndFunctionDesc = 'EndFunctionDesc' in params ? params.EndFunctionDesc : null;
|
|
943
|
+
this.TransferFunctionEnable = 'TransferFunctionEnable' in params ? params.TransferFunctionEnable : null;
|
|
944
|
+
|
|
945
|
+
if (params.TransferItems) {
|
|
946
|
+
this.TransferItems = new Array();
|
|
947
|
+
for (let z in params.TransferItems) {
|
|
948
|
+
let obj = new AITransferItem();
|
|
949
|
+
obj.deserialize(params.TransferItems[z]);
|
|
950
|
+
this.TransferItems.push(obj);
|
|
951
|
+
}
|
|
952
|
+
}
|
|
925
953
|
this.NotifyDuration = 'NotifyDuration' in params ? params.NotifyDuration : null;
|
|
926
954
|
this.NotifyMessage = 'NotifyMessage' in params ? params.NotifyMessage : null;
|
|
927
955
|
this.NotifyMaxCount = 'NotifyMaxCount' in params ? params.NotifyMaxCount : null;
|
|
928
956
|
this.CustomTTSConfig = 'CustomTTSConfig' in params ? params.CustomTTSConfig : null;
|
|
929
957
|
|
|
958
|
+
if (params.PromptVariables) {
|
|
959
|
+
this.PromptVariables = new Array();
|
|
960
|
+
for (let z in params.PromptVariables) {
|
|
961
|
+
let obj = new Variable();
|
|
962
|
+
obj.deserialize(params.PromptVariables[z]);
|
|
963
|
+
this.PromptVariables.push(obj);
|
|
964
|
+
}
|
|
965
|
+
}
|
|
966
|
+
|
|
930
967
|
}
|
|
931
968
|
}
|
|
932
969
|
|
|
@@ -5728,6 +5765,48 @@ class StaffSkillGroupList extends AbstractModel {
|
|
|
5728
5765
|
}
|
|
5729
5766
|
}
|
|
5730
5767
|
|
|
5768
|
+
/**
|
|
5769
|
+
*
|
|
5770
|
+
* @class
|
|
5771
|
+
*/
|
|
5772
|
+
class AITransferItem extends AbstractModel {
|
|
5773
|
+
constructor(){
|
|
5774
|
+
super();
|
|
5775
|
+
|
|
5776
|
+
/**
|
|
5777
|
+
*
|
|
5778
|
+
* @type {string || null}
|
|
5779
|
+
*/
|
|
5780
|
+
this.TransferFunctionName = null;
|
|
5781
|
+
|
|
5782
|
+
/**
|
|
5783
|
+
*
|
|
5784
|
+
* @type {string || null}
|
|
5785
|
+
*/
|
|
5786
|
+
this.TransferFunctionDesc = null;
|
|
5787
|
+
|
|
5788
|
+
/**
|
|
5789
|
+
*
|
|
5790
|
+
* @type {number || null}
|
|
5791
|
+
*/
|
|
5792
|
+
this.TransferSkillGroupId = null;
|
|
5793
|
+
|
|
5794
|
+
}
|
|
5795
|
+
|
|
5796
|
+
/**
|
|
5797
|
+
* @private
|
|
5798
|
+
*/
|
|
5799
|
+
deserialize(params) {
|
|
5800
|
+
if (!params) {
|
|
5801
|
+
return;
|
|
5802
|
+
}
|
|
5803
|
+
this.TransferFunctionName = 'TransferFunctionName' in params ? params.TransferFunctionName : null;
|
|
5804
|
+
this.TransferFunctionDesc = 'TransferFunctionDesc' in params ? params.TransferFunctionDesc : null;
|
|
5805
|
+
this.TransferSkillGroupId = 'TransferSkillGroupId' in params ? params.TransferSkillGroupId : null;
|
|
5806
|
+
|
|
5807
|
+
}
|
|
5808
|
+
}
|
|
5809
|
+
|
|
5731
5810
|
/**
|
|
5732
5811
|
* AbortAgentCruiseDialingCampaign request structure.
|
|
5733
5812
|
* @class
|
|
@@ -7858,6 +7937,7 @@ module.exports = {
|
|
|
7858
7937
|
CallInNumberMetrics: CallInNumberMetrics,
|
|
7859
7938
|
CreateExtensionRequest: CreateExtensionRequest,
|
|
7860
7939
|
StaffSkillGroupList: StaffSkillGroupList,
|
|
7940
|
+
AITransferItem: AITransferItem,
|
|
7861
7941
|
AbortAgentCruiseDialingCampaignRequest: AbortAgentCruiseDialingCampaignRequest,
|
|
7862
7942
|
DescribePredictiveDialingCampaignsElement: DescribePredictiveDialingCampaignsElement,
|
|
7863
7943
|
HangUpCallResponse: HangUpCallResponse,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1094";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -5047,6 +5047,12 @@ class DeleteCertificateResponse extends AbstractModel {
|
|
|
5047
5047
|
*/
|
|
5048
5048
|
this.DeleteResult = null;
|
|
5049
5049
|
|
|
5050
|
+
/**
|
|
5051
|
+
*
|
|
5052
|
+
* @type {string || null}
|
|
5053
|
+
*/
|
|
5054
|
+
this.TaskId = null;
|
|
5055
|
+
|
|
5050
5056
|
/**
|
|
5051
5057
|
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
5052
5058
|
* @type {string || null}
|
|
@@ -5063,6 +5069,7 @@ class DeleteCertificateResponse extends AbstractModel {
|
|
|
5063
5069
|
return;
|
|
5064
5070
|
}
|
|
5065
5071
|
this.DeleteResult = 'DeleteResult' in params ? params.DeleteResult : null;
|
|
5072
|
+
this.TaskId = 'TaskId' in params ? params.TaskId : null;
|
|
5066
5073
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
5067
5074
|
|
|
5068
5075
|
}
|
|
@@ -6074,6 +6081,12 @@ class DeleteCertificateRequest extends AbstractModel {
|
|
|
6074
6081
|
*/
|
|
6075
6082
|
this.CertificateId = null;
|
|
6076
6083
|
|
|
6084
|
+
/**
|
|
6085
|
+
*
|
|
6086
|
+
* @type {boolean || null}
|
|
6087
|
+
*/
|
|
6088
|
+
this.IsCheckResource = null;
|
|
6089
|
+
|
|
6077
6090
|
}
|
|
6078
6091
|
|
|
6079
6092
|
/**
|
|
@@ -6084,6 +6097,7 @@ class DeleteCertificateRequest extends AbstractModel {
|
|
|
6084
6097
|
return;
|
|
6085
6098
|
}
|
|
6086
6099
|
this.CertificateId = 'CertificateId' in params ? params.CertificateId : null;
|
|
6100
|
+
this.IsCheckResource = 'IsCheckResource' in params ? params.IsCheckResource : null;
|
|
6087
6101
|
|
|
6088
6102
|
}
|
|
6089
6103
|
}
|