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
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { UnionChampionBadgeInfoBody, UnionChampionBody, UnionChampionInfoBody } from '../../response/union/unionChampionBody';
|
|
2
|
+
/**
|
|
3
|
+
* 유니온 챔피언 정보
|
|
4
|
+
*/
|
|
5
|
+
export declare class UnionChampionDto {
|
|
6
|
+
/**
|
|
7
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
8
|
+
*/
|
|
9
|
+
date: Date | null;
|
|
10
|
+
/**
|
|
11
|
+
* 유니온 챔피언 정보
|
|
12
|
+
*/
|
|
13
|
+
unionChampion: UnionChampionInfoDto[];
|
|
14
|
+
/**
|
|
15
|
+
* 유니온 챔피언 휘장 정보
|
|
16
|
+
*/
|
|
17
|
+
championBadgeTotalInfo: UnionChampionBadgeInfoDto[];
|
|
18
|
+
constructor(obj: UnionChampionBody);
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* 유니온 챔피언 휘장 정보
|
|
22
|
+
*/
|
|
23
|
+
export declare class UnionChampionBadgeInfoDto {
|
|
24
|
+
/**
|
|
25
|
+
* 유니온 챔피언 휘장 효과
|
|
26
|
+
*/
|
|
27
|
+
stat: string;
|
|
28
|
+
constructor(obj: UnionChampionBadgeInfoBody);
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* 유니온 챔피언 상세 정보
|
|
32
|
+
*/
|
|
33
|
+
export declare class UnionChampionInfoDto {
|
|
34
|
+
/**
|
|
35
|
+
* 유니온 챔피언 캐릭터 명
|
|
36
|
+
*/
|
|
37
|
+
championName: string;
|
|
38
|
+
/**
|
|
39
|
+
* 유니온 챔피언 슬롯
|
|
40
|
+
*/
|
|
41
|
+
championSlot: number;
|
|
42
|
+
/**
|
|
43
|
+
* 유니온 챔피언 등급
|
|
44
|
+
*/
|
|
45
|
+
championGrade: string;
|
|
46
|
+
/**
|
|
47
|
+
* 유니온 챔피언 캐릭터의 직업
|
|
48
|
+
*/
|
|
49
|
+
championClass: string;
|
|
50
|
+
/**
|
|
51
|
+
* 챔피언 휘장 효과
|
|
52
|
+
*/
|
|
53
|
+
championBadgeInfo: UnionChampionBadgeInfoDto[];
|
|
54
|
+
constructor(obj: UnionChampionInfoBody);
|
|
55
|
+
}
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import * as base from '../../../common/dto/union/unionRaider';
|
|
2
|
+
import { UnionRaiderBlockBody, UnionRaiderBlockControlPointBody, UnionRaiderBlockPositionBody, UnionRaiderBody, UnionRaiderInnerStatBody, UnionRaiderPresetBody } from '../../response/union/unionRaiderBody';
|
|
3
|
+
/**
|
|
4
|
+
* 유니온 공격대 정보
|
|
5
|
+
*/
|
|
6
|
+
export declare class UnionRaiderDto extends base.UnionRaiderDto {
|
|
7
|
+
/**
|
|
8
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
9
|
+
*/
|
|
10
|
+
date: Date | null;
|
|
11
|
+
/**
|
|
12
|
+
* 유니온 공격대원 효과
|
|
13
|
+
*/
|
|
14
|
+
unionRaiderStat: string[];
|
|
15
|
+
/**
|
|
16
|
+
* 유니온 공격대 점령 효과
|
|
17
|
+
*/
|
|
18
|
+
unionOccupiedStat: string[];
|
|
19
|
+
/**
|
|
20
|
+
* 유니온 공격대 배치
|
|
21
|
+
*/
|
|
22
|
+
unionInnerStat: UnionRaiderInnerStatDto[];
|
|
23
|
+
/**
|
|
24
|
+
* 유니온 블록 정보
|
|
25
|
+
*/
|
|
26
|
+
unionBlock: UnionRaiderBlockDto[];
|
|
27
|
+
/**
|
|
28
|
+
* 적용 중인 프리셋 번호
|
|
29
|
+
*/
|
|
30
|
+
usePresetNo: number;
|
|
31
|
+
/**
|
|
32
|
+
* 유니온 프리셋 1번 정보
|
|
33
|
+
*/
|
|
34
|
+
unionRaiderPreset1: UnionRaiderPresetDto | null;
|
|
35
|
+
/**
|
|
36
|
+
* 유니온 프리셋 2번 정보
|
|
37
|
+
*/
|
|
38
|
+
unionRaiderPreset2: UnionRaiderPresetDto | null;
|
|
39
|
+
/**
|
|
40
|
+
* 유니온 프리셋 3번 정보
|
|
41
|
+
*/
|
|
42
|
+
unionRaiderPreset3: UnionRaiderPresetDto | null;
|
|
43
|
+
/**
|
|
44
|
+
* 유니온 프리셋 4번 정보
|
|
45
|
+
*/
|
|
46
|
+
unionRaiderPreset4: UnionRaiderPresetDto | null;
|
|
47
|
+
/**
|
|
48
|
+
* 유니온 프리셋 5번 정보
|
|
49
|
+
*/
|
|
50
|
+
unionRaiderPreset5: UnionRaiderPresetDto | null;
|
|
51
|
+
constructor(obj: UnionRaiderBody);
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* 유니온 공격대 배치 정보
|
|
55
|
+
*/
|
|
56
|
+
export declare class UnionRaiderInnerStatDto extends base.UnionRaiderInnerStatDto {
|
|
57
|
+
/**
|
|
58
|
+
* 공격대 배치 위치 (11시 방향부터 시계 방향 순서대로 0~7)
|
|
59
|
+
*/
|
|
60
|
+
statFieldId: string;
|
|
61
|
+
/**
|
|
62
|
+
* 해당 지역 점령 효과
|
|
63
|
+
*/
|
|
64
|
+
statFieldEffect: string;
|
|
65
|
+
constructor(obj: UnionRaiderInnerStatBody);
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* 유니온 블록이 차지하고 있는 영역 좌표들
|
|
69
|
+
*/
|
|
70
|
+
export declare class UnionRaiderBlockPositionDto extends base.UnionRaiderBlockPositionDto {
|
|
71
|
+
/**
|
|
72
|
+
* 블록 X좌표
|
|
73
|
+
*/
|
|
74
|
+
x: number;
|
|
75
|
+
/**
|
|
76
|
+
* 블록 Y좌표
|
|
77
|
+
*/
|
|
78
|
+
y: number;
|
|
79
|
+
constructor(obj: UnionRaiderBlockPositionBody);
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* 유니온 블록 기준점 좌표 정보
|
|
83
|
+
*/
|
|
84
|
+
export declare class UnionRaiderBlockControlPointDto extends base.UnionRaiderBlockControlPointDto {
|
|
85
|
+
/**
|
|
86
|
+
* 블록 기준점 X좌표
|
|
87
|
+
*/
|
|
88
|
+
x: number;
|
|
89
|
+
/**
|
|
90
|
+
* 블록 기준점 Y좌표
|
|
91
|
+
*/
|
|
92
|
+
y: number;
|
|
93
|
+
constructor(obj: UnionRaiderBlockControlPointBody);
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* 유니온 블록 정보
|
|
97
|
+
*/
|
|
98
|
+
export declare class UnionRaiderBlockDto extends base.UnionRaiderBlockDto {
|
|
99
|
+
/**
|
|
100
|
+
* 블록 모양 (전사, 마법사, 궁수, 도적, 해적, 메이플m, 하이브리드)
|
|
101
|
+
*/
|
|
102
|
+
blockType: string;
|
|
103
|
+
/**
|
|
104
|
+
* 블록 해당 캐릭터 직업
|
|
105
|
+
*/
|
|
106
|
+
blockClass: string;
|
|
107
|
+
/**
|
|
108
|
+
* 블록 해당 캐릭터 레벨
|
|
109
|
+
*/
|
|
110
|
+
blockLevel: string;
|
|
111
|
+
/**
|
|
112
|
+
* 블록 기준점 좌표
|
|
113
|
+
*/
|
|
114
|
+
blockControlPoint: UnionRaiderBlockControlPointDto;
|
|
115
|
+
/**
|
|
116
|
+
* 블록이 차지하고 있는 영역 좌표들 (null:미 배치 시)
|
|
117
|
+
*/
|
|
118
|
+
blockPosition: UnionRaiderBlockPositionDto[] | null;
|
|
119
|
+
constructor(obj: UnionRaiderBlockBody);
|
|
120
|
+
}
|
|
121
|
+
/**
|
|
122
|
+
* 유니온 프리셋 정보
|
|
123
|
+
*/
|
|
124
|
+
export declare class UnionRaiderPresetDto extends base.UnionRaiderPresetDto {
|
|
125
|
+
/**
|
|
126
|
+
* 유니온 공격대원 효과
|
|
127
|
+
*/
|
|
128
|
+
unionRaiderStat: string[];
|
|
129
|
+
/**
|
|
130
|
+
* 유니온 공격대 점령 효과
|
|
131
|
+
*/
|
|
132
|
+
unionOccupiedStat: string[];
|
|
133
|
+
/**
|
|
134
|
+
* 유니온 공격대 배치
|
|
135
|
+
*/
|
|
136
|
+
unionInnerStat: UnionRaiderInnerStatDto[];
|
|
137
|
+
/**
|
|
138
|
+
* 유니온 블록 정보
|
|
139
|
+
*/
|
|
140
|
+
unionBlock: UnionRaiderBlockDto[];
|
|
141
|
+
constructor(obj: UnionRaiderPresetBody);
|
|
142
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
export * from './mapleStoryApi';
|
|
2
|
+
export * from './dto/character/character';
|
|
3
|
+
export * from './dto/character/characterAbility';
|
|
4
|
+
export * from './dto/character/characterAndroidEquipment';
|
|
5
|
+
export * from './dto/character/characterBasic';
|
|
6
|
+
export * from './dto/character/characterBeautyEquipment';
|
|
7
|
+
export * from './dto/character/characterCashItemEquipment';
|
|
8
|
+
export * from './dto/character/characterDojang';
|
|
9
|
+
export * from './dto/character/characterHexaMatrix';
|
|
10
|
+
export * from './dto/character/characterHexaMatrixStat';
|
|
11
|
+
export * from './dto/character/characterHyperStat';
|
|
12
|
+
export * from './dto/character/characterImage';
|
|
13
|
+
export * from './dto/character/characterItemEquipment';
|
|
14
|
+
export * from './dto/character/characterLinkSkill';
|
|
15
|
+
export * from './dto/character/characterList';
|
|
16
|
+
export * from './dto/character/characterPetEquipment';
|
|
17
|
+
export * from './dto/character/characterPopularity';
|
|
18
|
+
export * from './dto/character/characterPropensity';
|
|
19
|
+
export * from './dto/character/characterSetEffect';
|
|
20
|
+
export * from './dto/character/characterSkill';
|
|
21
|
+
export * from './dto/character/characterStat';
|
|
22
|
+
export * from './dto/character/characterSymbolEquipment';
|
|
23
|
+
export * from './dto/character/characterVMatrix';
|
|
24
|
+
export * from './dto/guild/guild';
|
|
25
|
+
export * from './dto/guild/guildBasic';
|
|
26
|
+
export * from './dto/history/cubeHistory';
|
|
27
|
+
export * from './dto/history/potentialHistory';
|
|
28
|
+
export * from './dto/history/starforceHistory';
|
|
29
|
+
export * from './dto/notice/cashshopNoticeDetail';
|
|
30
|
+
export * from './dto/notice/cashshopNoticeList';
|
|
31
|
+
export * from './dto/notice/eventNoticeDetail';
|
|
32
|
+
export * from './dto/notice/eventNoticeList';
|
|
33
|
+
export * from './dto/notice/noticeDetail';
|
|
34
|
+
export * from './dto/notice/noticeList';
|
|
35
|
+
export * from './dto/notice/updateNoticeDetail';
|
|
36
|
+
export * from './dto/notice/updateNoticeList';
|
|
37
|
+
export * from './dto/ranking/achievementRanking';
|
|
38
|
+
export * from './dto/ranking/dojangRanking';
|
|
39
|
+
export * from './dto/ranking/guildRanking';
|
|
40
|
+
export * from './dto/ranking/overallRanking';
|
|
41
|
+
export * from './dto/ranking/theSeedRanking';
|
|
42
|
+
export * from './dto/ranking/unionRanking';
|
|
43
|
+
export * from './dto/union/union';
|
|
44
|
+
export * from './dto/union/unionArtifact';
|
|
45
|
+
export * from './dto/union/unionChampion';
|
|
46
|
+
export * from './dto/union/unionRaider';
|
|
47
|
+
export * from './dto/inspectionInfo';
|
|
@@ -1,60 +1,59 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import { CharacterHexaMatrixDto } from './dto/character/
|
|
9
|
-
import { CharacterHexaMatrixStatDto } from './dto/character/
|
|
10
|
-
import { CharacterHyperStatDto } from './dto/character/
|
|
11
|
-
import {
|
|
12
|
-
import { CharacterItemEquipmentDto } from './dto/character/
|
|
13
|
-
import { CharacterLinkSkillDto } from './dto/character/
|
|
14
|
-
import { CharacterListDto } from './dto/character/
|
|
15
|
-
import { CharacterPetEquipmentDto } from './dto/character/
|
|
16
|
-
import { CharacterPopularityDto } from './dto/character/
|
|
17
|
-
import { CharacterPropensityDto } from './dto/character/
|
|
18
|
-
import { CharacterSetEffectDto } from './dto/character/
|
|
19
|
-
import { CharacterSkillDto } from './dto/character/
|
|
20
|
-
import { CharacterStatDto } from './dto/character/
|
|
21
|
-
import { CharacterSymbolEquipmentDto } from './dto/character/
|
|
22
|
-
import { CharacterVMatrixDto } from './dto/character/
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import { CubeHistoryResponseDto } from './dto/history/
|
|
26
|
-
import { PotentialHistoryResponseDto } from './dto/history/
|
|
27
|
-
import { StarforceHistoryResponseDto } from './dto/history/
|
|
28
|
-
import { InspectionInfoDto } from './dto/
|
|
29
|
-
import { CashshopNoticeDetailDto } from './dto/notice/
|
|
30
|
-
import { CashshopNoticeListDto } from './dto/notice/
|
|
31
|
-
import { EventNoticeDetailDto } from './dto/notice/
|
|
32
|
-
import { EventNoticeListDto } from './dto/notice/
|
|
33
|
-
import { NoticeDetailDto } from './dto/notice/
|
|
34
|
-
import { NoticeListDto } from './dto/notice/
|
|
35
|
-
import { UpdateNoticeDetailDto } from './dto/notice/
|
|
36
|
-
import { UpdateNoticeListDto } from './dto/notice/
|
|
37
|
-
import { AchievementRankingResponseDto } from './dto/ranking/
|
|
38
|
-
import { DojangRankingResponseDto } from './dto/ranking/
|
|
39
|
-
import { GuildRankingResponseDto } from './dto/ranking/
|
|
40
|
-
import { OverallRankingResponseDto } from './dto/ranking/
|
|
41
|
-
import { TheSeedRankingResponseDto } from './dto/ranking/
|
|
42
|
-
import { UnionRankingResponseDto } from './dto/ranking/
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import { UnionRaiderDto } from './dto/union/
|
|
1
|
+
import { CharacterDto } from './dto/character/character';
|
|
2
|
+
import { CharacterAbilityDto } from './dto/character/characterAbility';
|
|
3
|
+
import { CharacterAndroidEquipmentDto } from './dto/character/characterAndroidEquipment';
|
|
4
|
+
import { CharacterBasicDto } from './dto/character/characterBasic';
|
|
5
|
+
import { CharacterBeautyEquipmentDto } from './dto/character/characterBeautyEquipment';
|
|
6
|
+
import { CharacterCashItemEquipmentDto } from './dto/character/characterCashItemEquipment';
|
|
7
|
+
import { CharacterDojangDto } from './dto/character/characterDojang';
|
|
8
|
+
import { CharacterHexaMatrixDto } from './dto/character/characterHexaMatrix';
|
|
9
|
+
import { CharacterHexaMatrixStatDto } from './dto/character/characterHexaMatrixStat';
|
|
10
|
+
import { CharacterHyperStatDto } from './dto/character/characterHyperStat';
|
|
11
|
+
import { CharacterImageDto } from './dto/character/characterImage';
|
|
12
|
+
import { CharacterItemEquipmentDto } from './dto/character/characterItemEquipment';
|
|
13
|
+
import { CharacterLinkSkillDto } from './dto/character/characterLinkSkill';
|
|
14
|
+
import { CharacterListDto } from './dto/character/characterList';
|
|
15
|
+
import { CharacterPetEquipmentDto } from './dto/character/characterPetEquipment';
|
|
16
|
+
import { CharacterPopularityDto } from './dto/character/characterPopularity';
|
|
17
|
+
import { CharacterPropensityDto } from './dto/character/characterPropensity';
|
|
18
|
+
import { CharacterSetEffectDto } from './dto/character/characterSetEffect';
|
|
19
|
+
import { CharacterSkillDto } from './dto/character/characterSkill';
|
|
20
|
+
import { CharacterStatDto } from './dto/character/characterStat';
|
|
21
|
+
import { CharacterSymbolEquipmentDto } from './dto/character/characterSymbolEquipment';
|
|
22
|
+
import { CharacterVMatrixDto } from './dto/character/characterVMatrix';
|
|
23
|
+
import { GuildDto } from './dto/guild/guild';
|
|
24
|
+
import { GuildBasicDto } from './dto/guild/guildBasic';
|
|
25
|
+
import { CubeHistoryResponseDto } from './dto/history/cubeHistory';
|
|
26
|
+
import { PotentialHistoryResponseDto } from './dto/history/potentialHistory';
|
|
27
|
+
import { StarforceHistoryResponseDto } from './dto/history/starforceHistory';
|
|
28
|
+
import { InspectionInfoDto } from './dto/inspectionInfo';
|
|
29
|
+
import { CashshopNoticeDetailDto } from './dto/notice/cashshopNoticeDetail';
|
|
30
|
+
import { CashshopNoticeListDto } from './dto/notice/cashshopNoticeList';
|
|
31
|
+
import { EventNoticeDetailDto } from './dto/notice/eventNoticeDetail';
|
|
32
|
+
import { EventNoticeListDto } from './dto/notice/eventNoticeList';
|
|
33
|
+
import { NoticeDetailDto } from './dto/notice/noticeDetail';
|
|
34
|
+
import { NoticeListDto } from './dto/notice/noticeList';
|
|
35
|
+
import { UpdateNoticeDetailDto } from './dto/notice/updateNoticeDetail';
|
|
36
|
+
import { UpdateNoticeListDto } from './dto/notice/updateNoticeList';
|
|
37
|
+
import { AchievementRankingResponseDto } from './dto/ranking/achievementRanking';
|
|
38
|
+
import { DojangRankingResponseDto } from './dto/ranking/dojangRanking';
|
|
39
|
+
import { GuildRankingResponseDto } from './dto/ranking/guildRanking';
|
|
40
|
+
import { OverallRankingResponseDto } from './dto/ranking/overallRanking';
|
|
41
|
+
import { TheSeedRankingResponseDto } from './dto/ranking/theSeedRanking';
|
|
42
|
+
import { UnionRankingResponseDto } from './dto/ranking/unionRanking';
|
|
43
|
+
import { UnionDto } from './dto/union/union';
|
|
44
|
+
import { UnionArtifactDto } from './dto/union/unionArtifact';
|
|
45
|
+
import { UnionChampionDto } from './dto/union/unionChampion';
|
|
46
|
+
import { UnionRaiderDto } from './dto/union/unionRaider';
|
|
47
|
+
import { CharacterImageAction, CharacterImageEmotion, CharacterImageWeaponMotion } from '../common/enum/characterImage';
|
|
48
|
+
import { DateOptions } from '../common/mapleStoryApi';
|
|
49
|
+
import * as base from '../common/mapleStoryApi';
|
|
47
50
|
/**
|
|
48
|
-
* MapleStory OpenAPI client.<br>
|
|
51
|
+
* MapleStory OpenAPI client for KMS.<br>
|
|
49
52
|
* This is an implementation of <a href="https://openapi.nexon.com/game/maplestory">MapleStory API</a>
|
|
50
53
|
*/
|
|
51
|
-
declare class MapleStoryApi {
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
private static readonly BASE_URL;
|
|
55
|
-
private static readonly DEFAULT_TIMEOUT;
|
|
56
|
-
get timeout(): number;
|
|
57
|
-
set timeout(value: number);
|
|
54
|
+
export declare class MapleStoryApi extends base.MapleStoryApi {
|
|
55
|
+
protected subUrl: string;
|
|
56
|
+
protected timezoneOffset: number;
|
|
58
57
|
constructor(apiKey: string);
|
|
59
58
|
/**
|
|
60
59
|
* 캐릭터 식별자(ocid)를 조회합니다.
|
|
@@ -62,6 +61,7 @@ declare class MapleStoryApi {
|
|
|
62
61
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
63
62
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
64
63
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
64
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
65
65
|
*
|
|
66
66
|
* @param characterName 캐릭터 명
|
|
67
67
|
*/
|
|
@@ -71,6 +71,7 @@ declare class MapleStoryApi {
|
|
|
71
71
|
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
72
72
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
73
73
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
74
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
74
75
|
*/
|
|
75
76
|
getCharacterList(): Promise<CharacterListDto>;
|
|
76
77
|
/**
|
|
@@ -79,6 +80,7 @@ declare class MapleStoryApi {
|
|
|
79
80
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
80
81
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
81
82
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
83
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
82
84
|
*
|
|
83
85
|
* @param ocid 캐릭터 식별자
|
|
84
86
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -90,6 +92,7 @@ declare class MapleStoryApi {
|
|
|
90
92
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
91
93
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
92
94
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
95
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
93
96
|
*
|
|
94
97
|
* @param ocid 캐릭터 식별자
|
|
95
98
|
* @param imageOptions 캐릭터 외형 파라미터
|
|
@@ -102,6 +105,7 @@ declare class MapleStoryApi {
|
|
|
102
105
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
103
106
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
104
107
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
108
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
105
109
|
*
|
|
106
110
|
* @param ocid 캐릭터 식별자
|
|
107
111
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -113,6 +117,7 @@ declare class MapleStoryApi {
|
|
|
113
117
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
114
118
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
115
119
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
120
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
116
121
|
*
|
|
117
122
|
* @param ocid 캐릭터 식별자
|
|
118
123
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -124,6 +129,7 @@ declare class MapleStoryApi {
|
|
|
124
129
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
125
130
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
126
131
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
132
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
127
133
|
*
|
|
128
134
|
* @param ocid 캐릭터 식별자
|
|
129
135
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -135,6 +141,7 @@ declare class MapleStoryApi {
|
|
|
135
141
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
136
142
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
137
143
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
144
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
138
145
|
*
|
|
139
146
|
* @param ocid 캐릭터 식별자
|
|
140
147
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -146,6 +153,7 @@ declare class MapleStoryApi {
|
|
|
146
153
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
147
154
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
148
155
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
156
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
149
157
|
*
|
|
150
158
|
* @param ocid 캐릭터 식별자
|
|
151
159
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -157,6 +165,7 @@ declare class MapleStoryApi {
|
|
|
157
165
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
158
166
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
159
167
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
168
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
160
169
|
*
|
|
161
170
|
* @param ocid 캐릭터 식별자
|
|
162
171
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -168,6 +177,7 @@ declare class MapleStoryApi {
|
|
|
168
177
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
169
178
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
170
179
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
180
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
171
181
|
*
|
|
172
182
|
* @param ocid 캐릭터 식별자
|
|
173
183
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -179,6 +189,7 @@ declare class MapleStoryApi {
|
|
|
179
189
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
180
190
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
181
191
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
192
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
182
193
|
*
|
|
183
194
|
* @param ocid 캐릭터 식별자
|
|
184
195
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -190,6 +201,7 @@ declare class MapleStoryApi {
|
|
|
190
201
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
191
202
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
192
203
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
204
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
193
205
|
*
|
|
194
206
|
* @param ocid 캐릭터 식별자
|
|
195
207
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -201,6 +213,7 @@ declare class MapleStoryApi {
|
|
|
201
213
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
202
214
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
203
215
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
216
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
204
217
|
*
|
|
205
218
|
* @param ocid 캐릭터 식별자
|
|
206
219
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -212,6 +225,7 @@ declare class MapleStoryApi {
|
|
|
212
225
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
213
226
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
214
227
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
228
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
215
229
|
*
|
|
216
230
|
* @param ocid 캐릭터 식별자
|
|
217
231
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -223,6 +237,7 @@ declare class MapleStoryApi {
|
|
|
223
237
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
224
238
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
225
239
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
240
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
226
241
|
*
|
|
227
242
|
* @param ocid 캐릭터 식별자
|
|
228
243
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -234,20 +249,10 @@ declare class MapleStoryApi {
|
|
|
234
249
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
235
250
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
236
251
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
252
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
237
253
|
*
|
|
238
254
|
* @param ocid 캐릭터 식별자
|
|
239
|
-
* @param characterSkillGrade 조회하고자 하는 전직 차수
|
|
240
|
-
* - 0: 0차 스킬 및 제로 공용스킬
|
|
241
|
-
* - 1: 1차 스킬
|
|
242
|
-
* - 1.5: 1.5차 스킬
|
|
243
|
-
* - 2: 2차 스킬
|
|
244
|
-
* - 2.5: 2.5차 스킬
|
|
245
|
-
* - 3: 3차 스킬
|
|
246
|
-
* - 4: 4차 스킬 및 제로 알파/베타 스킬
|
|
247
|
-
* - hyperpassive: 하이퍼 패시브 스킬
|
|
248
|
-
* - hyperactive: 하이퍼 액티브 스킬
|
|
249
|
-
* - 5: 5차 스킬
|
|
250
|
-
* - 6: 6차 스킬
|
|
255
|
+
* @param characterSkillGrade 조회하고자 하는 전직 차수 <a href="https://openapi.nexon.com/ko/game/maplestory/?id=14">Available values</a>
|
|
251
256
|
* @param dateOptions 조회 기준일 (KST)
|
|
252
257
|
*/
|
|
253
258
|
getCharacterSkill(ocid: string, characterSkillGrade: string, dateOptions?: DateOptions): Promise<CharacterSkillDto>;
|
|
@@ -257,6 +262,7 @@ declare class MapleStoryApi {
|
|
|
257
262
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
258
263
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
259
264
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
265
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
260
266
|
*
|
|
261
267
|
* @param ocid 캐릭터 식별자
|
|
262
268
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -268,6 +274,7 @@ declare class MapleStoryApi {
|
|
|
268
274
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
269
275
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
270
276
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
277
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
271
278
|
*
|
|
272
279
|
* @param ocid 캐릭터 식별자
|
|
273
280
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -279,6 +286,7 @@ declare class MapleStoryApi {
|
|
|
279
286
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
280
287
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
281
288
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
289
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
282
290
|
*
|
|
283
291
|
* @param ocid 캐릭터 식별자
|
|
284
292
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -290,6 +298,7 @@ declare class MapleStoryApi {
|
|
|
290
298
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
291
299
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
292
300
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
301
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
293
302
|
*
|
|
294
303
|
* @param ocid 캐릭터 식별자
|
|
295
304
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -301,6 +310,7 @@ declare class MapleStoryApi {
|
|
|
301
310
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
302
311
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
303
312
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
313
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
304
314
|
*
|
|
305
315
|
* @param ocid 캐릭터 식별자
|
|
306
316
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -312,6 +322,7 @@ declare class MapleStoryApi {
|
|
|
312
322
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
313
323
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
314
324
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
325
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
315
326
|
*
|
|
316
327
|
* @param ocid 캐릭터 식별자
|
|
317
328
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -323,6 +334,7 @@ declare class MapleStoryApi {
|
|
|
323
334
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
324
335
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
325
336
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
337
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
326
338
|
*
|
|
327
339
|
* @param ocid 캐릭터 식별자
|
|
328
340
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -334,6 +346,7 @@ declare class MapleStoryApi {
|
|
|
334
346
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
335
347
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
336
348
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
349
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
337
350
|
*
|
|
338
351
|
* @param ocid 캐릭터 식별자
|
|
339
352
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -346,6 +359,7 @@ declare class MapleStoryApi {
|
|
|
346
359
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
347
360
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
348
361
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
362
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
349
363
|
*
|
|
350
364
|
* @param ocid 캐릭터 식별자
|
|
351
365
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -357,6 +371,7 @@ declare class MapleStoryApi {
|
|
|
357
371
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
358
372
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
359
373
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
374
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
360
375
|
*
|
|
361
376
|
* @param guildName 길드 명
|
|
362
377
|
* @param worldName 월드 명
|
|
@@ -368,6 +383,7 @@ declare class MapleStoryApi {
|
|
|
368
383
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
369
384
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
370
385
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
386
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
371
387
|
*
|
|
372
388
|
* @param guildId 길드 식별자
|
|
373
389
|
* @param dateOptions 조회 기준일 (KST)
|
|
@@ -997,15 +1013,4 @@ type AchievementRankingApiFilterOptions = {
|
|
|
997
1013
|
*/
|
|
998
1014
|
page?: number;
|
|
999
1015
|
};
|
|
1000
|
-
|
|
1001
|
-
year: number;
|
|
1002
|
-
month: number;
|
|
1003
|
-
day: number;
|
|
1004
|
-
};
|
|
1005
|
-
type MapleStoryErrorBody = {
|
|
1006
|
-
error: {
|
|
1007
|
-
name: string;
|
|
1008
|
-
message: string;
|
|
1009
|
-
};
|
|
1010
|
-
};
|
|
1011
|
-
export { MapleStoryApi, MapleStoryErrorBody };
|
|
1016
|
+
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export type CharacterAbilityBody = {
|
|
2
|
+
date: string | null;
|
|
3
|
+
ability_grade: string | null;
|
|
4
|
+
ability_info: CharacterAbilityInfoBody[];
|
|
5
|
+
remain_fame: number | null;
|
|
6
|
+
preset_no: number | null;
|
|
7
|
+
ability_preset_1: CharacterAbilityPresetBody | null;
|
|
8
|
+
ability_preset_2: CharacterAbilityPresetBody | null;
|
|
9
|
+
ability_preset_3: CharacterAbilityPresetBody | null;
|
|
10
|
+
};
|
|
11
|
+
export type CharacterAbilityInfoBody = {
|
|
12
|
+
ability_no: string;
|
|
13
|
+
ability_grade: string;
|
|
14
|
+
ability_value: string;
|
|
15
|
+
};
|
|
16
|
+
export type CharacterAbilityPresetBody = {
|
|
17
|
+
ability_preset_grade: string;
|
|
18
|
+
ability_info: CharacterAbilityInfoBody[];
|
|
19
|
+
};
|