@freelog/tools-lib 0.2.0 → 0.2.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.
@@ -3495,6 +3495,13 @@ function queryStatistics(params, config) {
3495
3495
  params: params
3496
3496
  }, config));
3497
3497
  }
3498
+ function queryFee(params, config) {
3499
+ return FUtil.Request(_extends({
3500
+ method: 'GET',
3501
+ url: "/v3/transactions/withdrawCashFeeCalculate",
3502
+ params: params
3503
+ }, config));
3504
+ }
3498
3505
 
3499
3506
  var Payment = {
3500
3507
  __proto__: null,
@@ -3509,7 +3516,8 @@ var Payment = {
3509
3516
  withdrawCash: withdrawCash,
3510
3517
  queryWithdrawCashList: queryWithdrawCashList,
3511
3518
  queryTransactionList: queryTransactionList,
3512
- queryStatistics: queryStatistics
3519
+ queryStatistics: queryStatistics,
3520
+ queryFee: queryFee
3513
3521
  };
3514
3522
 
3515
3523
  var FServiceAPI = {