가맹점 정보, 일부 상수 및 공용 변경

This commit is contained in:
focp212@naver.com
2025-09-18 14:52:27 +09:00
parent 2910b20974
commit 9ba7bdd3e4
50 changed files with 623 additions and 748 deletions

View File

@@ -0,0 +1,16 @@
import {
API_BASE_URL,
API_URL_KEY,
} from './../constants/url';
/* nmsa-merchant-controller */
export const API_URL_MERCHANT = {
merchantMid: (mid: string) => {
// POST: 가맹점 정보 조회 API
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/app/merchant/${mid}`;
},
merchantMidStatus: (mid: string) => {
// POST: 가맹점 등록 현황 조회 API
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/app/merchant/${mid}/status`;
}
};