maplestory-openapi 2.13.1 → 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/{dto/character/characterDojangDto.d.ts → kms/dto/character/characterDojang.d.ts} +6 -6
- 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/{dto/character/characterHyperStatDto.d.ts → kms/dto/character/characterHyperStat.d.ts} +27 -6
- 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/{dto/character/characterLinkSkillDto.d.ts → kms/dto/character/characterLinkSkill.d.ts} +35 -6
- 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/{dto/character/characterPropensityDto.d.ts → kms/dto/character/characterPropensity.d.ts} +7 -4
- 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} +5 -5
- 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} +83 -78
- 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} +14 -15
- package/types/maplestory/api/{response/character/characterDojangDtoBody.d.ts → kms/response/character/characterDojangBody.d.ts} +1 -2
- 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/{response/character/characterHyperStatDtoBody.d.ts → kms/response/character/characterHyperStatBody.d.ts} +5 -6
- package/types/maplestory/api/{response/character/characterItemEquipmentDtoBody.d.ts → kms/response/character/characterItemEquipmentBody.d.ts} +33 -34
- 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/{response/character/characterPropensityDtoBody.d.ts → kms/response/character/characterPropensityBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/character/characterSetEffectBody.d.ts +18 -0
- package/types/maplestory/api/{response/character/characterSkillDtoBody.d.ts → kms/response/character/characterSkillBody.d.ts} +3 -4
- 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} +3 -4
- package/types/maplestory/api/{response/character/characterVMatrixDtoBody.d.ts → kms/response/character/characterVMatrixBody.d.ts} +2 -3
- 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} +1 -2
- 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/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/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/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/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/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/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/characterSetEffectDtoBody.d.ts +0 -19
- 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,72 @@
|
|
|
1
|
+
import { CharacterSkillDto as CharacterSkillDto$1, CharacterSkillInfoDto as CharacterSkillInfoDto$1 } from '../../../common/dto/character/characterSkill.js';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 캐릭터 스킬 정보
|
|
5
|
+
*/
|
|
6
|
+
class CharacterSkillDto extends CharacterSkillDto$1 {
|
|
7
|
+
/**
|
|
8
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
9
|
+
*/
|
|
10
|
+
date;
|
|
11
|
+
/**
|
|
12
|
+
* 캐릭터 직업
|
|
13
|
+
*/
|
|
14
|
+
characterClass;
|
|
15
|
+
/**
|
|
16
|
+
* 스킬 전직 차수
|
|
17
|
+
*/
|
|
18
|
+
characterSkillGrade;
|
|
19
|
+
/**
|
|
20
|
+
* 스킬 정보
|
|
21
|
+
*/
|
|
22
|
+
characterSkill;
|
|
23
|
+
constructor(obj) {
|
|
24
|
+
super();
|
|
25
|
+
const { date, character_class, character_skill_grade, character_skill } = obj;
|
|
26
|
+
this.date = date ? new Date(date) : null;
|
|
27
|
+
this.characterClass = character_class;
|
|
28
|
+
this.characterSkillGrade = character_skill_grade;
|
|
29
|
+
this.characterSkill = character_skill.map((skill) => new CharacterSkillInfoDto(skill));
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* 캐릭터 스킬 상세 정보
|
|
34
|
+
*/
|
|
35
|
+
class CharacterSkillInfoDto extends CharacterSkillInfoDto$1 {
|
|
36
|
+
/**
|
|
37
|
+
* 스킬 명
|
|
38
|
+
*/
|
|
39
|
+
skillName;
|
|
40
|
+
/**
|
|
41
|
+
* 스킬 설명
|
|
42
|
+
*/
|
|
43
|
+
skillDescription;
|
|
44
|
+
/**
|
|
45
|
+
* 스킬 레벨
|
|
46
|
+
*/
|
|
47
|
+
skillLevel;
|
|
48
|
+
/**
|
|
49
|
+
* 스킬 레벨 별 효과 설명
|
|
50
|
+
*/
|
|
51
|
+
skillEffect;
|
|
52
|
+
/**
|
|
53
|
+
* 다음 스킬 레벨 효과 설명
|
|
54
|
+
*/
|
|
55
|
+
skillEffectNext;
|
|
56
|
+
/**
|
|
57
|
+
* 스킬 아이콘
|
|
58
|
+
*/
|
|
59
|
+
skillIcon;
|
|
60
|
+
constructor(obj) {
|
|
61
|
+
super();
|
|
62
|
+
const { skill_name, skill_description, skill_level, skill_effect, skill_effect_next, skill_icon, } = obj;
|
|
63
|
+
this.skillName = skill_name;
|
|
64
|
+
this.skillDescription = skill_description;
|
|
65
|
+
this.skillLevel = skill_level;
|
|
66
|
+
this.skillEffect = skill_effect;
|
|
67
|
+
this.skillEffectNext = skill_effect_next;
|
|
68
|
+
this.skillIcon = skill_icon;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export { CharacterSkillDto, CharacterSkillInfoDto };
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { CharacterStatDto as CharacterStatDto$1, CharacterFinalStatDto as CharacterFinalStatDto$1 } from '../../../common/dto/character/characterStat.js';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 캐릭터 스탯 정보
|
|
5
|
+
*/
|
|
6
|
+
class CharacterStatDto extends CharacterStatDto$1 {
|
|
7
|
+
/**
|
|
8
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
9
|
+
*/
|
|
10
|
+
date;
|
|
11
|
+
/**
|
|
12
|
+
* 캐릭터 직업
|
|
13
|
+
*/
|
|
14
|
+
characterClass;
|
|
15
|
+
/**
|
|
16
|
+
* 현재 스탯 정보
|
|
17
|
+
*/
|
|
18
|
+
finalStat;
|
|
19
|
+
/**
|
|
20
|
+
* 잔여 AP
|
|
21
|
+
*/
|
|
22
|
+
remainAP;
|
|
23
|
+
constructor(obj) {
|
|
24
|
+
super();
|
|
25
|
+
const { date, character_class, final_stat, remain_ap } = obj;
|
|
26
|
+
this.date = date ? new Date(date) : null;
|
|
27
|
+
this.characterClass = character_class;
|
|
28
|
+
this.finalStat = final_stat.map((stat) => new CharacterFinalStatDto(stat));
|
|
29
|
+
this.remainAP = remain_ap;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* 캐릭터 현재 스탯 정보
|
|
34
|
+
*/
|
|
35
|
+
class CharacterFinalStatDto extends CharacterFinalStatDto$1 {
|
|
36
|
+
/**
|
|
37
|
+
* 스탯 명
|
|
38
|
+
*/
|
|
39
|
+
statName;
|
|
40
|
+
/**
|
|
41
|
+
* 스탯 값
|
|
42
|
+
*/
|
|
43
|
+
statValue;
|
|
44
|
+
constructor(obj) {
|
|
45
|
+
super();
|
|
46
|
+
const { stat_name, stat_value } = obj;
|
|
47
|
+
this.statName = stat_name;
|
|
48
|
+
this.statValue = stat_value;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export { CharacterFinalStatDto, CharacterStatDto };
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
import { CharacterSymbolEquipmentDto as CharacterSymbolEquipmentDto$1, CharacterSymbolEquipmentInfoDto as CharacterSymbolEquipmentInfoDto$1 } from '../../../common/dto/character/characterSymbolEquipment.js';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 캐릭터 심볼 정보
|
|
5
|
+
*/
|
|
6
|
+
class CharacterSymbolEquipmentDto extends CharacterSymbolEquipmentDto$1 {
|
|
7
|
+
/**
|
|
8
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
9
|
+
*/
|
|
10
|
+
date;
|
|
11
|
+
/**
|
|
12
|
+
* 캐릭터 직업
|
|
13
|
+
*/
|
|
14
|
+
characterClass;
|
|
15
|
+
/**
|
|
16
|
+
* 심볼 정보
|
|
17
|
+
*/
|
|
18
|
+
symbol;
|
|
19
|
+
constructor(obj) {
|
|
20
|
+
super();
|
|
21
|
+
const { date, character_class, symbol } = obj;
|
|
22
|
+
this.date = date ? new Date(date) : null;
|
|
23
|
+
this.characterClass = character_class;
|
|
24
|
+
this.symbol = symbol.map((s) => new CharacterSymbolEquipmentInfoDto(s));
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* 캐릭터 심볼 상세 정보
|
|
29
|
+
*/
|
|
30
|
+
class CharacterSymbolEquipmentInfoDto extends CharacterSymbolEquipmentInfoDto$1 {
|
|
31
|
+
/**
|
|
32
|
+
* 심볼 명
|
|
33
|
+
*/
|
|
34
|
+
symbolName;
|
|
35
|
+
/**
|
|
36
|
+
* 심볼 아이콘
|
|
37
|
+
*/
|
|
38
|
+
symbolIcon;
|
|
39
|
+
/**
|
|
40
|
+
* 심볼 설명
|
|
41
|
+
*/
|
|
42
|
+
symbolDescription;
|
|
43
|
+
/**
|
|
44
|
+
* 심볼로 인한 증가 수치
|
|
45
|
+
*/
|
|
46
|
+
symbolForce;
|
|
47
|
+
/**
|
|
48
|
+
* 심볼 레벨
|
|
49
|
+
*/
|
|
50
|
+
symbolLevel;
|
|
51
|
+
/**
|
|
52
|
+
* 심볼로 증가한 힘
|
|
53
|
+
*/
|
|
54
|
+
symbolStr;
|
|
55
|
+
/**
|
|
56
|
+
* 심볼로 증가한 민첩
|
|
57
|
+
*/
|
|
58
|
+
symbolDex;
|
|
59
|
+
/**
|
|
60
|
+
* 심볼로 증가한 지력
|
|
61
|
+
*/
|
|
62
|
+
symbolInt;
|
|
63
|
+
/**
|
|
64
|
+
* 심볼로 증가한 운
|
|
65
|
+
*/
|
|
66
|
+
symbolLuk;
|
|
67
|
+
/**
|
|
68
|
+
* 심볼로 증가한 체력
|
|
69
|
+
*/
|
|
70
|
+
symbolHp;
|
|
71
|
+
/**
|
|
72
|
+
* 심볼로 증가한 아이템 드롭률
|
|
73
|
+
*/
|
|
74
|
+
symbolDropRate;
|
|
75
|
+
/**
|
|
76
|
+
* 심볼로 증가한 메소 획득량
|
|
77
|
+
*/
|
|
78
|
+
symbolMesoRate;
|
|
79
|
+
/**
|
|
80
|
+
* 심볼로 증가한 경험치 획득량
|
|
81
|
+
*/
|
|
82
|
+
symbolExpRate;
|
|
83
|
+
/**
|
|
84
|
+
* 현재 보유 성장치
|
|
85
|
+
*/
|
|
86
|
+
symbolGrowthCount;
|
|
87
|
+
/**
|
|
88
|
+
* 성장 시 필요한 성장치
|
|
89
|
+
*/
|
|
90
|
+
symbolRequireGrowthCount;
|
|
91
|
+
constructor(obj) {
|
|
92
|
+
super();
|
|
93
|
+
const { symbol_name, symbol_icon, symbol_description, symbol_force, symbol_level, symbol_str, symbol_dex, symbol_int, symbol_luk, symbol_hp, symbol_drop_rate, symbol_meso_rate, symbol_exp_rate, symbol_growth_count, symbol_require_growth_count, } = obj;
|
|
94
|
+
this.symbolName = symbol_name;
|
|
95
|
+
this.symbolIcon = symbol_icon;
|
|
96
|
+
this.symbolDescription = symbol_description;
|
|
97
|
+
this.symbolForce = symbol_force;
|
|
98
|
+
this.symbolLevel = symbol_level;
|
|
99
|
+
this.symbolStr = symbol_str;
|
|
100
|
+
this.symbolDex = symbol_dex;
|
|
101
|
+
this.symbolInt = symbol_int;
|
|
102
|
+
this.symbolLuk = symbol_luk;
|
|
103
|
+
this.symbolHp = symbol_hp;
|
|
104
|
+
this.symbolDropRate = symbol_drop_rate ?? '0%';
|
|
105
|
+
this.symbolMesoRate = symbol_meso_rate ?? '0%';
|
|
106
|
+
this.symbolExpRate = symbol_exp_rate ?? '0%';
|
|
107
|
+
this.symbolHp = symbol_hp;
|
|
108
|
+
this.symbolHp = symbol_hp;
|
|
109
|
+
this.symbolGrowthCount = symbol_growth_count;
|
|
110
|
+
this.symbolRequireGrowthCount = symbol_require_growth_count;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
export { CharacterSymbolEquipmentDto, CharacterSymbolEquipmentInfoDto };
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { CharacterVMatrixDto as CharacterVMatrixDto$1, CharacterVMatrixCodeEquipmentDto as CharacterVMatrixCodeEquipmentDto$1 } from '../../../common/dto/character/characterVMatrix.js';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 캐릭터 V매트릭스 정보
|
|
5
|
+
*/
|
|
6
|
+
class CharacterVMatrixDto extends CharacterVMatrixDto$1 {
|
|
7
|
+
/**
|
|
8
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
9
|
+
*/
|
|
10
|
+
date;
|
|
11
|
+
/**
|
|
12
|
+
* 캐릭터 직업
|
|
13
|
+
*/
|
|
14
|
+
characterClass;
|
|
15
|
+
/**
|
|
16
|
+
* V코어 정보
|
|
17
|
+
*/
|
|
18
|
+
characterVCoreEquipment;
|
|
19
|
+
/**
|
|
20
|
+
* 캐릭터 잔여 매트릭스 강화 포인트
|
|
21
|
+
*/
|
|
22
|
+
characterVMatrixRemainSlotUpgradePoint;
|
|
23
|
+
constructor(obj) {
|
|
24
|
+
super();
|
|
25
|
+
const { date, character_class, character_v_core_equipment, character_v_matrix_remain_slot_upgrade_point, } = obj;
|
|
26
|
+
this.date = date ? new Date(date) : null;
|
|
27
|
+
this.characterClass = character_class;
|
|
28
|
+
this.characterVCoreEquipment = character_v_core_equipment.map((equipment) => new CharacterVMatrixCodeEquipmentDto(equipment));
|
|
29
|
+
this.characterVMatrixRemainSlotUpgradePoint =
|
|
30
|
+
character_v_matrix_remain_slot_upgrade_point;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* 캐릭터 V코어 정보
|
|
35
|
+
*/
|
|
36
|
+
class CharacterVMatrixCodeEquipmentDto extends CharacterVMatrixCodeEquipmentDto$1 {
|
|
37
|
+
/**
|
|
38
|
+
* 슬롯 인덱스
|
|
39
|
+
*/
|
|
40
|
+
slotId;
|
|
41
|
+
/**
|
|
42
|
+
* 슬롯 레벨
|
|
43
|
+
*/
|
|
44
|
+
slotLevel;
|
|
45
|
+
/**
|
|
46
|
+
* 코어 명
|
|
47
|
+
*/
|
|
48
|
+
vCoreName;
|
|
49
|
+
/**
|
|
50
|
+
* 코어 타입
|
|
51
|
+
*/
|
|
52
|
+
vCoreType;
|
|
53
|
+
/**
|
|
54
|
+
* 코어 레벨
|
|
55
|
+
*/
|
|
56
|
+
vCoreLevel;
|
|
57
|
+
/**
|
|
58
|
+
* 코어에 해당하는 스킬 명
|
|
59
|
+
*/
|
|
60
|
+
vCoreSkill1;
|
|
61
|
+
/**
|
|
62
|
+
* (강화 코어인 경우) 코어에 해당하는 두 번째 스킬 명
|
|
63
|
+
*/
|
|
64
|
+
vCoreSkill2;
|
|
65
|
+
/**
|
|
66
|
+
* (강화 코어인 경우) 코어에 해당하는 세 번째 스킬 명
|
|
67
|
+
*/
|
|
68
|
+
vCoreSkill3;
|
|
69
|
+
constructor(obj) {
|
|
70
|
+
super();
|
|
71
|
+
const { slot_id, slot_level, v_core_name, v_core_type, v_core_level, v_core_skill_1, v_core_skill_2, v_core_skill_3, } = obj;
|
|
72
|
+
this.slotId = slot_id;
|
|
73
|
+
this.slotLevel = slot_level;
|
|
74
|
+
this.vCoreName = v_core_name;
|
|
75
|
+
this.vCoreType = v_core_type;
|
|
76
|
+
this.vCoreLevel = v_core_level;
|
|
77
|
+
this.vCoreSkill1 = v_core_skill_1;
|
|
78
|
+
this.vCoreSkill2 = v_core_skill_2;
|
|
79
|
+
this.vCoreSkill3 = v_core_skill_3;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export { CharacterVMatrixCodeEquipmentDto, CharacterVMatrixDto };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { GuildDto as GuildDto$1 } from '../../../common/dto/guild/guild.js';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 길드 식별자 정보
|
|
5
|
+
*/
|
|
6
|
+
class GuildDto extends GuildDto$1 {
|
|
7
|
+
/**
|
|
8
|
+
* 길드 식별자
|
|
9
|
+
*/
|
|
10
|
+
oguildId;
|
|
11
|
+
constructor(obj) {
|
|
12
|
+
super();
|
|
13
|
+
const { oguild_id } = obj;
|
|
14
|
+
this.oguildId = oguild_id;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export { GuildDto };
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { GuildBasicDto as GuildBasicDto$1, GuildSkillDto as GuildSkillDto$1 } from '../../../common/dto/guild/guildBasic.js';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 길드 기본 정보
|
|
5
|
+
*/
|
|
6
|
+
class GuildBasicDto extends GuildBasicDto$1 {
|
|
7
|
+
/**
|
|
8
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
9
|
+
*/
|
|
10
|
+
date;
|
|
11
|
+
/**
|
|
12
|
+
* 월드 명
|
|
13
|
+
*/
|
|
14
|
+
worldName;
|
|
15
|
+
/**
|
|
16
|
+
* 길드 명
|
|
17
|
+
*/
|
|
18
|
+
guildName;
|
|
19
|
+
/**
|
|
20
|
+
* 길드 레벨
|
|
21
|
+
*/
|
|
22
|
+
guildLevel;
|
|
23
|
+
/**
|
|
24
|
+
* 길드 명성치
|
|
25
|
+
*/
|
|
26
|
+
guildFame;
|
|
27
|
+
/**
|
|
28
|
+
* 길드 포인트(GP)
|
|
29
|
+
*/
|
|
30
|
+
guildPoint;
|
|
31
|
+
/**
|
|
32
|
+
* 길드 마스터 캐릭터 명
|
|
33
|
+
*/
|
|
34
|
+
guildMasterName;
|
|
35
|
+
/**
|
|
36
|
+
* 길드원 수
|
|
37
|
+
*/
|
|
38
|
+
guildMemberCount;
|
|
39
|
+
/**
|
|
40
|
+
* 길드원 목록
|
|
41
|
+
*/
|
|
42
|
+
guildMember;
|
|
43
|
+
/**
|
|
44
|
+
* 길드 스킬 목록
|
|
45
|
+
*/
|
|
46
|
+
guildSkill;
|
|
47
|
+
/**
|
|
48
|
+
* 노블레스 스킬 목록
|
|
49
|
+
*/
|
|
50
|
+
guildNoblesseSkill;
|
|
51
|
+
constructor(obj) {
|
|
52
|
+
super();
|
|
53
|
+
const { date, world_name, guild_name, guild_level, guild_fame, guild_point, guild_master_name, guild_member_count, guild_member, guild_skill, guild_noblesse_skill, } = obj;
|
|
54
|
+
this.date = date ? new Date(date) : null;
|
|
55
|
+
this.worldName = world_name;
|
|
56
|
+
this.guildName = guild_name;
|
|
57
|
+
this.guildLevel = guild_level;
|
|
58
|
+
this.guildFame = guild_fame;
|
|
59
|
+
this.guildPoint = guild_point;
|
|
60
|
+
this.guildMasterName = guild_master_name;
|
|
61
|
+
this.guildMemberCount = guild_member_count;
|
|
62
|
+
this.guildMember = guild_member;
|
|
63
|
+
this.guildSkill = guild_skill.map((skill) => new GuildSkillDto(skill));
|
|
64
|
+
this.guildNoblesseSkill = guild_noblesse_skill.map((skill) => new GuildSkillDto(skill));
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* 길드 스킬 정보
|
|
69
|
+
*/
|
|
70
|
+
class GuildSkillDto extends GuildSkillDto$1 {
|
|
71
|
+
/**
|
|
72
|
+
* 스킬 명
|
|
73
|
+
*/
|
|
74
|
+
skillName;
|
|
75
|
+
/**
|
|
76
|
+
* 스킬 설명
|
|
77
|
+
*/
|
|
78
|
+
skillDescription;
|
|
79
|
+
/**
|
|
80
|
+
* 스킬 레벨
|
|
81
|
+
*/
|
|
82
|
+
skillLevel;
|
|
83
|
+
/**
|
|
84
|
+
* 스킬 레벨 별 효과
|
|
85
|
+
*/
|
|
86
|
+
skillEffect;
|
|
87
|
+
/**
|
|
88
|
+
* 스킬 아이콘
|
|
89
|
+
*/
|
|
90
|
+
skillIcon;
|
|
91
|
+
constructor(obj) {
|
|
92
|
+
super();
|
|
93
|
+
const { skill_name, skill_description, skill_level, skill_effect, skill_icon, } = obj;
|
|
94
|
+
this.skillName = skill_name;
|
|
95
|
+
this.skillDescription = skill_description;
|
|
96
|
+
this.skillLevel = skill_level;
|
|
97
|
+
this.skillEffect = skill_effect;
|
|
98
|
+
this.skillIcon = skill_icon;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
export { GuildBasicDto, GuildSkillDto };
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
import { potentialOptionGradeFromString } from '../../../common/lib.js';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 큐브 히스토리
|
|
5
|
+
*/
|
|
6
|
+
class CubeHistoryDto {
|
|
7
|
+
/**
|
|
8
|
+
* 큐브 히스토리 식별자
|
|
9
|
+
*/
|
|
10
|
+
id;
|
|
11
|
+
/**
|
|
12
|
+
* 캐릭터 명
|
|
13
|
+
*/
|
|
14
|
+
characterName;
|
|
15
|
+
/**
|
|
16
|
+
* 월드 명
|
|
17
|
+
*/
|
|
18
|
+
worldName;
|
|
19
|
+
/**
|
|
20
|
+
* 사용 일시
|
|
21
|
+
*/
|
|
22
|
+
dateCreate;
|
|
23
|
+
/**
|
|
24
|
+
* 사용 큐브
|
|
25
|
+
*/
|
|
26
|
+
cubeType;
|
|
27
|
+
/**
|
|
28
|
+
* 사용 결과
|
|
29
|
+
*/
|
|
30
|
+
itemUpgradeResult;
|
|
31
|
+
/**
|
|
32
|
+
* 미라클 타임 적용 여부
|
|
33
|
+
*/
|
|
34
|
+
miracleTimeFlag;
|
|
35
|
+
/**
|
|
36
|
+
* 장비 분류
|
|
37
|
+
*/
|
|
38
|
+
itemEquipmentPart;
|
|
39
|
+
/**
|
|
40
|
+
* 장비 레벨
|
|
41
|
+
*/
|
|
42
|
+
itemLevel;
|
|
43
|
+
/**
|
|
44
|
+
* 큐브 사용한 장비
|
|
45
|
+
*/
|
|
46
|
+
targetItem;
|
|
47
|
+
/**
|
|
48
|
+
* 잠재능력 등급
|
|
49
|
+
*/
|
|
50
|
+
potentialOptionGrade;
|
|
51
|
+
/**
|
|
52
|
+
* 에디셔널 잠재능력 등급
|
|
53
|
+
*/
|
|
54
|
+
additionalPotentialOptionGrade;
|
|
55
|
+
/**
|
|
56
|
+
* 천장에 도달하여 확정 등급 상승한 여부
|
|
57
|
+
*/
|
|
58
|
+
upgradeGuarantee;
|
|
59
|
+
/**
|
|
60
|
+
* 현재까지 쌓은 스택
|
|
61
|
+
*/
|
|
62
|
+
upgradeGuaranteeCount;
|
|
63
|
+
/**
|
|
64
|
+
* 사용 전 잠재능력 옵션
|
|
65
|
+
*/
|
|
66
|
+
beforePotentialOption;
|
|
67
|
+
/**
|
|
68
|
+
* 사용 전 에디셔널 잠재능력 옵션
|
|
69
|
+
*/
|
|
70
|
+
beforeAdditionalPotentialOption;
|
|
71
|
+
/**
|
|
72
|
+
* 사용 후 잠재능력 옵션
|
|
73
|
+
*/
|
|
74
|
+
afterPotentialOption;
|
|
75
|
+
/**
|
|
76
|
+
* 사용 후 에디셔널 잠재능력 옵션
|
|
77
|
+
*/
|
|
78
|
+
afterAdditionalPotentialOption;
|
|
79
|
+
constructor(obj) {
|
|
80
|
+
const { id, character_name, world_name, date_create, cube_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;
|
|
81
|
+
this.id = id;
|
|
82
|
+
this.characterName = character_name;
|
|
83
|
+
this.worldName = world_name;
|
|
84
|
+
this.dateCreate = new Date(date_create);
|
|
85
|
+
this.cubeType = cube_type;
|
|
86
|
+
this.itemUpgradeResult = item_upgrade_result;
|
|
87
|
+
this.miracleTimeFlag = miracle_time_flag;
|
|
88
|
+
this.itemEquipmentPart = item_equipment_part;
|
|
89
|
+
this.itemLevel = item_level;
|
|
90
|
+
this.targetItem = target_item;
|
|
91
|
+
this.potentialOptionGrade = potential_option_grade;
|
|
92
|
+
this.additionalPotentialOptionGrade = additional_potential_option_grade;
|
|
93
|
+
this.upgradeGuarantee = upgrade_guarantee;
|
|
94
|
+
this.upgradeGuaranteeCount = upgrade_guarantee_count;
|
|
95
|
+
this.beforePotentialOption = before_potential_option.map((origin) => new CubeResultOptionDto(origin));
|
|
96
|
+
this.beforeAdditionalPotentialOption =
|
|
97
|
+
before_additional_potential_option.map((origin) => new CubeResultOptionDto(origin));
|
|
98
|
+
this.afterPotentialOption = after_potential_option.map((origin) => new CubeResultOptionDto(origin));
|
|
99
|
+
this.afterAdditionalPotentialOption = after_additional_potential_option.map((origin) => new CubeResultOptionDto(origin));
|
|
100
|
+
}
|
|
101
|
+
get isItemUpgrade() {
|
|
102
|
+
return this.itemUpgradeResult === '성공';
|
|
103
|
+
}
|
|
104
|
+
get isMiracleTimeFlag() {
|
|
105
|
+
return this.miracleTimeFlag !== '이벤트 적용되지 않음';
|
|
106
|
+
}
|
|
107
|
+
get potentialOptionGradeEnum() {
|
|
108
|
+
return potentialOptionGradeFromString(this.potentialOptionGrade);
|
|
109
|
+
}
|
|
110
|
+
get additionalPotentialOptionGradeEnum() {
|
|
111
|
+
return potentialOptionGradeFromString(this.additionalPotentialOptionGrade);
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* 큐브 결과 옵션 정보
|
|
116
|
+
*/
|
|
117
|
+
class CubeResultOptionDto {
|
|
118
|
+
/**
|
|
119
|
+
* 옵션 명
|
|
120
|
+
*/
|
|
121
|
+
value;
|
|
122
|
+
/**
|
|
123
|
+
* 옵션 등급
|
|
124
|
+
*/
|
|
125
|
+
grade;
|
|
126
|
+
constructor(obj) {
|
|
127
|
+
const { value, grade } = obj;
|
|
128
|
+
this.value = value;
|
|
129
|
+
this.grade = grade;
|
|
130
|
+
}
|
|
131
|
+
get gradeEnum() {
|
|
132
|
+
return potentialOptionGradeFromString(this.grade);
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
/**
|
|
136
|
+
* 큐브 히스토리 응답 정보
|
|
137
|
+
*/
|
|
138
|
+
class CubeHistoryResponseDto {
|
|
139
|
+
/**
|
|
140
|
+
* 결과 건 수
|
|
141
|
+
*/
|
|
142
|
+
count;
|
|
143
|
+
/**
|
|
144
|
+
* 큐브 히스토리
|
|
145
|
+
*/
|
|
146
|
+
cubeHistory;
|
|
147
|
+
/**
|
|
148
|
+
* 페이징 처리를 위한 cursor
|
|
149
|
+
*/
|
|
150
|
+
nextCursor;
|
|
151
|
+
constructor(obj) {
|
|
152
|
+
const { count, cube_history, next_cursor } = obj;
|
|
153
|
+
this.count = count;
|
|
154
|
+
this.cubeHistory = cube_history.map((origin) => new CubeHistoryDto(origin));
|
|
155
|
+
this.nextCursor = next_cursor;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
export { CubeHistoryDto, CubeHistoryResponseDto, CubeResultOptionDto };
|