@antchain/riskplus 1.13.3 → 1.13.5

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
@@ -389,6 +389,12 @@ export declare class RepayResult extends $tea.Model {
389
389
  status: string;
390
390
  settleDate: string;
391
391
  tradeDate: string;
392
+ alreadyGuaranteeFee: number;
393
+ alreadyLiquidatedDamages: number;
394
+ restGuaranteeFee: number;
395
+ restLiquidatedDamages: number;
396
+ needGuaranteeFee: number;
397
+ needLiquidatedDamages: number;
392
398
  static names(): {
393
399
  [key: string]: string;
394
400
  };
@@ -2977,6 +2983,8 @@ export declare class QueryDubbridgeRepayInfoResponse extends $tea.Model {
2977
2983
  repayStatus?: string;
2978
2984
  failReason?: string;
2979
2985
  applyNo?: string;
2986
+ guaranteeFee?: number;
2987
+ liquidatedDamages?: number;
2980
2988
  static names(): {
2981
2989
  [key: string]: string;
2982
2990
  };
@@ -3075,6 +3083,8 @@ export declare class CountDubbridgeRepayTrialResponse extends $tea.Model {
3075
3083
  realInterest?: number;
3076
3084
  realOverAmt?: number;
3077
3085
  serviceCharge?: number;
3086
+ realGuaranteeFee?: number;
3087
+ realLiquidatedDamages?: number;
3078
3088
  static names(): {
3079
3089
  [key: string]: string;
3080
3090
  };
@@ -3161,6 +3171,7 @@ export declare class ApplyDubbridgeUsecreditRequest extends $tea.Model {
3161
3171
  orderNo: string;
3162
3172
  repayType: string;
3163
3173
  loanWay: string;
3174
+ repayDate: string;
3164
3175
  static names(): {
3165
3176
  [key: string]: string;
3166
3177
  };
@@ -3208,6 +3219,8 @@ export declare class QueryDubbridgeUsecreditStatusResponse extends $tea.Model {
3208
3219
  msg?: string;
3209
3220
  receiptInfo?: ReceiptInfo;
3210
3221
  repayRef?: RepayRef[];
3222
+ disburseContractNo?: string;
3223
+ creditContractNo?: string;
3211
3224
  static names(): {
3212
3225
  [key: string]: string;
3213
3226
  };
@@ -3414,6 +3427,7 @@ export declare class NotifyDubbridgeCallbackRequest extends $tea.Model {
3414
3427
  channelCode: string;
3415
3428
  bizParam: string;
3416
3429
  bizType: string;
3430
+ seqNo: string;
3417
3431
  static names(): {
3418
3432
  [key: string]: string;
3419
3433
  };
@@ -5606,6 +5620,11 @@ export declare class SendUmktCardsmsBatchRequest extends $tea.Model {
5606
5620
  phoneNumberJson: string;
5607
5621
  signNameJson: string;
5608
5622
  smsUpExtendCodeJson?: string;
5623
+ fallbackType?: string;
5624
+ fallbackTemplateCode?: string;
5625
+ fallbackTemplateParamJson?: string;
5626
+ templateCode?: string;
5627
+ templateParamJson?: string;
5609
5628
  static names(): {
5610
5629
  [key: string]: string;
5611
5630
  };
@@ -5623,6 +5642,8 @@ export declare class SendUmktCardsmsBatchResponse extends $tea.Model {
5623
5642
  bizCardId?: string;
5624
5643
  mediaMobiles?: string;
5625
5644
  notMediaMobiles?: string;
5645
+ bizId?: string;
5646
+ bizDigitalId?: string;
5626
5647
  static names(): {
5627
5648
  [key: string]: string;
5628
5649
  };
package/dist/client.js CHANGED
@@ -620,6 +620,12 @@ class RepayResult extends $tea.Model {
620
620
  status: 'status',
621
621
  settleDate: 'settle_date',
622
622
  tradeDate: 'trade_date',
623
+ alreadyGuaranteeFee: 'already_guarantee_fee',
624
+ alreadyLiquidatedDamages: 'already_liquidated_damages',
625
+ restGuaranteeFee: 'rest_guarantee_fee',
626
+ restLiquidatedDamages: 'rest_liquidated_damages',
627
+ needGuaranteeFee: 'need_guarantee_fee',
628
+ needLiquidatedDamages: 'need_liquidated_damages',
623
629
  };
624
630
  }
625
631
  static types() {
@@ -647,6 +653,12 @@ class RepayResult extends $tea.Model {
647
653
  status: 'string',
648
654
  settleDate: 'string',
649
655
  tradeDate: 'string',
656
+ alreadyGuaranteeFee: 'number',
657
+ alreadyLiquidatedDamages: 'number',
658
+ restGuaranteeFee: 'number',
659
+ restLiquidatedDamages: 'number',
660
+ needGuaranteeFee: 'number',
661
+ needLiquidatedDamages: 'number',
650
662
  };
651
663
  }
652
664
  }
@@ -4663,6 +4675,8 @@ class QueryDubbridgeRepayInfoResponse extends $tea.Model {
4663
4675
  repayStatus: 'repay_status',
4664
4676
  failReason: 'fail_reason',
4665
4677
  applyNo: 'apply_no',
4678
+ guaranteeFee: 'guarantee_fee',
4679
+ liquidatedDamages: 'liquidated_damages',
4666
4680
  };
4667
4681
  }
4668
4682
  static types() {
@@ -4691,6 +4705,8 @@ class QueryDubbridgeRepayInfoResponse extends $tea.Model {
4691
4705
  repayStatus: 'string',
4692
4706
  failReason: 'string',
4693
4707
  applyNo: 'string',
4708
+ guaranteeFee: 'number',
4709
+ liquidatedDamages: 'number',
4694
4710
  };
4695
4711
  }
4696
4712
  }
@@ -4828,6 +4844,8 @@ class CountDubbridgeRepayTrialResponse extends $tea.Model {
4828
4844
  realInterest: 'real_interest',
4829
4845
  realOverAmt: 'real_over_amt',
4830
4846
  serviceCharge: 'service_charge',
4847
+ realGuaranteeFee: 'real_guarantee_fee',
4848
+ realLiquidatedDamages: 'real_liquidated_damages',
4831
4849
  };
4832
4850
  }
4833
4851
  static types() {
@@ -4839,6 +4857,8 @@ class CountDubbridgeRepayTrialResponse extends $tea.Model {
4839
4857
  realInterest: 'number',
4840
4858
  realOverAmt: 'number',
4841
4859
  serviceCharge: 'number',
4860
+ realGuaranteeFee: 'number',
4861
+ realLiquidatedDamages: 'number',
4842
4862
  };
4843
4863
  }
4844
4864
  }
@@ -4958,6 +4978,7 @@ class ApplyDubbridgeUsecreditRequest extends $tea.Model {
4958
4978
  orderNo: 'order_no',
4959
4979
  repayType: 'repay_type',
4960
4980
  loanWay: 'loan_way',
4981
+ repayDate: 'repay_date',
4961
4982
  };
4962
4983
  }
4963
4984
  static types() {
@@ -4971,6 +4992,7 @@ class ApplyDubbridgeUsecreditRequest extends $tea.Model {
4971
4992
  orderNo: 'string',
4972
4993
  repayType: 'string',
4973
4994
  loanWay: 'string',
4995
+ repayDate: 'string',
4974
4996
  };
4975
4997
  }
4976
4998
  }
