@freelog/tools-lib 0.2.0 → 0.2.5
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 +5 -0
- 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 +15 -0
package/dist/tools-lib.esm.js
CHANGED
|
@@ -3495,6 +3495,13 @@ function queryStatistics(params, config) {
|
|
|
3495
3495
|
params: params
|
|
3496
3496
|
}, config));
|
|
3497
3497
|
}
|
|
3498
|
+
function queryFee(params, config) {
|
|
3499
|
+
return FUtil.Request(_extends({
|
|
3500
|
+
method: 'GET',
|
|
3501
|
+
url: "/v3/transactions/withdrawCashFeeCalculate",
|
|
3502
|
+
params: params
|
|
3503
|
+
}, config));
|
|
3504
|
+
}
|
|
3498
3505
|
|
|
3499
3506
|
var Payment = {
|
|
3500
3507
|
__proto__: null,
|
|
@@ -3509,7 +3516,8 @@ var Payment = {
|
|
|
3509
3516
|
withdrawCash: withdrawCash,
|
|
3510
3517
|
queryWithdrawCashList: queryWithdrawCashList,
|
|
3511
3518
|
queryTransactionList: queryTransactionList,
|
|
3512
|
-
queryStatistics: queryStatistics
|
|
3519
|
+
queryStatistics: queryStatistics,
|
|
3520
|
+
queryFee: queryFee
|
|
3513
3521
|
};
|
|
3514
3522
|
|
|
3515
3523
|
var FServiceAPI = {
|