@antchain/riskplus 1.16.6 → 1.16.8
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/dist/client.d.ts +47 -0
- package/dist/client.js +72 -1
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +103 -1
package/dist/client.d.ts
CHANGED
|
@@ -6010,6 +6010,41 @@ export declare class BatchqueryUmktRtTopnResponse extends $tea.Model {
|
|
|
6010
6010
|
[key: string]: any;
|
|
6011
6011
|
});
|
|
6012
6012
|
}
|
|
6013
|
+
export declare class QueryUmktRobotcallStatisticinfoRequest extends $tea.Model {
|
|
6014
|
+
authToken?: string;
|
|
6015
|
+
productInstanceId?: string;
|
|
6016
|
+
sceneStrategyId: number;
|
|
6017
|
+
outInfo: string;
|
|
6018
|
+
static names(): {
|
|
6019
|
+
[key: string]: string;
|
|
6020
|
+
};
|
|
6021
|
+
static types(): {
|
|
6022
|
+
[key: string]: any;
|
|
6023
|
+
};
|
|
6024
|
+
constructor(map?: {
|
|
6025
|
+
[key: string]: any;
|
|
6026
|
+
});
|
|
6027
|
+
}
|
|
6028
|
+
export declare class QueryUmktRobotcallStatisticinfoResponse extends $tea.Model {
|
|
6029
|
+
reqMsgId?: string;
|
|
6030
|
+
resultCode?: string;
|
|
6031
|
+
resultMsg?: string;
|
|
6032
|
+
totalCount?: number;
|
|
6033
|
+
callCount?: number;
|
|
6034
|
+
calleeCount?: number;
|
|
6035
|
+
connectCount?: number;
|
|
6036
|
+
callRate?: number;
|
|
6037
|
+
connectRate?: number;
|
|
6038
|
+
static names(): {
|
|
6039
|
+
[key: string]: string;
|
|
6040
|
+
};
|
|
6041
|
+
static types(): {
|
|
6042
|
+
[key: string]: any;
|
|
6043
|
+
};
|
|
6044
|
+
constructor(map?: {
|
|
6045
|
+
[key: string]: any;
|
|
6046
|
+
});
|
|
6047
|
+
}
|
|
6013
6048
|
export declare class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
6014
6049
|
authToken?: string;
|
|
6015
6050
|
apiCode: string;
|
|
@@ -7674,6 +7709,18 @@ export default class Client {
|
|
|
7674
7709
|
batchqueryUmktRtTopnEx(request: BatchqueryUmktRtTopnRequest, headers: {
|
|
7675
7710
|
[key: string]: string;
|
|
7676
7711
|
}, runtime: $Util.RuntimeOptions): Promise<BatchqueryUmktRtTopnResponse>;
|
|
7712
|
+
/**
|
|
7713
|
+
* Description: 外呼任务统计查询接口
|
|
7714
|
+
* Summary: 外呼任务统计查询接口
|
|
7715
|
+
*/
|
|
7716
|
+
queryUmktRobotcallStatisticinfo(request: QueryUmktRobotcallStatisticinfoRequest): Promise<QueryUmktRobotcallStatisticinfoResponse>;
|
|
7717
|
+
/**
|
|
7718
|
+
* Description: 外呼任务统计查询接口
|
|
7719
|
+
* Summary: 外呼任务统计查询接口
|
|
7720
|
+
*/
|
|
7721
|
+
queryUmktRobotcallStatisticinfoEx(request: QueryUmktRobotcallStatisticinfoRequest, headers: {
|
|
7722
|
+
[key: string]: string;
|
|
7723
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryUmktRobotcallStatisticinfoResponse>;
|
|
7677
7724
|
/**
|
|
7678
7725
|
* Description: 创建HTTP PUT提交的文件上传
|
|
7679
7726
|
* Summary: 文件上传创建
|
package/dist/client.js
CHANGED
|
@@ -9323,6 +9323,60 @@ class BatchqueryUmktRtTopnResponse extends $tea.Model {
|
|
|
9323
9323
|
}
|
|
9324
9324
|
}
|
|
9325
9325
|
exports.BatchqueryUmktRtTopnResponse = BatchqueryUmktRtTopnResponse;
|
|
9326
|
+
class QueryUmktRobotcallStatisticinfoRequest extends $tea.Model {
|
|
9327
|
+
constructor(map) {
|
|
9328
|
+
super(map);
|
|
9329
|
+
}
|
|
9330
|
+
static names() {
|
|
9331
|
+
return {
|
|
9332
|
+
authToken: 'auth_token',
|
|
9333
|
+
productInstanceId: 'product_instance_id',
|
|
9334
|
+
sceneStrategyId: 'scene_strategy_id',
|
|
9335
|
+
outInfo: 'out_info',
|
|
9336
|
+
};
|
|
9337
|
+
}
|
|
9338
|
+
static types() {
|
|
9339
|
+
return {
|
|
9340
|
+
authToken: 'string',
|
|
9341
|
+
productInstanceId: 'string',
|
|
9342
|
+
sceneStrategyId: 'number',
|
|
9343
|
+
outInfo: 'string',
|
|
9344
|
+
};
|
|
9345
|
+
}
|
|
9346
|
+
}
|
|
9347
|
+
exports.QueryUmktRobotcallStatisticinfoRequest = QueryUmktRobotcallStatisticinfoRequest;
|
|
9348
|
+
class QueryUmktRobotcallStatisticinfoResponse extends $tea.Model {
|
|
9349
|
+
constructor(map) {
|
|
9350
|
+
super(map);
|
|
9351
|
+
}
|
|
9352
|
+
static names() {
|
|
9353
|
+
return {
|
|
9354
|
+
reqMsgId: 'req_msg_id',
|
|
9355
|
+
resultCode: 'result_code',
|
|
9356
|
+
resultMsg: 'result_msg',
|
|
9357
|
+
totalCount: 'total_count',
|
|
9358
|
+
callCount: 'call_count',
|
|
9359
|
+
calleeCount: 'callee_count',
|
|
9360
|
+
connectCount: 'connect_count',
|
|
9361
|
+
callRate: 'call_rate',
|
|
9362
|
+
connectRate: 'connect_rate',
|
|
9363
|
+
};
|
|
9364
|
+
}
|
|
9365
|
+
static types() {
|
|
9366
|
+
return {
|
|
9367
|
+
reqMsgId: 'string',
|
|
9368
|
+
resultCode: 'string',
|
|
9369
|
+
resultMsg: 'string',
|
|
9370
|
+
totalCount: 'number',
|
|
9371
|
+
callCount: 'number',
|
|
9372
|
+
calleeCount: 'number',
|
|
9373
|
+
connectCount: 'number',
|
|
9374
|
+
callRate: 'number',
|
|
9375
|
+
connectRate: 'number',
|
|
9376
|
+
};
|
|
9377
|
+
}
|
|
9378
|
+
}
|
|
9379
|
+
exports.QueryUmktRobotcallStatisticinfoResponse = QueryUmktRobotcallStatisticinfoResponse;
|
|
9326
9380
|
class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
9327
9381
|
constructor(map) {
|
|
9328
9382
|
super(map);
|
|
@@ -9467,7 +9521,7 @@ class Client {
|
|
|
9467
9521
|
req_msg_id: alipay_util_1.default.getNonce(),
|
|
9468
9522
|
access_key: this._accessKeyId,
|
|
9469
9523
|
base_sdk_version: "TeaSDK-2.0",
|
|
9470
|
-
sdk_version: "1.16.
|
|
9524
|
+
sdk_version: "1.16.8",
|
|
9471
9525
|
_prod_code: "RISKPLUS",
|
|
9472
9526
|
_prod_channel: "undefined",
|
|
9473
9527
|
};
|
|
@@ -11807,6 +11861,23 @@ class Client {
|
|
|
11807
11861
|
tea_util_1.default.validateModel(request);
|
|
11808
11862
|
return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.rt.topn.batchquery", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new BatchqueryUmktRtTopnResponse({}));
|
|
11809
11863
|
}
|
|
11864
|
+
/**
|
|
11865
|
+
* Description: 外呼任务统计查询接口
|
|
11866
|
+
* Summary: 外呼任务统计查询接口
|
|
11867
|
+
*/
|
|
11868
|
+
async queryUmktRobotcallStatisticinfo(request) {
|
|
11869
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
11870
|
+
let headers = {};
|
|
11871
|
+
return await this.queryUmktRobotcallStatisticinfoEx(request, headers, runtime);
|
|
11872
|
+
}
|
|
11873
|
+
/**
|
|
11874
|
+
* Description: 外呼任务统计查询接口
|
|
11875
|
+
* Summary: 外呼任务统计查询接口
|
|
11876
|
+
*/
|
|
11877
|
+
async queryUmktRobotcallStatisticinfoEx(request, headers, runtime) {
|
|
11878
|
+
tea_util_1.default.validateModel(request);
|
|
11879
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.robotcall.statisticinfo.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryUmktRobotcallStatisticinfoResponse({}));
|
|
11880
|
+
}
|
|
11810
11881
|
/**
|
|
11811
11882
|
* Description: 创建HTTP PUT提交的文件上传
|
|
11812
11883
|
* Summary: 文件上传创建
|