데이터 정보 수정

This commit is contained in:
2025-03-26 15:30:07 +09:00
parent a333f55f81
commit daf4c62aa7
3 changed files with 32 additions and 3 deletions

View File

@@ -20,6 +20,7 @@ export {
CurrencyType,
languageType,
opLandCategoryType,
opLandOwnedType
opLandOwnedType,
opSuccessType
} from './options'
export {benItems, MinuteList, HourList, caliumRequestInitData, STATUS_STYLES, months} from './data'

View File

@@ -235,6 +235,18 @@ export const opLandInfoStatusType = [
{ value: 'AUCTION_RUNNING', name: '경매 진행' },
];
export const opInitDataType = [
{ value: 'None', name: '' },
{ value: 'LandAuction', name: '랜드경매' },
{ value: 'LandOwned', name: '랜드소유자' },
{ value: 'LandDesc', name: '랜드문구' },
];
export const opSuccessType = [
{ value: true, name: '성공' },
{ value: false, name: '실패' },
];
// export const logAction = [
// { value: "None", name: "ALL" },
// { value: "AIChatDeleteCharacter", name: "NPC 삭제" },
@@ -559,8 +571,10 @@ export const logAction = [
{ value: "BeaconSell", name: "BeaconSell" },
{ value: "BrokerApiAdmin", name: "BrokerApiAdmin" },
{ value: "BrokerApiPlanetAuth", name: "BrokerApiPlanetAuth" },
{ value: "BrokerApiUserExchangeComplete", name: "BrokerApiUserExchangeComplete" },
{ value: "BrokerApiUserExchangeOrder", name: "BrokerApiUserExchangeOrder" },
{ value: "BrokerApiUserExchangeOrderCompleted", name: "BrokerApiUserExchangeOrderCompleted" },
{ value: "BrokerApiUserExchangeOrderCreated", name: "BrokerApiUserExchangeOrderCreated" },
{ value: "BrokerApiUserSystemMailSend", name: "BrokerApiUserSystemMailSend" },
{ value: "BrokerApiUserEchoSystemRequest", name: "BrokerApiUserEchoSystemRequest" },
{ value: "BrokerApiUserLogin", name: "BrokerApiUserLogin" },
{ value: "BuffAdd", name: "BuffAdd" },
{ value: "BuffDelete", name: "BuffDelete" },

View File

@@ -1,4 +1,5 @@
export const authType = {
none: 0,
adminSearchRead: 1,
adminSearchConfirm: 2,
adminSearchUpdate: 3,
@@ -48,8 +49,21 @@ export const authType = {
battleEventUpdate: 47,
battleEventDelete: 48,
businessLogRead: 49,
levelReader: 999,
levelMaster: 9999,
levelDeveloper: 99999,
};
export const adminAuthLevel = {
NONE: "None",
READER: "Reader",
MASTER: "Master",
DEVELOPER: "Developer",
}
export const TabList = [
{ title: '기본정보' },
{ title: '아바타' },