@antchain/riskplus 1.16.23 → 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 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;
@@ -3252,6 +3268,7 @@ export declare class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
3252
3268
  repayType: string;
3253
3269
  orderNo: string;
3254
3270
  validRepayAmount?: string;
3271
+ bankCardNo?: string;
3255
3272
  static names(): {
3256
3273
  [key: string]: string;
3257
3274
  };
@@ -3322,6 +3339,7 @@ export declare class ApplyDubbridgeUsecreditRequest extends $tea.Model {
3322
3339
  customType?: string;
3323
3340
  riskData?: string;
3324
3341
  loanInstCode?: string;
3342
+ bankCardNo?: string;
3325
3343
  static names(): {
3326
3344
  [key: string]: string;
3327
3345
  };
@@ -3543,6 +3561,10 @@ export declare class QueryDubbridgeRepayResultResponse extends $tea.Model {
3543
3561
  failReason?: string;
3544
3562
  repayInfos?: RepayInfos[];
3545
3563
  repayDate?: string;
3564
+ repayAmount?: number;
3565
+ repayPrincipal?: number;
3566
+ repayInterest?: number;
3567
+ repayPunish?: number;
3546
3568
  static names(): {
3547
3569
  [key: string]: string;
3548
3570
  };
@@ -3652,6 +3674,36 @@ export declare class QueryDubbridgeLoanUpgradestatusResponse extends $tea.Model
3652
3674
  [key: string]: any;
3653
3675
  });
3654
3676
  }
3677
+ export declare class QueryDubbridgeCustomerBankcardlistRequest extends $tea.Model {
3678
+ authToken?: string;
3679
+ productInstanceId?: string;
3680
+ customerNo: string;
3681
+ fundCode: string;
3682
+ static names(): {
3683
+ [key: string]: string;
3684
+ };
3685
+ static types(): {
3686
+ [key: string]: any;
3687
+ };
3688
+ constructor(map?: {
3689
+ [key: string]: any;
3690
+ });
3691
+ }
3692
+ export declare class QueryDubbridgeCustomerBankcardlistResponse extends $tea.Model {
3693
+ reqMsgId?: string;
3694
+ resultCode?: string;
3695
+ resultMsg?: string;
3696
+ customerBankCardInfoList?: CustomerBankCardInfo[];
3697
+ static names(): {
3698
+ [key: string]: string;
3699
+ };
3700
+ static types(): {
3701
+ [key: string]: any;
3702
+ };
3703
+ constructor(map?: {
3704
+ [key: string]: any;
3705
+ });
3706
+ }
3655
3707
  export declare class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
3656
3708
  authToken?: string;
3657
3709
  productInstanceId?: string;
