@antchain/riskplus 1.16.24 → 1.16.25
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 +6 -0
- package/dist/client.js +13 -1
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +25 -1
package/dist/client.d.ts
CHANGED
|
@@ -3268,6 +3268,7 @@ export declare class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
|
|
|
3268
3268
|
repayType: string;
|
|
3269
3269
|
orderNo: string;
|
|
3270
3270
|
validRepayAmount?: string;
|
|
3271
|
+
bankCardNo?: string;
|
|
3271
3272
|
static names(): {
|
|
3272
3273
|
[key: string]: string;
|
|
3273
3274
|
};
|
|
@@ -3338,6 +3339,7 @@ export declare class ApplyDubbridgeUsecreditRequest extends $tea.Model {
|
|
|
3338
3339
|
customType?: string;
|
|
3339
3340
|
riskData?: string;
|
|
3340
3341
|
loanInstCode?: string;
|
|
3342
|
+
bankCardNo?: string;
|
|
3341
3343
|
static names(): {
|
|
3342
3344
|
[key: string]: string;
|
|
3343
3345
|
};
|
|
@@ -3559,6 +3561,10 @@ export declare class QueryDubbridgeRepayResultResponse extends $tea.Model {
|
|
|
3559
3561
|
failReason?: string;
|
|
3560
3562
|
repayInfos?: RepayInfos[];
|
|
3561
3563
|
repayDate?: string;
|
|
3564
|
+
repayAmount?: number;
|
|
3565
|
+
repayPrincipal?: number;
|
|
3566
|
+
repayInterest?: number;
|
|
3567
|
+
repayPunish?: number;
|
|
3562
3568
|
static names(): {
|
|
3563
3569
|
[key: string]: string;
|
|
3564
3570
|
};
|
package/dist/client.js
CHANGED
|
@@ -5151,6 +5151,7 @@ class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
|
|
|
5151
5151
|
repayType: 'repay_type',
|
|
5152
5152
|
orderNo: 'order_no',
|
|
5153
5153
|
validRepayAmount: 'valid_repay_amount',
|
|
5154
|
+
bankCardNo: 'bank_card_no',
|
|
5154
5155
|
};
|
|
5155
5156
|
}
|
|
5156
5157
|
static types() {
|
|
@@ -5161,6 +5162,7 @@ class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
|
|
|
5161
5162
|
repayType: 'string',
|
|
5162
5163
|
orderNo: 'string',
|
|
5163
5164
|
validRepayAmount: 'string',
|
|
5165
|
+
bankCardNo: 'string',
|
|
5164
5166
|
};
|
|
5165
5167
|
}
|
|
5166
5168
|
}
|
|
@@ -5251,6 +5253,7 @@ class ApplyDubbridgeUsecreditRequest extends $tea.Model {
|
|
|
5251
5253
|
customType: 'custom_type',
|
|
5252
5254
|
riskData: 'risk_data',
|
|
5253
5255
|
loanInstCode: 'loan_inst_code',
|
|
5256
|
+
bankCardNo: 'bank_card_no',
|
|
5254
5257
|
};
|
|
5255
5258
|
}
|
|
5256
5259
|
static types() {
|
|
@@ -5269,6 +5272,7 @@ class ApplyDubbridgeUsecreditRequest extends $tea.Model {
|
|
|
5269
5272
|
customType: 'string',
|
|
5270
5273
|
riskData: 'string',
|
|
5271
5274
|
loanInstCode: 'string',
|
|
5275
|
+
bankCardNo: 'string',
|
|
5272
5276
|
};
|
|
5273
5277
|
}
|
|
5274
5278
|
}
|
|
@@ -5590,6 +5594,10 @@ class QueryDubbridgeRepayResultResponse extends $tea.Model {
|
|
|
5590
5594
|
failReason: 'fail_reason',
|
|
5591
5595
|
repayInfos: 'repay_infos',
|
|
5592
5596
|
repayDate: 'repay_date',
|
|
5597
|
+
repayAmount: 'repay_amount',
|
|
5598
|
+
repayPrincipal: 'repay_principal',
|
|
5599
|
+
repayInterest: 'repay_interest',
|
|
5600
|
+
repayPunish: 'repay_punish',
|
|
5593
5601
|
};
|
|
5594
5602
|
}
|
|
5595
5603
|
static types() {
|
|
@@ -5607,6 +5615,10 @@ class QueryDubbridgeRepayResultResponse extends $tea.Model {
|
|
|
5607
5615
|
failReason: 'string',
|
|
5608
5616
|
repayInfos: { 'type': 'array', 'itemType': RepayInfos },
|
|
5609
5617
|
repayDate: 'string',
|
|
5618
|
+
repayAmount: 'number',
|
|
5619
|
+
repayPrincipal: 'number',
|
|
5620
|
+
repayInterest: 'number',
|
|
5621
|
+
repayPunish: 'number',
|
|
5610
5622
|
};
|
|
5611
5623
|
}
|
|
5612
5624
|
}
|
|
@@ -9855,7 +9867,7 @@ class Client {
|
|
|
9855
9867
|
req_msg_id: alipay_util_1.default.getNonce(),
|
|
9856
9868
|
access_key: this._accessKeyId,
|
|
9857
9869
|
base_sdk_version: "TeaSDK-2.0",
|
|
9858
|
-
sdk_version: "1.16.
|
|
9870
|
+
sdk_version: "1.16.25",
|
|
9859
9871
|
_prod_code: "RISKPLUS",
|
|
9860
9872
|
_prod_channel: "undefined",
|
|
9861
9873
|
};
|