@antchain/riskplus 1.23.4 → 1.23.5
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 +7 -2
- package/dist/client.js +13 -3
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +23 -3
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -11085,6 +11085,16 @@ export class QueryDubbridgeInstallmentCreditamtRequest extends $tea.Model {
|
|
|
11085
11085
|
cardNo?: string;
|
|
11086
11086
|
// 客户姓名
|
|
11087
11087
|
customerName?: string;
|
|
11088
|
+
// 导流平台
|
|
11089
|
+
trafficPlatform?: string;
|
|
11090
|
+
// 流量来源名称,导流平台背后具体的流量名称
|
|
11091
|
+
trafficSourceName?: string;
|
|
11092
|
+
// 广告位id,流量来源内各广告位标志
|
|
11093
|
+
trafficAdId?: string;
|
|
11094
|
+
// 营销活动编号
|
|
11095
|
+
trafficMktId?: string;
|
|
11096
|
+
// 点击id
|
|
11097
|
+
clickId?: string;
|
|
11088
11098
|
static names(): { [key: string]: string } {
|
|
11089
11099
|
return {
|
|
11090
11100
|
authToken: 'auth_token',
|
|
@@ -11097,6 +11107,11 @@ export class QueryDubbridgeInstallmentCreditamtRequest extends $tea.Model {
|
|
|
11097
11107
|
tradeAmount: 'trade_amount',
|
|
11098
11108
|
cardNo: 'card_no',
|
|
11099
11109
|
customerName: 'customer_name',
|
|
11110
|
+
trafficPlatform: 'traffic_platform',
|
|
11111
|
+
trafficSourceName: 'traffic_source_name',
|
|
11112
|
+
trafficAdId: 'traffic_ad_id',
|
|
11113
|
+
trafficMktId: 'traffic_mkt_id',
|
|
11114
|
+
clickId: 'click_id',
|
|
11100
11115
|
};
|
|
11101
11116
|
}
|
|
11102
11117
|
|
|
@@ -11112,6 +11127,11 @@ export class QueryDubbridgeInstallmentCreditamtRequest extends $tea.Model {
|
|
|
11112
11127
|
tradeAmount: 'string',
|
|
11113
11128
|
cardNo: 'string',
|
|
11114
11129
|
customerName: 'string',
|
|
11130
|
+
trafficPlatform: 'string',
|
|
11131
|
+
trafficSourceName: 'string',
|
|
11132
|
+
trafficAdId: 'string',
|
|
11133
|
+
trafficMktId: 'string',
|
|
11134
|
+
clickId: 'string',
|
|
11115
11135
|
};
|
|
11116
11136
|
}
|
|
11117
11137
|
|
|
@@ -22239,7 +22259,7 @@ export default class Client {
|
|
|
22239
22259
|
req_msg_id: AntchainUtil.getNonce(),
|
|
22240
22260
|
access_key: this._accessKeyId,
|
|
22241
22261
|
base_sdk_version: "TeaSDK-2.0",
|
|
22242
|
-
sdk_version: "1.23.
|
|
22262
|
+
sdk_version: "1.23.5",
|
|
22243
22263
|
_prod_code: "RISKPLUS",
|
|
22244
22264
|
_prod_channel: "undefined",
|
|
22245
22265
|
};
|
|
@@ -24312,7 +24332,7 @@ export default class Client {
|
|
|
24312
24332
|
|
|
24313
24333
|
/**
|
|
24314
24334
|
* Description: 蚁盾业务回流事件推送
|
|
24315
|
-
* Summary:
|
|
24335
|
+
* Summary: 蚁盾业务回流事件推送
|
|
24316
24336
|
*/
|
|
24317
24337
|
async pushQmpBackflowEvent(request: PushQmpBackflowEventRequest): Promise<PushQmpBackflowEventResponse> {
|
|
24318
24338
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -24322,7 +24342,7 @@ export default class Client {
|
|
|
24322
24342
|
|
|
24323
24343
|
/**
|
|
24324
24344
|
* Description: 蚁盾业务回流事件推送
|
|
24325
|
-
* Summary:
|
|
24345
|
+
* Summary: 蚁盾业务回流事件推送
|
|
24326
24346
|
*/
|
|
24327
24347
|
async pushQmpBackflowEventEx(request: PushQmpBackflowEventRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<PushQmpBackflowEventResponse> {
|
|
24328
24348
|
Util.validateModel(request);
|