@freelog/tools-lib 0.1.197 → 0.1.198

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.
@@ -3481,20 +3481,13 @@ function queryWithdrawCashList(params, config) {
3481
3481
  params: params
3482
3482
  }, config));
3483
3483
  }
3484
- // 交易记录分页列表查询
3485
- // interface QueryTransactionListParamsType {
3486
- // skip?: number;
3487
- // limit?: number;
3488
- // accountId: string;
3489
- // }
3490
- // export function queryTransactionList(params: QueryTransactionListParamsType, config?: AxiosRequestConfig) {
3491
- // return FUtil.Request({
3492
- // method: 'GET',
3493
- // url: `/v3/transactions/transaction/list`,
3494
- // params: params,
3495
- // ...config,
3496
- // });
3497
- // }
3484
+ function queryTransactionList(params, config) {
3485
+ return FUtil.Request(_extends({
3486
+ method: 'GET',
3487
+ url: "/v3/transactions/records",
3488
+ params: params
3489
+ }, config));
3490
+ }
3498
3491
 
3499
3492
  var Payment = {
3500
3493
  __proto__: null,
@@ -3507,7 +3500,8 @@ var Payment = {
3507
3500
  queryBindWithdrawCard: queryBindWithdrawCard,
3508
3501
  queryWithdrawStatus: queryWithdrawStatus,
3509
3502
  withdrawCash: withdrawCash,
3510
- queryWithdrawCashList: queryWithdrawCashList
3503
+ queryWithdrawCashList: queryWithdrawCashList,
3504
+ queryTransactionList: queryTransactionList
3511
3505
  };
3512
3506
 
3513
3507
  var FServiceAPI = {