@antchain/riskplus 1.12.15 → 1.12.16
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 -5
- package/dist/client.js +7 -3
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +17 -9
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -374,19 +374,22 @@ export class RtopRiskTag extends $tea.Model {
|
|
|
374
374
|
// 回执统计数据详情
|
|
375
375
|
export class StatisticInfoDetail extends $tea.Model {
|
|
376
376
|
// actionDriverCode类型
|
|
377
|
-
actionDriverCode
|
|
377
|
+
actionDriverCode?: number;
|
|
378
378
|
// 调用总数
|
|
379
|
-
invokeCount
|
|
379
|
+
invokeCount?: number;
|
|
380
380
|
// 成功数
|
|
381
|
-
successCount
|
|
381
|
+
successCount?: number;
|
|
382
382
|
// 失败数
|
|
383
|
-
failCount
|
|
383
|
+
failCount?: number;
|
|
384
|
+
// 已处理完成任务数
|
|
385
|
+
finishCount?: number;
|
|
384
386
|
static names(): { [key: string]: string } {
|
|
385
387
|
return {
|
|
386
388
|
actionDriverCode: 'action_driver_code',
|
|
387
389
|
invokeCount: 'invoke_count',
|
|
388
390
|
successCount: 'success_count',
|
|
389
391
|
failCount: 'fail_count',
|
|
392
|
+
finishCount: 'finish_count',
|
|
390
393
|
};
|
|
391
394
|
}
|
|
392
395
|
|
|
@@ -396,6 +399,7 @@ export class StatisticInfoDetail extends $tea.Model {
|
|
|
396
399
|
invokeCount: 'number',
|
|
397
400
|
successCount: 'number',
|
|
398
401
|
failCount: 'number',
|
|
402
|
+
finishCount: 'number',
|
|
399
403
|
};
|
|
400
404
|
}
|
|
401
405
|
|
|
@@ -5683,12 +5687,15 @@ export class BindDubbridgeCustomerBankcardResponse extends $tea.Model {
|
|
|
5683
5687
|
resultMsg?: string;
|
|
5684
5688
|
// 绑卡流水
|
|
5685
5689
|
bindSerialNo?: string;
|
|
5690
|
+
// 客户号
|
|
5691
|
+
customerNo?: string;
|
|
5686
5692
|
static names(): { [key: string]: string } {
|
|
5687
5693
|
return {
|
|
5688
5694
|
reqMsgId: 'req_msg_id',
|
|
5689
5695
|
resultCode: 'result_code',
|
|
5690
5696
|
resultMsg: 'result_msg',
|
|
5691
5697
|
bindSerialNo: 'bind_serial_no',
|
|
5698
|
+
customerNo: 'customer_no',
|
|
5692
5699
|
};
|
|
5693
5700
|
}
|
|
5694
5701
|
|
|
@@ -5698,6 +5705,7 @@ export class BindDubbridgeCustomerBankcardResponse extends $tea.Model {
|
|
|
5698
5705
|
resultCode: 'string',
|
|
5699
5706
|
resultMsg: 'string',
|
|
5700
5707
|
bindSerialNo: 'string',
|
|
5708
|
+
customerNo: 'string',
|
|
5701
5709
|
};
|
|
5702
5710
|
}
|
|
5703
5711
|
|
|
@@ -7138,8 +7146,6 @@ export class CountDubbridgeRepayTrialRequest extends $tea.Model {
|
|
|
7138
7146
|
repayType: string;
|
|
7139
7147
|
// 订单号
|
|
7140
7148
|
orderNo: string;
|
|
7141
|
-
// 借据号
|
|
7142
|
-
receiptNo: string;
|
|
7143
7149
|
static names(): { [key: string]: string } {
|
|
7144
7150
|
return {
|
|
7145
7151
|
authToken: 'auth_token',
|
|
@@ -7147,7 +7153,6 @@ export class CountDubbridgeRepayTrialRequest extends $tea.Model {
|
|
|
7147
7153
|
originalOrderNo: 'original_order_no',
|
|
7148
7154
|
repayType: 'repay_type',
|
|
7149
7155
|
orderNo: 'order_no',
|
|
7150
|
-
receiptNo: 'receipt_no',
|
|
7151
7156
|
};
|
|
7152
7157
|
}
|
|
7153
7158
|
|
|
@@ -7158,7 +7163,6 @@ export class CountDubbridgeRepayTrialRequest extends $tea.Model {
|
|
|
7158
7163
|
originalOrderNo: 'string',
|
|
7159
7164
|
repayType: 'string',
|
|
7160
7165
|
orderNo: 'string',
|
|
7161
|
-
receiptNo: 'string',
|
|
7162
7166
|
};
|
|
7163
7167
|
}
|
|
7164
7168
|
|
|
@@ -7280,11 +7284,14 @@ export class QueryDubbridgeSearchContractRequest extends $tea.Model {
|
|
|
7280
7284
|
productInstanceId?: string;
|
|
7281
7285
|
// 原用信订单号
|
|
7282
7286
|
originalOrderNo: string;
|
|
7287
|
+
// 客户号
|
|
7288
|
+
customerNo: string;
|
|
7283
7289
|
static names(): { [key: string]: string } {
|
|
7284
7290
|
return {
|
|
7285
7291
|
authToken: 'auth_token',
|
|
7286
7292
|
productInstanceId: 'product_instance_id',
|
|
7287
7293
|
originalOrderNo: 'original_order_no',
|
|
7294
|
+
customerNo: 'customer_no',
|
|
7288
7295
|
};
|
|
7289
7296
|
}
|
|
7290
7297
|
|
|
@@ -7293,6 +7300,7 @@ export class QueryDubbridgeSearchContractRequest extends $tea.Model {
|
|
|
7293
7300
|
authToken: 'string',
|
|
7294
7301
|
productInstanceId: 'string',
|
|
7295
7302
|
originalOrderNo: 'string',
|
|
7303
|
+
customerNo: 'string',
|
|
7296
7304
|
};
|
|
7297
7305
|
}
|
|
7298
7306
|
|
|
@@ -12573,7 +12581,7 @@ export default class Client {
|
|
|
12573
12581
|
req_msg_id: AntchainUtil.getNonce(),
|
|
12574
12582
|
access_key: this._accessKeyId,
|
|
12575
12583
|
base_sdk_version: "TeaSDK-2.0",
|
|
12576
|
-
sdk_version: "1.12.
|
|
12584
|
+
sdk_version: "1.12.16",
|
|
12577
12585
|
_prod_code: "RISKPLUS",
|
|
12578
12586
|
_prod_channel: "undefined",
|
|
12579
12587
|
};
|