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