@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.
- package/dist/service-API/payment.d.ts +19 -0
- package/dist/tools-lib.cjs.development.js +17 -15
- 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 +17 -15
- package/dist/tools-lib.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/service-API/payment.ts +37 -14
package/dist/tools-lib.esm.js
CHANGED
|
@@ -3481,20 +3481,20 @@ function queryWithdrawCashList(params, config) {
|
|
|
3481
3481
|
params: params
|
|
3482
3482
|
}, config));
|
|
3483
3483
|
}
|
|
3484
|
-
|
|
3485
|
-
|
|
3486
|
-
|
|
3487
|
-
|
|
3488
|
-
|
|
3489
|
-
|
|
3490
|
-
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
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 = {
|