maplestory-openapi 2.13.1 → 3.1.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 +456 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterBasic.js +99 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterBeautyEquipment.js +194 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterCashItemEquipment.js +239 -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 +1206 -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 +424 -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 +445 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterBasic.js +95 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterBeautyEquipment.js +187 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterCashItemEquipment.js +232 -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 +1191 -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 +413 -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 +78 -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 +322 -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 +133 -0
- package/types/maplestory/api/kms/dto/character/characterCashItemEquipment.d.ts +166 -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 +914 -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} +24 -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 +32 -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} +15 -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} +35 -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 +299 -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 +76 -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
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
1
|
+
import * as base from '../../../common/dto/character/characterLinkSkill';
|
|
2
|
+
import { CharacterLinkSkillBody, CharacterLinkSkillInfoBody } from '../../response/character/characterLinkSkillBody';
|
|
3
3
|
/**
|
|
4
4
|
* 캐릭터 링크 스킬 정보
|
|
5
5
|
*/
|
|
6
|
-
declare class CharacterLinkSkillDto {
|
|
6
|
+
export declare class CharacterLinkSkillDto extends base.CharacterLinkSkillDto {
|
|
7
7
|
/**
|
|
8
|
-
* 조회 기준일
|
|
8
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
9
9
|
*/
|
|
10
10
|
date: Date | null;
|
|
11
11
|
/**
|
|
@@ -44,6 +44,35 @@ declare class CharacterLinkSkillDto {
|
|
|
44
44
|
* 내 링크 스킬 3번 프리셋 정보
|
|
45
45
|
*/
|
|
46
46
|
characterOwnedLinkSkillPreset3: CharacterLinkSkillInfoDto | null;
|
|
47
|
-
constructor(obj:
|
|
47
|
+
constructor(obj: CharacterLinkSkillBody);
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* 캐릭터 링크 스킬 정보
|
|
51
|
+
*/
|
|
52
|
+
export declare class CharacterLinkSkillInfoDto extends base.CharacterLinkSkillInfoDto {
|
|
53
|
+
/**
|
|
54
|
+
* 스킬 명
|
|
55
|
+
*/
|
|
56
|
+
skillName: string;
|
|
57
|
+
/**
|
|
58
|
+
* 스킬 설명
|
|
59
|
+
*/
|
|
60
|
+
skillDescription: string;
|
|
61
|
+
/**
|
|
62
|
+
* 스킬 레벨
|
|
63
|
+
*/
|
|
64
|
+
skillLevel: number;
|
|
65
|
+
/**
|
|
66
|
+
* 스킬 효과
|
|
67
|
+
*/
|
|
68
|
+
skillEffect: string;
|
|
69
|
+
/**
|
|
70
|
+
* 다음 레벨의 스킬 효과
|
|
71
|
+
*/
|
|
72
|
+
skillEffectNext: string | null;
|
|
73
|
+
/**
|
|
74
|
+
* 스킬 아이콘
|
|
75
|
+
*/
|
|
76
|
+
skillIcon: string;
|
|
77
|
+
constructor(obj: CharacterLinkSkillInfoBody);
|
|
48
78
|
}
|
|
49
|
-
export { CharacterLinkSkillDto };
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import * as base from '../../../common/dto/character/characterList';
|
|
2
|
+
import { CharacterListAccountBody, CharacterListAccountCharacterBody, CharacterListBody } from '../../response/character/characterListBody';
|
|
3
|
+
/**
|
|
4
|
+
* 계정의 보유 캐릭터 목록
|
|
5
|
+
*/
|
|
6
|
+
export declare class CharacterListDto extends base.CharacterListDto {
|
|
7
|
+
/**
|
|
8
|
+
* 메이플스토리 계정 목록
|
|
9
|
+
*/
|
|
10
|
+
accountList: CharacterListAccountDto[];
|
|
11
|
+
constructor(obj: CharacterListBody);
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* 캐릭터 정보
|
|
15
|
+
*/
|
|
16
|
+
export declare class CharacterListAccountCharacterDto extends base.CharacterListAccountCharacterDto {
|
|
17
|
+
/**
|
|
18
|
+
* 캐릭터 식별자
|
|
19
|
+
*/
|
|
20
|
+
ocid: string;
|
|
21
|
+
/**
|
|
22
|
+
* 캐릭터 명
|
|
23
|
+
*/
|
|
24
|
+
characterName: string;
|
|
25
|
+
/**
|
|
26
|
+
* 월드 명
|
|
27
|
+
*/
|
|
28
|
+
worldName: string;
|
|
29
|
+
/**
|
|
30
|
+
* 캐릭터 직업
|
|
31
|
+
*/
|
|
32
|
+
characterClass: string;
|
|
33
|
+
/**
|
|
34
|
+
* 캐릭터 레벨
|
|
35
|
+
*/
|
|
36
|
+
characterLevel: number;
|
|
37
|
+
constructor(obj: CharacterListAccountCharacterBody);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* 메이플스토리 계정
|
|
41
|
+
*/
|
|
42
|
+
export declare class CharacterListAccountDto extends base.CharacterListAccountDto {
|
|
43
|
+
/**
|
|
44
|
+
* 메이플스토리 계정 식별자
|
|
45
|
+
*/
|
|
46
|
+
accountId: string;
|
|
47
|
+
/**
|
|
48
|
+
* 캐릭터 목록
|
|
49
|
+
*/
|
|
50
|
+
characterList: CharacterListAccountCharacterDto[];
|
|
51
|
+
constructor(obj: CharacterListAccountBody);
|
|
52
|
+
}
|
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
3
|
-
import { CharacterPetEquipmentDtoBody } from '../../response/character/characterPetEquipmentDtoBody';
|
|
1
|
+
import * as base from '../../../common/dto/character/characterPetEquipment';
|
|
2
|
+
import { CharacterPetEquipmentAutoSkillBody, CharacterPetEquipmentBody, CharacterPetEquipmentItemBody, CharacterPetEquipmentItemOptionBody } from '../../response/character/characterPetEquipmentBody';
|
|
4
3
|
/**
|
|
5
4
|
* 캐릭터 펫 장비 정보
|
|
6
5
|
*/
|
|
7
|
-
declare class CharacterPetEquipmentDto {
|
|
6
|
+
export declare class CharacterPetEquipmentDto extends base.CharacterPetEquipmentDto {
|
|
8
7
|
/**
|
|
9
|
-
* 조회 기준일
|
|
8
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
10
9
|
*/
|
|
11
10
|
date: Date | null;
|
|
12
11
|
/**
|
|
@@ -153,6 +152,79 @@ declare class CharacterPetEquipmentDto {
|
|
|
153
152
|
* 펫3 외형 아이콘
|
|
154
153
|
*/
|
|
155
154
|
pet3AppearanceIcon: string | null;
|
|
156
|
-
constructor(obj:
|
|
155
|
+
constructor(obj: CharacterPetEquipmentBody);
|
|
156
|
+
}
|
|
157
|
+
/**
|
|
158
|
+
* 캐릭터 펫 장비 자동 스킬 정보
|
|
159
|
+
*/
|
|
160
|
+
export declare class CharacterPetEquipmentAutoSkillDto extends base.CharacterPetEquipmentAutoSkillDto {
|
|
161
|
+
/**
|
|
162
|
+
* 첫 번째 슬롯에 등록된 자동 스킬
|
|
163
|
+
*/
|
|
164
|
+
skill1: string | null;
|
|
165
|
+
/**
|
|
166
|
+
* 첫 번째 슬롯에 등록된 자동 아이콘
|
|
167
|
+
*/
|
|
168
|
+
skill1Icon: string | null;
|
|
169
|
+
/**
|
|
170
|
+
* 두 번째 슬롯에 등록된 자동 스킬
|
|
171
|
+
*/
|
|
172
|
+
skill2: string | null;
|
|
173
|
+
/**
|
|
174
|
+
* 두 번째 슬롯에 등록된 자동 아이콘
|
|
175
|
+
*/
|
|
176
|
+
skill2Icon: string | null;
|
|
177
|
+
constructor(obj: CharacterPetEquipmentAutoSkillBody);
|
|
178
|
+
}
|
|
179
|
+
/**
|
|
180
|
+
* 캐릭터 펫 장비 아이템 옵션 정보
|
|
181
|
+
*/
|
|
182
|
+
export declare class CharacterPetEquipmentItemOptionDto extends base.CharacterPetEquipmentItemOptionDto {
|
|
183
|
+
/**
|
|
184
|
+
* 옵션 정보
|
|
185
|
+
*/
|
|
186
|
+
optionType: string;
|
|
187
|
+
/**
|
|
188
|
+
* 옵션 값
|
|
189
|
+
*/
|
|
190
|
+
optionValue: string;
|
|
191
|
+
constructor(obj: CharacterPetEquipmentItemOptionBody);
|
|
192
|
+
}
|
|
193
|
+
/**
|
|
194
|
+
* 캐릭터 펫 장비 아이템 정보
|
|
195
|
+
*/
|
|
196
|
+
export declare class CharacterPetEquipmentItemDto extends base.CharacterPetEquipmentItemDto {
|
|
197
|
+
/**
|
|
198
|
+
* 아이템 명
|
|
199
|
+
*/
|
|
200
|
+
itemName: string | null;
|
|
201
|
+
/**
|
|
202
|
+
* 아이템 아이콘
|
|
203
|
+
*/
|
|
204
|
+
itemIcon: string | null;
|
|
205
|
+
/**
|
|
206
|
+
* 아이템 설명
|
|
207
|
+
*/
|
|
208
|
+
itemDescription: string | null;
|
|
209
|
+
/**
|
|
210
|
+
* 아이템 표기상 옵션
|
|
211
|
+
*/
|
|
212
|
+
itemOption: CharacterPetEquipmentItemOptionDto[];
|
|
213
|
+
/**
|
|
214
|
+
* 업그레이드 횟수
|
|
215
|
+
*/
|
|
216
|
+
scrollUpgrade: number;
|
|
217
|
+
/**
|
|
218
|
+
* 업그레이드 가능 횟수
|
|
219
|
+
*/
|
|
220
|
+
scrollUpgradable: number;
|
|
221
|
+
/**
|
|
222
|
+
* 아이템 외형
|
|
223
|
+
*/
|
|
224
|
+
itemShape: string | null;
|
|
225
|
+
/**
|
|
226
|
+
* 아이템 외형 아이콘
|
|
227
|
+
*/
|
|
228
|
+
itemShapeIcon: string | null;
|
|
229
|
+
constructor(obj: CharacterPetEquipmentItemBody);
|
|
157
230
|
}
|
|
158
|
-
export { CharacterPetEquipmentDto };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as base from '../../../common/dto/character/characterPopularity';
|
|
2
|
+
import { CharacterPopularityBody } from '../../response/character/characterPopularityBody';
|
|
3
|
+
/**
|
|
4
|
+
* 캐릭터 인기도 정보
|
|
5
|
+
*/
|
|
6
|
+
export declare class CharacterPopularityDto extends base.CharacterPopularityDto {
|
|
7
|
+
/**
|
|
8
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
9
|
+
*/
|
|
10
|
+
date: Date | null;
|
|
11
|
+
/**
|
|
12
|
+
* 캐릭터 인기도
|
|
13
|
+
*/
|
|
14
|
+
popularity: number;
|
|
15
|
+
constructor(obj: CharacterPopularityBody);
|
|
16
|
+
}
|
|
@@ -1,8 +1,12 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as base from '../../../common/dto/character/characterPropensity';
|
|
2
|
+
import { CharacterPropensityBody } from '../../response/character/characterPropensityBody';
|
|
2
3
|
/**
|
|
3
4
|
* 캐릭터 성향 정보
|
|
4
5
|
*/
|
|
5
|
-
declare class CharacterPropensityDto {
|
|
6
|
+
export declare class CharacterPropensityDto extends base.CharacterPropensityDto {
|
|
7
|
+
/**
|
|
8
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
9
|
+
*/
|
|
6
10
|
date: Date | null;
|
|
7
11
|
/**
|
|
8
12
|
* 카리스마 레벨
|
|
@@ -28,6 +32,5 @@ declare class CharacterPropensityDto {
|
|
|
28
32
|
* 매력 레벨
|
|
29
33
|
*/
|
|
30
34
|
charmLevel: number | null;
|
|
31
|
-
constructor(obj:
|
|
35
|
+
constructor(obj: CharacterPropensityBody);
|
|
32
36
|
}
|
|
33
|
-
export { CharacterPropensityDto };
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import * as base from '../../../common/dto/character/characterSetEffect';
|
|
2
|
+
import { CharacterSetEffectBody, CharacterSetEffectInfoBody, CharacterSetEffectOptionFullBody, CharacterSetEffectSetBody } from '../../response/character/characterSetEffectBody';
|
|
3
|
+
/**
|
|
4
|
+
* 캐릭터 세트 효과 정보
|
|
5
|
+
*/
|
|
6
|
+
export declare class CharacterSetEffectDto extends base.CharacterSetEffectDto {
|
|
7
|
+
/**
|
|
8
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
9
|
+
*/
|
|
10
|
+
date: Date | null;
|
|
11
|
+
/**
|
|
12
|
+
* 세트 효과 정보
|
|
13
|
+
*/
|
|
14
|
+
setEffect: CharacterSetEffectSetDto[];
|
|
15
|
+
constructor(obj: CharacterSetEffectBody);
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* 적용 중인 세트 효과 정보
|
|
19
|
+
*/
|
|
20
|
+
export declare class CharacterSetEffectInfoDto extends base.CharacterSetEffectInfoDto {
|
|
21
|
+
/**
|
|
22
|
+
* 세트 효과 레벨 (장비 수)
|
|
23
|
+
*/
|
|
24
|
+
setCount: number;
|
|
25
|
+
/**
|
|
26
|
+
* 세트 효과
|
|
27
|
+
*/
|
|
28
|
+
setOption: string;
|
|
29
|
+
constructor(obj: CharacterSetEffectInfoBody);
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* 모든 세트 효과 정보
|
|
33
|
+
*/
|
|
34
|
+
export declare class CharacterSetEffectOptionFullDto extends base.CharacterSetEffectOptionFullDto {
|
|
35
|
+
/**
|
|
36
|
+
* 세트 효과 레벨 (장비 수)
|
|
37
|
+
*/
|
|
38
|
+
setCount: number;
|
|
39
|
+
/**
|
|
40
|
+
* 세트 효과
|
|
41
|
+
*/
|
|
42
|
+
setOption: string;
|
|
43
|
+
constructor(obj: CharacterSetEffectOptionFullBody);
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* 세트 효과 정보
|
|
47
|
+
*/
|
|
48
|
+
export declare class CharacterSetEffectSetDto extends base.CharacterSetEffectSetDto {
|
|
49
|
+
/**
|
|
50
|
+
* 세트 효과 명
|
|
51
|
+
*/
|
|
52
|
+
setName: string;
|
|
53
|
+
/**
|
|
54
|
+
* 세트 개수 (럭키 아이템 포함)
|
|
55
|
+
*/
|
|
56
|
+
totalSetCount: number;
|
|
57
|
+
/**
|
|
58
|
+
* 적용 중인 세트 효과 정보
|
|
59
|
+
*/
|
|
60
|
+
setEffectInfo: CharacterSetEffectInfoDto[];
|
|
61
|
+
/**
|
|
62
|
+
* 모든 세트 효과 정보
|
|
63
|
+
*/
|
|
64
|
+
setOptionFull: CharacterSetEffectOptionFullDto[];
|
|
65
|
+
constructor(obj: CharacterSetEffectSetBody);
|
|
66
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import * as base from '../../../common/dto/character/characterSkill';
|
|
2
|
+
import { CharacterSkillBody, CharacterSkillInfoBody } from '../../response/character/characterSkillBody';
|
|
3
|
+
/**
|
|
4
|
+
* 캐릭터 스킬 정보
|
|
5
|
+
*/
|
|
6
|
+
export declare class CharacterSkillDto extends base.CharacterSkillDto {
|
|
7
|
+
/**
|
|
8
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
9
|
+
*/
|
|
10
|
+
date: Date | null;
|
|
11
|
+
/**
|
|
12
|
+
* 캐릭터 직업
|
|
13
|
+
*/
|
|
14
|
+
characterClass: string | null;
|
|
15
|
+
/**
|
|
16
|
+
* 스킬 전직 차수
|
|
17
|
+
*/
|
|
18
|
+
characterSkillGrade: string | null;
|
|
19
|
+
/**
|
|
20
|
+
* 스킬 정보
|
|
21
|
+
*/
|
|
22
|
+
characterSkill: CharacterSkillInfoDto[];
|
|
23
|
+
constructor(obj: CharacterSkillBody);
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* 캐릭터 스킬 상세 정보
|
|
27
|
+
*/
|
|
28
|
+
export declare class CharacterSkillInfoDto extends base.CharacterSkillInfoDto {
|
|
29
|
+
/**
|
|
30
|
+
* 스킬 명
|
|
31
|
+
*/
|
|
32
|
+
skillName: string;
|
|
33
|
+
/**
|
|
34
|
+
* 스킬 설명
|
|
35
|
+
*/
|
|
36
|
+
skillDescription: string;
|
|
37
|
+
/**
|
|
38
|
+
* 스킬 레벨
|
|
39
|
+
*/
|
|
40
|
+
skillLevel: number;
|
|
41
|
+
/**
|
|
42
|
+
* 스킬 레벨 별 효과 설명
|
|
43
|
+
*/
|
|
44
|
+
skillEffect: string;
|
|
45
|
+
/**
|
|
46
|
+
* 다음 스킬 레벨 효과 설명
|
|
47
|
+
*/
|
|
48
|
+
skillEffectNext: string | null;
|
|
49
|
+
/**
|
|
50
|
+
* 스킬 아이콘
|
|
51
|
+
*/
|
|
52
|
+
skillIcon: string;
|
|
53
|
+
constructor(obj: CharacterSkillInfoBody);
|
|
54
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import * as base from '../../../common/dto/character/characterStat';
|
|
2
|
+
import { CharacterFinalStatBody, CharacterStatBody } from '../../response/character/characterStatBody';
|
|
3
|
+
/**
|
|
4
|
+
* 캐릭터 스탯 정보
|
|
5
|
+
*/
|
|
6
|
+
export declare class CharacterStatDto extends base.CharacterStatDto {
|
|
7
|
+
/**
|
|
8
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
9
|
+
*/
|
|
10
|
+
date: Date | null;
|
|
11
|
+
/**
|
|
12
|
+
* 캐릭터 직업
|
|
13
|
+
*/
|
|
14
|
+
characterClass: string | null;
|
|
15
|
+
/**
|
|
16
|
+
* 현재 스탯 정보
|
|
17
|
+
*/
|
|
18
|
+
finalStat: CharacterFinalStatDto[];
|
|
19
|
+
/**
|
|
20
|
+
* 잔여 AP
|
|
21
|
+
*/
|
|
22
|
+
remainAP: number | null;
|
|
23
|
+
constructor(obj: CharacterStatBody);
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* 캐릭터 현재 스탯 정보
|
|
27
|
+
*/
|
|
28
|
+
export declare class CharacterFinalStatDto extends base.CharacterFinalStatDto {
|
|
29
|
+
/**
|
|
30
|
+
* 스탯 명
|
|
31
|
+
*/
|
|
32
|
+
statName: string;
|
|
33
|
+
/**
|
|
34
|
+
* 스탯 값
|
|
35
|
+
*/
|
|
36
|
+
statValue: string;
|
|
37
|
+
constructor(obj: CharacterFinalStatBody);
|
|
38
|
+
}
|
|
@@ -1,8 +1,27 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as base from '../../../common/dto/character/characterSymbolEquipment';
|
|
2
|
+
import { CharacterSymbolEquipmentBody, CharacterSymbolEquipmentInfoBody } from '../../response/character/characterSymbolEquipmentBody';
|
|
3
|
+
/**
|
|
4
|
+
* 캐릭터 심볼 정보
|
|
5
|
+
*/
|
|
6
|
+
export declare class CharacterSymbolEquipmentDto extends base.CharacterSymbolEquipmentDto {
|
|
7
|
+
/**
|
|
8
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
9
|
+
*/
|
|
10
|
+
date: Date | null;
|
|
11
|
+
/**
|
|
12
|
+
* 캐릭터 직업
|
|
13
|
+
*/
|
|
14
|
+
characterClass: string | null;
|
|
15
|
+
/**
|
|
16
|
+
* 심볼 정보
|
|
17
|
+
*/
|
|
18
|
+
symbol: CharacterSymbolEquipmentInfoDto[];
|
|
19
|
+
constructor(obj: CharacterSymbolEquipmentBody);
|
|
20
|
+
}
|
|
2
21
|
/**
|
|
3
22
|
* 캐릭터 심볼 상세 정보
|
|
4
23
|
*/
|
|
5
|
-
declare class CharacterSymbolEquipmentInfoDto {
|
|
24
|
+
export declare class CharacterSymbolEquipmentInfoDto extends base.CharacterSymbolEquipmentInfoDto {
|
|
6
25
|
/**
|
|
7
26
|
* 심볼 명
|
|
8
27
|
*/
|
|
@@ -63,6 +82,5 @@ declare class CharacterSymbolEquipmentInfoDto {
|
|
|
63
82
|
* 성장 시 필요한 성장치
|
|
64
83
|
*/
|
|
65
84
|
symbolRequireGrowthCount: number;
|
|
66
|
-
constructor(obj:
|
|
85
|
+
constructor(obj: CharacterSymbolEquipmentInfoBody);
|
|
67
86
|
}
|
|
68
|
-
export { CharacterSymbolEquipmentInfoDto };
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import * as base from '../../../common/dto/character/characterVMatrix';
|
|
2
|
+
import { CharacterVMatrixBody, CharacterVMatrixCoreEquipmentDtoBody } from '../../response/character/characterVMatrixBody';
|
|
3
|
+
/**
|
|
4
|
+
* 캐릭터 V매트릭스 정보
|
|
5
|
+
*/
|
|
6
|
+
export declare class CharacterVMatrixDto extends base.CharacterVMatrixDto {
|
|
7
|
+
/**
|
|
8
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
9
|
+
*/
|
|
10
|
+
date: Date | null;
|
|
11
|
+
/**
|
|
12
|
+
* 캐릭터 직업
|
|
13
|
+
*/
|
|
14
|
+
characterClass: string | null;
|
|
15
|
+
/**
|
|
16
|
+
* V코어 정보
|
|
17
|
+
*/
|
|
18
|
+
characterVCoreEquipment: CharacterVMatrixCodeEquipmentDto[];
|
|
19
|
+
/**
|
|
20
|
+
* 캐릭터 잔여 매트릭스 강화 포인트
|
|
21
|
+
*/
|
|
22
|
+
characterVMatrixRemainSlotUpgradePoint: number | null;
|
|
23
|
+
constructor(obj: CharacterVMatrixBody);
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* 캐릭터 V코어 정보
|
|
27
|
+
*/
|
|
28
|
+
export declare class CharacterVMatrixCodeEquipmentDto extends base.CharacterVMatrixCodeEquipmentDto {
|
|
29
|
+
/**
|
|
30
|
+
* 슬롯 인덱스
|
|
31
|
+
*/
|
|
32
|
+
slotId: string;
|
|
33
|
+
/**
|
|
34
|
+
* 슬롯 레벨
|
|
35
|
+
*/
|
|
36
|
+
slotLevel: number;
|
|
37
|
+
/**
|
|
38
|
+
* 코어 명
|
|
39
|
+
*/
|
|
40
|
+
vCoreName: string | null;
|
|
41
|
+
/**
|
|
42
|
+
* 코어 타입
|
|
43
|
+
*/
|
|
44
|
+
vCoreType: string | null;
|
|
45
|
+
/**
|
|
46
|
+
* 코어 레벨
|
|
47
|
+
*/
|
|
48
|
+
vCoreLevel: number;
|
|
49
|
+
/**
|
|
50
|
+
* 코어에 해당하는 스킬 명
|
|
51
|
+
*/
|
|
52
|
+
vCoreSkill1: string;
|
|
53
|
+
/**
|
|
54
|
+
* (강화 코어인 경우) 코어에 해당하는 두 번째 스킬 명
|
|
55
|
+
*/
|
|
56
|
+
vCoreSkill2: string | null;
|
|
57
|
+
/**
|
|
58
|
+
* (강화 코어인 경우) 코어에 해당하는 세 번째 스킬 명
|
|
59
|
+
*/
|
|
60
|
+
vCoreSkill3: string | null;
|
|
61
|
+
constructor(obj: CharacterVMatrixCoreEquipmentDtoBody);
|
|
62
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as base from '../../../common/dto/guild/guild';
|
|
2
|
+
import { GuildBody } from '../../response/guild/guildBody';
|
|
3
|
+
/**
|
|
4
|
+
* 길드 식별자 정보
|
|
5
|
+
*/
|
|
6
|
+
export declare class GuildDto extends base.GuildDto {
|
|
7
|
+
/**
|
|
8
|
+
* 길드 식별자
|
|
9
|
+
*/
|
|
10
|
+
oguildId: string;
|
|
11
|
+
constructor(obj: GuildBody);
|
|
12
|
+
}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import * as base from '../../../common/dto/guild/guildBasic';
|
|
2
|
+
import { GuildBasicBody, GuildSkillBody } from '../../response/guild/guildBasicBody';
|
|
3
|
+
/**
|
|
4
|
+
* 길드 기본 정보
|
|
5
|
+
*/
|
|
6
|
+
export declare class GuildBasicDto extends base.GuildBasicDto {
|
|
7
|
+
/**
|
|
8
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
9
|
+
*/
|
|
10
|
+
date: Date | null;
|
|
11
|
+
/**
|
|
12
|
+
* 월드 명
|
|
13
|
+
*/
|
|
14
|
+
worldName: string;
|
|
15
|
+
/**
|
|
16
|
+
* 길드 명
|
|
17
|
+
*/
|
|
18
|
+
guildName: string;
|
|
19
|
+
/**
|
|
20
|
+
* 길드 레벨
|
|
21
|
+
*/
|
|
22
|
+
guildLevel: number;
|
|
23
|
+
/**
|
|
24
|
+
* 길드 명성치
|
|
25
|
+
*/
|
|
26
|
+
guildFame: number;
|
|
27
|
+
/**
|
|
28
|
+
* 길드 포인트(GP)
|
|
29
|
+
*/
|
|
30
|
+
guildPoint: number;
|
|
31
|
+
/**
|
|
32
|
+
* 길드 마스터 캐릭터 명
|
|
33
|
+
*/
|
|
34
|
+
guildMasterName: string;
|
|
35
|
+
/**
|
|
36
|
+
* 길드원 수
|
|
37
|
+
*/
|
|
38
|
+
guildMemberCount: number;
|
|
39
|
+
/**
|
|
40
|
+
* 길드원 목록
|
|
41
|
+
*/
|
|
42
|
+
guildMember: string[];
|
|
43
|
+
/**
|
|
44
|
+
* 길드 스킬 목록
|
|
45
|
+
*/
|
|
46
|
+
guildSkill: GuildSkillDto[];
|
|
47
|
+
/**
|
|
48
|
+
* 노블레스 스킬 목록
|
|
49
|
+
*/
|
|
50
|
+
guildNoblesseSkill: GuildSkillDto[];
|
|
51
|
+
constructor(obj: GuildBasicBody);
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* 길드 스킬 정보
|
|
55
|
+
*/
|
|
56
|
+
export declare class GuildSkillDto extends base.GuildSkillDto {
|
|
57
|
+
/**
|
|
58
|
+
* 스킬 명
|
|
59
|
+
*/
|
|
60
|
+
skillName: string;
|
|
61
|
+
/**
|
|
62
|
+
* 스킬 설명
|
|
63
|
+
*/
|
|
64
|
+
skillDescription: string;
|
|
65
|
+
/**
|
|
66
|
+
* 스킬 레벨
|
|
67
|
+
*/
|
|
68
|
+
skillLevel: number;
|
|
69
|
+
/**
|
|
70
|
+
* 스킬 레벨 별 효과
|
|
71
|
+
*/
|
|
72
|
+
skillEffect: string;
|
|
73
|
+
/**
|
|
74
|
+
* 스킬 아이콘
|
|
75
|
+
*/
|
|
76
|
+
skillIcon: string;
|
|
77
|
+
constructor(obj: GuildSkillBody);
|
|
78
|
+
}
|
package/types/maplestory/api/{dto/history/cubeHistoryDto.d.ts → kms/dto/history/cubeHistory.d.ts}
RENAMED
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import { PotentialOptionGrade } from '../potentialOptionGrade';
|
|
1
|
+
import { PotentialOptionGrade } from '../../../common/enum/potentialOptionGrade';
|
|
2
|
+
import { CubeHistoryBody, CubeHistoryResponseBody, CubeResultOptionBody } from '../../response/history/cubeHistoryBody';
|
|
4
3
|
/**
|
|
5
4
|
* 큐브 히스토리
|
|
6
5
|
*/
|
|
7
|
-
declare class CubeHistoryDto {
|
|
6
|
+
export declare class CubeHistoryDto {
|
|
8
7
|
/**
|
|
9
8
|
* 큐브 히스토리 식별자
|
|
10
9
|
*/
|
|
@@ -77,10 +76,42 @@ declare class CubeHistoryDto {
|
|
|
77
76
|
* 사용 후 에디셔널 잠재능력 옵션
|
|
78
77
|
*/
|
|
79
78
|
afterAdditionalPotentialOption: CubeResultOptionDto[];
|
|
80
|
-
constructor(obj:
|
|
79
|
+
constructor(obj: CubeHistoryBody);
|
|
81
80
|
get isItemUpgrade(): boolean;
|
|
82
81
|
get isMiracleTimeFlag(): boolean;
|
|
83
82
|
get potentialOptionGradeEnum(): PotentialOptionGrade;
|
|
84
83
|
get additionalPotentialOptionGradeEnum(): PotentialOptionGrade;
|
|
85
84
|
}
|
|
86
|
-
|
|
85
|
+
/**
|
|
86
|
+
* 큐브 결과 옵션 정보
|
|
87
|
+
*/
|
|
88
|
+
export declare class CubeResultOptionDto {
|
|
89
|
+
/**
|
|
90
|
+
* 옵션 명
|
|
91
|
+
*/
|
|
92
|
+
value: string;
|
|
93
|
+
/**
|
|
94
|
+
* 옵션 등급
|
|
95
|
+
*/
|
|
96
|
+
grade: string;
|
|
97
|
+
constructor(obj: CubeResultOptionBody);
|
|
98
|
+
get gradeEnum(): PotentialOptionGrade;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* 큐브 히스토리 응답 정보
|
|
102
|
+
*/
|
|
103
|
+
export declare class CubeHistoryResponseDto {
|
|
104
|
+
/**
|
|
105
|
+
* 결과 건 수
|
|
106
|
+
*/
|
|
107
|
+
count: number;
|
|
108
|
+
/**
|
|
109
|
+
* 큐브 히스토리
|
|
110
|
+
*/
|
|
111
|
+
cubeHistory: CubeHistoryDto[];
|
|
112
|
+
/**
|
|
113
|
+
* 페이징 처리를 위한 cursor
|
|
114
|
+
*/
|
|
115
|
+
nextCursor: string | null;
|
|
116
|
+
constructor(obj: CubeHistoryResponseBody);
|
|
117
|
+
}
|