@antchain/riskplus 1.16.23 → 1.16.24
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 +58 -0
- package/dist/client.js +87 -1
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +120 -1
package/dist/client.d.ts
CHANGED
|
@@ -491,6 +491,22 @@ export declare class RtopCompanyRiskFactor extends $tea.Model {
|
|
|
491
491
|
[key: string]: any;
|
|
492
492
|
});
|
|
493
493
|
}
|
|
494
|
+
export declare class CustomerBankCardInfo extends $tea.Model {
|
|
495
|
+
bankName: string;
|
|
496
|
+
bankCode: string;
|
|
497
|
+
bankCardNo: string;
|
|
498
|
+
signed?: string;
|
|
499
|
+
acctBankCard?: string;
|
|
500
|
+
static names(): {
|
|
501
|
+
[key: string]: string;
|
|
502
|
+
};
|
|
503
|
+
static types(): {
|
|
504
|
+
[key: string]: any;
|
|
505
|
+
};
|
|
506
|
+
constructor(map?: {
|
|
507
|
+
[key: string]: any;
|
|
508
|
+
});
|
|
509
|
+
}
|
|
494
510
|
export declare class Material extends $tea.Model {
|
|
495
511
|
mType: string;
|
|
496
512
|
bigCode: string;
|
|
@@ -3652,6 +3668,36 @@ export declare class QueryDubbridgeLoanUpgradestatusResponse extends $tea.Model
|
|
|
3652
3668
|
[key: string]: any;
|
|
3653
3669
|
});
|
|
3654
3670
|
}
|
|
3671
|
+
export declare class QueryDubbridgeCustomerBankcardlistRequest extends $tea.Model {
|
|
3672
|
+
authToken?: string;
|
|
3673
|
+
productInstanceId?: string;
|
|
3674
|
+
customerNo: string;
|
|
3675
|
+
fundCode: string;
|
|
3676
|
+
static names(): {
|
|
3677
|
+
[key: string]: string;
|
|
3678
|
+
};
|
|
3679
|
+
static types(): {
|
|
3680
|
+
[key: string]: any;
|
|
3681
|
+
};
|
|
3682
|
+
constructor(map?: {
|
|
3683
|
+
[key: string]: any;
|
|
3684
|
+
});
|
|
3685
|
+
}
|
|
3686
|
+
export declare class QueryDubbridgeCustomerBankcardlistResponse extends $tea.Model {
|
|
3687
|
+
reqMsgId?: string;
|
|
3688
|
+
resultCode?: string;
|
|
3689
|
+
resultMsg?: string;
|
|
3690
|
+
customerBankCardInfoList?: CustomerBankCardInfo[];
|
|
3691
|
+
static names(): {
|
|
3692
|
+
[key: string]: string;
|
|
3693
|
+
};
|
|
3694
|
+
static types(): {
|
|
3695
|
+
[key: string]: any;
|
|
3696
|
+
};
|
|
3697
|
+
constructor(map?: {
|
|
3698
|
+
[key: string]: any;
|
|
3699
|
+
});
|
|
3700
|
+
}
|
|
3655
3701
|
export declare class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
|
|
3656
3702
|
authToken?: string;
|
|
3657
3703
|
productInstanceId?: string;
|
|
@@ -7031,6 +7077,18 @@ export default class Client {
|
|
|
7031
7077
|
queryDubbridgeLoanUpgradestatusEx(request: QueryDubbridgeLoanUpgradestatusRequest, headers: {
|
|
7032
7078
|
[key: string]: string;
|
|
7033
7079
|
}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeLoanUpgradestatusResponse>;
|
|
7080
|
+
/**
|
|
7081
|
+
* Description: 支付签约查询(用户绑定银行卡列表)
|
|
7082
|
+
* Summary: 支付签约查询(用户绑定银行卡列表)
|
|
7083
|
+
*/
|
|
7084
|
+
queryDubbridgeCustomerBankcardlist(request: QueryDubbridgeCustomerBankcardlistRequest): Promise<QueryDubbridgeCustomerBankcardlistResponse>;
|
|
7085
|
+
/**
|
|
7086
|
+
* Description: 支付签约查询(用户绑定银行卡列表)
|
|
7087
|
+
* Summary: 支付签约查询(用户绑定银行卡列表)
|
|
7088
|
+
*/
|
|
7089
|
+
queryDubbridgeCustomerBankcardlistEx(request: QueryDubbridgeCustomerBankcardlistRequest, headers: {
|
|
7090
|
+
[key: string]: string;
|
|
7091
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeCustomerBankcardlistResponse>;
|
|
7034
7092
|
/**
|
|
7035
7093
|
* Description: 四要素认证首先调用此接口
|
|
7036
7094
|
* Summary: 芝麻四要素接口
|
package/dist/client.js
CHANGED
|
@@ -793,6 +793,31 @@ class RtopCompanyRiskFactor extends $tea.Model {
|
|
|
793
793
|
}
|
|
794
794
|
}
|
|
795
795
|
exports.RtopCompanyRiskFactor = RtopCompanyRiskFactor;
|
|
796
|
+
// 用户绑定银行卡列表
|
|
797
|
+
class CustomerBankCardInfo extends $tea.Model {
|
|
798
|
+
constructor(map) {
|
|
799
|
+
super(map);
|
|
800
|
+
}
|
|
801
|
+
static names() {
|
|
802
|
+
return {
|
|
803
|
+
bankName: 'bank_name',
|
|
804
|
+
bankCode: 'bank_code',
|
|
805
|
+
bankCardNo: 'bank_card_no',
|
|
806
|
+
signed: 'signed',
|
|
807
|
+
acctBankCard: 'acct_bank_card',
|
|
808
|
+
};
|
|
809
|
+
}
|
|
810
|
+
static types() {
|
|
811
|
+
return {
|
|
812
|
+
bankName: 'string',
|
|
813
|
+
bankCode: 'string',
|
|
814
|
+
bankCardNo: 'string',
|
|
815
|
+
signed: 'string',
|
|
816
|
+
acctBankCard: 'string',
|
|
817
|
+
};
|
|
818
|
+
}
|
|
819
|
+
}
|
|
820
|
+
exports.CustomerBankCardInfo = CustomerBankCardInfo;
|
|
796
821
|
// 天枢系统专用Material结构体
|
|
797
822
|
class Material extends $tea.Model {
|
|
798
823
|
constructor(map) {
|
|
@@ -5736,6 +5761,50 @@ class QueryDubbridgeLoanUpgradestatusResponse extends $tea.Model {
|
|
|
5736
5761
|
}
|
|
5737
5762
|
}
|
|
5738
5763
|
exports.QueryDubbridgeLoanUpgradestatusResponse = QueryDubbridgeLoanUpgradestatusResponse;
|
|
5764
|
+
class QueryDubbridgeCustomerBankcardlistRequest extends $tea.Model {
|
|
5765
|
+
constructor(map) {
|
|
5766
|
+
super(map);
|
|
5767
|
+
}
|
|
5768
|
+
static names() {
|
|
5769
|
+
return {
|
|
5770
|
+
authToken: 'auth_token',
|
|
5771
|
+
productInstanceId: 'product_instance_id',
|
|
5772
|
+
customerNo: 'customer_no',
|
|
5773
|
+
fundCode: 'fund_code',
|
|
5774
|
+
};
|
|
5775
|
+
}
|
|
5776
|
+
static types() {
|
|
5777
|
+
return {
|
|
5778
|
+
authToken: 'string',
|
|
5779
|
+
productInstanceId: 'string',
|
|
5780
|
+
customerNo: 'string',
|
|
5781
|
+
fundCode: 'string',
|
|
5782
|
+
};
|
|
5783
|
+
}
|
|
5784
|
+
}
|
|
5785
|
+
exports.QueryDubbridgeCustomerBankcardlistRequest = QueryDubbridgeCustomerBankcardlistRequest;
|
|
5786
|
+
class QueryDubbridgeCustomerBankcardlistResponse extends $tea.Model {
|
|
5787
|
+
constructor(map) {
|
|
5788
|
+
super(map);
|
|
5789
|
+
}
|
|
5790
|
+
static names() {
|
|
5791
|
+
return {
|
|
5792
|
+
reqMsgId: 'req_msg_id',
|
|
5793
|
+
resultCode: 'result_code',
|
|
5794
|
+
resultMsg: 'result_msg',
|
|
5795
|
+
customerBankCardInfoList: 'customer_bank_card_info_list',
|
|
5796
|
+
};
|
|
5797
|
+
}
|
|
5798
|
+
static types() {
|
|
5799
|
+
return {
|
|
5800
|
+
reqMsgId: 'string',
|
|
5801
|
+
resultCode: 'string',
|
|
5802
|
+
resultMsg: 'string',
|
|
5803
|
+
customerBankCardInfoList: { 'type': 'array', 'itemType': CustomerBankCardInfo },
|
|
5804
|
+
};
|
|
5805
|
+
}
|
|
5806
|
+
}
|
|
5807
|
+
exports.QueryDubbridgeCustomerBankcardlistResponse = QueryDubbridgeCustomerBankcardlistResponse;
|
|
5739
5808
|
class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
|
|
5740
5809
|
constructor(map) {
|
|
5741
5810
|
super(map);
|
|
@@ -9786,7 +9855,7 @@ class Client {
|
|
|
9786
9855
|
req_msg_id: alipay_util_1.default.getNonce(),
|
|
9787
9856
|
access_key: this._accessKeyId,
|
|
9788
9857
|
base_sdk_version: "TeaSDK-2.0",
|
|
9789
|
-
sdk_version: "1.16.
|
|
9858
|
+
sdk_version: "1.16.24",
|
|
9790
9859
|
_prod_code: "RISKPLUS",
|
|
9791
9860
|
_prod_channel: "undefined",
|
|
9792
9861
|
};
|
|
@@ -10879,6 +10948,23 @@ class Client {
|
|
|
10879
10948
|
tea_util_1.default.validateModel(request);
|
|
10880
10949
|
return $tea.cast(await this.doRequest("1.0", "riskplus.dubbridge.loan.upgradestatus.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeLoanUpgradestatusResponse({}));
|
|
10881
10950
|
}
|
|
10951
|
+
/**
|
|
10952
|
+
* Description: 支付签约查询(用户绑定银行卡列表)
|
|
10953
|
+
* Summary: 支付签约查询(用户绑定银行卡列表)
|
|
10954
|
+
*/
|
|
10955
|
+
async queryDubbridgeCustomerBankcardlist(request) {
|
|
10956
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
10957
|
+
let headers = {};
|
|
10958
|
+
return await this.queryDubbridgeCustomerBankcardlistEx(request, headers, runtime);
|
|
10959
|
+
}
|
|
10960
|
+
/**
|
|
10961
|
+
* Description: 支付签约查询(用户绑定银行卡列表)
|
|
10962
|
+
* Summary: 支付签约查询(用户绑定银行卡列表)
|
|
10963
|
+
*/
|
|
10964
|
+
async queryDubbridgeCustomerBankcardlistEx(request, headers, runtime) {
|
|
10965
|
+
tea_util_1.default.validateModel(request);
|
|
10966
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.dubbridge.customer.bankcardlist.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeCustomerBankcardlistResponse({}));
|
|
10967
|
+
}
|
|
10882
10968
|
/**
|
|
10883
10969
|
* Description: 四要素认证首先调用此接口
|
|
10884
10970
|
* Summary: 芝麻四要素接口
|