From bd526b1878132e9091d77f2ee7b0ea19ae9935f0 Mon Sep 17 00:00:00 2001 From: Alex Cheung Date: Tue, 16 Apr 2024 14:29:14 +0800 Subject: [PATCH] api update --- src/utils/ApiPathConst.js | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/utils/ApiPathConst.js b/src/utils/ApiPathConst.js index 3a50e42..156f04f 100644 --- a/src/utils/ApiPathConst.js +++ b/src/utils/ApiPathConst.js @@ -1,4 +1,7 @@ -import {apiPath, paymentPath} from "../auth/utils"; +import { + apiPath, + // paymentPath +} from "../auth/utils"; // GET request export const REFRESH_TOKEN = "/refresh-token" @@ -148,9 +151,12 @@ export const PAYMENT_APP_LIST = apiPath+'/payment/applist';//POST export const PAYMENT_CHECK = apiPath+'/payment/check-payment';//GET export const PAYMENT_LIMIT_SETTING_LIST = apiPath+'/settings/payment';//GET -export const PAYMENT_AVAILABLE_PAYMENT = paymentPath+'/api/payment/availability';//POST -export const PAYMENT_TRANSACTION_ID = paymentPath+'/api/payment/transaction';//GET -export const PAYMENT_STATUS_API = paymentPath+'/api/payment/status/';//GET +// export const PAYMENT_AVAILABLE_PAYMENT = paymentPath+'/api/payment/availability';//POST +export const PAYMENT_AVAILABLE_PAYMENT = apiPath+'/payment/api/availability';//POST +// export const PAYMENT_TRANSACTION_ID = paymentPath+'/api/payment/transaction';//GET +export const PAYMENT_TRANSACTION_ID = apiPath+'/payment/api/transaction';//GET +// export const PAYMENT_STATUS_API = paymentPath+'/api/payment/status/';//POST +export const PAYMENT_STATUS_API = apiPath+'/payment/api/status/';//POST export const DEMAND_NOTE_PREVIEW = apiPath+'/demandNote/preview';//GET export const DEMAND_NOTE_CREATE = apiPath+'/demandNote/create';//POST