@freelog/tools-lib 0.1.197 → 0.1.199

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,20 @@ 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
+ }
3491
+ function queryStatistics(params, config) {
3492
+ return FUtil.Request(_extends({
3493
+ method: 'GET',
3494
+ url: "/v3/transactions/statistics",
3495
+ params: params
3496
+ }, config));
3497
+ }
3498
3498
 
3499
3499
  var Payment = {
3500
3500
  __proto__: null,
@@ -3507,7 +3507,9 @@ var Payment = {
3507
3507
  queryBindWithdrawCard: queryBindWithdrawCard,
3508
3508
  queryWithdrawStatus: queryWithdrawStatus,
3509
3509
  withdrawCash: withdrawCash,
3510
- queryWithdrawCashList: queryWithdrawCashList
3510
+ queryWithdrawCashList: queryWithdrawCashList,
3511
+ queryTransactionList: queryTransactionList,
3512
+ queryStatistics: queryStatistics
3511
3513
  };
3512
3514
 
3513
3515
  var FServiceAPI = {