@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/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -7911,6 +7911,8 @@ export class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
|
|
|
7911
7911
|
orderNo: string;
|
|
7912
7912
|
// 校验还款金额
|
|
7913
7913
|
validRepayAmount?: string;
|
|
7914
|
+
// 银行卡号
|
|
7915
|
+
bankCardNo?: string;
|
|
7914
7916
|
static names(): { [key: string]: string } {
|
|
7915
7917
|
return {
|
|
7916
7918
|
authToken: 'auth_token',
|
|
@@ -7919,6 +7921,7 @@ export class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
|
|
|
7919
7921
|
repayType: 'repay_type',
|
|
7920
7922
|
orderNo: 'order_no',
|
|
7921
7923
|
validRepayAmount: 'valid_repay_amount',
|
|
7924
|
+
bankCardNo: 'bank_card_no',
|
|
7922
7925
|
};
|
|
7923
7926
|
}
|
|
7924
7927
|
|
|
@@ -7930,6 +7933,7 @@ export class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
|
|
|
7930
7933
|
repayType: 'string',
|
|
7931
7934
|
orderNo: 'string',
|
|
7932
7935
|
validRepayAmount: 'string',
|
|
7936
|
+
bankCardNo: 'string',
|
|
7933
7937
|
};
|
|
7934
7938
|
}
|
|
7935
7939
|
|
|
@@ -8061,6 +8065,8 @@ export class ApplyDubbridgeUsecreditRequest extends $tea.Model {
|
|
|
8061
8065
|
riskData?: string;
|
|
8062
8066
|
// 资金源编码
|
|
8063
8067
|
loanInstCode?: string;
|
|
8068
|
+
// 银行卡号
|
|
8069
|
+
bankCardNo?: string;
|
|
8064
8070
|
static names(): { [key: string]: string } {
|
|
8065
8071
|
return {
|
|
8066
8072
|
authToken: 'auth_token',
|
|
@@ -8077,6 +8083,7 @@ export class ApplyDubbridgeUsecreditRequest extends $tea.Model {
|
|
|
8077
8083
|
customType: 'custom_type',
|
|
8078
8084
|
riskData: 'risk_data',
|
|
8079
8085
|
loanInstCode: 'loan_inst_code',
|
|
8086
|
+
bankCardNo: 'bank_card_no',
|
|
8080
8087
|
};
|
|
8081
8088
|
}
|
|
8082
8089
|
|
|
@@ -8096,6 +8103,7 @@ export class ApplyDubbridgeUsecreditRequest extends $tea.Model {
|
|
|
8096
8103
|
customType: 'string',
|
|
8097
8104
|
riskData: 'string',
|
|
8098
8105
|
loanInstCode: 'string',
|
|
8106
|
+
bankCardNo: 'string',
|
|
8099
8107
|
};
|
|
8100
8108
|
}
|
|
8101
8109
|
|
|
@@ -8587,6 +8595,14 @@ export class QueryDubbridgeRepayResultResponse extends $tea.Model {
|
|
|
8587
8595
|
repayInfos?: RepayInfos[];
|
|
8588
8596
|
// 还款日期
|
|
8589
8597
|
repayDate?: string;
|
|
8598
|
+
// 实还总额
|
|
8599
|
+
repayAmount?: number;
|
|
8600
|
+
// 实还总本金
|
|
8601
|
+
repayPrincipal?: number;
|
|
8602
|
+
// 实还总利息
|
|
8603
|
+
repayInterest?: number;
|
|
8604
|
+
// 实收总罚息
|
|
8605
|
+
repayPunish?: number;
|
|
8590
8606
|
static names(): { [key: string]: string } {
|
|
8591
8607
|
return {
|
|
8592
8608
|
reqMsgId: 'req_msg_id',
|
|
@@ -8602,6 +8618,10 @@ export class QueryDubbridgeRepayResultResponse extends $tea.Model {
|
|
|
8602
8618
|
failReason: 'fail_reason',
|
|
8603
8619
|
repayInfos: 'repay_infos',
|
|
8604
8620
|
repayDate: 'repay_date',
|
|
8621
|
+
repayAmount: 'repay_amount',
|
|
8622
|
+
repayPrincipal: 'repay_principal',
|
|
8623
|
+
repayInterest: 'repay_interest',
|
|
8624
|
+
repayPunish: 'repay_punish',
|
|
8605
8625
|
};
|
|
8606
8626
|
}
|
|
8607
8627
|
|
|
@@ -8620,6 +8640,10 @@ export class QueryDubbridgeRepayResultResponse extends $tea.Model {
|
|
|
8620
8640
|
failReason: 'string',
|
|
8621
8641
|
repayInfos: { 'type': 'array', 'itemType': RepayInfos },
|
|
8622
8642
|
repayDate: 'string',
|
|
8643
|
+
repayAmount: 'number',
|
|
8644
|
+
repayPrincipal: 'number',
|
|
8645
|
+
repayInterest: 'number',
|
|
8646
|
+
repayPunish: 'number',
|
|
8623
8647
|
};
|
|
8624
8648
|
}
|
|
8625
8649
|
|
|
@@ -15008,7 +15032,7 @@ export default class Client {
|
|
|
15008
15032
|
req_msg_id: AntchainUtil.getNonce(),
|
|
15009
15033
|
access_key: this._accessKeyId,
|
|
15010
15034
|
base_sdk_version: "TeaSDK-2.0",
|
|
15011
|
-
sdk_version: "1.16.
|
|
15035
|
+
sdk_version: "1.16.25",
|
|
15012
15036
|
_prod_code: "RISKPLUS",
|
|
15013
15037
|
_prod_channel: "undefined",
|
|
15014
15038
|
};
|