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,115 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var characterLinkSkill = require('../../../common/dto/character/characterLinkSkill.js');
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* 캐릭터 링크 스킬 정보
|
|
9
|
+
*/
|
|
10
|
+
class CharacterLinkSkillDto extends characterLinkSkill.CharacterLinkSkillDto {
|
|
11
|
+
/**
|
|
12
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
13
|
+
*/
|
|
14
|
+
date;
|
|
15
|
+
/**
|
|
16
|
+
* 캐릭터 직업
|
|
17
|
+
*/
|
|
18
|
+
characterClass;
|
|
19
|
+
/**
|
|
20
|
+
* 링크 스킬 정보
|
|
21
|
+
*/
|
|
22
|
+
characterLinkSkill;
|
|
23
|
+
/**
|
|
24
|
+
* 링크 스킬 1번 프리셋 정보
|
|
25
|
+
*/
|
|
26
|
+
characterLinkSkillPreset1;
|
|
27
|
+
/**
|
|
28
|
+
* 링크 스킬 2번 프리셋 정보
|
|
29
|
+
*/
|
|
30
|
+
characterLinkSkillPreset2;
|
|
31
|
+
/**
|
|
32
|
+
* 링크 스킬 3번 프리셋 정보
|
|
33
|
+
*/
|
|
34
|
+
characterLinkSkillPreset3;
|
|
35
|
+
/**
|
|
36
|
+
* 내 링크 스킬 정보
|
|
37
|
+
*/
|
|
38
|
+
characterOwnedLinkSkill;
|
|
39
|
+
/**
|
|
40
|
+
* 내 링크 스킬 1번 프리셋 정보
|
|
41
|
+
*/
|
|
42
|
+
characterOwnedLinkSkillPreset1;
|
|
43
|
+
/**
|
|
44
|
+
* 내 링크 스킬 2번 프리셋 정보
|
|
45
|
+
*/
|
|
46
|
+
characterOwnedLinkSkillPreset2;
|
|
47
|
+
/**
|
|
48
|
+
* 내 링크 스킬 3번 프리셋 정보
|
|
49
|
+
*/
|
|
50
|
+
characterOwnedLinkSkillPreset3;
|
|
51
|
+
constructor(obj) {
|
|
52
|
+
super();
|
|
53
|
+
const { date, character_class, character_link_skill, character_link_skill_preset_1, character_link_skill_preset_2, character_link_skill_preset_3, character_owned_link_skill, character_owned_link_skill_preset_1, character_owned_link_skill_preset_2, character_owned_link_skill_preset_3, } = obj;
|
|
54
|
+
this.date = date ? new Date(date) : null;
|
|
55
|
+
this.characterClass = character_class;
|
|
56
|
+
this.characterLinkSkill = character_link_skill.map((skill) => new CharacterLinkSkillInfoDto(skill));
|
|
57
|
+
this.characterLinkSkillPreset1 = character_link_skill_preset_1.map((skill) => new CharacterLinkSkillInfoDto(skill));
|
|
58
|
+
this.characterLinkSkillPreset2 = character_link_skill_preset_2.map((skill) => new CharacterLinkSkillInfoDto(skill));
|
|
59
|
+
this.characterLinkSkillPreset3 = character_link_skill_preset_3.map((skill) => new CharacterLinkSkillInfoDto(skill));
|
|
60
|
+
this.characterOwnedLinkSkill = character_owned_link_skill
|
|
61
|
+
? new CharacterLinkSkillInfoDto(character_owned_link_skill)
|
|
62
|
+
: null;
|
|
63
|
+
this.characterOwnedLinkSkillPreset1 = character_owned_link_skill_preset_1
|
|
64
|
+
? new CharacterLinkSkillInfoDto(character_owned_link_skill_preset_1)
|
|
65
|
+
: null;
|
|
66
|
+
this.characterOwnedLinkSkillPreset2 = character_owned_link_skill_preset_2
|
|
67
|
+
? new CharacterLinkSkillInfoDto(character_owned_link_skill_preset_2)
|
|
68
|
+
: null;
|
|
69
|
+
this.characterOwnedLinkSkillPreset3 = character_owned_link_skill_preset_3
|
|
70
|
+
? new CharacterLinkSkillInfoDto(character_owned_link_skill_preset_3)
|
|
71
|
+
: null;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* 캐릭터 링크 스킬 정보
|
|
76
|
+
*/
|
|
77
|
+
class CharacterLinkSkillInfoDto extends characterLinkSkill.CharacterLinkSkillInfoDto {
|
|
78
|
+
/**
|
|
79
|
+
* 스킬 명
|
|
80
|
+
*/
|
|
81
|
+
skillName;
|
|
82
|
+
/**
|
|
83
|
+
* 스킬 설명
|
|
84
|
+
*/
|
|
85
|
+
skillDescription;
|
|
86
|
+
/**
|
|
87
|
+
* 스킬 레벨
|
|
88
|
+
*/
|
|
89
|
+
skillLevel;
|
|
90
|
+
/**
|
|
91
|
+
* 스킬 효과
|
|
92
|
+
*/
|
|
93
|
+
skillEffect;
|
|
94
|
+
/**
|
|
95
|
+
* 다음 레벨의 스킬 효과
|
|
96
|
+
*/
|
|
97
|
+
skillEffectNext;
|
|
98
|
+
/**
|
|
99
|
+
* 스킬 아이콘
|
|
100
|
+
*/
|
|
101
|
+
skillIcon;
|
|
102
|
+
constructor(obj) {
|
|
103
|
+
super();
|
|
104
|
+
const { skill_name, skill_description, skill_level, skill_effect, skill_effect_next, skill_icon, } = obj;
|
|
105
|
+
this.skillName = skill_name;
|
|
106
|
+
this.skillDescription = skill_description;
|
|
107
|
+
this.skillLevel = skill_level;
|
|
108
|
+
this.skillEffect = skill_effect;
|
|
109
|
+
this.skillEffectNext = skill_effect_next;
|
|
110
|
+
this.skillIcon = skill_icon;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
exports.CharacterLinkSkillDto = CharacterLinkSkillDto;
|
|
115
|
+
exports.CharacterLinkSkillInfoDto = CharacterLinkSkillInfoDto;
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var characterList = require('../../../common/dto/character/characterList.js');
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* 계정의 보유 캐릭터 목록
|
|
9
|
+
*/
|
|
10
|
+
class CharacterListDto extends characterList.CharacterListDto {
|
|
11
|
+
/**
|
|
12
|
+
* 메이플스토리 계정 목록
|
|
13
|
+
*/
|
|
14
|
+
accountList;
|
|
15
|
+
constructor(obj) {
|
|
16
|
+
super();
|
|
17
|
+
const { account_list } = obj;
|
|
18
|
+
this.accountList = account_list.map((account) => new CharacterListAccountDto(account));
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* 캐릭터 정보
|
|
23
|
+
*/
|
|
24
|
+
class CharacterListAccountCharacterDto extends characterList.CharacterListAccountCharacterDto {
|
|
25
|
+
/**
|
|
26
|
+
* 캐릭터 식별자
|
|
27
|
+
*/
|
|
28
|
+
ocid;
|
|
29
|
+
/**
|
|
30
|
+
* 캐릭터 명
|
|
31
|
+
*/
|
|
32
|
+
characterName;
|
|
33
|
+
/**
|
|
34
|
+
* 월드 명
|
|
35
|
+
*/
|
|
36
|
+
worldName;
|
|
37
|
+
/**
|
|
38
|
+
* 캐릭터 직업
|
|
39
|
+
*/
|
|
40
|
+
characterClass;
|
|
41
|
+
/**
|
|
42
|
+
* 캐릭터 레벨
|
|
43
|
+
*/
|
|
44
|
+
characterLevel;
|
|
45
|
+
constructor(obj) {
|
|
46
|
+
super();
|
|
47
|
+
const { ocid, character_name, world_name, character_class, character_level, } = obj;
|
|
48
|
+
this.ocid = ocid;
|
|
49
|
+
this.characterName = character_name;
|
|
50
|
+
this.worldName = world_name;
|
|
51
|
+
this.characterClass = character_class;
|
|
52
|
+
this.characterLevel = character_level;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* 메이플스토리 계정
|
|
57
|
+
*/
|
|
58
|
+
class CharacterListAccountDto extends characterList.CharacterListAccountDto {
|
|
59
|
+
/**
|
|
60
|
+
* 메이플스토리 계정 식별자
|
|
61
|
+
*/
|
|
62
|
+
accountId;
|
|
63
|
+
/**
|
|
64
|
+
* 캐릭터 목록
|
|
65
|
+
*/
|
|
66
|
+
characterList;
|
|
67
|
+
constructor(obj) {
|
|
68
|
+
super();
|
|
69
|
+
const { account_id, character_list } = obj;
|
|
70
|
+
this.accountId = account_id;
|
|
71
|
+
this.characterList = character_list.map((character) => new CharacterListAccountCharacterDto(character));
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
exports.CharacterListAccountCharacterDto = CharacterListAccountCharacterDto;
|
|
76
|
+
exports.CharacterListAccountDto = CharacterListAccountDto;
|
|
77
|
+
exports.CharacterListDto = CharacterListDto;
|
|
@@ -0,0 +1,332 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var characterPetEquipment = require('../../../common/dto/character/characterPetEquipment.js');
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* 캐릭터 펫 장비 정보
|
|
9
|
+
*/
|
|
10
|
+
class CharacterPetEquipmentDto extends characterPetEquipment.CharacterPetEquipmentDto {
|
|
11
|
+
/**
|
|
12
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
13
|
+
*/
|
|
14
|
+
date;
|
|
15
|
+
/**
|
|
16
|
+
* 펫1 명
|
|
17
|
+
*/
|
|
18
|
+
pet1Name;
|
|
19
|
+
/**
|
|
20
|
+
* 펫1 닉네임
|
|
21
|
+
*/
|
|
22
|
+
pet1Nickname;
|
|
23
|
+
/**
|
|
24
|
+
* 펫1 아이콘
|
|
25
|
+
*/
|
|
26
|
+
pet1Icon;
|
|
27
|
+
/**
|
|
28
|
+
* 펫1 설명
|
|
29
|
+
*/
|
|
30
|
+
pet1Description;
|
|
31
|
+
/**
|
|
32
|
+
* 펫1 장착 정보
|
|
33
|
+
*/
|
|
34
|
+
pet1Equipment;
|
|
35
|
+
/**
|
|
36
|
+
* 펫1 펫 버프 자동스킬 정보
|
|
37
|
+
*/
|
|
38
|
+
pet1AutoSkill;
|
|
39
|
+
/**
|
|
40
|
+
* 펫1 원더 펫 종류
|
|
41
|
+
*/
|
|
42
|
+
pet1PetType;
|
|
43
|
+
/**
|
|
44
|
+
* 펫1 펫 보유 스킬
|
|
45
|
+
*/
|
|
46
|
+
pet1Skill;
|
|
47
|
+
/**
|
|
48
|
+
* 펫1 마법의 시간 (KST, 시간 단위 데이터로 분은 일괄 0으로 표기)
|
|
49
|
+
*/
|
|
50
|
+
pet1DateExpire = null;
|
|
51
|
+
/**
|
|
52
|
+
* 펫1 마법의 시간 만료 여부
|
|
53
|
+
*/
|
|
54
|
+
pet1Expired = null;
|
|
55
|
+
/**
|
|
56
|
+
* 펫1 외형
|
|
57
|
+
*/
|
|
58
|
+
pet1Appearance;
|
|
59
|
+
/**
|
|
60
|
+
* 펫1 외형 아이콘
|
|
61
|
+
*/
|
|
62
|
+
pet1AppearanceIcon;
|
|
63
|
+
/**
|
|
64
|
+
* 펫2 명
|
|
65
|
+
*/
|
|
66
|
+
pet2Name;
|
|
67
|
+
/**
|
|
68
|
+
* 펫2 닉네임
|
|
69
|
+
*/
|
|
70
|
+
pet2Nickname;
|
|
71
|
+
/**
|
|
72
|
+
* 펫2 아이콘
|
|
73
|
+
*/
|
|
74
|
+
pet2Icon;
|
|
75
|
+
/**
|
|
76
|
+
* 펫2 설명
|
|
77
|
+
*/
|
|
78
|
+
pet2Description;
|
|
79
|
+
/**
|
|
80
|
+
* 펫2 장착 정보
|
|
81
|
+
*/
|
|
82
|
+
pet2Equipment;
|
|
83
|
+
/**
|
|
84
|
+
* 펫2 펫 버프 자동스킬 정보
|
|
85
|
+
*/
|
|
86
|
+
pet2AutoSkill;
|
|
87
|
+
/**
|
|
88
|
+
* 펫2 원더 펫 종류
|
|
89
|
+
*/
|
|
90
|
+
pet2PetType;
|
|
91
|
+
/**
|
|
92
|
+
* 펫2 펫 보유 스킬
|
|
93
|
+
*/
|
|
94
|
+
pet2Skill;
|
|
95
|
+
/**
|
|
96
|
+
* 펫2 마법의 시간 (KST, 시간 단위 데이터로 분은 일괄 0으로 표기)
|
|
97
|
+
*/
|
|
98
|
+
pet2DateExpire = null;
|
|
99
|
+
/**
|
|
100
|
+
* 펫2 마법의 시간 만료 여부
|
|
101
|
+
*/
|
|
102
|
+
pet2Expired = null;
|
|
103
|
+
/**
|
|
104
|
+
* 펫2 외형
|
|
105
|
+
*/
|
|
106
|
+
pet2Appearance;
|
|
107
|
+
/**
|
|
108
|
+
* 펫2 외형 아이콘
|
|
109
|
+
*/
|
|
110
|
+
pet2AppearanceIcon;
|
|
111
|
+
/**
|
|
112
|
+
* 펫3 명
|
|
113
|
+
*/
|
|
114
|
+
pet3Name;
|
|
115
|
+
/**
|
|
116
|
+
* 펫3 닉네임
|
|
117
|
+
*/
|
|
118
|
+
pet3Nickname;
|
|
119
|
+
/**
|
|
120
|
+
* 펫3 아이콘
|
|
121
|
+
*/
|
|
122
|
+
pet3Icon;
|
|
123
|
+
/**
|
|
124
|
+
* 펫3 설명
|
|
125
|
+
*/
|
|
126
|
+
pet3Description;
|
|
127
|
+
/**
|
|
128
|
+
* 펫3 장착 정보
|
|
129
|
+
*/
|
|
130
|
+
pet3Equipment;
|
|
131
|
+
/**
|
|
132
|
+
* 펫3 펫 버프 자동스킬 정보
|
|
133
|
+
*/
|
|
134
|
+
pet3AutoSkill;
|
|
135
|
+
/**
|
|
136
|
+
* 펫3 원더 펫 종류
|
|
137
|
+
*/
|
|
138
|
+
pet3PetType;
|
|
139
|
+
/**
|
|
140
|
+
* 펫3 펫 보유 스킬
|
|
141
|
+
*/
|
|
142
|
+
pet3Skill;
|
|
143
|
+
/**
|
|
144
|
+
* 펫3 마법의 시간 (KST, 시간 단위 데이터로 분은 일괄 0으로 표기)
|
|
145
|
+
*/
|
|
146
|
+
pet3DateExpire = null;
|
|
147
|
+
/**
|
|
148
|
+
* 펫3 마법의 시간 만료 여부
|
|
149
|
+
*/
|
|
150
|
+
pet3Expired = null;
|
|
151
|
+
/**
|
|
152
|
+
* 펫3 외형
|
|
153
|
+
*/
|
|
154
|
+
pet3Appearance;
|
|
155
|
+
/**
|
|
156
|
+
* 펫3 외형 아이콘
|
|
157
|
+
*/
|
|
158
|
+
pet3AppearanceIcon;
|
|
159
|
+
constructor(obj) {
|
|
160
|
+
super();
|
|
161
|
+
const { date, pet_1_name, pet_1_nickname, pet_1_icon, pet_1_description, pet_1_equipment, pet_1_auto_skill, pet_1_pet_type, pet_1_skill, pet_1_date_expire, pet_1_appearance, pet_1_appearance_icon, pet_2_name, pet_2_nickname, pet_2_icon, pet_2_description, pet_2_equipment, pet_2_auto_skill, pet_2_pet_type, pet_2_skill, pet_2_date_expire, pet_2_appearance, pet_2_appearance_icon, pet_3_name, pet_3_nickname, pet_3_icon, pet_3_description, pet_3_equipment, pet_3_auto_skill, pet_3_pet_type, pet_3_skill, pet_3_date_expire, pet_3_appearance, pet_3_appearance_icon, } = obj;
|
|
162
|
+
this.date = date ? new Date(date) : null;
|
|
163
|
+
this.pet1Name = pet_1_name;
|
|
164
|
+
this.pet1Nickname = pet_1_nickname;
|
|
165
|
+
this.pet1Icon = pet_1_icon;
|
|
166
|
+
this.pet1Description = pet_1_description;
|
|
167
|
+
this.pet1Equipment = pet_1_equipment
|
|
168
|
+
? new CharacterPetEquipmentItemDto(pet_1_equipment)
|
|
169
|
+
: null;
|
|
170
|
+
this.pet1AutoSkill = pet_1_auto_skill
|
|
171
|
+
? new CharacterPetEquipmentAutoSkillDto(pet_1_auto_skill)
|
|
172
|
+
: null;
|
|
173
|
+
this.pet1PetType = pet_1_pet_type;
|
|
174
|
+
this.pet1Skill = pet_1_skill;
|
|
175
|
+
this.pet1Appearance = pet_1_appearance;
|
|
176
|
+
this.pet1AppearanceIcon = pet_1_appearance_icon;
|
|
177
|
+
this.pet2Name = pet_2_name;
|
|
178
|
+
this.pet2Nickname = pet_2_nickname;
|
|
179
|
+
this.pet2Icon = pet_2_icon;
|
|
180
|
+
this.pet2Description = pet_2_description;
|
|
181
|
+
this.pet2Equipment = pet_2_equipment
|
|
182
|
+
? new CharacterPetEquipmentItemDto(pet_2_equipment)
|
|
183
|
+
: null;
|
|
184
|
+
this.pet2AutoSkill = pet_2_auto_skill
|
|
185
|
+
? new CharacterPetEquipmentAutoSkillDto(pet_2_auto_skill)
|
|
186
|
+
: null;
|
|
187
|
+
this.pet2PetType = pet_2_pet_type;
|
|
188
|
+
this.pet2Skill = pet_2_skill;
|
|
189
|
+
this.pet2Appearance = pet_2_appearance;
|
|
190
|
+
this.pet2AppearanceIcon = pet_2_appearance_icon;
|
|
191
|
+
this.pet3Name = pet_3_name;
|
|
192
|
+
this.pet3Nickname = pet_3_nickname;
|
|
193
|
+
this.pet3Icon = pet_3_icon;
|
|
194
|
+
this.pet3Description = pet_3_description;
|
|
195
|
+
this.pet3Equipment = pet_3_equipment
|
|
196
|
+
? new CharacterPetEquipmentItemDto(pet_3_equipment)
|
|
197
|
+
: null;
|
|
198
|
+
this.pet3AutoSkill = pet_3_auto_skill
|
|
199
|
+
? new CharacterPetEquipmentAutoSkillDto(pet_3_auto_skill)
|
|
200
|
+
: null;
|
|
201
|
+
this.pet3PetType = pet_3_pet_type;
|
|
202
|
+
this.pet3Skill = pet_3_skill;
|
|
203
|
+
this.pet3Appearance = pet_3_appearance;
|
|
204
|
+
this.pet3AppearanceIcon = pet_3_appearance_icon;
|
|
205
|
+
if (pet_1_date_expire === 'expired') {
|
|
206
|
+
this.pet1Expired = true;
|
|
207
|
+
}
|
|
208
|
+
else if (typeof pet_1_date_expire === 'string') {
|
|
209
|
+
this.pet1DateExpire = pet_1_date_expire
|
|
210
|
+
? new Date(pet_1_date_expire)
|
|
211
|
+
: null;
|
|
212
|
+
}
|
|
213
|
+
if (pet_2_date_expire === 'expired') {
|
|
214
|
+
this.pet2Expired = true;
|
|
215
|
+
}
|
|
216
|
+
else if (typeof pet_2_date_expire === 'string') {
|
|
217
|
+
this.pet2DateExpire = pet_2_date_expire
|
|
218
|
+
? new Date(pet_2_date_expire)
|
|
219
|
+
: null;
|
|
220
|
+
}
|
|
221
|
+
if (pet_3_date_expire === 'expired') {
|
|
222
|
+
this.pet3Expired = true;
|
|
223
|
+
}
|
|
224
|
+
else if (typeof pet_3_date_expire === 'string') {
|
|
225
|
+
this.pet3DateExpire = pet_3_date_expire
|
|
226
|
+
? new Date(pet_3_date_expire)
|
|
227
|
+
: null;
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
/**
|
|
232
|
+
* 캐릭터 펫 장비 자동 스킬 정보
|
|
233
|
+
*/
|
|
234
|
+
class CharacterPetEquipmentAutoSkillDto extends characterPetEquipment.CharacterPetEquipmentAutoSkillDto {
|
|
235
|
+
/**
|
|
236
|
+
* 첫 번째 슬롯에 등록된 자동 스킬
|
|
237
|
+
*/
|
|
238
|
+
skill1;
|
|
239
|
+
/**
|
|
240
|
+
* 첫 번째 슬롯에 등록된 자동 아이콘
|
|
241
|
+
*/
|
|
242
|
+
skill1Icon;
|
|
243
|
+
/**
|
|
244
|
+
* 두 번째 슬롯에 등록된 자동 스킬
|
|
245
|
+
*/
|
|
246
|
+
skill2;
|
|
247
|
+
/**
|
|
248
|
+
* 두 번째 슬롯에 등록된 자동 아이콘
|
|
249
|
+
*/
|
|
250
|
+
skill2Icon;
|
|
251
|
+
constructor(obj) {
|
|
252
|
+
super();
|
|
253
|
+
const { skill_1, skill_1_icon, skill_2, skill_2_icon } = obj;
|
|
254
|
+
this.skill1 = skill_1;
|
|
255
|
+
this.skill1Icon = skill_1_icon;
|
|
256
|
+
this.skill2 = skill_2;
|
|
257
|
+
this.skill2Icon = skill_2_icon;
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
/**
|
|
261
|
+
* 캐릭터 펫 장비 아이템 옵션 정보
|
|
262
|
+
*/
|
|
263
|
+
class CharacterPetEquipmentItemOptionDto extends characterPetEquipment.CharacterPetEquipmentItemOptionDto {
|
|
264
|
+
/**
|
|
265
|
+
* 옵션 정보
|
|
266
|
+
*/
|
|
267
|
+
optionType;
|
|
268
|
+
/**
|
|
269
|
+
* 옵션 값
|
|
270
|
+
*/
|
|
271
|
+
optionValue;
|
|
272
|
+
constructor(obj) {
|
|
273
|
+
super();
|
|
274
|
+
const { option_type, option_value } = obj;
|
|
275
|
+
this.optionType = option_type;
|
|
276
|
+
this.optionValue = option_value;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
/**
|
|
280
|
+
* 캐릭터 펫 장비 아이템 정보
|
|
281
|
+
*/
|
|
282
|
+
class CharacterPetEquipmentItemDto extends characterPetEquipment.CharacterPetEquipmentItemDto {
|
|
283
|
+
/**
|
|
284
|
+
* 아이템 명
|
|
285
|
+
*/
|
|
286
|
+
itemName;
|
|
287
|
+
/**
|
|
288
|
+
* 아이템 아이콘
|
|
289
|
+
*/
|
|
290
|
+
itemIcon;
|
|
291
|
+
/**
|
|
292
|
+
* 아이템 설명
|
|
293
|
+
*/
|
|
294
|
+
itemDescription;
|
|
295
|
+
/**
|
|
296
|
+
* 아이템 표기상 옵션
|
|
297
|
+
*/
|
|
298
|
+
itemOption;
|
|
299
|
+
/**
|
|
300
|
+
* 업그레이드 횟수
|
|
301
|
+
*/
|
|
302
|
+
scrollUpgrade;
|
|
303
|
+
/**
|
|
304
|
+
* 업그레이드 가능 횟수
|
|
305
|
+
*/
|
|
306
|
+
scrollUpgradable;
|
|
307
|
+
/**
|
|
308
|
+
* 아이템 외형
|
|
309
|
+
*/
|
|
310
|
+
itemShape;
|
|
311
|
+
/**
|
|
312
|
+
* 아이템 외형 아이콘
|
|
313
|
+
*/
|
|
314
|
+
itemShapeIcon;
|
|
315
|
+
constructor(obj) {
|
|
316
|
+
super();
|
|
317
|
+
const { item_name, item_icon, item_description, item_option, scroll_upgrade, scroll_upgradable, item_shape, item_shape_icon, } = obj;
|
|
318
|
+
this.itemName = item_name;
|
|
319
|
+
this.itemIcon = item_icon;
|
|
320
|
+
this.itemDescription = item_description;
|
|
321
|
+
this.itemOption = item_option.map((option) => new CharacterPetEquipmentItemOptionDto(option));
|
|
322
|
+
this.scrollUpgrade = scroll_upgrade;
|
|
323
|
+
this.scrollUpgradable = scroll_upgradable;
|
|
324
|
+
this.itemShape = item_shape;
|
|
325
|
+
this.itemShapeIcon = item_shape_icon;
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
exports.CharacterPetEquipmentAutoSkillDto = CharacterPetEquipmentAutoSkillDto;
|
|
330
|
+
exports.CharacterPetEquipmentDto = CharacterPetEquipmentDto;
|
|
331
|
+
exports.CharacterPetEquipmentItemDto = CharacterPetEquipmentItemDto;
|
|
332
|
+
exports.CharacterPetEquipmentItemOptionDto = CharacterPetEquipmentItemOptionDto;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var characterPopularity = require('../../../common/dto/character/characterPopularity.js');
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* 캐릭터 인기도 정보
|
|
9
|
+
*/
|
|
10
|
+
class CharacterPopularityDto extends characterPopularity.CharacterPopularityDto {
|
|
11
|
+
/**
|
|
12
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
13
|
+
*/
|
|
14
|
+
date;
|
|
15
|
+
/**
|
|
16
|
+
* 캐릭터 인기도
|
|
17
|
+
*/
|
|
18
|
+
popularity;
|
|
19
|
+
constructor(obj) {
|
|
20
|
+
super();
|
|
21
|
+
const { date, popularity } = obj;
|
|
22
|
+
this.date = date ? new Date(date) : null;
|
|
23
|
+
this.popularity = popularity;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
exports.CharacterPopularityDto = CharacterPopularityDto;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var characterPropensity = require('../../../common/dto/character/characterPropensity.js');
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* 캐릭터 성향 정보
|
|
9
|
+
*/
|
|
10
|
+
class CharacterPropensityDto extends characterPropensity.CharacterPropensityDto {
|
|
11
|
+
/**
|
|
12
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
13
|
+
*/
|
|
14
|
+
date;
|
|
15
|
+
/**
|
|
16
|
+
* 카리스마 레벨
|
|
17
|
+
*/
|
|
18
|
+
charismaLevel;
|
|
19
|
+
/**
|
|
20
|
+
* 감성 레벨
|
|
21
|
+
*/
|
|
22
|
+
sensibilityLevel;
|
|
23
|
+
/**
|
|
24
|
+
* 통찰력 레벨
|
|
25
|
+
*/
|
|
26
|
+
insightLevel;
|
|
27
|
+
/**
|
|
28
|
+
* 의지 레벨
|
|
29
|
+
*/
|
|
30
|
+
willingnessLevel;
|
|
31
|
+
/**
|
|
32
|
+
* 손재주 레벨
|
|
33
|
+
*/
|
|
34
|
+
handicraftLevel;
|
|
35
|
+
/**
|
|
36
|
+
* 매력 레벨
|
|
37
|
+
*/
|
|
38
|
+
charmLevel;
|
|
39
|
+
constructor(obj) {
|
|
40
|
+
super();
|
|
41
|
+
const { date, charisma_level, sensibility_level, insight_level, willingness_level, handicraft_level, charm_level, } = obj;
|
|
42
|
+
this.date = date ? new Date(date) : null;
|
|
43
|
+
this.charismaLevel = charisma_level;
|
|
44
|
+
this.sensibilityLevel = sensibility_level;
|
|
45
|
+
this.insightLevel = insight_level;
|
|
46
|
+
this.willingnessLevel = willingness_level;
|
|
47
|
+
this.handicraftLevel = handicraft_level;
|
|
48
|
+
this.charmLevel = charm_level;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
exports.CharacterPropensityDto = CharacterPropensityDto;
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var characterSetEffect = require('../../../common/dto/character/characterSetEffect.js');
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* 캐릭터 세트 효과 정보
|
|
9
|
+
*/
|
|
10
|
+
class CharacterSetEffectDto extends characterSetEffect.CharacterSetEffectDto {
|
|
11
|
+
/**
|
|
12
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
13
|
+
*/
|
|
14
|
+
date;
|
|
15
|
+
/**
|
|
16
|
+
* 세트 효과 정보
|
|
17
|
+
*/
|
|
18
|
+
setEffect;
|
|
19
|
+
constructor(obj) {
|
|
20
|
+
super();
|
|
21
|
+
const { date, set_effect } = obj;
|
|
22
|
+
this.date = date ? new Date(date) : null;
|
|
23
|
+
this.setEffect = set_effect.map((effect) => new CharacterSetEffectSetDto(effect));
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* 적용 중인 세트 효과 정보
|
|
28
|
+
*/
|
|
29
|
+
class CharacterSetEffectInfoDto extends characterSetEffect.CharacterSetEffectInfoDto {
|
|
30
|
+
/**
|
|
31
|
+
* 세트 효과 레벨 (장비 수)
|
|
32
|
+
*/
|
|
33
|
+
setCount;
|
|
34
|
+
/**
|
|
35
|
+
* 세트 효과
|
|
36
|
+
*/
|
|
37
|
+
setOption;
|
|
38
|
+
constructor(obj) {
|
|
39
|
+
super();
|
|
40
|
+
const { set_count, set_option } = obj;
|
|
41
|
+
this.setCount = set_count;
|
|
42
|
+
this.setOption = set_option;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* 모든 세트 효과 정보
|
|
47
|
+
*/
|
|
48
|
+
class CharacterSetEffectOptionFullDto extends characterSetEffect.CharacterSetEffectOptionFullDto {
|
|
49
|
+
/**
|
|
50
|
+
* 세트 효과 레벨 (장비 수)
|
|
51
|
+
*/
|
|
52
|
+
setCount;
|
|
53
|
+
/**
|
|
54
|
+
* 세트 효과
|
|
55
|
+
*/
|
|
56
|
+
setOption;
|
|
57
|
+
constructor(obj) {
|
|
58
|
+
super();
|
|
59
|
+
const { set_count, set_option } = obj;
|
|
60
|
+
this.setCount = set_count;
|
|
61
|
+
this.setOption = set_option;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* 세트 효과 정보
|
|
66
|
+
*/
|
|
67
|
+
class CharacterSetEffectSetDto extends characterSetEffect.CharacterSetEffectSetDto {
|
|
68
|
+
/**
|
|
69
|
+
* 세트 효과 명
|
|
70
|
+
*/
|
|
71
|
+
setName;
|
|
72
|
+
/**
|
|
73
|
+
* 세트 개수 (럭키 아이템 포함)
|
|
74
|
+
*/
|
|
75
|
+
totalSetCount;
|
|
76
|
+
/**
|
|
77
|
+
* 적용 중인 세트 효과 정보
|
|
78
|
+
*/
|
|
79
|
+
setEffectInfo;
|
|
80
|
+
/**
|
|
81
|
+
* 모든 세트 효과 정보
|
|
82
|
+
*/
|
|
83
|
+
setOptionFull;
|
|
84
|
+
constructor(obj) {
|
|
85
|
+
super();
|
|
86
|
+
const { set_name, total_set_count, set_effect_info, set_option_full } = obj;
|
|
87
|
+
this.setName = set_name;
|
|
88
|
+
this.totalSetCount = total_set_count;
|
|
89
|
+
this.setEffectInfo = set_effect_info.map((info) => new CharacterSetEffectInfoDto(info));
|
|
90
|
+
this.setOptionFull = set_option_full.map((info) => new CharacterSetEffectOptionFullDto(info));
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
exports.CharacterSetEffectDto = CharacterSetEffectDto;
|
|
95
|
+
exports.CharacterSetEffectInfoDto = CharacterSetEffectInfoDto;
|
|
96
|
+
exports.CharacterSetEffectOptionFullDto = CharacterSetEffectOptionFullDto;
|
|
97
|
+
exports.CharacterSetEffectSetDto = CharacterSetEffectSetDto;
|