@freelog/tools-lib 0.1.196 → 0.1.197

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.
@@ -3460,6 +3460,13 @@ function queryBindWithdrawCard(_ref4, config) {
3460
3460
  url: "/v3/transactions/accounts/" + accountId + "/cashCard"
3461
3461
  }, config));
3462
3462
  }
3463
+ function queryWithdrawStatus(params, config) {
3464
+ return FUtil.Request(_extends({
3465
+ method: 'GET',
3466
+ url: "/v3/transactions/withdrawCash/check",
3467
+ params: params
3468
+ }, config));
3469
+ }
3463
3470
  function withdrawCash(params, config) {
3464
3471
  return FUtil.Request(_extends({
3465
3472
  method: 'POST',
@@ -3498,6 +3505,7 @@ var Payment = {
3498
3505
  queryFinancialAccountInfo: queryFinancialAccountInfo,
3499
3506
  queryFinancialAccountInfo2: queryFinancialAccountInfo2,
3500
3507
  queryBindWithdrawCard: queryBindWithdrawCard,
3508
+ queryWithdrawStatus: queryWithdrawStatus,
3501
3509
  withdrawCash: withdrawCash,
3502
3510
  queryWithdrawCashList: queryWithdrawCashList
3503
3511
  };