@freelog/tools-lib 0.1.196 → 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 +20 -2
- 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 +39 -16
package/dist/tools-lib.esm.js
CHANGED
|
@@ -3460,6 +3460,13 @@ function queryBindWithdrawCard(_ref4, config) {
|
|
|
3460
3460
|
url: "/v3/transactions/accounts/" + accountId + "/cashCard"
|
|
3461
3461
|
}, config));
|
|
3462
3462
|
}
|
|
3463
|
+
function queryWithdrawStatus(params, config) {
|
|
3464
|
+
return FUtil.Request(_extends({
|
|
3465
|
+
method: 'GET',
|
|
3466
|
+
url: "/v3/transactions/withdrawCash/check",
|
|
3467
|
+
params: params
|
|
3468
|
+
}, config));
|
|
3469
|
+
}
|
|
3463
3470
|
function withdrawCash(params, config) {
|
|
3464
3471
|
return FUtil.Request(_extends({
|
|
3465
3472
|
method: 'POST',
|
|
@@ -3474,20 +3481,13 @@ function queryWithdrawCashList(params, config) {
|
|
|
3474
3481
|
params: params
|
|
3475
3482
|
}, config));
|
|
3476
3483
|
}
|
|
3477
|
-
|
|
3478
|
-
|
|
3479
|
-
|
|
3480
|
-
|
|
3481
|
-
|
|
3482
|
-
|
|
3483
|
-
|
|
3484
|
-
// return FUtil.Request({
|
|
3485
|
-
// method: 'GET',
|
|
3486
|
-
// url: `/v3/transactions/transaction/list`,
|
|
3487
|
-
// params: params,
|
|
3488
|
-
// ...config,
|
|
3489
|
-
// });
|
|
3490
|
-
// }
|
|
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
3491
|
|
|
3492
3492
|
var Payment = {
|
|
3493
3493
|
__proto__: null,
|
|
@@ -3498,8 +3498,10 @@ var Payment = {
|
|
|
3498
3498
|
queryFinancialAccountInfo: queryFinancialAccountInfo,
|
|
3499
3499
|
queryFinancialAccountInfo2: queryFinancialAccountInfo2,
|
|
3500
3500
|
queryBindWithdrawCard: queryBindWithdrawCard,
|
|
3501
|
+
queryWithdrawStatus: queryWithdrawStatus,
|
|
3501
3502
|
withdrawCash: withdrawCash,
|
|
3502
|
-
queryWithdrawCashList: queryWithdrawCashList
|
|
3503
|
+
queryWithdrawCashList: queryWithdrawCashList,
|
|
3504
|
+
queryTransactionList: queryTransactionList
|
|
3503
3505
|
};
|
|
3504
3506
|
|
|
3505
3507
|
var FServiceAPI = {
|