@antchain/riskplus 1.16.5 → 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 CHANGED
@@ -3301,6 +3301,7 @@ export declare class ApplyDubbridgeUsecreditRequest extends $tea.Model {
3301
3301
  repayDate?: string;
3302
3302
  channelType?: string;
3303
3303
  customType?: string;
3304
+ riskData?: string;
3304
3305
  static names(): {
3305
3306
  [key: string]: string;
3306
3307
  };
@@ -6009,6 +6010,41 @@ export declare class BatchqueryUmktRtTopnResponse extends $tea.Model {
6009
6010
  [key: string]: any;
6010
6011
  });
6011
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
+ }
6012
6048
  export declare class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
6013
6049
  authToken?: string;
6014
6050
  apiCode: string;
@@ -7673,6 +7709,18 @@ export default class Client {
7673
7709
  batchqueryUmktRtTopnEx(request: BatchqueryUmktRtTopnRequest, headers: {
7674
7710
  [key: string]: string;
7675
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>;
7676
7724
  /**
7677
7725
  * Description: 创建HTTP PUT提交的文件上传
7678
7726
  * Summary: 文件上传创建
package/dist/client.js CHANGED
@@ -5193,6 +5193,7 @@ class ApplyDubbridgeUsecreditRequest extends $tea.Model {
5193
5193
  repayDate: 'repay_date',
5194
5194
  channelType: 'channel_type',
5195
5195
  customType: 'custom_type',
5196
+ riskData: 'risk_data',
5196
5197
  };
5197
5198
  }
5198
5199
  static types() {
@@ -5209,6 +5210,7 @@ class ApplyDubbridgeUsecreditRequest extends $tea.Model {
5209
5210
  repayDate: 'string',
5210
5211
  channelType: 'string',
5211
5212
  customType: 'string',
5213
+ riskData: 'string',
5212
5214
  };
5213
5215
  }
5214
5216
  }
@@ -9321,6 +9323,60 @@ class BatchqueryUmktRtTopnResponse extends $tea.Model {
9321
9323
  }
9322
9324
  }
9323
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;
9324
9380
  class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
9325
9381
  constructor(map) {
9326
9382
  super(map);
@@ -9465,7 +9521,9 @@ class Client {
9465
9521
  req_msg_id: alipay_util_1.default.getNonce(),
9466
9522
  access_key: this._accessKeyId,
9467
9523
  base_sdk_version: "TeaSDK-2.0",
9468
- sdk_version: "1.16.5",
9524
+ sdk_version: "1.16.8",
9525
+ _prod_code: "RISKPLUS",
9526
+ _prod_channel: "undefined",
9469
9527
  };
9470
9528
  if (!tea_util_1.default.empty(this._securityToken)) {
9471
9529
  request_.query["security_token"] = this._securityToken;
@@ -11803,6 +11861,23 @@ class Client {
11803
11861
  tea_util_1.default.validateModel(request);
11804
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({}));
11805
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
+ }
11806
11881
  /**
11807
11882
  * Description: 创建HTTP PUT提交的文件上传
11808
11883
  * Summary: 文件上传创建