@@ -5030,6 +5052,8 @@ class QueryDubbridgeUsecreditStatusResponse extends $tea.Model {
5030
5052
  msg: 'msg',
5031
5053
  receiptInfo: 'receipt_info',
5032
5054
  repayRef: 'repay_ref',
5055
+ disburseContractNo: 'disburse_contract_no',
5056
+ creditContractNo: 'credit_contract_no',
5033
5057
  };
5034
5058
  }
5035
5059
  static types() {
@@ -5041,6 +5065,8 @@ class QueryDubbridgeUsecreditStatusResponse extends $tea.Model {
5041
5065
  msg: 'string',
5042
5066
  receiptInfo: ReceiptInfo,
5043
5067
  repayRef: { 'type': 'array', 'itemType': RepayRef },
5068
+ disburseContractNo: 'string',
5069
+ creditContractNo: 'string',
5044
5070
  };
5045
5071
  }
5046
5072
  }
@@ -5340,6 +5366,7 @@ class NotifyDubbridgeCallbackRequest extends $tea.Model {
5340
5366
  channelCode: 'channel_code',
5341
5367
  bizParam: 'biz_param',
5342
5368
  bizType: 'biz_type',
5369
+ seqNo: 'seq_no',
5343
5370
  };
5344
5371
  }
