@antchain/riskplus 1.23.4 → 1.23.6

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antchain/riskplus",
3
- "version": "1.23.4",
3
+ "version": "1.23.6",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -8137,6 +8137,8 @@ export class QueryDubbridgeRiskinfoEnterprisescoreRequest extends $tea.Model {
8137
8137
  customerNo: string;
8138
8138
  // 渠道号
8139
8139
  channelCode: string;
8140
+ // 手机号md5
8141
+ mobileMd5?: string;
8140
8142
  static names(): { [key: string]: string } {
8141
8143
  return {
8142
8144
  authToken: 'auth_token',
@@ -8145,6 +8147,7 @@ export class QueryDubbridgeRiskinfoEnterprisescoreRequest extends $tea.Model {
8145
8147
  mobile: 'mobile',
8146
8148
  customerNo: 'customer_no',
8147
8149
  channelCode: 'channel_code',
8150
+ mobileMd5: 'mobile_md5',
8148
8151
  };
8149
8152
  }
8150
8153
 
@@ -8156,6 +8159,7 @@ export class QueryDubbridgeRiskinfoEnterprisescoreRequest extends $tea.Model {
8156
8159
  mobile: 'string',
8157
8160
  customerNo: 'string',
8158
8161
  channelCode: 'string',
8162
+ mobileMd5: 'string',
8159
8163
  };
8160
8164
  }
8161
8165
 
@@ -11085,6 +11089,16 @@ export class QueryDubbridgeInstallmentCreditamtRequest extends $tea.Model {
11085
11089
  cardNo?: string;
11086
11090
  // 客户姓名
11087
11091
  customerName?: string;
11092
+ // 导流平台
11093
+ trafficPlatform?: string;
11094
+ // 流量来源名称,导流平台背后具体的流量名称
11095
+ trafficSourceName?: string;
11096
+ // 广告位id,流量来源内各广告位标志
11097
+ trafficAdId?: string;
11098
+ // 营销活动编号
11099
+ trafficMktId?: string;
11100
+ // 点击id
11101
+ clickId?: string;
11088
11102
  static names(): { [key: string]: string } {
11089
11103
  return {
11090
11104
  authToken: 'auth_token',
@@ -11097,6 +11111,11 @@ export class QueryDubbridgeInstallmentCreditamtRequest extends $tea.Model {
11097
11111
  tradeAmount: 'trade_amount',
11098
11112
  cardNo: 'card_no',
11099
11113
  customerName: 'customer_name',
11114
+ trafficPlatform: 'traffic_platform',
11115
+ trafficSourceName: 'traffic_source_name',
11116
+ trafficAdId: 'traffic_ad_id',
11117
+ trafficMktId: 'traffic_mkt_id',
11118
+ clickId: 'click_id',
11100
11119
  };
11101
11120
  }
11102
11121
 
@@ -11112,6 +11131,11 @@ export class QueryDubbridgeInstallmentCreditamtRequest extends $tea.Model {
11112
11131
  tradeAmount: 'string',
11113
11132
  cardNo: 'string',
11114
11133
  customerName: 'string',
11134
+ trafficPlatform: 'string',
11135
+ trafficSourceName: 'string',
11136
+ trafficAdId: 'string',
11137
+ trafficMktId: 'string',
11138
+ clickId: 'string',
11115
11139
  };
11116
11140
  }
11117
11141
 
@@ -22239,7 +22263,7 @@ export default class Client {
22239
22263
  req_msg_id: AntchainUtil.getNonce(),
22240
22264
  access_key: this._accessKeyId,
22241
22265
  base_sdk_version: "TeaSDK-2.0",
22242
- sdk_version: "1.23.4",
22266
+ sdk_version: "1.23.6",
22243
22267
  _prod_code: "RISKPLUS",
22244
22268
  _prod_channel: "undefined",
22245
22269
  };
@@ -24312,7 +24336,7 @@ export default class Client {
24312
24336
 
24313
24337
  /**
24314
24338
  * Description: 蚁盾业务回流事件推送
24315
- * Summary: 蚁盾回流事件推送
24339
+ * Summary: 蚁盾业务回流事件推送
24316
24340
  */
24317
24341
  async pushQmpBackflowEvent(request: PushQmpBackflowEventRequest): Promise<PushQmpBackflowEventResponse> {
24318
24342
  let runtime = new $Util.RuntimeOptions({ });
@@ -24322,7 +24346,7 @@ export default class Client {
24322
24346
 
24323
24347
  /**
24324
24348
  * Description: 蚁盾业务回流事件推送
24325
- * Summary: 蚁盾回流事件推送
24349
+ * Summary: 蚁盾业务回流事件推送
24326
24350
  */
24327
24351
  async pushQmpBackflowEventEx(request: PushQmpBackflowEventRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<PushQmpBackflowEventResponse> {
24328
24352
  Util.validateModel(request);