@@ -7031,6 +7083,18 @@ export default class Client {
7031
7083
  queryDubbridgeLoanUpgradestatusEx(request: QueryDubbridgeLoanUpgradestatusRequest, headers: {
7032
7084
  [key: string]: string;
7033
7085
  }, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeLoanUpgradestatusResponse>;
7086
+ /**
7087
+ * Description: 支付签约查询(用户绑定银行卡列表)
7088
+ * Summary: 支付签约查询(用户绑定银行卡列表)
7089
+ */
7090
+ queryDubbridgeCustomerBankcardlist(request: QueryDubbridgeCustomerBankcardlistRequest): Promise<QueryDubbridgeCustomerBankcardlistResponse>;
7091
+ /**
7092
+ * Description: 支付签约查询(用户绑定银行卡列表)
7093
+ * Summary: 支付签约查询(用户绑定银行卡列表)
7094
+ */
7095
+ queryDubbridgeCustomerBankcardlistEx(request: QueryDubbridgeCustomerBankcardlistRequest, headers: {
7096
+ [key: string]: string;
7097
+ }, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeCustomerBankcardlistResponse>;
7034
7098
  /**
7035
7099
  * Description: 四要素认证首先调用此接口
7036
7100
  * 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) {
@@ -5126,6 +5151,7 @@ class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
5126
5151
  repayType: 'repay_type',
5127
5152
  orderNo: 'order_no',
5128
5153
  validRepayAmount: 'valid_repay_amount',
5154
+ bankCardNo: 'bank_card_no',
5129
5155
  };
5130
5156
  }
5131
5157
  static types() {
@@ -5136,6 +5162,7 @@ class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
5136
5162
  repayType: 'string',
5137
5163
  orderNo: 'string',
5138
5164
  validRepayAmount: 'string',
5165
+ bankCardNo: 'string',
5139
5166
  };
5140
5167
  }
5141
5168
  }
@@ -5226,6 +5253,7 @@ class ApplyDubbridgeUsecreditRequest extends $tea.Model {
5226
5253
  customType: 'custom_type',
5227
5254
  riskData: 'risk_data',
5228
5255
  loanInstCode: 'loan_inst_code',
5256
+ bankCardNo: 'bank_card_no',
5229
5257
  };
5230
5258
  }
5231
5259
  static types() {
@@ -5244,6 +5272,7 @@ class ApplyDubbridgeUsecreditRequest extends $tea.Model {
5244
5272
  customType: 'string',
5245
5273
  riskData: 'string',
5246
5274
  loanInstCode: 'string',
5275
+ bankCardNo: 'string',
5247
5276
  };
5248
5277
  }
5249
5278
  }
@@ -5565,6 +5594,10 @@ class QueryDubbridgeRepayResultResponse extends $tea.Model {
5565
5594
  failReason: 'fail_reason',
5566
5595
  repayInfos: 'repay_infos',
5567
5596
  repayDate: 'repay_date',
5597
+ repayAmount: 'repay_amount',
5598
+ repayPrincipal: 'repay_principal',
5599
+ repayInterest: 'repay_interest',
5600
+ repayPunish: 'repay_punish',
5568
5601
  };
5569
5602
  }
5570
5603
  static types() {
@@ -5582,6 +5615,10 @@ class QueryDubbridgeRepayResultResponse extends $tea.Model {
5582
5615
  failReason: 'string',
5583
5616
  repayInfos: { 'type': 'array', 'itemType': RepayInfos },
5584
5617
  repayDate: 'string',
5618
+ repayAmount: 'number',
5619
+ repayPrincipal: 'number',
5620
+ repayInterest: 'number',
5621
+ repayPunish: 'number',
5585
5622
  };
5586
5623
  }
5587
5624
  }
@@ -5736,6 +5773,50 @@ class QueryDubbridgeLoanUpgradestatusResponse extends $tea.Model {
5736
5773
  }
5737
5774
  }
5738
5775
  exports.QueryDubbridgeLoanUpgradestatusResponse = QueryDubbridgeLoanUpgradestatusResponse;
5776
+ class QueryDubbridgeCustomerBankcardlistRequest extends $tea.Model {
5777
+ constructor(map) {
5778
+ super(map);
5779
+ }
5780
+ static names() {
5781
+ return {
5782
+ authToken: 'auth_token',
5783
+ productInstanceId: 'product_instance_id',
5784
+ customerNo: 'customer_no',
5785
+ fundCode: 'fund_code',
5786
+ };
5787
+ }
5788
+ static types() {
5789
+ return {
5790
+ authToken: 'string',
5791
+ productInstanceId: 'string',
5792
+ customerNo: 'string',
5793
+ fundCode: 'string',
5794
+ };
5795
+ }
5796
+ }
5797
+ exports.QueryDubbridgeCustomerBankcardlistRequest = QueryDubbridgeCustomerBankcardlistRequest;
5798
+ class QueryDubbridgeCustomerBankcardlistResponse extends $tea.Model {
5799
+ constructor(map) {
5800
+ super(map);
5801
+ }
5802
+ static names() {
5803
+ return {
5804
+ reqMsgId: 'req_msg_id',
5805
+ resultCode: 'result_code',
5806
+ resultMsg: 'result_msg',
5807
+ customerBankCardInfoList: 'customer_bank_card_info_list',
5808
+ };
5809
+ }
5810
+ static types() {
5811
+ return {
5812
+ reqMsgId: 'string',
5813
+ resultCode: 'string',
5814
+ resultMsg: 'string',
5815
+ customerBankCardInfoList: { 'type': 'array', 'itemType': CustomerBankCardInfo },
5816
+ };
5817
+ }
5818
+ }
5819
+ exports.QueryDubbridgeCustomerBankcardlistResponse = QueryDubbridgeCustomerBankcardlistResponse;
5739
5820
  class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
5740
5821
  constructor(map) {
5741
5822
  super(map);
@@ -9786,7 +9867,7 @@ class Client {
9786
9867
  req_msg_id: alipay_util_1.default.getNonce(),
9787
9868
  access_key: this._accessKeyId,
9788
9869
  base_sdk_version: "TeaSDK-2.0",
9789
- sdk_version: "1.16.23",
9870
+ sdk_version: "1.16.25",
9790
9871
  _prod_code: "RISKPLUS",
9791
9872
  _prod_channel: "undefined",
9792
9873
  };
@@ -10879,6 +10960,23 @@ class Client {
10879
10960
  tea_util_1.default.validateModel(request);
10880
10961
  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
10962
  }
10963
+ /**
10964
+ * Description: 支付签约查询(用户绑定银行卡列表)
10965
+ * Summary: 支付签约查询(用户绑定银行卡列表)
10966
+ */
10967
+ async queryDubbridgeCustomerBankcardlist(request) {
10968
+ let runtime = new $Util.RuntimeOptions({});
10969
+ let headers = {};
10970
+ return await this.queryDubbridgeCustomerBankcardlistEx(request, headers, runtime);
10971
+ }
10972
+ /**
10973
+ * Description: 支付签约查询(用户绑定银行卡列表)
10974
+ * Summary: 支付签约查询(用户绑定银行卡列表)
10975
+ */
10976
+ async queryDubbridgeCustomerBankcardlistEx(request, headers, runtime) {
10977
+ tea_util_1.default.validateModel(request);
10978
+ return $tea.cast(await this.doRequest("1.0", "riskplus.dubbridge.customer.bankcardlist.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeCustomerBankcardlistResponse({}));
10979
+ }
10882
10980
  /**
10883
10981
  * Description: 四要素认证首先调用此接口
10884
10982
  * Summary: 芝麻四要素接口