maplestory-openapi 2.13.0 → 3.0.0
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/README.md +37 -6
- package/dist/cjs/_virtual/_commonjsHelpers.js +7 -0
- package/dist/cjs/_virtual/index.js_commonjs-exports.js +7 -0
- package/dist/cjs/_virtual/index.js_commonjs-exports2.js +7 -0
- package/dist/cjs/_virtual/index.js_commonjs-exports3.js +7 -0
- package/dist/cjs/_virtual/timezone.js_commonjs-module.js +7 -0
- package/dist/cjs/_virtual/utc.js_commonjs-module.js +7 -0
- package/dist/cjs/index.js +133 -0
- package/dist/cjs/maplestory/api/common/dto/character/character.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterAbility.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterAndroidEquipment.js +29 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterBasic.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterBeautyEquipment.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterCashItemEquipment.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterDojang.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterHexaMatrix.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterHexaMatrixStat.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterHyperStat.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterImage.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterItemEquipment.js +38 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterLinkSkill.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterList.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterPetEquipment.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterPopularity.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterPropensity.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterSetEffect.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterSkill.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterStat.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterSymbolEquipment.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterVMatrix.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/guild/guild.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/guild/guildBasic.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/union/union.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/union/unionArtifact.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/union/unionRaider.js +23 -0
- package/dist/cjs/maplestory/api/common/enum/characterImage.js +94 -0
- package/dist/cjs/maplestory/api/common/enum/potentialOptionGrade.js +11 -0
- package/dist/cjs/maplestory/api/common/lib.js +26 -0
- package/dist/cjs/maplestory/api/common/mapleStoryApi.js +121 -0
- package/dist/cjs/maplestory/api/common/mapleStoryApiError.js +50 -0
- package/dist/cjs/maplestory/api/kms/dto/character/character.js +22 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterAbility.js +108 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterAndroidEquipment.js +418 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterBasic.js +99 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterBeautyEquipment.js +172 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterCashItemEquipment.js +228 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterDojang.js +49 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterHexaMatrix.js +73 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterHexaMatrixStat.js +113 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterHyperStat.js +97 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterImage.js +81 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterItemEquipment.js +1173 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterLinkSkill.js +115 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterList.js +77 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterPetEquipment.js +332 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterPopularity.js +27 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterPropensity.js +52 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterSetEffect.js +97 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterSkill.js +77 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterStat.js +57 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterSymbolEquipment.js +119 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterVMatrix.js +88 -0
- package/dist/cjs/maplestory/api/kms/dto/guild/guild.js +22 -0
- package/dist/cjs/maplestory/api/kms/dto/guild/guildBasic.js +107 -0
- package/dist/cjs/maplestory/api/kms/dto/history/cubeHistory.js +165 -0
- package/dist/cjs/maplestory/api/kms/dto/history/potentialHistory.js +160 -0
- package/dist/cjs/maplestory/api/kms/dto/history/starforceHistory.js +159 -0
- package/dist/cjs/maplestory/api/kms/dto/inspectionInfo.js +34 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/cashshopNoticeDetail.js +55 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/cashshopNoticeList.js +69 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/eventNoticeDetail.js +44 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/eventNoticeList.js +58 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/noticeDetail.js +34 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/noticeList.js +48 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/updateNoticeDetail.js +34 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/updateNoticeList.js +48 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/achievementRanking.js +68 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/dojangRanking.js +73 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/guildRanking.js +68 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/overallRanking.js +78 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/theSeedRanking.js +73 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/unionRanking.js +68 -0
- package/dist/cjs/maplestory/api/kms/dto/union/union.js +47 -0
- package/dist/cjs/maplestory/api/kms/dto/union/unionArtifact.js +111 -0
- package/dist/cjs/maplestory/api/kms/dto/union/unionChampion.js +77 -0
- package/dist/cjs/maplestory/api/kms/dto/union/unionRaider.js +209 -0
- package/dist/cjs/maplestory/api/kms/kms.js +170 -0
- package/dist/cjs/maplestory/api/kms/mapleStoryApi.js +1321 -0
- package/dist/cjs/maplestory/api/msea/dto/character/character.js +22 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterAbility.js +108 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterAndroidEquipment.js +419 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterBasic.js +99 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterBeautyEquipment.js +172 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterCashItemEquipment.js +223 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterDojang.js +49 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterHexaMatrix.js +73 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterHexaMatrixStat.js +113 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterHyperStat.js +97 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterImage.js +81 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterItemEquipment.js +1112 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterLinkSkill.js +115 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterPetEquipment.js +332 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterPopularity.js +27 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterPropensity.js +52 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterSetEffect.js +97 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterSkill.js +77 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterStat.js +57 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterSymbolEquipment.js +119 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterVMatrix.js +88 -0
- package/dist/cjs/maplestory/api/msea/dto/guild/guild.js +22 -0
- package/dist/cjs/maplestory/api/msea/dto/guild/guildBasic.js +107 -0
- package/dist/cjs/maplestory/api/msea/dto/union/union.js +47 -0
- package/dist/cjs/maplestory/api/msea/dto/union/unionArtifact.js +111 -0
- package/dist/cjs/maplestory/api/msea/dto/union/unionRaider.js +214 -0
- package/dist/cjs/maplestory/api/msea/mapleStoryApi.js +802 -0
- package/dist/cjs/maplestory/api/msea/msea.js +109 -0
- package/dist/cjs/node_modules/base64-js/index.js +154 -0
- package/dist/cjs/node_modules/buffer/index.js +2116 -0
- package/dist/cjs/node_modules/dayjs/plugin/timezone.js +12 -0
- package/dist/cjs/node_modules/dayjs/plugin/utc.js +12 -0
- package/dist/cjs/node_modules/ieee754/index.js +92 -0
- package/dist/esm/_virtual/_commonjsHelpers.js +3 -0
- package/dist/esm/_virtual/index.js_commonjs-exports.js +3 -0
- package/dist/esm/_virtual/index.js_commonjs-exports2.js +3 -0
- package/dist/esm/_virtual/index.js_commonjs-exports3.js +3 -0
- package/dist/esm/_virtual/timezone.js_commonjs-module.js +3 -0
- package/dist/esm/_virtual/utc.js_commonjs-module.js +3 -0
- package/dist/esm/index.js +30 -0
- package/dist/esm/maplestory/api/common/dto/character/character.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterAbility.js +8 -0
- package/dist/esm/maplestory/api/common/dto/character/characterAndroidEquipment.js +18 -0
- package/dist/esm/maplestory/api/common/dto/character/characterBasic.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterBeautyEquipment.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterCashItemEquipment.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterDojang.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterHexaMatrix.js +8 -0
- package/dist/esm/maplestory/api/common/dto/character/characterHexaMatrixStat.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterHyperStat.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterImage.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterItemEquipment.js +24 -0
- package/dist/esm/maplestory/api/common/dto/character/characterLinkSkill.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterList.js +8 -0
- package/dist/esm/maplestory/api/common/dto/character/characterPetEquipment.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterPopularity.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterPropensity.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterSetEffect.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterSkill.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterStat.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterSymbolEquipment.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterVMatrix.js +6 -0
- package/dist/esm/maplestory/api/common/dto/guild/guild.js +4 -0
- package/dist/esm/maplestory/api/common/dto/guild/guildBasic.js +6 -0
- package/dist/esm/maplestory/api/common/dto/union/union.js +4 -0
- package/dist/esm/maplestory/api/common/dto/union/unionArtifact.js +8 -0
- package/dist/esm/maplestory/api/common/dto/union/unionRaider.js +14 -0
- package/dist/esm/maplestory/api/common/enum/characterImage.js +92 -0
- package/dist/esm/maplestory/api/common/enum/potentialOptionGrade.js +9 -0
- package/dist/esm/maplestory/api/common/lib.js +22 -0
- package/dist/esm/maplestory/api/common/mapleStoryApi.js +112 -0
- package/dist/esm/maplestory/api/common/mapleStoryApiError.js +46 -0
- package/dist/esm/maplestory/api/kms/dto/character/character.js +18 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterAbility.js +102 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterAndroidEquipment.js +407 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterBasic.js +95 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterBeautyEquipment.js +165 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterCashItemEquipment.js +221 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterDojang.js +45 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterHexaMatrix.js +67 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterHexaMatrixStat.js +108 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterHyperStat.js +92 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterImage.js +77 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterItemEquipment.js +1158 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterLinkSkill.js +110 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterList.js +71 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterPetEquipment.js +325 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterPopularity.js +23 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterPropensity.js +48 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterSetEffect.js +90 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterSkill.js +72 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterStat.js +52 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterSymbolEquipment.js +114 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterVMatrix.js +83 -0
- package/dist/esm/maplestory/api/kms/dto/guild/guild.js +18 -0
- package/dist/esm/maplestory/api/kms/dto/guild/guildBasic.js +102 -0
- package/dist/esm/maplestory/api/kms/dto/history/cubeHistory.js +159 -0
- package/dist/esm/maplestory/api/kms/dto/history/potentialHistory.js +154 -0
- package/dist/esm/maplestory/api/kms/dto/history/starforceHistory.js +153 -0
- package/dist/esm/maplestory/api/kms/dto/inspectionInfo.js +30 -0
- package/dist/esm/maplestory/api/kms/dto/notice/cashshopNoticeDetail.js +51 -0
- package/dist/esm/maplestory/api/kms/dto/notice/cashshopNoticeList.js +64 -0
- package/dist/esm/maplestory/api/kms/dto/notice/eventNoticeDetail.js +40 -0
- package/dist/esm/maplestory/api/kms/dto/notice/eventNoticeList.js +53 -0
- package/dist/esm/maplestory/api/kms/dto/notice/noticeDetail.js +30 -0
- package/dist/esm/maplestory/api/kms/dto/notice/noticeList.js +43 -0
- package/dist/esm/maplestory/api/kms/dto/notice/updateNoticeDetail.js +30 -0
- package/dist/esm/maplestory/api/kms/dto/notice/updateNoticeList.js +43 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/achievementRanking.js +63 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/dojangRanking.js +68 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/guildRanking.js +63 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/overallRanking.js +73 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/theSeedRanking.js +68 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/unionRanking.js +63 -0
- package/dist/esm/maplestory/api/kms/dto/union/union.js +43 -0
- package/dist/esm/maplestory/api/kms/dto/union/unionArtifact.js +105 -0
- package/dist/esm/maplestory/api/kms/dto/union/unionChampion.js +71 -0
- package/dist/esm/maplestory/api/kms/dto/union/unionRaider.js +200 -0
- package/dist/esm/maplestory/api/kms/kms.js +47 -0
- package/dist/esm/maplestory/api/kms/mapleStoryApi.js +1312 -0
- package/dist/esm/maplestory/api/msea/dto/character/character.js +18 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterAbility.js +102 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterAndroidEquipment.js +408 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterBasic.js +95 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterBeautyEquipment.js +165 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterCashItemEquipment.js +216 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterDojang.js +45 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterHexaMatrix.js +67 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterHexaMatrixStat.js +108 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterHyperStat.js +92 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterImage.js +77 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterItemEquipment.js +1098 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterLinkSkill.js +110 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterPetEquipment.js +325 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterPopularity.js +23 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterPropensity.js +48 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterSetEffect.js +90 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterSkill.js +72 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterStat.js +52 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterSymbolEquipment.js +114 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterVMatrix.js +83 -0
- package/dist/esm/maplestory/api/msea/dto/guild/guild.js +18 -0
- package/dist/esm/maplestory/api/msea/dto/guild/guildBasic.js +102 -0
- package/dist/esm/maplestory/api/msea/dto/union/union.js +43 -0
- package/dist/esm/maplestory/api/msea/dto/union/unionArtifact.js +105 -0
- package/dist/esm/maplestory/api/msea/dto/union/unionRaider.js +205 -0
- package/dist/esm/maplestory/api/msea/mapleStoryApi.js +794 -0
- package/dist/esm/maplestory/api/msea/msea.js +27 -0
- package/dist/esm/node_modules/base64-js/index.js +151 -0
- package/dist/esm/node_modules/buffer/index.js +2113 -0
- package/dist/esm/node_modules/dayjs/plugin/timezone.js +10 -0
- package/dist/esm/node_modules/dayjs/plugin/utc.js +10 -0
- package/dist/esm/node_modules/ieee754/index.js +89 -0
- package/dist/index.min.js +1 -10
- package/package.json +14 -3
- package/types/index.d.ts +30 -111
- package/types/maplestory/api/common/dto/character/character.d.ts +3 -0
- package/types/maplestory/api/common/dto/character/characterAbility.d.ts +19 -0
- package/types/maplestory/api/common/dto/character/characterAndroidEquipment.d.ts +77 -0
- package/types/maplestory/api/common/dto/character/characterBasic.d.ts +18 -0
- package/types/maplestory/api/common/dto/character/characterBeautyEquipment.d.ts +30 -0
- package/types/maplestory/api/common/dto/character/characterCashItemEquipment.d.ts +40 -0
- package/types/maplestory/api/common/dto/character/characterDojang.d.ts +8 -0
- package/types/maplestory/api/common/dto/character/characterHexaMatrix.d.ts +13 -0
- package/types/maplestory/api/common/dto/character/characterHexaMatrixStat.d.ts +20 -0
- package/types/maplestory/api/common/dto/character/characterHyperStat.d.ts +18 -0
- package/types/maplestory/api/common/dto/character/characterImage.d.ts +16 -0
- package/types/maplestory/api/common/dto/character/characterItemEquipment.d.ts +216 -0
- package/types/maplestory/api/common/dto/character/characterLinkSkill.d.ts +20 -0
- package/types/maplestory/api/common/dto/character/characterList.d.ts +14 -0
- package/types/maplestory/api/common/dto/character/characterPetEquipment.d.ts +59 -0
- package/types/maplestory/api/common/dto/character/characterPopularity.d.ts +4 -0
- package/types/maplestory/api/common/dto/character/characterPropensity.d.ts +9 -0
- package/types/maplestory/api/common/dto/character/characterSetEffect.d.ts +18 -0
- package/types/maplestory/api/common/dto/character/characterSkill.d.ts +14 -0
- package/types/maplestory/api/common/dto/character/characterStat.d.ts +10 -0
- package/types/maplestory/api/common/dto/character/characterSymbolEquipment.d.ts +22 -0
- package/types/maplestory/api/common/dto/character/characterVMatrix.d.ts +16 -0
- package/types/maplestory/api/common/dto/guild/guild.d.ts +3 -0
- package/types/maplestory/api/common/dto/guild/guildBasic.d.ts +20 -0
- package/types/maplestory/api/common/dto/union/union.d.ts +8 -0
- package/types/maplestory/api/common/dto/union/unionArtifact.d.ts +20 -0
- package/types/maplestory/api/common/dto/union/unionRaider.d.ts +38 -0
- package/types/maplestory/api/common/enum/characterImage.d.ts +87 -0
- package/types/maplestory/api/common/enum/potentialOptionGrade.d.ts +6 -0
- package/types/maplestory/api/common/lib.d.ts +7 -0
- package/types/maplestory/api/common/mapleStoryApi.d.ts +140 -0
- package/types/maplestory/api/{mapleStoryApiError.d.ts → common/mapleStoryApiError.d.ts} +3 -4
- package/types/maplestory/api/common/mapleStoryApiErrorBody.d.ts +6 -0
- package/types/maplestory/api/kms/dto/character/character.d.ts +12 -0
- package/types/maplestory/api/kms/dto/character/characterAbility.d.ts +72 -0
- package/types/maplestory/api/kms/dto/character/characterAndroidEquipment.d.ts +294 -0
- package/types/maplestory/api/{dto/character/characterBasicDto.d.ts → kms/dto/character/characterBasic.d.ts} +7 -4
- package/types/maplestory/api/kms/dto/character/characterBeautyEquipment.d.ts +117 -0
- package/types/maplestory/api/kms/dto/character/characterCashItemEquipment.d.ts +158 -0
- package/types/maplestory/api/kms/dto/character/characterDojang.d.ts +32 -0
- package/types/maplestory/api/kms/dto/character/characterHexaMatrix.d.ts +48 -0
- package/types/maplestory/api/kms/dto/character/characterHexaMatrixStat.d.ts +78 -0
- package/types/maplestory/api/kms/dto/character/characterHyperStat.d.ts +70 -0
- package/types/maplestory/api/kms/dto/character/characterImage.d.ts +74 -0
- package/types/maplestory/api/kms/dto/character/characterItemEquipment.d.ts +890 -0
- package/types/maplestory/api/kms/dto/character/characterLinkSkill.d.ts +78 -0
- package/types/maplestory/api/kms/dto/character/characterList.d.ts +52 -0
- package/types/maplestory/api/{dto/character/characterPetEquipmentDto.d.ts → kms/dto/character/characterPetEquipment.d.ts} +79 -7
- package/types/maplestory/api/kms/dto/character/characterPopularity.d.ts +16 -0
- package/types/maplestory/api/kms/dto/character/characterPropensity.d.ts +36 -0
- package/types/maplestory/api/kms/dto/character/characterSetEffect.d.ts +66 -0
- package/types/maplestory/api/kms/dto/character/characterSkill.d.ts +54 -0
- package/types/maplestory/api/kms/dto/character/characterStat.d.ts +38 -0
- package/types/maplestory/api/{dto/character/characterSymbolEquipmentInfoDto.d.ts → kms/dto/character/characterSymbolEquipment.d.ts} +22 -4
- package/types/maplestory/api/kms/dto/character/characterVMatrix.d.ts +62 -0
- package/types/maplestory/api/kms/dto/guild/guild.d.ts +12 -0
- package/types/maplestory/api/kms/dto/guild/guildBasic.d.ts +78 -0
- package/types/maplestory/api/{dto/history/cubeHistoryDto.d.ts → kms/dto/history/cubeHistory.d.ts} +37 -6
- package/types/maplestory/api/{dto/history/potentialHistoryDto.d.ts → kms/dto/history/potentialHistory.d.ts} +37 -6
- package/types/maplestory/api/{dto/history/starforceHistoryDto.d.ts → kms/dto/history/starforceHistory.d.ts} +47 -5
- package/types/maplestory/api/{dto/inspectionInfoDto.d.ts → kms/dto/inspectionInfo.d.ts} +1 -2
- package/types/maplestory/api/{dto/notice/cashshopNoticeDetailDto.d.ts → kms/dto/notice/cashshopNoticeDetail.d.ts} +3 -4
- package/types/maplestory/api/{dto/notice/cashshopNoticeListItemDto.d.ts → kms/dto/notice/cashshopNoticeList.d.ts} +13 -4
- package/types/maplestory/api/{dto/notice/eventNoticeDetailDto.d.ts → kms/dto/notice/eventNoticeDetail.d.ts} +3 -4
- package/types/maplestory/api/kms/dto/notice/eventNoticeList.d.ts +41 -0
- package/types/maplestory/api/{dto/notice/noticeDetailDto.d.ts → kms/dto/notice/noticeDetail.d.ts} +3 -4
- package/types/maplestory/api/kms/dto/notice/noticeList.d.ts +33 -0
- package/types/maplestory/api/{dto/notice/updateNoticeDetailDto.d.ts → kms/dto/notice/updateNoticeDetail.d.ts} +3 -4
- package/types/maplestory/api/kms/dto/notice/updateNoticeList.d.ts +33 -0
- package/types/maplestory/api/{dto/ranking/achievementRankingDto.d.ts → kms/dto/ranking/achievementRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/dojangRankingDto.d.ts → kms/dto/ranking/dojangRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/guildRankingDto.d.ts → kms/dto/ranking/guildRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/overallRankingDto.d.ts → kms/dto/ranking/overallRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/theSeedRankingDto.d.ts → kms/dto/ranking/theSeedRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/unionRankingDto.d.ts → kms/dto/ranking/unionRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/union/unionDto.d.ts → kms/dto/union/union.d.ts} +7 -7
- package/types/maplestory/api/kms/dto/union/unionArtifact.d.ts +76 -0
- package/types/maplestory/api/kms/dto/union/unionChampion.d.ts +55 -0
- package/types/maplestory/api/kms/dto/union/unionRaider.d.ts +142 -0
- package/types/maplestory/api/kms/index.d.ts +47 -0
- package/types/maplestory/api/{mapleStoryApi.d.ts → kms/mapleStoryApi.d.ts} +94 -89
- package/types/maplestory/api/kms/response/character/characterAbilityBody.d.ts +19 -0
- package/types/maplestory/api/{response/character/characterAndroidEquipmentDtoBody.d.ts → kms/response/character/characterAndroidEquipmentBody.d.ts} +20 -21
- package/types/maplestory/api/{response/character/characterBasicDtoBody.d.ts → kms/response/character/characterBasicBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/character/characterBeautyEquipmentBody.d.ts +30 -0
- package/types/maplestory/api/kms/response/character/characterBody.d.ts +3 -0
- package/types/maplestory/api/{response/character/characterCashItemEquipmentDtoBody.d.ts → kms/response/character/characterCashItemEquipmentBody.d.ts} +17 -18
- package/types/maplestory/api/kms/response/character/characterDojangBody.d.ts +8 -0
- package/types/maplestory/api/kms/response/character/characterHexaMatrixBody.d.ts +13 -0
- package/types/maplestory/api/kms/response/character/characterHexaMatrixStatBody.d.ts +20 -0
- package/types/maplestory/api/kms/response/character/characterHyperStatBody.d.ts +18 -0
- package/types/maplestory/api/{response/character/characterItemEquipmentDtoBody.d.ts → kms/response/character/characterItemEquipmentBody.d.ts} +35 -36
- package/types/maplestory/api/kms/response/character/characterLinkSkillBody.d.ts +20 -0
- package/types/maplestory/api/kms/response/character/characterListBody.d.ts +14 -0
- package/types/maplestory/api/{response/character/characterPetEquipmentDtoBody.d.ts → kms/response/character/characterPetEquipmentBody.d.ts} +11 -12
- package/types/maplestory/api/kms/response/character/characterPopularityBody.d.ts +4 -0
- package/types/maplestory/api/kms/response/character/characterPropensityBody.d.ts +9 -0
- package/types/maplestory/api/kms/response/character/characterSetEffectBody.d.ts +18 -0
- package/types/maplestory/api/kms/response/character/characterSkillBody.d.ts +14 -0
- package/types/maplestory/api/kms/response/character/characterStatBody.d.ts +10 -0
- package/types/maplestory/api/{response/character/characterSymbolEquipmentDtoBody.d.ts → kms/response/character/characterSymbolEquipmentBody.d.ts} +4 -5
- package/types/maplestory/api/{response/character/characterVMatrixDtoBody.d.ts → kms/response/character/characterVMatrixBody.d.ts} +4 -5
- package/types/maplestory/api/{response/guild/guildBasicDtoBody.d.ts → kms/response/guild/guildBasicBody.d.ts} +4 -5
- package/types/maplestory/api/kms/response/guild/guildBody.d.ts +3 -0
- package/types/maplestory/api/kms/response/history/cubeHistoryBody.d.ts +29 -0
- package/types/maplestory/api/kms/response/history/potentialHistoryBody.d.ts +28 -0
- package/types/maplestory/api/{response/history/starforceHistoryDtoBody.d.ts → kms/response/history/starforceHistoryBody.d.ts} +14 -4
- package/types/maplestory/api/{response → kms/response}/inspectionInfoSoapBody.d.ts +1 -2
- package/types/maplestory/api/{response/notice/cashshopNoticeDetailDtoBody.d.ts → kms/response/notice/cashshopNoticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/cashshopNoticeListBody.d.ts +12 -0
- package/types/maplestory/api/{response/notice/eventNoticeDetailDtoBody.d.ts → kms/response/notice/eventNoticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/eventNoticeListBody.d.ts +11 -0
- package/types/maplestory/api/{response/notice/noticeDetailDtoBody.d.ts → kms/response/notice/noticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/noticeListBody.d.ts +9 -0
- package/types/maplestory/api/{response/notice/updateNoticeDetailDtoBody.d.ts → kms/response/notice/updateNoticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/updateNoticeListBody.d.ts +9 -0
- package/types/maplestory/api/kms/response/ranking/achievementRankingBody.d.ts +12 -0
- package/types/maplestory/api/kms/response/ranking/dojangRankingBody.d.ts +13 -0
- package/types/maplestory/api/kms/response/ranking/guildRankingBody.d.ts +12 -0
- package/types/maplestory/api/{response/ranking/overallRankingResponseDtoBody.d.ts → kms/response/ranking/overallRankingBody.d.ts} +3 -4
- package/types/maplestory/api/kms/response/ranking/rankingResponseBody.d.ts +6 -0
- package/types/maplestory/api/kms/response/ranking/theSeedRankingBody.d.ts +13 -0
- package/types/maplestory/api/kms/response/ranking/unionRankingBody.d.ts +12 -0
- package/types/maplestory/api/kms/response/union/unionArtifactBody.d.ts +19 -0
- package/types/maplestory/api/{response/union/unionDtoBody.d.ts → kms/response/union/unionBody.d.ts} +3 -4
- package/types/maplestory/api/kms/response/union/unionChampionBody.d.ts +15 -0
- package/types/maplestory/api/kms/response/union/unionRaiderBody.d.ts +38 -0
- package/types/maplestory/api/msea/dto/character/character.d.ts +12 -0
- package/types/maplestory/api/msea/dto/character/characterAbility.d.ts +72 -0
- package/types/maplestory/api/msea/dto/character/characterAndroidEquipment.d.ts +295 -0
- package/types/maplestory/api/msea/dto/character/characterBasic.d.ts +72 -0
- package/types/maplestory/api/msea/dto/character/characterBeautyEquipment.d.ts +117 -0
- package/types/maplestory/api/msea/dto/character/characterCashItemEquipment.d.ts +154 -0
- package/types/maplestory/api/msea/dto/character/characterDojang.d.ts +32 -0
- package/types/maplestory/api/msea/dto/character/characterHexaMatrix.d.ts +48 -0
- package/types/maplestory/api/msea/dto/character/characterHexaMatrixStat.d.ts +78 -0
- package/types/maplestory/api/msea/dto/character/characterHyperStat.d.ts +70 -0
- package/types/maplestory/api/msea/dto/character/characterImage.d.ts +74 -0
- package/types/maplestory/api/msea/dto/character/characterItemEquipment.d.ts +844 -0
- package/types/maplestory/api/msea/dto/character/characterLinkSkill.d.ts +78 -0
- package/types/maplestory/api/msea/dto/character/characterPetEquipment.d.ts +230 -0
- package/types/maplestory/api/msea/dto/character/characterPopularity.d.ts +16 -0
- package/types/maplestory/api/msea/dto/character/characterPropensity.d.ts +36 -0
- package/types/maplestory/api/msea/dto/character/characterSetEffect.d.ts +66 -0
- package/types/maplestory/api/msea/dto/character/characterSkill.d.ts +54 -0
- package/types/maplestory/api/msea/dto/character/characterStat.d.ts +38 -0
- package/types/maplestory/api/msea/dto/character/characterSymbolEquipment.d.ts +86 -0
- package/types/maplestory/api/msea/dto/character/characterVMatrix.d.ts +62 -0
- package/types/maplestory/api/msea/dto/guild/guild.d.ts +12 -0
- package/types/maplestory/api/msea/dto/guild/guildBasic.d.ts +78 -0
- package/types/maplestory/api/msea/dto/union/union.d.ts +32 -0
- package/types/maplestory/api/msea/dto/union/unionArtifact.d.ts +76 -0
- package/types/maplestory/api/msea/dto/union/unionRaider.d.ts +147 -0
- package/types/maplestory/api/msea/index.d.ts +27 -0
- package/types/maplestory/api/msea/mapleStoryApi.d.ts +364 -0
- package/types/maplestory/api/msea/response/character/characterAbilityBody.d.ts +19 -0
- package/types/maplestory/api/msea/response/character/characterAndroidEquipmentBody.d.ts +75 -0
- package/types/maplestory/api/msea/response/character/characterBasicBody.d.ts +16 -0
- package/types/maplestory/api/msea/response/character/characterBeautyEquipmentBody.d.ts +30 -0
- package/types/maplestory/api/msea/response/character/characterBody.d.ts +3 -0
- package/types/maplestory/api/msea/response/character/characterCashItemEquipmentBody.d.ts +38 -0
- package/types/maplestory/api/msea/response/character/characterDojangBody.d.ts +8 -0
- package/types/maplestory/api/msea/response/character/characterHexaMatrixBody.d.ts +13 -0
- package/types/maplestory/api/msea/response/character/characterHexaMatrixStatBody.d.ts +20 -0
- package/types/maplestory/api/msea/response/character/characterHyperStatBody.d.ts +18 -0
- package/types/maplestory/api/msea/response/character/characterItemEquipmentBody.d.ts +190 -0
- package/types/maplestory/api/msea/response/character/characterLinkSkillBody.d.ts +20 -0
- package/types/maplestory/api/msea/response/character/characterPetEquipmentBody.d.ts +56 -0
- package/types/maplestory/api/msea/response/character/characterPopularityBody.d.ts +4 -0
- package/types/maplestory/api/msea/response/character/characterPropensityBody.d.ts +9 -0
- package/types/maplestory/api/msea/response/character/characterSetEffectBody.d.ts +18 -0
- package/types/maplestory/api/msea/response/character/characterSkillBody.d.ts +14 -0
- package/types/maplestory/api/msea/response/character/characterStatBody.d.ts +10 -0
- package/types/maplestory/api/msea/response/character/characterSymbolEquipmentBody.d.ts +22 -0
- package/types/maplestory/api/msea/response/character/characterVMatrixBody.d.ts +16 -0
- package/types/maplestory/api/msea/response/guild/guildBasicBody.d.ts +20 -0
- package/types/maplestory/api/msea/response/guild/guildBody.d.ts +3 -0
- package/types/maplestory/api/msea/response/union/unionArtifactBody.d.ts +19 -0
- package/types/maplestory/api/msea/response/union/unionBody.d.ts +8 -0
- package/types/maplestory/api/msea/response/union/unionRaiderBody.d.ts +38 -0
- package/dist/index.js +0 -9120
- package/dist/index.mjs +0 -9002
- package/types/maplestory/api/dto/character/characterAbilityDto.d.ts +0 -42
- package/types/maplestory/api/dto/character/characterAbilityInfoDto.d.ts +0 -20
- package/types/maplestory/api/dto/character/characterAbilityPresetDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterAndroidCashItemEquipmentColoringPrismDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterAndroidCashItemEquipmentDto.d.ts +0 -58
- package/types/maplestory/api/dto/character/characterAndroidCashItemEquipmentOptionDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterAndroidEquipmentDto.d.ts +0 -85
- package/types/maplestory/api/dto/character/characterAndroidEquipmentFaceDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterAndroidEquipmentHairDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterAndroidEquipmentPresetDto.d.ts +0 -59
- package/types/maplestory/api/dto/character/characterAndroidEquipmentSkinDto.d.ts +0 -28
- package/types/maplestory/api/dto/character/characterBeautyEquipmentDto.d.ts +0 -50
- package/types/maplestory/api/dto/character/characterBeautyEquipmentFaceDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterBeautyEquipmentHairDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterBeautyEquipmentSkinDto.d.ts +0 -28
- package/types/maplestory/api/dto/character/characterCashItemEquipmentColoringPrismDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterCashItemEquipmentDto.d.ts +0 -61
- package/types/maplestory/api/dto/character/characterCashItemEquipmentOptionDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterCashItemEquipmentPresetDto.d.ts +0 -66
- package/types/maplestory/api/dto/character/characterDojangDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterDto.d.ts +0 -12
- package/types/maplestory/api/dto/character/characterHexaMatrixDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterHexaMatrixEquipmentDto.d.ts +0 -25
- package/types/maplestory/api/dto/character/characterHexaMatrixEquipmentLinkedSkillDto.d.ts +0 -12
- package/types/maplestory/api/dto/character/characterHexaMatrixStatCoreDto.d.ts +0 -40
- package/types/maplestory/api/dto/character/characterHexaMatrixStatDto.d.ts +0 -41
- package/types/maplestory/api/dto/character/characterHyperStatDto.d.ts +0 -49
- package/types/maplestory/api/dto/character/characterHyperStatPresetDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterImageDto.d.ts +0 -160
- package/types/maplestory/api/dto/character/characterItemEquipmentAddOptionDto.d.ts +0 -68
- package/types/maplestory/api/dto/character/characterItemEquipmentBaseOptionDto.d.ts +0 -76
- package/types/maplestory/api/dto/character/characterItemEquipmentDragonInfoDto.d.ts +0 -130
- package/types/maplestory/api/dto/character/characterItemEquipmentDto.d.ts +0 -61
- package/types/maplestory/api/dto/character/characterItemEquipmentEtcOptionDto.d.ts +0 -52
- package/types/maplestory/api/dto/character/characterItemEquipmentExceptionalOptionDto.d.ts +0 -44
- package/types/maplestory/api/dto/character/characterItemEquipmentInfoDto.d.ts +0 -162
- package/types/maplestory/api/dto/character/characterItemEquipmentMechanicInfoDto.d.ts +0 -130
- package/types/maplestory/api/dto/character/characterItemEquipmentMedalShapeDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterItemEquipmentStarforceOptionDto.d.ts +0 -52
- package/types/maplestory/api/dto/character/characterItemEquipmentTitleDto.d.ts +0 -48
- package/types/maplestory/api/dto/character/characterItemEquipmentTotalOptionDto.d.ts +0 -80
- package/types/maplestory/api/dto/character/characterLinkSkillDto.d.ts +0 -49
- package/types/maplestory/api/dto/character/characterLinkSkillInfoDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterListAccountCharacterDto.d.ts +0 -28
- package/types/maplestory/api/dto/character/characterListAccountDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterListDto.d.ts +0 -13
- package/types/maplestory/api/dto/character/characterPetEquipmentAutoSkillDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterPetEquipmentItemDto.d.ts +0 -41
- package/types/maplestory/api/dto/character/characterPetEquipmentItemOptionDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterPopularityDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterPropensityDto.d.ts +0 -33
- package/types/maplestory/api/dto/character/characterSetEffectDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterSetEffectInfoDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterSetEffectOptionFullDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterSetEffectSetDto.d.ts +0 -26
- package/types/maplestory/api/dto/character/characterSkillDto.d.ts +0 -25
- package/types/maplestory/api/dto/character/characterSkillInfoDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterStatDto.d.ts +0 -27
- package/types/maplestory/api/dto/character/characterSymbolEquipmentDto.d.ts +0 -21
- package/types/maplestory/api/dto/character/characterVMatrixCoreEquipmentDto.d.ts +0 -40
- package/types/maplestory/api/dto/character/characterVMatrixDto.d.ts +0 -25
- package/types/maplestory/api/dto/guild/guildBasicDto.d.ts +0 -53
- package/types/maplestory/api/dto/guild/guildDto.d.ts +0 -12
- package/types/maplestory/api/dto/guild/guildSkillDto.d.ts +0 -28
- package/types/maplestory/api/dto/history/cubeHistoryResponseDto.d.ts +0 -21
- package/types/maplestory/api/dto/history/cubeResultOptionDto.d.ts +0 -18
- package/types/maplestory/api/dto/history/potentialHistoryResponseDto.d.ts +0 -21
- package/types/maplestory/api/dto/history/potentialResultOptionDto.d.ts +0 -18
- package/types/maplestory/api/dto/history/starforceEventDto.d.ts +0 -28
- package/types/maplestory/api/dto/history/starforceHistoryResponseDto.d.ts +0 -21
- package/types/maplestory/api/dto/notice/cashshopNoticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/eventNoticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/eventNoticeListItemDto.d.ts +0 -32
- package/types/maplestory/api/dto/notice/noticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/noticeListItemDto.d.ts +0 -24
- package/types/maplestory/api/dto/notice/updateNoticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/updateNoticeListItemDto.d.ts +0 -24
- package/types/maplestory/api/dto/potentialOptionGrade.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/achievementRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/dojangRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/guildRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/overallRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/theSeedRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/unionRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/union/unionArtifactCrystalDto.d.ts +0 -40
- package/types/maplestory/api/dto/union/unionArtifactDto.d.ts +0 -26
- package/types/maplestory/api/dto/union/unionArtifactEffectDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionChampionBadgeInfoDto.d.ts +0 -12
- package/types/maplestory/api/dto/union/unionChampionDto.d.ts +0 -22
- package/types/maplestory/api/dto/union/unionChampionInfoDto.d.ts +0 -29
- package/types/maplestory/api/dto/union/unionRaiderBlockDto.d.ts +0 -30
- package/types/maplestory/api/dto/union/unionRaiderBlockPositionDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionRaiderControlPointDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionRaiderDto.d.ts +0 -52
- package/types/maplestory/api/dto/union/unionRaiderInnerStatDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionRaiderPresetDto.d.ts +0 -26
- package/types/maplestory/api/response/character/characterAbilityDtoBody.d.ts +0 -20
- package/types/maplestory/api/response/character/characterBeautyEquipmentDtoBody.d.ts +0 -31
- package/types/maplestory/api/response/character/characterDojangDtoBody.d.ts +0 -9
- package/types/maplestory/api/response/character/characterDtoBody.d.ts +0 -4
- package/types/maplestory/api/response/character/characterHexaMatrixDtoBody.d.ts +0 -14
- package/types/maplestory/api/response/character/characterHexaMatrixStatDtoBody.d.ts +0 -21
- package/types/maplestory/api/response/character/characterHyperStatDtoBody.d.ts +0 -19
- package/types/maplestory/api/response/character/characterLinkSkillDtoBody.d.ts +0 -21
- package/types/maplestory/api/response/character/characterListDtoBody.d.ts +0 -15
- package/types/maplestory/api/response/character/characterPopularityDtoBody.d.ts +0 -5
- package/types/maplestory/api/response/character/characterPropensityDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/character/characterSetEffectDtoBody.d.ts +0 -19
- package/types/maplestory/api/response/character/characterSkillDtoBody.d.ts +0 -15
- package/types/maplestory/api/response/character/characterStatDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/guild/guildDtoBody.d.ts +0 -4
- package/types/maplestory/api/response/history/cubeHistoryDtoBody.d.ts +0 -22
- package/types/maplestory/api/response/history/cubeHistoryResponseDtoBody.d.ts +0 -7
- package/types/maplestory/api/response/history/cubeResultOptionDtoBody.d.ts +0 -5
- package/types/maplestory/api/response/history/potentialHistoryResponseDtoBody.d.ts +0 -29
- package/types/maplestory/api/response/history/starforceEventDtoBody.d.ts +0 -8
- package/types/maplestory/api/response/history/starforceHistoryResponseDtoBody.d.ts +0 -7
- package/types/maplestory/api/response/notice/cashshopNoticeListDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/notice/eventNoticeListDtoBody.d.ts +0 -12
- package/types/maplestory/api/response/notice/noticeListDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/notice/updateNoticeListDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/ranking/achievementRankingResponseDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/ranking/dojangRankingResponseDtoBody.d.ts +0 -14
- package/types/maplestory/api/response/ranking/guildRankingResponseDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/ranking/rankingResponseDtoBody.d.ts +0 -7
- package/types/maplestory/api/response/ranking/theSeedRankingResponseDtoBody.d.ts +0 -14
- package/types/maplestory/api/response/ranking/unionRankingResponseDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/union/unionArtifactDtoBody.d.ts +0 -20
- package/types/maplestory/api/response/union/unionChampionDtoBody.d.ts +0 -16
- package/types/maplestory/api/response/union/unionRaiderDtoBody.d.ts +0 -39
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
import { potentialOptionGradeFromString } from '../../../common/lib.js';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 잠재능력 재설정 히스토리
|
|
5
|
+
*/
|
|
6
|
+
class PotentialHistoryDto {
|
|
7
|
+
/**
|
|
8
|
+
* 잠재능력 재설정 히스토리 식별자
|
|
9
|
+
*/
|
|
10
|
+
id;
|
|
11
|
+
/**
|
|
12
|
+
* 캐릭터 명
|
|
13
|
+
*/
|
|
14
|
+
characterName;
|
|
15
|
+
/**
|
|
16
|
+
* 사용 일시
|
|
17
|
+
*/
|
|
18
|
+
dateCreate;
|
|
19
|
+
/**
|
|
20
|
+
* 대상 잠재능력 타입 (잠재능력, 에디셔널 잠재능력)
|
|
21
|
+
*/
|
|
22
|
+
potentialType;
|
|
23
|
+
/**
|
|
24
|
+
* 사용 결과
|
|
25
|
+
*/
|
|
26
|
+
itemUpgradeResult;
|
|
27
|
+
/**
|
|
28
|
+
* 미라클 타임 적용 여부
|
|
29
|
+
*/
|
|
30
|
+
miracleTimeFlag;
|
|
31
|
+
/**
|
|
32
|
+
* 장비 분류
|
|
33
|
+
*/
|
|
34
|
+
itemEquipmentPart;
|
|
35
|
+
/**
|
|
36
|
+
* 장비 레벨
|
|
37
|
+
*/
|
|
38
|
+
itemLevel;
|
|
39
|
+
/**
|
|
40
|
+
* 잠재능력 재설정 장비 명
|
|
41
|
+
*/
|
|
42
|
+
targetItem;
|
|
43
|
+
/**
|
|
44
|
+
* 잠재능력 등급
|
|
45
|
+
*/
|
|
46
|
+
potentialOptionGrade;
|
|
47
|
+
/**
|
|
48
|
+
* 에디셔널 잠재능력 등급
|
|
49
|
+
*/
|
|
50
|
+
additionalPotentialOptionGrade;
|
|
51
|
+
/**
|
|
52
|
+
* 천장에 도달하여 확정 등급 상승한 여부
|
|
53
|
+
*/
|
|
54
|
+
upgradeGuarantee;
|
|
55
|
+
/**
|
|
56
|
+
* 현재까지 쌓은 스택
|
|
57
|
+
*/
|
|
58
|
+
upgradeGuaranteeCount;
|
|
59
|
+
/**
|
|
60
|
+
* 사용 전 잠재능력 옵션
|
|
61
|
+
*/
|
|
62
|
+
beforePotentialOption;
|
|
63
|
+
/**
|
|
64
|
+
* 사용 전 에디셔널 잠재능력 옵션
|
|
65
|
+
*/
|
|
66
|
+
beforeAdditionalPotentialOption;
|
|
67
|
+
/**
|
|
68
|
+
* 사용 후 잠재능력 옵션
|
|
69
|
+
*/
|
|
70
|
+
afterPotentialOption;
|
|
71
|
+
/**
|
|
72
|
+
* 사용 후 에디셔널 잠재능력 옵션
|
|
73
|
+
*/
|
|
74
|
+
afterAdditionalPotentialOption;
|
|
75
|
+
constructor(obj) {
|
|
76
|
+
const { id, character_name, date_create, potential_type, item_upgrade_result, miracle_time_flag, item_equipment_part, item_level, target_item, potential_option_grade, additional_potential_option_grade, upgrade_guarantee, upgrade_guarantee_count, before_potential_option, before_additional_potential_option, after_potential_option, after_additional_potential_option, } = obj;
|
|
77
|
+
this.id = id;
|
|
78
|
+
this.characterName = character_name;
|
|
79
|
+
this.dateCreate = new Date(date_create);
|
|
80
|
+
this.potentialType = potential_type;
|
|
81
|
+
this.itemUpgradeResult = item_upgrade_result;
|
|
82
|
+
this.miracleTimeFlag = miracle_time_flag;
|
|
83
|
+
this.itemEquipmentPart = item_equipment_part;
|
|
84
|
+
this.itemLevel = item_level;
|
|
85
|
+
this.targetItem = target_item;
|
|
86
|
+
this.potentialOptionGrade = potential_option_grade;
|
|
87
|
+
this.additionalPotentialOptionGrade = additional_potential_option_grade;
|
|
88
|
+
this.upgradeGuarantee = upgrade_guarantee;
|
|
89
|
+
this.upgradeGuaranteeCount = upgrade_guarantee_count;
|
|
90
|
+
this.beforePotentialOption = before_potential_option.map((origin) => new PotentialResultOptionDto(origin));
|
|
91
|
+
this.beforeAdditionalPotentialOption =
|
|
92
|
+
before_additional_potential_option.map((origin) => new PotentialResultOptionDto(origin));
|
|
93
|
+
this.afterPotentialOption = after_potential_option.map((origin) => new PotentialResultOptionDto(origin));
|
|
94
|
+
this.afterAdditionalPotentialOption = after_additional_potential_option.map((origin) => new PotentialResultOptionDto(origin));
|
|
95
|
+
}
|
|
96
|
+
get isItemUpgrade() {
|
|
97
|
+
return this.itemUpgradeResult === '성공';
|
|
98
|
+
}
|
|
99
|
+
get isMiracleTimeFlag() {
|
|
100
|
+
return this.miracleTimeFlag !== '이벤트 적용되지 않음';
|
|
101
|
+
}
|
|
102
|
+
get potentialOptionGradeEnum() {
|
|
103
|
+
return potentialOptionGradeFromString(this.potentialOptionGrade);
|
|
104
|
+
}
|
|
105
|
+
get additionalPotentialOptionGradeEnum() {
|
|
106
|
+
return potentialOptionGradeFromString(this.additionalPotentialOptionGrade);
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
* 잠재능력 재설정 결과 옵션 정보
|
|
111
|
+
*/
|
|
112
|
+
class PotentialResultOptionDto {
|
|
113
|
+
/**
|
|
114
|
+
* 옵션 명
|
|
115
|
+
*/
|
|
116
|
+
value;
|
|
117
|
+
/**
|
|
118
|
+
* 옵션 등급
|
|
119
|
+
*/
|
|
120
|
+
grade;
|
|
121
|
+
constructor(obj) {
|
|
122
|
+
const { value, grade } = obj;
|
|
123
|
+
this.value = value;
|
|
124
|
+
this.grade = grade;
|
|
125
|
+
}
|
|
126
|
+
get gradeEnum() {
|
|
127
|
+
return potentialOptionGradeFromString(this.grade);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
/**
|
|
131
|
+
* 잠재능력 재설정 히스토리 응답 정보
|
|
132
|
+
*/
|
|
133
|
+
class PotentialHistoryResponseDto {
|
|
134
|
+
/**
|
|
135
|
+
* 결과 건 수
|
|
136
|
+
*/
|
|
137
|
+
count;
|
|
138
|
+
/**
|
|
139
|
+
* 잠재능력 재설정 히스토리
|
|
140
|
+
*/
|
|
141
|
+
potentialHistory;
|
|
142
|
+
/**
|
|
143
|
+
* 페이징 처리를 위한 cursor
|
|
144
|
+
*/
|
|
145
|
+
nextCursor;
|
|
146
|
+
constructor(obj) {
|
|
147
|
+
const { count, potential_history, next_cursor } = obj;
|
|
148
|
+
this.count = count;
|
|
149
|
+
this.potentialHistory = potential_history.map((origin) => new PotentialHistoryDto(origin));
|
|
150
|
+
this.nextCursor = next_cursor;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
export { PotentialHistoryDto, PotentialHistoryResponseDto, PotentialResultOptionDto };
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 스타포스 히스토리
|
|
3
|
+
*/
|
|
4
|
+
class StarforceHistoryDto {
|
|
5
|
+
/**
|
|
6
|
+
* 스타포스 히스토리 식별자
|
|
7
|
+
*/
|
|
8
|
+
id;
|
|
9
|
+
/**
|
|
10
|
+
* 강화 시도 결과
|
|
11
|
+
*/
|
|
12
|
+
itemUpgradeResult;
|
|
13
|
+
/**
|
|
14
|
+
* 강화 시도 전 스타포스 수치
|
|
15
|
+
*/
|
|
16
|
+
beforeStarforceCount;
|
|
17
|
+
/**
|
|
18
|
+
* 강화 시도 후 스타포스 수치
|
|
19
|
+
*/
|
|
20
|
+
afterStarforceCount;
|
|
21
|
+
/**
|
|
22
|
+
* 스타 캐치
|
|
23
|
+
*/
|
|
24
|
+
starCatchResult;
|
|
25
|
+
/**
|
|
26
|
+
* 슈페리얼 장비
|
|
27
|
+
*/
|
|
28
|
+
superiorItemFlag;
|
|
29
|
+
/**
|
|
30
|
+
* 파괴 방지
|
|
31
|
+
*/
|
|
32
|
+
destroyDefence;
|
|
33
|
+
/**
|
|
34
|
+
* 찬스 타임
|
|
35
|
+
*/
|
|
36
|
+
chanceTime;
|
|
37
|
+
/**
|
|
38
|
+
* 파괴 방지 필드 이벤트
|
|
39
|
+
*/
|
|
40
|
+
eventFieldFlag;
|
|
41
|
+
/**
|
|
42
|
+
* 사용 주문서 명
|
|
43
|
+
*/
|
|
44
|
+
upgradeItem;
|
|
45
|
+
/**
|
|
46
|
+
* 프로텍트 실드
|
|
47
|
+
*/
|
|
48
|
+
protectShield;
|
|
49
|
+
/**
|
|
50
|
+
* 보너스 스탯 부여 아이템 여부
|
|
51
|
+
*/
|
|
52
|
+
bonusStatUpgrade;
|
|
53
|
+
/**
|
|
54
|
+
* 캐릭터 명
|
|
55
|
+
*/
|
|
56
|
+
characterName;
|
|
57
|
+
/**
|
|
58
|
+
* 월드 명
|
|
59
|
+
*/
|
|
60
|
+
worldName;
|
|
61
|
+
/**
|
|
62
|
+
* 대상 장비 아이템 명
|
|
63
|
+
*/
|
|
64
|
+
targetItem;
|
|
65
|
+
/**
|
|
66
|
+
* 강화 일시 (KST)
|
|
67
|
+
*/
|
|
68
|
+
dateCreate;
|
|
69
|
+
/**
|
|
70
|
+
* 진행 중인 스타포스 강화 이벤트 정보
|
|
71
|
+
*/
|
|
72
|
+
starforceEventList;
|
|
73
|
+
constructor(obj) {
|
|
74
|
+
const { id, item_upgrade_result, before_starforce_count, after_starforce_count, starcatch_result, superior_item_flag, destroy_defence, chance_time, event_field_flag, upgrade_item, protect_shield, bonus_stat_upgrade, character_name, world_name, target_item, date_create, starforce_event_list, } = obj;
|
|
75
|
+
this.id = id;
|
|
76
|
+
this.itemUpgradeResult = item_upgrade_result;
|
|
77
|
+
this.beforeStarforceCount = before_starforce_count;
|
|
78
|
+
this.afterStarforceCount = after_starforce_count;
|
|
79
|
+
this.starCatchResult = starcatch_result;
|
|
80
|
+
this.superiorItemFlag = superior_item_flag;
|
|
81
|
+
this.destroyDefence = destroy_defence;
|
|
82
|
+
this.chanceTime = chance_time;
|
|
83
|
+
this.eventFieldFlag = event_field_flag;
|
|
84
|
+
this.upgradeItem = upgrade_item;
|
|
85
|
+
this.protectShield = protect_shield;
|
|
86
|
+
this.bonusStatUpgrade = bonus_stat_upgrade;
|
|
87
|
+
this.characterName = character_name;
|
|
88
|
+
this.worldName = world_name;
|
|
89
|
+
this.targetItem = target_item;
|
|
90
|
+
this.dateCreate = new Date(date_create);
|
|
91
|
+
this.starforceEventList =
|
|
92
|
+
starforce_event_list?.map((event) => new StarforceEventDto(event)) ??
|
|
93
|
+
null;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* 스타포스 강화 이벤트 정보
|
|
98
|
+
*/
|
|
99
|
+
class StarforceEventDto {
|
|
100
|
+
/**
|
|
101
|
+
* 이벤트 성공 확률
|
|
102
|
+
*/
|
|
103
|
+
successRate;
|
|
104
|
+
/**
|
|
105
|
+
* 이벤트 파괴 확률 감소율
|
|
106
|
+
*/
|
|
107
|
+
destroyDecreaseRate;
|
|
108
|
+
/**
|
|
109
|
+
* 이벤트 비용 할인율
|
|
110
|
+
*/
|
|
111
|
+
costDiscountRate;
|
|
112
|
+
/**
|
|
113
|
+
* 이벤트 강화 수치 가중값
|
|
114
|
+
*/
|
|
115
|
+
plusValue;
|
|
116
|
+
/**
|
|
117
|
+
* 이벤트 적용 강화 시도 가능한 n성 범위
|
|
118
|
+
*/
|
|
119
|
+
starforceEventRange;
|
|
120
|
+
constructor(obj) {
|
|
121
|
+
const { success_rate, destroy_decrease_rate, cost_discount_rate, plus_value, starforce_event_range, } = obj;
|
|
122
|
+
this.successRate = success_rate;
|
|
123
|
+
this.destroyDecreaseRate = destroy_decrease_rate;
|
|
124
|
+
this.costDiscountRate = cost_discount_rate;
|
|
125
|
+
this.plusValue = plus_value;
|
|
126
|
+
this.starforceEventRange = starforce_event_range;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
/**
|
|
130
|
+
* 스타포스 히스토리 응답 정보
|
|
131
|
+
*/
|
|
132
|
+
class StarforceHistoryResponseDto {
|
|
133
|
+
/**
|
|
134
|
+
* 결과 건 수
|
|
135
|
+
*/
|
|
136
|
+
count;
|
|
137
|
+
/**
|
|
138
|
+
* 스타포스 히스토리
|
|
139
|
+
*/
|
|
140
|
+
starforceHistory;
|
|
141
|
+
/**
|
|
142
|
+
* 페이징 처리를 위한 cursor
|
|
143
|
+
*/
|
|
144
|
+
nextCursor;
|
|
145
|
+
constructor(obj) {
|
|
146
|
+
const { count, starforce_history, next_cursor } = obj;
|
|
147
|
+
this.count = count;
|
|
148
|
+
this.starforceHistory = starforce_history.map((origin) => new StarforceHistoryDto(origin));
|
|
149
|
+
this.nextCursor = next_cursor;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
export { StarforceEventDto, StarforceHistoryDto, StarforceHistoryResponseDto };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 서버 점검 정보
|
|
3
|
+
*/
|
|
4
|
+
class InspectionInfoDto {
|
|
5
|
+
/**
|
|
6
|
+
* 서비스 코드
|
|
7
|
+
*/
|
|
8
|
+
serviceCode;
|
|
9
|
+
/**
|
|
10
|
+
* 점검 시작 시각
|
|
11
|
+
*/
|
|
12
|
+
startDateTime;
|
|
13
|
+
/**
|
|
14
|
+
* 점검 종료 시각
|
|
15
|
+
*/
|
|
16
|
+
endDateTime;
|
|
17
|
+
/**
|
|
18
|
+
* 점검 안내 제목
|
|
19
|
+
*/
|
|
20
|
+
strObstacleContents;
|
|
21
|
+
constructor(obj) {
|
|
22
|
+
const inspectionInfoTag = obj['soap:Envelope']['soap:Body'][0]['GetInspectionInfoResponse'][0]['GetInspectionInfoResult'][0]['diffgr:diffgram'][0]['NewDataSet'][0]['InspectionInfo'][0];
|
|
23
|
+
this.serviceCode = Number(inspectionInfoTag.serviceCode[0]);
|
|
24
|
+
this.startDateTime = new Date(inspectionInfoTag.startDateTime[0]);
|
|
25
|
+
this.endDateTime = new Date(inspectionInfoTag.endDateTime[0]);
|
|
26
|
+
this.strObstacleContents = inspectionInfoTag.strObstacleContents[0];
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export { InspectionInfoDto };
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 캐시샵 공지 상세
|
|
3
|
+
*/
|
|
4
|
+
class CashshopNoticeDetailDto {
|
|
5
|
+
/**
|
|
6
|
+
* 공지 제목
|
|
7
|
+
*/
|
|
8
|
+
title;
|
|
9
|
+
/**
|
|
10
|
+
* 공지 링크
|
|
11
|
+
*/
|
|
12
|
+
url;
|
|
13
|
+
/**
|
|
14
|
+
* 공지 본문
|
|
15
|
+
*/
|
|
16
|
+
contents;
|
|
17
|
+
/**
|
|
18
|
+
* 공지 등록일
|
|
19
|
+
*/
|
|
20
|
+
date;
|
|
21
|
+
/**
|
|
22
|
+
* 판매 시작일
|
|
23
|
+
*/
|
|
24
|
+
dateSaleStart;
|
|
25
|
+
/**
|
|
26
|
+
* 판매 종료일
|
|
27
|
+
*/
|
|
28
|
+
dateSaleEnd;
|
|
29
|
+
/**
|
|
30
|
+
* 상시 판매 여부 (true - 상시)
|
|
31
|
+
*/
|
|
32
|
+
ongoingFlag;
|
|
33
|
+
constructor(obj) {
|
|
34
|
+
const { title, url, contents, date, date_sale_start, date_sale_end, ongoing_flag, } = obj;
|
|
35
|
+
this.title = title;
|
|
36
|
+
this.url = url;
|
|
37
|
+
this.contents = contents;
|
|
38
|
+
this.date = new Date(date);
|
|
39
|
+
this.dateSaleStart = date_sale_start ? new Date(date_sale_start) : null;
|
|
40
|
+
this.dateSaleEnd = date_sale_end ? new Date(date_sale_end) : null;
|
|
41
|
+
this.ongoingFlag = ongoing_flag;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* 상시 판매 여부 (true - 상시)
|
|
45
|
+
*/
|
|
46
|
+
get isOnGoing() {
|
|
47
|
+
return this.ongoingFlag === 'true';
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export { CashshopNoticeDetailDto };
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 캐시샵 공지 목록
|
|
3
|
+
*/
|
|
4
|
+
class CashshopNoticeListDto {
|
|
5
|
+
/**
|
|
6
|
+
* 공지 목록
|
|
7
|
+
*/
|
|
8
|
+
cashshopNotice;
|
|
9
|
+
constructor(obj) {
|
|
10
|
+
const { cashshop_notice } = obj;
|
|
11
|
+
this.cashshopNotice = cashshop_notice.map((notice) => new CashshopNoticeListItemDto(notice));
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* 캐시샵 공지
|
|
16
|
+
*/
|
|
17
|
+
class CashshopNoticeListItemDto {
|
|
18
|
+
/**
|
|
19
|
+
* 공지 제목
|
|
20
|
+
*/
|
|
21
|
+
title;
|
|
22
|
+
/**
|
|
23
|
+
* 공지 링크
|
|
24
|
+
*/
|
|
25
|
+
url;
|
|
26
|
+
/**
|
|
27
|
+
* 공지 식별자
|
|
28
|
+
*/
|
|
29
|
+
noticeId;
|
|
30
|
+
/**
|
|
31
|
+
* 공지 등록일
|
|
32
|
+
*/
|
|
33
|
+
date;
|
|
34
|
+
/**
|
|
35
|
+
* 판매 시작일
|
|
36
|
+
*/
|
|
37
|
+
dateSaleStart;
|
|
38
|
+
/**
|
|
39
|
+
* 판매 종료일
|
|
40
|
+
*/
|
|
41
|
+
dateSaleEnd;
|
|
42
|
+
/**
|
|
43
|
+
* 상시 판매 여부 (true - 상시)
|
|
44
|
+
*/
|
|
45
|
+
ongoingFlag;
|
|
46
|
+
constructor(obj) {
|
|
47
|
+
const { title, url, notice_id, date, date_sale_start, date_sale_end, ongoing_flag, } = obj;
|
|
48
|
+
this.title = title;
|
|
49
|
+
this.url = url;
|
|
50
|
+
this.noticeId = notice_id;
|
|
51
|
+
this.date = new Date(date);
|
|
52
|
+
this.dateSaleStart = date_sale_start ? new Date(date_sale_start) : null;
|
|
53
|
+
this.dateSaleEnd = date_sale_end ? new Date(date_sale_end) : null;
|
|
54
|
+
this.ongoingFlag = ongoing_flag;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* 상시 판매 여부 (true - 상시)
|
|
58
|
+
*/
|
|
59
|
+
get isOnGoing() {
|
|
60
|
+
return this.ongoingFlag === 'true';
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export { CashshopNoticeListDto, CashshopNoticeListItemDto };
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 진행 중 이벤트 상세
|
|
3
|
+
*/
|
|
4
|
+
class EventNoticeDetailDto {
|
|
5
|
+
/**
|
|
6
|
+
* 공지 제목
|
|
7
|
+
*/
|
|
8
|
+
title;
|
|
9
|
+
/**
|
|
10
|
+
* 공지 링크
|
|
11
|
+
*/
|
|
12
|
+
url;
|
|
13
|
+
/**
|
|
14
|
+
* 공지 본문
|
|
15
|
+
*/
|
|
16
|
+
contents;
|
|
17
|
+
/**
|
|
18
|
+
* 공지 등록일
|
|
19
|
+
*/
|
|
20
|
+
date;
|
|
21
|
+
/**
|
|
22
|
+
* 이벤트 시작일
|
|
23
|
+
*/
|
|
24
|
+
dateEventStart;
|
|
25
|
+
/**
|
|
26
|
+
* 이벤트 종료일
|
|
27
|
+
*/
|
|
28
|
+
dateEventEnd;
|
|
29
|
+
constructor(obj) {
|
|
30
|
+
const { title, url, contents, date, date_event_start, date_event_end } = obj;
|
|
31
|
+
this.title = title;
|
|
32
|
+
this.url = url;
|
|
33
|
+
this.contents = contents;
|
|
34
|
+
this.date = new Date(date);
|
|
35
|
+
this.dateEventStart = new Date(date_event_start);
|
|
36
|
+
this.dateEventEnd = new Date(date_event_end);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export { EventNoticeDetailDto };
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 진행 중 이벤트 공지 목록
|
|
3
|
+
*/
|
|
4
|
+
class EventNoticeListDto {
|
|
5
|
+
/**
|
|
6
|
+
* 공지 목록
|
|
7
|
+
*/
|
|
8
|
+
eventNotice;
|
|
9
|
+
constructor(obj) {
|
|
10
|
+
const { event_notice } = obj;
|
|
11
|
+
this.eventNotice = event_notice.map((notice) => new EventNoticeListItemDto(notice));
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* 진행 중 이벤트 공지
|
|
16
|
+
*/
|
|
17
|
+
class EventNoticeListItemDto {
|
|
18
|
+
/**
|
|
19
|
+
* 공지 제목
|
|
20
|
+
*/
|
|
21
|
+
title;
|
|
22
|
+
/**
|
|
23
|
+
* 공지 링크
|
|
24
|
+
*/
|
|
25
|
+
url;
|
|
26
|
+
/**
|
|
27
|
+
* 공지 식별자
|
|
28
|
+
*/
|
|
29
|
+
noticeId;
|
|
30
|
+
/**
|
|
31
|
+
* 공지 등록일
|
|
32
|
+
*/
|
|
33
|
+
date;
|
|
34
|
+
/**
|
|
35
|
+
* 이벤트 시작일
|
|
36
|
+
*/
|
|
37
|
+
dateEventStart;
|
|
38
|
+
/**
|
|
39
|
+
* 이벤트 종료일
|
|
40
|
+
*/
|
|
41
|
+
dateEventEnd;
|
|
42
|
+
constructor(obj) {
|
|
43
|
+
const { title, url, notice_id, date, date_event_start, date_event_end } = obj;
|
|
44
|
+
this.title = title;
|
|
45
|
+
this.url = url;
|
|
46
|
+
this.noticeId = notice_id;
|
|
47
|
+
this.date = new Date(date);
|
|
48
|
+
this.dateEventStart = new Date(date_event_start);
|
|
49
|
+
this.dateEventEnd = new Date(date_event_end);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export { EventNoticeListDto, EventNoticeListItemDto };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 공지사항 상세
|
|
3
|
+
*/
|
|
4
|
+
class NoticeDetailDto {
|
|
5
|
+
/**
|
|
6
|
+
* 공지 제목
|
|
7
|
+
*/
|
|
8
|
+
title;
|
|
9
|
+
/**
|
|
10
|
+
* 공지 링크
|
|
11
|
+
*/
|
|
12
|
+
url;
|
|
13
|
+
/**
|
|
14
|
+
* 공지 본문
|
|
15
|
+
*/
|
|
16
|
+
contents;
|
|
17
|
+
/**
|
|
18
|
+
* 공지 등록일
|
|
19
|
+
*/
|
|
20
|
+
date;
|
|
21
|
+
constructor(obj) {
|
|
22
|
+
const { title, url, contents, date } = obj;
|
|
23
|
+
this.title = title;
|
|
24
|
+
this.url = url;
|
|
25
|
+
this.contents = contents;
|
|
26
|
+
this.date = new Date(date);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export { NoticeDetailDto };
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 공지사항 목록
|
|
3
|
+
*/
|
|
4
|
+
class NoticeListDto {
|
|
5
|
+
/**
|
|
6
|
+
* 공지 목록
|
|
7
|
+
*/
|
|
8
|
+
notice;
|
|
9
|
+
constructor(obj) {
|
|
10
|
+
const { notice } = obj;
|
|
11
|
+
this.notice = notice.map((notice) => new NoticeListItemDto(notice));
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* 공지사항
|
|
16
|
+
*/
|
|
17
|
+
class NoticeListItemDto {
|
|
18
|
+
/**
|
|
19
|
+
* 공지 제목
|
|
20
|
+
*/
|
|
21
|
+
title;
|
|
22
|
+
/**
|
|
23
|
+
* 공지 링크
|
|
24
|
+
*/
|
|
25
|
+
url;
|
|
26
|
+
/**
|
|
27
|
+
* 공지 식별자
|
|
28
|
+
*/
|
|
29
|
+
noticeId;
|
|
30
|
+
/**
|
|
31
|
+
* 공지 등록일
|
|
32
|
+
*/
|
|
33
|
+
date;
|
|
34
|
+
constructor(obj) {
|
|
35
|
+
const { title, url, notice_id, date } = obj;
|
|
36
|
+
this.title = title;
|
|
37
|
+
this.url = url;
|
|
38
|
+
this.noticeId = notice_id;
|
|
39
|
+
this.date = new Date(date);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export { NoticeListDto, NoticeListItemDto };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 업데이트 상세
|
|
3
|
+
*/
|
|
4
|
+
class UpdateNoticeDetailDto {
|
|
5
|
+
/**
|
|
6
|
+
* 공지 제목
|
|
7
|
+
*/
|
|
8
|
+
title;
|
|
9
|
+
/**
|
|
10
|
+
* 공지 링크
|
|
11
|
+
*/
|
|
12
|
+
url;
|
|
13
|
+
/**
|
|
14
|
+
* 공지 본문
|
|
15
|
+
*/
|
|
16
|
+
contents;
|
|
17
|
+
/**
|
|
18
|
+
* 공지 등록일
|
|
19
|
+
*/
|
|
20
|
+
date;
|
|
21
|
+
constructor(obj) {
|
|
22
|
+
const { title, url, contents, date } = obj;
|
|
23
|
+
this.title = title;
|
|
24
|
+
this.url = url;
|
|
25
|
+
this.contents = contents;
|
|
26
|
+
this.date = new Date(date);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export { UpdateNoticeDetailDto };
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 업데이트 목록
|
|
3
|
+
*/
|
|
4
|
+
class UpdateNoticeListDto {
|
|
5
|
+
/**
|
|
6
|
+
* 공지 목록
|
|
7
|
+
*/
|
|
8
|
+
updateNotice;
|
|
9
|
+
constructor(obj) {
|
|
10
|
+
const { update_notice } = obj;
|
|
11
|
+
this.updateNotice = update_notice.map((notice) => new UpdateNoticeListItemDto(notice));
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* 업데이트 공지
|
|
16
|
+
*/
|
|
17
|
+
class UpdateNoticeListItemDto {
|
|
18
|
+
/**
|
|
19
|
+
* 공지 제목
|
|
20
|
+
*/
|
|
21
|
+
title;
|
|
22
|
+
/**
|
|
23
|
+
* 공지 링크
|
|
24
|
+
*/
|
|
25
|
+
url;
|
|
26
|
+
/**
|
|
27
|
+
* 공지 식별자
|
|
28
|
+
*/
|
|
29
|
+
noticeId;
|
|
30
|
+
/**
|
|
31
|
+
* 공지 등록일
|
|
32
|
+
*/
|
|
33
|
+
date;
|
|
34
|
+
constructor(obj) {
|
|
35
|
+
const { title, url, notice_id, date } = obj;
|
|
36
|
+
this.title = title;
|
|
37
|
+
this.url = url;
|
|
38
|
+
this.noticeId = notice_id;
|
|
39
|
+
this.date = new Date(date);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export { UpdateNoticeListDto, UpdateNoticeListItemDto };
|