@freelog/tools-lib 0.1.198 → 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.
- package/dist/service-API/payment.d.ts +7 -2
- package/dist/tools-lib.cjs.development.js +9 -1
- package/dist/tools-lib.cjs.development.js.map +1 -1
- package/dist/tools-lib.cjs.production.min.js +1 -1
- package/dist/tools-lib.cjs.production.min.js.map +1 -1
- package/dist/tools-lib.esm.js +9 -1
- package/dist/tools-lib.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/service-API/payment.ts +17 -2
package/dist/tools-lib.esm.js
CHANGED
|
@@ -3488,6 +3488,13 @@ function queryTransactionList(params, config) {
|
|
|
3488
3488
|
params: params
|
|
3489
3489
|
}, config));
|
|
3490
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
|
+
}
|
|
3491
3498
|
|
|
3492
3499
|
var Payment = {
|
|
3493
3500
|
__proto__: null,
|
|
@@ -3501,7 +3508,8 @@ var Payment = {
|
|
|
3501
3508
|
queryWithdrawStatus: queryWithdrawStatus,
|
|
3502
3509
|
withdrawCash: withdrawCash,
|
|
3503
3510
|
queryWithdrawCashList: queryWithdrawCashList,
|
|
3504
|
-
queryTransactionList: queryTransactionList
|
|
3511
|
+
queryTransactionList: queryTransactionList,
|
|
3512
|
+
queryStatistics: queryStatistics
|
|
3505
3513
|
};
|
|
3506
3514
|
|
|
3507
3515
|
var FServiceAPI = {
|