5345
5372
  static types() {
@@ -5349,6 +5376,7 @@ class NotifyDubbridgeCallbackRequest extends $tea.Model {
5349
5376
  channelCode: 'string',
5350
5377
  bizParam: 'string',
5351
5378
  bizType: 'string',
5379
+ seqNo: 'string',
5352
5380
  };
5353
5381
  }
5354
5382
  }
@@ -8664,6 +8692,11 @@ class SendUmktCardsmsBatchRequest extends $tea.Model {
8664
8692
  phoneNumberJson: 'phone_number_json',
8665
8693
  signNameJson: 'sign_name_json',
8666
8694
  smsUpExtendCodeJson: 'sms_up_extend_code_json',
8695
+ fallbackType: 'fallback_type',
8696
+ fallbackTemplateCode: 'fallback_template_code',
8697
+ fallbackTemplateParamJson: 'fallback_template_param_json',
8698
+ templateCode: 'template_code',
8699
+ templateParamJson: 'template_param_json',
8667
8700
  };
8668
8701
  }
8669
8702
  static types() {
@@ -8677,6 +8710,11 @@ class SendUmktCardsmsBatchRequest extends $tea.Model {
8677
8710
  phoneNumberJson: 'string',
8678
8711
  signNameJson: 'string',
8679
8712
  smsUpExtendCodeJson: 'string',
8713
+ fallbackType: 'string',
8714
+ fallbackTemplateCode: 'string',
8715
+ fallbackTemplateParamJson: 'string',
8716
+ templateCode: 'string',
8717
+ templateParamJson: 'string',
8680
8718
  };
8681
8719
  }
8682
8720
  }
@@ -8693,6 +8731,8 @@ class SendUmktCardsmsBatchResponse extends $tea.Model {
8693
8731
  bizCardId: 'biz_card_id',
8694
8732
  mediaMobiles: 'media_mobiles',
8695
8733
  notMediaMobiles: 'not_media_mobiles',
8734
+ bizId: 'biz_id',
8735
+ bizDigitalId: 'biz_digital_id',
8696
8736
  };
8697
8737
  }
8698
8738
  static types() {
@@ -8703,6 +8743,8 @@ class SendUmktCardsmsBatchResponse extends $tea.Model {
8703
8743
  bizCardId: 'string',
8704
8744
  mediaMobiles: 'string',
8705
8745
  notMediaMobiles: 'string',
8746
+ bizId: 'string',
8747
+ bizDigitalId: 'string',
8706
8748
  };
8707
8749
  }
8708
8750
  }
@@ -8899,9 +8941,7 @@ class Client {
8899
8941
  req_msg_id: alipay_util_1.default.getNonce(),
8900
8942
  access_key: this._accessKeyId,
8901
8943
  base_sdk_version: "TeaSDK-2.0",
8902
- sdk_version: "1.13.3",
8903
- _prod_code: "RISKPLUS",
8904
- _prod_channel: "undefined",
8944
+ sdk_version: "1.13.5",
8905
8945
  };
8906
8946
  if (!tea_util_1.default.empty(this._securityToken)) {
8907
8947
  request_.query["security_token"] = this._securityToken;