maplestory-openapi 2.13.1 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +37 -6
- package/dist/cjs/_virtual/_commonjsHelpers.js +7 -0
- package/dist/cjs/_virtual/index.js_commonjs-exports.js +7 -0
- package/dist/cjs/_virtual/index.js_commonjs-exports2.js +7 -0
- package/dist/cjs/_virtual/index.js_commonjs-exports3.js +7 -0
- package/dist/cjs/_virtual/timezone.js_commonjs-module.js +7 -0
- package/dist/cjs/_virtual/utc.js_commonjs-module.js +7 -0
- package/dist/cjs/index.js +133 -0
- package/dist/cjs/maplestory/api/common/dto/character/character.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterAbility.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterAndroidEquipment.js +29 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterBasic.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterBeautyEquipment.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterCashItemEquipment.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterDojang.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterHexaMatrix.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterHexaMatrixStat.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterHyperStat.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterImage.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterItemEquipment.js +38 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterLinkSkill.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterList.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterPetEquipment.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterPopularity.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterPropensity.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterSetEffect.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterSkill.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterStat.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterSymbolEquipment.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterVMatrix.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/guild/guild.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/guild/guildBasic.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/union/union.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/union/unionArtifact.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/union/unionRaider.js +23 -0
- package/dist/cjs/maplestory/api/common/enum/characterImage.js +94 -0
- package/dist/cjs/maplestory/api/common/enum/potentialOptionGrade.js +11 -0
- package/dist/cjs/maplestory/api/common/lib.js +26 -0
- package/dist/cjs/maplestory/api/common/mapleStoryApi.js +121 -0
- package/dist/cjs/maplestory/api/common/mapleStoryApiError.js +50 -0
- package/dist/cjs/maplestory/api/kms/dto/character/character.js +22 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterAbility.js +108 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterAndroidEquipment.js +418 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterBasic.js +99 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterBeautyEquipment.js +172 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterCashItemEquipment.js +228 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterDojang.js +49 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterHexaMatrix.js +73 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterHexaMatrixStat.js +113 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterHyperStat.js +97 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterImage.js +81 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterItemEquipment.js +1173 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterLinkSkill.js +115 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterList.js +77 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterPetEquipment.js +332 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterPopularity.js +27 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterPropensity.js +52 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterSetEffect.js +97 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterSkill.js +77 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterStat.js +57 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterSymbolEquipment.js +119 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterVMatrix.js +88 -0
- package/dist/cjs/maplestory/api/kms/dto/guild/guild.js +22 -0
- package/dist/cjs/maplestory/api/kms/dto/guild/guildBasic.js +107 -0
- package/dist/cjs/maplestory/api/kms/dto/history/cubeHistory.js +165 -0
- package/dist/cjs/maplestory/api/kms/dto/history/potentialHistory.js +160 -0
- package/dist/cjs/maplestory/api/kms/dto/history/starforceHistory.js +159 -0
- package/dist/cjs/maplestory/api/kms/dto/inspectionInfo.js +34 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/cashshopNoticeDetail.js +55 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/cashshopNoticeList.js +69 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/eventNoticeDetail.js +44 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/eventNoticeList.js +58 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/noticeDetail.js +34 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/noticeList.js +48 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/updateNoticeDetail.js +34 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/updateNoticeList.js +48 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/achievementRanking.js +68 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/dojangRanking.js +73 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/guildRanking.js +68 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/overallRanking.js +78 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/theSeedRanking.js +73 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/unionRanking.js +68 -0
- package/dist/cjs/maplestory/api/kms/dto/union/union.js +47 -0
- package/dist/cjs/maplestory/api/kms/dto/union/unionArtifact.js +111 -0
- package/dist/cjs/maplestory/api/kms/dto/union/unionChampion.js +77 -0
- package/dist/cjs/maplestory/api/kms/dto/union/unionRaider.js +209 -0
- package/dist/cjs/maplestory/api/kms/kms.js +170 -0
- package/dist/cjs/maplestory/api/kms/mapleStoryApi.js +1321 -0
- package/dist/cjs/maplestory/api/msea/dto/character/character.js +22 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterAbility.js +108 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterAndroidEquipment.js +419 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterBasic.js +99 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterBeautyEquipment.js +172 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterCashItemEquipment.js +223 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterDojang.js +49 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterHexaMatrix.js +73 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterHexaMatrixStat.js +113 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterHyperStat.js +97 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterImage.js +81 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterItemEquipment.js +1112 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterLinkSkill.js +115 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterPetEquipment.js +332 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterPopularity.js +27 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterPropensity.js +52 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterSetEffect.js +97 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterSkill.js +77 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterStat.js +57 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterSymbolEquipment.js +119 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterVMatrix.js +88 -0
- package/dist/cjs/maplestory/api/msea/dto/guild/guild.js +22 -0
- package/dist/cjs/maplestory/api/msea/dto/guild/guildBasic.js +107 -0
- package/dist/cjs/maplestory/api/msea/dto/union/union.js +47 -0
- package/dist/cjs/maplestory/api/msea/dto/union/unionArtifact.js +111 -0
- package/dist/cjs/maplestory/api/msea/dto/union/unionRaider.js +214 -0
- package/dist/cjs/maplestory/api/msea/mapleStoryApi.js +802 -0
- package/dist/cjs/maplestory/api/msea/msea.js +109 -0
- package/dist/cjs/node_modules/base64-js/index.js +154 -0
- package/dist/cjs/node_modules/buffer/index.js +2116 -0
- package/dist/cjs/node_modules/dayjs/plugin/timezone.js +12 -0
- package/dist/cjs/node_modules/dayjs/plugin/utc.js +12 -0
- package/dist/cjs/node_modules/ieee754/index.js +92 -0
- package/dist/esm/_virtual/_commonjsHelpers.js +3 -0
- package/dist/esm/_virtual/index.js_commonjs-exports.js +3 -0
- package/dist/esm/_virtual/index.js_commonjs-exports2.js +3 -0
- package/dist/esm/_virtual/index.js_commonjs-exports3.js +3 -0
- package/dist/esm/_virtual/timezone.js_commonjs-module.js +3 -0
- package/dist/esm/_virtual/utc.js_commonjs-module.js +3 -0
- package/dist/esm/index.js +30 -0
- package/dist/esm/maplestory/api/common/dto/character/character.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterAbility.js +8 -0
- package/dist/esm/maplestory/api/common/dto/character/characterAndroidEquipment.js +18 -0
- package/dist/esm/maplestory/api/common/dto/character/characterBasic.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterBeautyEquipment.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterCashItemEquipment.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterDojang.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterHexaMatrix.js +8 -0
- package/dist/esm/maplestory/api/common/dto/character/characterHexaMatrixStat.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterHyperStat.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterImage.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterItemEquipment.js +24 -0
- package/dist/esm/maplestory/api/common/dto/character/characterLinkSkill.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterList.js +8 -0
- package/dist/esm/maplestory/api/common/dto/character/characterPetEquipment.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterPopularity.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterPropensity.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterSetEffect.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterSkill.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterStat.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterSymbolEquipment.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterVMatrix.js +6 -0
- package/dist/esm/maplestory/api/common/dto/guild/guild.js +4 -0
- package/dist/esm/maplestory/api/common/dto/guild/guildBasic.js +6 -0
- package/dist/esm/maplestory/api/common/dto/union/union.js +4 -0
- package/dist/esm/maplestory/api/common/dto/union/unionArtifact.js +8 -0
- package/dist/esm/maplestory/api/common/dto/union/unionRaider.js +14 -0
- package/dist/esm/maplestory/api/common/enum/characterImage.js +92 -0
- package/dist/esm/maplestory/api/common/enum/potentialOptionGrade.js +9 -0
- package/dist/esm/maplestory/api/common/lib.js +22 -0
- package/dist/esm/maplestory/api/common/mapleStoryApi.js +112 -0
- package/dist/esm/maplestory/api/common/mapleStoryApiError.js +46 -0
- package/dist/esm/maplestory/api/kms/dto/character/character.js +18 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterAbility.js +102 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterAndroidEquipment.js +407 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterBasic.js +95 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterBeautyEquipment.js +165 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterCashItemEquipment.js +221 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterDojang.js +45 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterHexaMatrix.js +67 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterHexaMatrixStat.js +108 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterHyperStat.js +92 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterImage.js +77 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterItemEquipment.js +1158 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterLinkSkill.js +110 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterList.js +71 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterPetEquipment.js +325 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterPopularity.js +23 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterPropensity.js +48 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterSetEffect.js +90 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterSkill.js +72 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterStat.js +52 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterSymbolEquipment.js +114 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterVMatrix.js +83 -0
- package/dist/esm/maplestory/api/kms/dto/guild/guild.js +18 -0
- package/dist/esm/maplestory/api/kms/dto/guild/guildBasic.js +102 -0
- package/dist/esm/maplestory/api/kms/dto/history/cubeHistory.js +159 -0
- package/dist/esm/maplestory/api/kms/dto/history/potentialHistory.js +154 -0
- package/dist/esm/maplestory/api/kms/dto/history/starforceHistory.js +153 -0
- package/dist/esm/maplestory/api/kms/dto/inspectionInfo.js +30 -0
- package/dist/esm/maplestory/api/kms/dto/notice/cashshopNoticeDetail.js +51 -0
- package/dist/esm/maplestory/api/kms/dto/notice/cashshopNoticeList.js +64 -0
- package/dist/esm/maplestory/api/kms/dto/notice/eventNoticeDetail.js +40 -0
- package/dist/esm/maplestory/api/kms/dto/notice/eventNoticeList.js +53 -0
- package/dist/esm/maplestory/api/kms/dto/notice/noticeDetail.js +30 -0
- package/dist/esm/maplestory/api/kms/dto/notice/noticeList.js +43 -0
- package/dist/esm/maplestory/api/kms/dto/notice/updateNoticeDetail.js +30 -0
- package/dist/esm/maplestory/api/kms/dto/notice/updateNoticeList.js +43 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/achievementRanking.js +63 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/dojangRanking.js +68 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/guildRanking.js +63 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/overallRanking.js +73 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/theSeedRanking.js +68 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/unionRanking.js +63 -0
- package/dist/esm/maplestory/api/kms/dto/union/union.js +43 -0
- package/dist/esm/maplestory/api/kms/dto/union/unionArtifact.js +105 -0
- package/dist/esm/maplestory/api/kms/dto/union/unionChampion.js +71 -0
- package/dist/esm/maplestory/api/kms/dto/union/unionRaider.js +200 -0
- package/dist/esm/maplestory/api/kms/kms.js +47 -0
- package/dist/esm/maplestory/api/kms/mapleStoryApi.js +1312 -0
- package/dist/esm/maplestory/api/msea/dto/character/character.js +18 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterAbility.js +102 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterAndroidEquipment.js +408 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterBasic.js +95 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterBeautyEquipment.js +165 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterCashItemEquipment.js +216 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterDojang.js +45 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterHexaMatrix.js +67 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterHexaMatrixStat.js +108 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterHyperStat.js +92 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterImage.js +77 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterItemEquipment.js +1098 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterLinkSkill.js +110 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterPetEquipment.js +325 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterPopularity.js +23 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterPropensity.js +48 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterSetEffect.js +90 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterSkill.js +72 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterStat.js +52 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterSymbolEquipment.js +114 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterVMatrix.js +83 -0
- package/dist/esm/maplestory/api/msea/dto/guild/guild.js +18 -0
- package/dist/esm/maplestory/api/msea/dto/guild/guildBasic.js +102 -0
- package/dist/esm/maplestory/api/msea/dto/union/union.js +43 -0
- package/dist/esm/maplestory/api/msea/dto/union/unionArtifact.js +105 -0
- package/dist/esm/maplestory/api/msea/dto/union/unionRaider.js +205 -0
- package/dist/esm/maplestory/api/msea/mapleStoryApi.js +794 -0
- package/dist/esm/maplestory/api/msea/msea.js +27 -0
- package/dist/esm/node_modules/base64-js/index.js +151 -0
- package/dist/esm/node_modules/buffer/index.js +2113 -0
- package/dist/esm/node_modules/dayjs/plugin/timezone.js +10 -0
- package/dist/esm/node_modules/dayjs/plugin/utc.js +10 -0
- package/dist/esm/node_modules/ieee754/index.js +89 -0
- package/dist/index.min.js +1 -10
- package/package.json +14 -3
- package/types/index.d.ts +30 -111
- package/types/maplestory/api/common/dto/character/character.d.ts +3 -0
- package/types/maplestory/api/common/dto/character/characterAbility.d.ts +19 -0
- package/types/maplestory/api/common/dto/character/characterAndroidEquipment.d.ts +77 -0
- package/types/maplestory/api/common/dto/character/characterBasic.d.ts +18 -0
- package/types/maplestory/api/common/dto/character/characterBeautyEquipment.d.ts +30 -0
- package/types/maplestory/api/common/dto/character/characterCashItemEquipment.d.ts +40 -0
- package/types/maplestory/api/common/dto/character/characterDojang.d.ts +8 -0
- package/types/maplestory/api/common/dto/character/characterHexaMatrix.d.ts +13 -0
- package/types/maplestory/api/common/dto/character/characterHexaMatrixStat.d.ts +20 -0
- package/types/maplestory/api/common/dto/character/characterHyperStat.d.ts +18 -0
- package/types/maplestory/api/common/dto/character/characterImage.d.ts +16 -0
- package/types/maplestory/api/common/dto/character/characterItemEquipment.d.ts +216 -0
- package/types/maplestory/api/common/dto/character/characterLinkSkill.d.ts +20 -0
- package/types/maplestory/api/common/dto/character/characterList.d.ts +14 -0
- package/types/maplestory/api/common/dto/character/characterPetEquipment.d.ts +59 -0
- package/types/maplestory/api/common/dto/character/characterPopularity.d.ts +4 -0
- package/types/maplestory/api/common/dto/character/characterPropensity.d.ts +9 -0
- package/types/maplestory/api/common/dto/character/characterSetEffect.d.ts +18 -0
- package/types/maplestory/api/common/dto/character/characterSkill.d.ts +14 -0
- package/types/maplestory/api/common/dto/character/characterStat.d.ts +10 -0
- package/types/maplestory/api/common/dto/character/characterSymbolEquipment.d.ts +22 -0
- package/types/maplestory/api/common/dto/character/characterVMatrix.d.ts +16 -0
- package/types/maplestory/api/common/dto/guild/guild.d.ts +3 -0
- package/types/maplestory/api/common/dto/guild/guildBasic.d.ts +20 -0
- package/types/maplestory/api/common/dto/union/union.d.ts +8 -0
- package/types/maplestory/api/common/dto/union/unionArtifact.d.ts +20 -0
- package/types/maplestory/api/common/dto/union/unionRaider.d.ts +38 -0
- package/types/maplestory/api/common/enum/characterImage.d.ts +87 -0
- package/types/maplestory/api/common/enum/potentialOptionGrade.d.ts +6 -0
- package/types/maplestory/api/common/lib.d.ts +7 -0
- package/types/maplestory/api/common/mapleStoryApi.d.ts +140 -0
- package/types/maplestory/api/{mapleStoryApiError.d.ts → common/mapleStoryApiError.d.ts} +3 -4
- package/types/maplestory/api/common/mapleStoryApiErrorBody.d.ts +6 -0
- package/types/maplestory/api/kms/dto/character/character.d.ts +12 -0
- package/types/maplestory/api/kms/dto/character/characterAbility.d.ts +72 -0
- package/types/maplestory/api/kms/dto/character/characterAndroidEquipment.d.ts +294 -0
- package/types/maplestory/api/{dto/character/characterBasicDto.d.ts → kms/dto/character/characterBasic.d.ts} +7 -4
- package/types/maplestory/api/kms/dto/character/characterBeautyEquipment.d.ts +117 -0
- package/types/maplestory/api/kms/dto/character/characterCashItemEquipment.d.ts +158 -0
- package/types/maplestory/api/{dto/character/characterDojangDto.d.ts → kms/dto/character/characterDojang.d.ts} +6 -6
- package/types/maplestory/api/kms/dto/character/characterHexaMatrix.d.ts +48 -0
- package/types/maplestory/api/kms/dto/character/characterHexaMatrixStat.d.ts +78 -0
- package/types/maplestory/api/{dto/character/characterHyperStatDto.d.ts → kms/dto/character/characterHyperStat.d.ts} +27 -6
- package/types/maplestory/api/kms/dto/character/characterImage.d.ts +74 -0
- package/types/maplestory/api/kms/dto/character/characterItemEquipment.d.ts +890 -0
- package/types/maplestory/api/{dto/character/characterLinkSkillDto.d.ts → kms/dto/character/characterLinkSkill.d.ts} +35 -6
- package/types/maplestory/api/kms/dto/character/characterList.d.ts +52 -0
- package/types/maplestory/api/{dto/character/characterPetEquipmentDto.d.ts → kms/dto/character/characterPetEquipment.d.ts} +79 -7
- package/types/maplestory/api/kms/dto/character/characterPopularity.d.ts +16 -0
- package/types/maplestory/api/{dto/character/characterPropensityDto.d.ts → kms/dto/character/characterPropensity.d.ts} +7 -4
- package/types/maplestory/api/kms/dto/character/characterSetEffect.d.ts +66 -0
- package/types/maplestory/api/kms/dto/character/characterSkill.d.ts +54 -0
- package/types/maplestory/api/kms/dto/character/characterStat.d.ts +38 -0
- package/types/maplestory/api/{dto/character/characterSymbolEquipmentInfoDto.d.ts → kms/dto/character/characterSymbolEquipment.d.ts} +22 -4
- package/types/maplestory/api/kms/dto/character/characterVMatrix.d.ts +62 -0
- package/types/maplestory/api/kms/dto/guild/guild.d.ts +12 -0
- package/types/maplestory/api/kms/dto/guild/guildBasic.d.ts +78 -0
- package/types/maplestory/api/{dto/history/cubeHistoryDto.d.ts → kms/dto/history/cubeHistory.d.ts} +37 -6
- package/types/maplestory/api/{dto/history/potentialHistoryDto.d.ts → kms/dto/history/potentialHistory.d.ts} +37 -6
- package/types/maplestory/api/{dto/history/starforceHistoryDto.d.ts → kms/dto/history/starforceHistory.d.ts} +47 -5
- package/types/maplestory/api/{dto/inspectionInfoDto.d.ts → kms/dto/inspectionInfo.d.ts} +1 -2
- package/types/maplestory/api/{dto/notice/cashshopNoticeDetailDto.d.ts → kms/dto/notice/cashshopNoticeDetail.d.ts} +3 -4
- package/types/maplestory/api/{dto/notice/cashshopNoticeListItemDto.d.ts → kms/dto/notice/cashshopNoticeList.d.ts} +13 -4
- package/types/maplestory/api/{dto/notice/eventNoticeDetailDto.d.ts → kms/dto/notice/eventNoticeDetail.d.ts} +3 -4
- package/types/maplestory/api/kms/dto/notice/eventNoticeList.d.ts +41 -0
- package/types/maplestory/api/{dto/notice/noticeDetailDto.d.ts → kms/dto/notice/noticeDetail.d.ts} +3 -4
- package/types/maplestory/api/kms/dto/notice/noticeList.d.ts +33 -0
- package/types/maplestory/api/{dto/notice/updateNoticeDetailDto.d.ts → kms/dto/notice/updateNoticeDetail.d.ts} +3 -4
- package/types/maplestory/api/kms/dto/notice/updateNoticeList.d.ts +33 -0
- package/types/maplestory/api/{dto/ranking/achievementRankingDto.d.ts → kms/dto/ranking/achievementRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/dojangRankingDto.d.ts → kms/dto/ranking/dojangRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/guildRankingDto.d.ts → kms/dto/ranking/guildRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/overallRankingDto.d.ts → kms/dto/ranking/overallRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/theSeedRankingDto.d.ts → kms/dto/ranking/theSeedRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/unionRankingDto.d.ts → kms/dto/ranking/unionRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/union/unionDto.d.ts → kms/dto/union/union.d.ts} +5 -5
- package/types/maplestory/api/kms/dto/union/unionArtifact.d.ts +76 -0
- package/types/maplestory/api/kms/dto/union/unionChampion.d.ts +55 -0
- package/types/maplestory/api/kms/dto/union/unionRaider.d.ts +142 -0
- package/types/maplestory/api/kms/index.d.ts +47 -0
- package/types/maplestory/api/{mapleStoryApi.d.ts → kms/mapleStoryApi.d.ts} +83 -78
- package/types/maplestory/api/kms/response/character/characterAbilityBody.d.ts +19 -0
- package/types/maplestory/api/{response/character/characterAndroidEquipmentDtoBody.d.ts → kms/response/character/characterAndroidEquipmentBody.d.ts} +20 -21
- package/types/maplestory/api/{response/character/characterBasicDtoBody.d.ts → kms/response/character/characterBasicBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/character/characterBeautyEquipmentBody.d.ts +30 -0
- package/types/maplestory/api/kms/response/character/characterBody.d.ts +3 -0
- package/types/maplestory/api/{response/character/characterCashItemEquipmentDtoBody.d.ts → kms/response/character/characterCashItemEquipmentBody.d.ts} +14 -15
- package/types/maplestory/api/{response/character/characterDojangDtoBody.d.ts → kms/response/character/characterDojangBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/character/characterHexaMatrixBody.d.ts +13 -0
- package/types/maplestory/api/kms/response/character/characterHexaMatrixStatBody.d.ts +20 -0
- package/types/maplestory/api/{response/character/characterHyperStatDtoBody.d.ts → kms/response/character/characterHyperStatBody.d.ts} +5 -6
- package/types/maplestory/api/{response/character/characterItemEquipmentDtoBody.d.ts → kms/response/character/characterItemEquipmentBody.d.ts} +33 -34
- package/types/maplestory/api/kms/response/character/characterLinkSkillBody.d.ts +20 -0
- package/types/maplestory/api/kms/response/character/characterListBody.d.ts +14 -0
- package/types/maplestory/api/{response/character/characterPetEquipmentDtoBody.d.ts → kms/response/character/characterPetEquipmentBody.d.ts} +11 -12
- package/types/maplestory/api/kms/response/character/characterPopularityBody.d.ts +4 -0
- package/types/maplestory/api/{response/character/characterPropensityDtoBody.d.ts → kms/response/character/characterPropensityBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/character/characterSetEffectBody.d.ts +18 -0
- package/types/maplestory/api/{response/character/characterSkillDtoBody.d.ts → kms/response/character/characterSkillBody.d.ts} +3 -4
- package/types/maplestory/api/kms/response/character/characterStatBody.d.ts +10 -0
- package/types/maplestory/api/{response/character/characterSymbolEquipmentDtoBody.d.ts → kms/response/character/characterSymbolEquipmentBody.d.ts} +3 -4
- package/types/maplestory/api/{response/character/characterVMatrixDtoBody.d.ts → kms/response/character/characterVMatrixBody.d.ts} +2 -3
- package/types/maplestory/api/{response/guild/guildBasicDtoBody.d.ts → kms/response/guild/guildBasicBody.d.ts} +4 -5
- package/types/maplestory/api/kms/response/guild/guildBody.d.ts +3 -0
- package/types/maplestory/api/kms/response/history/cubeHistoryBody.d.ts +29 -0
- package/types/maplestory/api/kms/response/history/potentialHistoryBody.d.ts +28 -0
- package/types/maplestory/api/{response/history/starforceHistoryDtoBody.d.ts → kms/response/history/starforceHistoryBody.d.ts} +14 -4
- package/types/maplestory/api/{response → kms/response}/inspectionInfoSoapBody.d.ts +1 -2
- package/types/maplestory/api/{response/notice/cashshopNoticeDetailDtoBody.d.ts → kms/response/notice/cashshopNoticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/cashshopNoticeListBody.d.ts +12 -0
- package/types/maplestory/api/{response/notice/eventNoticeDetailDtoBody.d.ts → kms/response/notice/eventNoticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/eventNoticeListBody.d.ts +11 -0
- package/types/maplestory/api/{response/notice/noticeDetailDtoBody.d.ts → kms/response/notice/noticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/noticeListBody.d.ts +9 -0
- package/types/maplestory/api/{response/notice/updateNoticeDetailDtoBody.d.ts → kms/response/notice/updateNoticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/updateNoticeListBody.d.ts +9 -0
- package/types/maplestory/api/kms/response/ranking/achievementRankingBody.d.ts +12 -0
- package/types/maplestory/api/kms/response/ranking/dojangRankingBody.d.ts +13 -0
- package/types/maplestory/api/kms/response/ranking/guildRankingBody.d.ts +12 -0
- package/types/maplestory/api/{response/ranking/overallRankingResponseDtoBody.d.ts → kms/response/ranking/overallRankingBody.d.ts} +3 -4
- package/types/maplestory/api/kms/response/ranking/rankingResponseBody.d.ts +6 -0
- package/types/maplestory/api/kms/response/ranking/theSeedRankingBody.d.ts +13 -0
- package/types/maplestory/api/kms/response/ranking/unionRankingBody.d.ts +12 -0
- package/types/maplestory/api/kms/response/union/unionArtifactBody.d.ts +19 -0
- package/types/maplestory/api/{response/union/unionDtoBody.d.ts → kms/response/union/unionBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/union/unionChampionBody.d.ts +15 -0
- package/types/maplestory/api/kms/response/union/unionRaiderBody.d.ts +38 -0
- package/types/maplestory/api/msea/dto/character/character.d.ts +12 -0
- package/types/maplestory/api/msea/dto/character/characterAbility.d.ts +72 -0
- package/types/maplestory/api/msea/dto/character/characterAndroidEquipment.d.ts +295 -0
- package/types/maplestory/api/msea/dto/character/characterBasic.d.ts +72 -0
- package/types/maplestory/api/msea/dto/character/characterBeautyEquipment.d.ts +117 -0
- package/types/maplestory/api/msea/dto/character/characterCashItemEquipment.d.ts +154 -0
- package/types/maplestory/api/msea/dto/character/characterDojang.d.ts +32 -0
- package/types/maplestory/api/msea/dto/character/characterHexaMatrix.d.ts +48 -0
- package/types/maplestory/api/msea/dto/character/characterHexaMatrixStat.d.ts +78 -0
- package/types/maplestory/api/msea/dto/character/characterHyperStat.d.ts +70 -0
- package/types/maplestory/api/msea/dto/character/characterImage.d.ts +74 -0
- package/types/maplestory/api/msea/dto/character/characterItemEquipment.d.ts +844 -0
- package/types/maplestory/api/msea/dto/character/characterLinkSkill.d.ts +78 -0
- package/types/maplestory/api/msea/dto/character/characterPetEquipment.d.ts +230 -0
- package/types/maplestory/api/msea/dto/character/characterPopularity.d.ts +16 -0
- package/types/maplestory/api/msea/dto/character/characterPropensity.d.ts +36 -0
- package/types/maplestory/api/msea/dto/character/characterSetEffect.d.ts +66 -0
- package/types/maplestory/api/msea/dto/character/characterSkill.d.ts +54 -0
- package/types/maplestory/api/msea/dto/character/characterStat.d.ts +38 -0
- package/types/maplestory/api/msea/dto/character/characterSymbolEquipment.d.ts +86 -0
- package/types/maplestory/api/msea/dto/character/characterVMatrix.d.ts +62 -0
- package/types/maplestory/api/msea/dto/guild/guild.d.ts +12 -0
- package/types/maplestory/api/msea/dto/guild/guildBasic.d.ts +78 -0
- package/types/maplestory/api/msea/dto/union/union.d.ts +32 -0
- package/types/maplestory/api/msea/dto/union/unionArtifact.d.ts +76 -0
- package/types/maplestory/api/msea/dto/union/unionRaider.d.ts +147 -0
- package/types/maplestory/api/msea/index.d.ts +27 -0
- package/types/maplestory/api/msea/mapleStoryApi.d.ts +364 -0
- package/types/maplestory/api/msea/response/character/characterAbilityBody.d.ts +19 -0
- package/types/maplestory/api/msea/response/character/characterAndroidEquipmentBody.d.ts +75 -0
- package/types/maplestory/api/msea/response/character/characterBasicBody.d.ts +16 -0
- package/types/maplestory/api/msea/response/character/characterBeautyEquipmentBody.d.ts +30 -0
- package/types/maplestory/api/msea/response/character/characterBody.d.ts +3 -0
- package/types/maplestory/api/msea/response/character/characterCashItemEquipmentBody.d.ts +38 -0
- package/types/maplestory/api/msea/response/character/characterDojangBody.d.ts +8 -0
- package/types/maplestory/api/msea/response/character/characterHexaMatrixBody.d.ts +13 -0
- package/types/maplestory/api/msea/response/character/characterHexaMatrixStatBody.d.ts +20 -0
- package/types/maplestory/api/msea/response/character/characterHyperStatBody.d.ts +18 -0
- package/types/maplestory/api/msea/response/character/characterItemEquipmentBody.d.ts +190 -0
- package/types/maplestory/api/msea/response/character/characterLinkSkillBody.d.ts +20 -0
- package/types/maplestory/api/msea/response/character/characterPetEquipmentBody.d.ts +56 -0
- package/types/maplestory/api/msea/response/character/characterPopularityBody.d.ts +4 -0
- package/types/maplestory/api/msea/response/character/characterPropensityBody.d.ts +9 -0
- package/types/maplestory/api/msea/response/character/characterSetEffectBody.d.ts +18 -0
- package/types/maplestory/api/msea/response/character/characterSkillBody.d.ts +14 -0
- package/types/maplestory/api/msea/response/character/characterStatBody.d.ts +10 -0
- package/types/maplestory/api/msea/response/character/characterSymbolEquipmentBody.d.ts +22 -0
- package/types/maplestory/api/msea/response/character/characterVMatrixBody.d.ts +16 -0
- package/types/maplestory/api/msea/response/guild/guildBasicBody.d.ts +20 -0
- package/types/maplestory/api/msea/response/guild/guildBody.d.ts +3 -0
- package/types/maplestory/api/msea/response/union/unionArtifactBody.d.ts +19 -0
- package/types/maplestory/api/msea/response/union/unionBody.d.ts +8 -0
- package/types/maplestory/api/msea/response/union/unionRaiderBody.d.ts +38 -0
- package/dist/index.js +0 -9120
- package/dist/index.mjs +0 -9002
- package/types/maplestory/api/dto/character/characterAbilityDto.d.ts +0 -42
- package/types/maplestory/api/dto/character/characterAbilityInfoDto.d.ts +0 -20
- package/types/maplestory/api/dto/character/characterAbilityPresetDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterAndroidCashItemEquipmentColoringPrismDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterAndroidCashItemEquipmentDto.d.ts +0 -58
- package/types/maplestory/api/dto/character/characterAndroidCashItemEquipmentOptionDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterAndroidEquipmentDto.d.ts +0 -85
- package/types/maplestory/api/dto/character/characterAndroidEquipmentFaceDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterAndroidEquipmentHairDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterAndroidEquipmentPresetDto.d.ts +0 -59
- package/types/maplestory/api/dto/character/characterAndroidEquipmentSkinDto.d.ts +0 -28
- package/types/maplestory/api/dto/character/characterBeautyEquipmentDto.d.ts +0 -50
- package/types/maplestory/api/dto/character/characterBeautyEquipmentFaceDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterBeautyEquipmentHairDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterBeautyEquipmentSkinDto.d.ts +0 -28
- package/types/maplestory/api/dto/character/characterCashItemEquipmentColoringPrismDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterCashItemEquipmentDto.d.ts +0 -61
- package/types/maplestory/api/dto/character/characterCashItemEquipmentOptionDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterCashItemEquipmentPresetDto.d.ts +0 -66
- package/types/maplestory/api/dto/character/characterDto.d.ts +0 -12
- package/types/maplestory/api/dto/character/characterHexaMatrixDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterHexaMatrixEquipmentDto.d.ts +0 -25
- package/types/maplestory/api/dto/character/characterHexaMatrixEquipmentLinkedSkillDto.d.ts +0 -12
- package/types/maplestory/api/dto/character/characterHexaMatrixStatCoreDto.d.ts +0 -40
- package/types/maplestory/api/dto/character/characterHexaMatrixStatDto.d.ts +0 -41
- package/types/maplestory/api/dto/character/characterHyperStatPresetDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterImageDto.d.ts +0 -160
- package/types/maplestory/api/dto/character/characterItemEquipmentAddOptionDto.d.ts +0 -68
- package/types/maplestory/api/dto/character/characterItemEquipmentBaseOptionDto.d.ts +0 -76
- package/types/maplestory/api/dto/character/characterItemEquipmentDragonInfoDto.d.ts +0 -130
- package/types/maplestory/api/dto/character/characterItemEquipmentDto.d.ts +0 -61
- package/types/maplestory/api/dto/character/characterItemEquipmentEtcOptionDto.d.ts +0 -52
- package/types/maplestory/api/dto/character/characterItemEquipmentExceptionalOptionDto.d.ts +0 -44
- package/types/maplestory/api/dto/character/characterItemEquipmentInfoDto.d.ts +0 -162
- package/types/maplestory/api/dto/character/characterItemEquipmentMechanicInfoDto.d.ts +0 -130
- package/types/maplestory/api/dto/character/characterItemEquipmentMedalShapeDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterItemEquipmentStarforceOptionDto.d.ts +0 -52
- package/types/maplestory/api/dto/character/characterItemEquipmentTitleDto.d.ts +0 -48
- package/types/maplestory/api/dto/character/characterItemEquipmentTotalOptionDto.d.ts +0 -80
- package/types/maplestory/api/dto/character/characterLinkSkillInfoDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterListAccountCharacterDto.d.ts +0 -28
- package/types/maplestory/api/dto/character/characterListAccountDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterListDto.d.ts +0 -13
- package/types/maplestory/api/dto/character/characterPetEquipmentAutoSkillDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterPetEquipmentItemDto.d.ts +0 -41
- package/types/maplestory/api/dto/character/characterPetEquipmentItemOptionDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterPopularityDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterSetEffectDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterSetEffectInfoDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterSetEffectOptionFullDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterSetEffectSetDto.d.ts +0 -26
- package/types/maplestory/api/dto/character/characterSkillDto.d.ts +0 -25
- package/types/maplestory/api/dto/character/characterSkillInfoDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterStatDto.d.ts +0 -27
- package/types/maplestory/api/dto/character/characterSymbolEquipmentDto.d.ts +0 -21
- package/types/maplestory/api/dto/character/characterVMatrixCoreEquipmentDto.d.ts +0 -40
- package/types/maplestory/api/dto/character/characterVMatrixDto.d.ts +0 -25
- package/types/maplestory/api/dto/guild/guildBasicDto.d.ts +0 -53
- package/types/maplestory/api/dto/guild/guildDto.d.ts +0 -12
- package/types/maplestory/api/dto/guild/guildSkillDto.d.ts +0 -28
- package/types/maplestory/api/dto/history/cubeHistoryResponseDto.d.ts +0 -21
- package/types/maplestory/api/dto/history/cubeResultOptionDto.d.ts +0 -18
- package/types/maplestory/api/dto/history/potentialHistoryResponseDto.d.ts +0 -21
- package/types/maplestory/api/dto/history/potentialResultOptionDto.d.ts +0 -18
- package/types/maplestory/api/dto/history/starforceEventDto.d.ts +0 -28
- package/types/maplestory/api/dto/history/starforceHistoryResponseDto.d.ts +0 -21
- package/types/maplestory/api/dto/notice/cashshopNoticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/eventNoticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/eventNoticeListItemDto.d.ts +0 -32
- package/types/maplestory/api/dto/notice/noticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/noticeListItemDto.d.ts +0 -24
- package/types/maplestory/api/dto/notice/updateNoticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/updateNoticeListItemDto.d.ts +0 -24
- package/types/maplestory/api/dto/potentialOptionGrade.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/achievementRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/dojangRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/guildRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/overallRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/theSeedRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/unionRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/union/unionArtifactCrystalDto.d.ts +0 -40
- package/types/maplestory/api/dto/union/unionArtifactDto.d.ts +0 -26
- package/types/maplestory/api/dto/union/unionArtifactEffectDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionChampionBadgeInfoDto.d.ts +0 -12
- package/types/maplestory/api/dto/union/unionChampionDto.d.ts +0 -22
- package/types/maplestory/api/dto/union/unionChampionInfoDto.d.ts +0 -29
- package/types/maplestory/api/dto/union/unionRaiderBlockDto.d.ts +0 -30
- package/types/maplestory/api/dto/union/unionRaiderBlockPositionDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionRaiderControlPointDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionRaiderDto.d.ts +0 -52
- package/types/maplestory/api/dto/union/unionRaiderInnerStatDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionRaiderPresetDto.d.ts +0 -26
- package/types/maplestory/api/response/character/characterAbilityDtoBody.d.ts +0 -20
- package/types/maplestory/api/response/character/characterBeautyEquipmentDtoBody.d.ts +0 -31
- package/types/maplestory/api/response/character/characterDtoBody.d.ts +0 -4
- package/types/maplestory/api/response/character/characterHexaMatrixDtoBody.d.ts +0 -14
- package/types/maplestory/api/response/character/characterHexaMatrixStatDtoBody.d.ts +0 -21
- package/types/maplestory/api/response/character/characterLinkSkillDtoBody.d.ts +0 -21
- package/types/maplestory/api/response/character/characterListDtoBody.d.ts +0 -15
- package/types/maplestory/api/response/character/characterPopularityDtoBody.d.ts +0 -5
- package/types/maplestory/api/response/character/characterSetEffectDtoBody.d.ts +0 -19
- package/types/maplestory/api/response/character/characterStatDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/guild/guildDtoBody.d.ts +0 -4
- package/types/maplestory/api/response/history/cubeHistoryDtoBody.d.ts +0 -22
- package/types/maplestory/api/response/history/cubeHistoryResponseDtoBody.d.ts +0 -7
- package/types/maplestory/api/response/history/cubeResultOptionDtoBody.d.ts +0 -5
- package/types/maplestory/api/response/history/potentialHistoryResponseDtoBody.d.ts +0 -29
- package/types/maplestory/api/response/history/starforceEventDtoBody.d.ts +0 -8
- package/types/maplestory/api/response/history/starforceHistoryResponseDtoBody.d.ts +0 -7
- package/types/maplestory/api/response/notice/cashshopNoticeListDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/notice/eventNoticeListDtoBody.d.ts +0 -12
- package/types/maplestory/api/response/notice/noticeListDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/notice/updateNoticeListDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/ranking/achievementRankingResponseDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/ranking/dojangRankingResponseDtoBody.d.ts +0 -14
- package/types/maplestory/api/response/ranking/guildRankingResponseDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/ranking/rankingResponseDtoBody.d.ts +0 -7
- package/types/maplestory/api/response/ranking/theSeedRankingResponseDtoBody.d.ts +0 -14
- package/types/maplestory/api/response/ranking/unionRankingResponseDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/union/unionArtifactDtoBody.d.ts +0 -20
- package/types/maplestory/api/response/union/unionChampionDtoBody.d.ts +0 -16
- package/types/maplestory/api/response/union/unionRaiderDtoBody.d.ts +0 -39
|
@@ -0,0 +1,364 @@
|
|
|
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 { CharacterPetEquipmentDto } from './dto/character/characterPetEquipment';
|
|
15
|
+
import { CharacterPopularityDto } from './dto/character/characterPopularity';
|
|
16
|
+
import { CharacterPropensityDto } from './dto/character/characterPropensity';
|
|
17
|
+
import { CharacterSetEffectDto } from './dto/character/characterSetEffect';
|
|
18
|
+
import { CharacterSkillDto } from './dto/character/characterSkill';
|
|
19
|
+
import { CharacterStatDto } from './dto/character/characterStat';
|
|
20
|
+
import { CharacterSymbolEquipmentDto } from './dto/character/characterSymbolEquipment';
|
|
21
|
+
import { CharacterVMatrixDto } from './dto/character/characterVMatrix';
|
|
22
|
+
import { GuildDto } from './dto/guild/guild';
|
|
23
|
+
import { GuildBasicDto } from './dto/guild/guildBasic';
|
|
24
|
+
import { UnionDto } from './dto/union/union';
|
|
25
|
+
import { UnionArtifactDto } from './dto/union/unionArtifact';
|
|
26
|
+
import { UnionRaiderDto } from './dto/union/unionRaider';
|
|
27
|
+
import { CharacterImageAction, CharacterImageEmotion, CharacterImageWeaponMotion } from '../common/enum/characterImage';
|
|
28
|
+
import { DateOptions } from '../common/mapleStoryApi';
|
|
29
|
+
import * as base from '../common/mapleStoryApi';
|
|
30
|
+
/**
|
|
31
|
+
* MapleStory OpenAPI client for MSEA.<br>
|
|
32
|
+
* This is an implementation of <a href="https://openapi.nexon.com/game/maplestorysea">MapleStory API</a>
|
|
33
|
+
*/
|
|
34
|
+
export declare class MapleStoryApi extends base.MapleStoryApi {
|
|
35
|
+
protected subUrl: string;
|
|
36
|
+
protected timezoneOffset: number;
|
|
37
|
+
constructor(apiKey: string);
|
|
38
|
+
/**
|
|
39
|
+
* Retrieves the character identifier (ocid).
|
|
40
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
41
|
+
* - Data is available starting from April 20, 2025.
|
|
42
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
43
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
44
|
+
* - This API provides data for MapleStory SEA.
|
|
45
|
+
* @param characterName Character name
|
|
46
|
+
*/
|
|
47
|
+
getCharacter(characterName: string): Promise<CharacterDto>;
|
|
48
|
+
/**
|
|
49
|
+
* Retrieves basic character information.
|
|
50
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
51
|
+
* - Data is available starting from April 20, 2025.
|
|
52
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
53
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
54
|
+
* - This API provides data for MapleStory SEA.
|
|
55
|
+
* @param ocid Character identifier
|
|
56
|
+
* @param dateOptions Reference date for query (SGT)
|
|
57
|
+
*/
|
|
58
|
+
getCharacterBasic(ocid: string, dateOptions?: DateOptions): Promise<CharacterBasicDto>;
|
|
59
|
+
/**
|
|
60
|
+
* Retrieves character image information.
|
|
61
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
62
|
+
* - Data is available starting from April 20, 2025.
|
|
63
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
64
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
65
|
+
* - This API provides data for MapleStory SEA.
|
|
66
|
+
* @param ocid Character identifier
|
|
67
|
+
* @param imageOptions Image options
|
|
68
|
+
* @param dateOptions Reference date for query (SGT)
|
|
69
|
+
*/
|
|
70
|
+
getCharacterImage(ocid: string, imageOptions?: CharacterImageOptions, dateOptions?: DateOptions): Promise<CharacterImageDto>;
|
|
71
|
+
/**
|
|
72
|
+
* Retrieves popularity information of a character.
|
|
73
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
74
|
+
* - Data is available starting from April 20, 2025.
|
|
75
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
76
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
77
|
+
* - This API provides data for MapleStory SEA.
|
|
78
|
+
* @param ocid Character identifier
|
|
79
|
+
* @param dateOptions Reference date for query (SGT)
|
|
80
|
+
*/
|
|
81
|
+
getCharacterPopularity(ocid: string, dateOptions?: DateOptions): Promise<CharacterPopularityDto>;
|
|
82
|
+
/**
|
|
83
|
+
* Retrieves comprehensive character stats information.
|
|
84
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
85
|
+
* - Data is available starting from April 20, 2025.
|
|
86
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
87
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
88
|
+
* - This API provides data for MapleStory SEA.
|
|
89
|
+
* @param ocid Character identifier
|
|
90
|
+
* @param dateOptions Reference date for query (SGT)
|
|
91
|
+
*/
|
|
92
|
+
getCharacterStat(ocid: string, dateOptions?: DateOptions): Promise<CharacterStatDto>;
|
|
93
|
+
/**
|
|
94
|
+
* Retrieves Hyper Stat information.
|
|
95
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
96
|
+
* - Data is available starting from April 20, 2025.
|
|
97
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
98
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
99
|
+
* - This API provides data for MapleStory SEA.
|
|
100
|
+
* @param ocid Character identifier
|
|
101
|
+
* @param dateOptions Reference date for query (SGT)
|
|
102
|
+
*/
|
|
103
|
+
getCharacterHyperStat(ocid: string, dateOptions?: DateOptions): Promise<CharacterHyperStatDto>;
|
|
104
|
+
/**
|
|
105
|
+
* Retrieves traits information.
|
|
106
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
107
|
+
* - Data is available starting from April 20, 2025.
|
|
108
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
109
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
110
|
+
* - This API provides data for MapleStory SEA.
|
|
111
|
+
* @param ocid Character identifier
|
|
112
|
+
* @param dateOptions Reference date for query (SGT)
|
|
113
|
+
*/
|
|
114
|
+
getCharacterPropensity(ocid: string, dateOptions?: DateOptions): Promise<CharacterPropensityDto>;
|
|
115
|
+
/**
|
|
116
|
+
* Retrieves Ability information.
|
|
117
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
118
|
+
* - Data is available starting from April 20, 2025.
|
|
119
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
120
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
121
|
+
* - This API provides data for MapleStory SEA.
|
|
122
|
+
* @param ocid Character identifier
|
|
123
|
+
* @param dateOptions Reference date for query (SGT)
|
|
124
|
+
*/
|
|
125
|
+
getCharacterAbility(ocid: string, dateOptions?: DateOptions): Promise<CharacterAbilityDto>;
|
|
126
|
+
/**
|
|
127
|
+
* Retrieves information about equipped equipment, excluding cash items.
|
|
128
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
129
|
+
* - Data is available starting from April 20, 2025.
|
|
130
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
131
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
132
|
+
* - This API provides data for MapleStory SEA.
|
|
133
|
+
* @param ocid Character identifier
|
|
134
|
+
* @param dateOptions Reference date for query (SGT)
|
|
135
|
+
*/
|
|
136
|
+
getCharacterItemEquipment(ocid: string, dateOptions?: DateOptions): Promise<CharacterItemEquipmentDto>;
|
|
137
|
+
/**
|
|
138
|
+
* Retrieves equipped cash item information.
|
|
139
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
140
|
+
* - Data is available starting from April 20, 2025.
|
|
141
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
142
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
143
|
+
* - This API provides data for MapleStory SEA.
|
|
144
|
+
* @param ocid Character identifier
|
|
145
|
+
* @param dateOptions Reference date for query (SGT)
|
|
146
|
+
*/
|
|
147
|
+
getCharacterCashItemEquipment(ocid: string, dateOptions?: DateOptions): Promise<CharacterCashItemEquipmentDto>;
|
|
148
|
+
/**
|
|
149
|
+
* Retrieves information about equipped symbols.
|
|
150
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
151
|
+
* - Data is available starting from April 20, 2025.
|
|
152
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
153
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
154
|
+
* - This API provides data for MapleStory SEA.
|
|
155
|
+
* @param ocid Character identifier
|
|
156
|
+
* @param dateOptions Reference date for query (SGT)
|
|
157
|
+
*/
|
|
158
|
+
getCharacterSymbolEquipment(ocid: string, dateOptions?: DateOptions): Promise<CharacterSymbolEquipmentDto>;
|
|
159
|
+
/**
|
|
160
|
+
* Retrieves information about equipped set item effects.
|
|
161
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
162
|
+
* - Data is available starting from April 20, 2025.
|
|
163
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
164
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
165
|
+
* - This API provides data for MapleStory SEA.
|
|
166
|
+
* @param ocid Character identifier
|
|
167
|
+
* @param dateOptions Reference date for query (SGT)
|
|
168
|
+
*/
|
|
169
|
+
getCharacterSetEffect(ocid: string, dateOptions?: DateOptions): Promise<CharacterSetEffectDto>;
|
|
170
|
+
/**
|
|
171
|
+
* Retrieves information about equipped hair, face, and skin.
|
|
172
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
173
|
+
* - Data is available starting from April 20, 2025.
|
|
174
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
175
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
176
|
+
* - This API provides data for MapleStory SEA.
|
|
177
|
+
* @param ocid Character identifier
|
|
178
|
+
* @param dateOptions Reference date for query (SGT)
|
|
179
|
+
*/
|
|
180
|
+
getCharacterBeautyEquipment(ocid: string, dateOptions?: DateOptions): Promise<CharacterBeautyEquipmentDto>;
|
|
181
|
+
/**
|
|
182
|
+
* Retrieves equipped android information.
|
|
183
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
184
|
+
* - Data is available starting from April 20, 2025.
|
|
185
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
186
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
187
|
+
* - This API provides data for MapleStory SEA.
|
|
188
|
+
* @param ocid Character identifier
|
|
189
|
+
* @param dateOptions Reference date for query (SGT)
|
|
190
|
+
*/
|
|
191
|
+
getCharacterAndroidEquipment(ocid: string, dateOptions?: DateOptions): Promise<CharacterAndroidEquipmentDto>;
|
|
192
|
+
/**
|
|
193
|
+
* Retrieves information about equipped pets, including pet skills and equipment.
|
|
194
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
195
|
+
* - Data is available starting from April 20, 2025.
|
|
196
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
197
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
198
|
+
* - This API provides data for MapleStory SEA.
|
|
199
|
+
* @param ocid Character identifier
|
|
200
|
+
* @param dateOptions Reference date for query (SGT)
|
|
201
|
+
*/
|
|
202
|
+
getCharacterPetEquipment(ocid: string, dateOptions?: DateOptions): Promise<CharacterPetEquipmentDto>;
|
|
203
|
+
/**
|
|
204
|
+
* Retrieves information about character skills and Hyper Skills.
|
|
205
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
206
|
+
* - Data is available starting from April 20, 2025.
|
|
207
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
208
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
209
|
+
* - This API provides data for MapleStory SEA.
|
|
210
|
+
* @param ocid Character identifier
|
|
211
|
+
* @param characterSkillGrade Job advancement tier to query <a href="https://openapi.nexon.com/game/maplestorysea/?id=45">Available values</a>
|
|
212
|
+
* @param dateOptions Reference date for query (SGT)
|
|
213
|
+
*/
|
|
214
|
+
getCharacterSkill(ocid: string, characterSkillGrade: string, dateOptions?: DateOptions): Promise<CharacterSkillDto>;
|
|
215
|
+
/**
|
|
216
|
+
* Retrieves information about equipped Link Skills.
|
|
217
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
218
|
+
* - Data is available starting from April 20, 2025.
|
|
219
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
220
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
221
|
+
* - This API provides data for MapleStory SEA.
|
|
222
|
+
* @param ocid Character identifier
|
|
223
|
+
* @param dateOptions Reference date for query (SGT)
|
|
224
|
+
*/
|
|
225
|
+
getCharacterLinkSkill(ocid: string, dateOptions?: DateOptions): Promise<CharacterLinkSkillDto>;
|
|
226
|
+
/**
|
|
227
|
+
* Retrieves V Matrix slot and equipped Node information.
|
|
228
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
229
|
+
* - Data is available starting from April 20, 2025.
|
|
230
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
231
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
232
|
+
* - This API provides data for MapleStory SEA.
|
|
233
|
+
* @param ocid Character identifier
|
|
234
|
+
* @param dateOptions Reference date for query (SGT)
|
|
235
|
+
*/
|
|
236
|
+
getCharacterVMatrix(ocid: string, dateOptions?: DateOptions): Promise<CharacterVMatrixDto>;
|
|
237
|
+
/**
|
|
238
|
+
* Retrieves information about HEXA Nodes equipped in the HEXA Matrix.
|
|
239
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
240
|
+
* - Data is available starting from April 20, 2025.
|
|
241
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
242
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
243
|
+
* - This API provides data for MapleStory SEA.
|
|
244
|
+
* @param ocid Character identifier
|
|
245
|
+
* @param dateOptions Reference date for query (SGT)
|
|
246
|
+
*/
|
|
247
|
+
getCharacterHexaMatrix(ocid: string, dateOptions?: DateOptions): Promise<CharacterHexaMatrixDto>;
|
|
248
|
+
/**
|
|
249
|
+
* Retrieves information about HEXA stats configured in the HEXA Matrix.
|
|
250
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
251
|
+
* - Data is available starting from April 20, 2025.
|
|
252
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
253
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
254
|
+
* - This API provides data for MapleStory SEA.
|
|
255
|
+
* @param ocid Character identifier
|
|
256
|
+
* @param dateOptions Reference date for query (SGT)
|
|
257
|
+
*/
|
|
258
|
+
getCharacterHexaMatrixStat(ocid: string, dateOptions?: DateOptions): Promise<CharacterHexaMatrixStatDto>;
|
|
259
|
+
/**
|
|
260
|
+
* Retrieves the character's highest record information in Mu Lung Garden.
|
|
261
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
262
|
+
* - Data is available starting from April 20, 2025.
|
|
263
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
264
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
265
|
+
* - This API provides data for MapleStory SEA.
|
|
266
|
+
* @param ocid Character identifier
|
|
267
|
+
* @param dateOptions Reference date for query (SGT)
|
|
268
|
+
*/
|
|
269
|
+
getCharacterDojang(ocid: string, dateOptions?: DateOptions): Promise<CharacterDojangDto>;
|
|
270
|
+
/**
|
|
271
|
+
* Retrieves Union level and Union rank information.
|
|
272
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
273
|
+
* - Data is available starting from April 20, 2025.
|
|
274
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
275
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
276
|
+
* - This API provides data for MapleStory SEA.
|
|
277
|
+
* @param ocid Character identifier
|
|
278
|
+
* @param dateOptions Reference date for query (SGT)
|
|
279
|
+
*/
|
|
280
|
+
getUnion(ocid: string, dateOptions?: DateOptions): Promise<UnionDto>;
|
|
281
|
+
/**
|
|
282
|
+
* Retrieves detailed information about raid member effects and capture effects deployed in the Union.
|
|
283
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
284
|
+
* - Data is available starting from April 20, 2025.
|
|
285
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
286
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
287
|
+
* - This API provides data for MapleStory SEA.
|
|
288
|
+
* @param ocid Character identifier
|
|
289
|
+
* @param dateOptions Reference date for query (SGT)
|
|
290
|
+
*/
|
|
291
|
+
getUnionRaider(ocid: string, dateOptions?: DateOptions): Promise<UnionRaiderDto>;
|
|
292
|
+
/**
|
|
293
|
+
* Retrieves Union Artifact information.
|
|
294
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
295
|
+
* - Data is available starting from April 20, 2025.
|
|
296
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
297
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
298
|
+
* - This API provides data for MapleStory SEA.
|
|
299
|
+
* @param ocid Character identifier
|
|
300
|
+
* @param dateOptions Reference date for query (SGT)
|
|
301
|
+
*/
|
|
302
|
+
getUnionArtifact(ocid: string, dateOptions?: DateOptions): Promise<UnionArtifactDto>;
|
|
303
|
+
/**
|
|
304
|
+
* Retrieves information for the guild identifier (oguild_id).
|
|
305
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
306
|
+
* - Data is available starting from April 20, 2025.
|
|
307
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
308
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
309
|
+
* - This API provides data for MapleStory SEA.
|
|
310
|
+
* @param guildName Guild name
|
|
311
|
+
* @param worldName World name
|
|
312
|
+
*/
|
|
313
|
+
getGuild(guildName: string, worldName: string): Promise<GuildDto>;
|
|
314
|
+
/**
|
|
315
|
+
* Retrieves guild basic information.
|
|
316
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
317
|
+
* - Data is available starting from April 20, 2025.
|
|
318
|
+
* - Historical data can be queried by specifying the desired date, and data from the previous day can be accessed starting at 2 AM the next day. (For example, when querying data for December 22, data from 00:00 to 24:00 on December 22 will be retrieved.)
|
|
319
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
320
|
+
* - This API provides data for MapleStory SEA.
|
|
321
|
+
* @param guildId Guild identifier
|
|
322
|
+
* @param dateOptions Reference date for query (SGT)
|
|
323
|
+
*/
|
|
324
|
+
getGuildBasic(guildId: string, dateOptions?: DateOptions): Promise<GuildBasicDto>;
|
|
325
|
+
}
|
|
326
|
+
type CharacterImageOptions = {
|
|
327
|
+
/**
|
|
328
|
+
* Character action
|
|
329
|
+
*/
|
|
330
|
+
action?: CharacterImageAction;
|
|
331
|
+
/**
|
|
332
|
+
* Character emotion
|
|
333
|
+
*/
|
|
334
|
+
emotion?: CharacterImageEmotion;
|
|
335
|
+
/**
|
|
336
|
+
* Character weapon motion
|
|
337
|
+
*/
|
|
338
|
+
wmotion?: CharacterImageWeaponMotion;
|
|
339
|
+
/**
|
|
340
|
+
* Character action frame
|
|
341
|
+
*/
|
|
342
|
+
actionFrame?: number;
|
|
343
|
+
/**
|
|
344
|
+
* Character emotion frame
|
|
345
|
+
*/
|
|
346
|
+
emotionFrame?: number;
|
|
347
|
+
/**
|
|
348
|
+
* Horizontal length (corresponding to the background size, 96 (default) ~ 1000)
|
|
349
|
+
*/
|
|
350
|
+
width?: number;
|
|
351
|
+
/**
|
|
352
|
+
* Vertical length (corresponding to the background size, 96 (default) ~ 1000)
|
|
353
|
+
*/
|
|
354
|
+
height?: number;
|
|
355
|
+
/**
|
|
356
|
+
* Horizontal coordinate of the character (coordinate range 0 < x < width, 0 is the left starting point)
|
|
357
|
+
*/
|
|
358
|
+
x?: number;
|
|
359
|
+
/**
|
|
360
|
+
* Vertical coordinate of the character (coordinate range 0 < y < height, 0 is the top starting point)
|
|
361
|
+
*/
|
|
362
|
+
y?: number;
|
|
363
|
+
};
|
|
364
|
+
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
|
+
};
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
export type CharacterAndroidEquipmentBody = {
|
|
2
|
+
date: string | null;
|
|
3
|
+
android_name: string | null;
|
|
4
|
+
android_nickname: string | null;
|
|
5
|
+
android_icon: string | null;
|
|
6
|
+
android_description: string | null;
|
|
7
|
+
android_hair: CharacterAndroidEquipmentHairBody | null;
|
|
8
|
+
android_face: CharacterAndroidEquipmentFaceBody | null;
|
|
9
|
+
android_skin: CharacterAndroidEquipmentSkinBody | null;
|
|
10
|
+
android_cash_item_equipment: CharacterAndroidCashItemEquipmentBody[];
|
|
11
|
+
android_ear_sensor_clip_flag: string | null;
|
|
12
|
+
android_gender: string | null;
|
|
13
|
+
android_grade: string | null;
|
|
14
|
+
android_non_humanoid_flag: string | null;
|
|
15
|
+
android_shop_usable_flag: string | null;
|
|
16
|
+
preset_no: number | null;
|
|
17
|
+
android_preset_1: CharacterAndroidEquipmentPresetBody | null;
|
|
18
|
+
android_preset_2: CharacterAndroidEquipmentPresetBody | null;
|
|
19
|
+
android_preset_3: CharacterAndroidEquipmentPresetBody | null;
|
|
20
|
+
};
|
|
21
|
+
export type CharacterAndroidEquipmentHairBody = {
|
|
22
|
+
hair_name: string | null;
|
|
23
|
+
base_color: string | null;
|
|
24
|
+
mix_color: string | null;
|
|
25
|
+
mix_rate: string;
|
|
26
|
+
};
|
|
27
|
+
export type CharacterAndroidEquipmentFaceBody = {
|
|
28
|
+
face_name: string | null;
|
|
29
|
+
base_color: string | null;
|
|
30
|
+
mix_color: string | null;
|
|
31
|
+
mix_rate: string;
|
|
32
|
+
};
|
|
33
|
+
export type CharacterAndroidEquipmentSkinBody = {
|
|
34
|
+
skin_name: string;
|
|
35
|
+
color_style: string | null;
|
|
36
|
+
hue: number | null;
|
|
37
|
+
saturation: number | null;
|
|
38
|
+
brightness: number | null;
|
|
39
|
+
};
|
|
40
|
+
export type CharacterAndroidEquipmentPresetBody = {
|
|
41
|
+
android_name: string;
|
|
42
|
+
android_nickname: string;
|
|
43
|
+
android_icon: string;
|
|
44
|
+
android_description: string;
|
|
45
|
+
android_gender: string | null;
|
|
46
|
+
android_grade: string;
|
|
47
|
+
android_hair: CharacterAndroidEquipmentHairBody;
|
|
48
|
+
android_face: CharacterAndroidEquipmentFaceBody;
|
|
49
|
+
android_skin: CharacterAndroidEquipmentSkinBody | null;
|
|
50
|
+
android_ear_sensor_clip_flag: string;
|
|
51
|
+
android_non_humanoid_flag: string;
|
|
52
|
+
android_shop_usable_flag: string;
|
|
53
|
+
};
|
|
54
|
+
export type CharacterAndroidCashItemEquipmentBody = {
|
|
55
|
+
cash_item_equipment_part: string;
|
|
56
|
+
cash_item_equipment_slot: string;
|
|
57
|
+
cash_item_name: string;
|
|
58
|
+
cash_item_icon: string;
|
|
59
|
+
cash_item_description: string | null;
|
|
60
|
+
cash_item_option: CharacterAndroidCashItemEquipmentOptionBody[];
|
|
61
|
+
date_expire: string | null;
|
|
62
|
+
date_option_expire: string | null;
|
|
63
|
+
cash_item_label: string | null;
|
|
64
|
+
cash_item_coloring_prism: CharacterAndroidCashItemEquipmentColoringPrismBody | null;
|
|
65
|
+
};
|
|
66
|
+
export type CharacterAndroidCashItemEquipmentOptionBody = {
|
|
67
|
+
option_type: string;
|
|
68
|
+
option_value: string;
|
|
69
|
+
};
|
|
70
|
+
export type CharacterAndroidCashItemEquipmentColoringPrismBody = {
|
|
71
|
+
color_range: string;
|
|
72
|
+
hue: number;
|
|
73
|
+
saturation: number;
|
|
74
|
+
value: number;
|
|
75
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export type CharacterBasicBody = {
|
|
2
|
+
date: string | null;
|
|
3
|
+
character_name: string;
|
|
4
|
+
world_name: string;
|
|
5
|
+
character_gender: string;
|
|
6
|
+
character_class: string;
|
|
7
|
+
character_class_level: string;
|
|
8
|
+
character_level: number;
|
|
9
|
+
character_exp: number;
|
|
10
|
+
character_exp_rate: string;
|
|
11
|
+
character_guild_name: string | null;
|
|
12
|
+
character_image: string;
|
|
13
|
+
character_date_create: string;
|
|
14
|
+
access_flag: 'true' | 'false';
|
|
15
|
+
liberation_quest_clear_flag: 'true' | 'false';
|
|
16
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export type CharacterBeautyEquipmentBody = {
|
|
2
|
+
date: string | null;
|
|
3
|
+
character_gender: string;
|
|
4
|
+
character_class: string;
|
|
5
|
+
character_hair: CharacterBeautyEquipmentHairBody | null;
|
|
6
|
+
character_face: CharacterBeautyEquipmentFaceBody | null;
|
|
7
|
+
character_skin: CharacterBeautyEquipmentSkinBody | null;
|
|
8
|
+
additional_character_hair: CharacterBeautyEquipmentHairBody | null;
|
|
9
|
+
additional_character_face: CharacterBeautyEquipmentFaceBody | null;
|
|
10
|
+
additional_character_skin: CharacterBeautyEquipmentSkinBody | null;
|
|
11
|
+
};
|
|
12
|
+
export type CharacterBeautyEquipmentHairBody = {
|
|
13
|
+
hair_name: string;
|
|
14
|
+
base_color: string;
|
|
15
|
+
mix_color: string | null;
|
|
16
|
+
mix_rate: string;
|
|
17
|
+
};
|
|
18
|
+
export type CharacterBeautyEquipmentFaceBody = {
|
|
19
|
+
face_name: string;
|
|
20
|
+
base_color: string;
|
|
21
|
+
mix_color: string | null;
|
|
22
|
+
mix_rate: string;
|
|
23
|
+
};
|
|
24
|
+
export type CharacterBeautyEquipmentSkinBody = {
|
|
25
|
+
skin_name: string;
|
|
26
|
+
color_style: string | null;
|
|
27
|
+
hue: number | null;
|
|
28
|
+
saturation: number | null;
|
|
29
|
+
brightness: number | null;
|
|
30
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
export type CharacterCashItemEquipmentBody = {
|
|
2
|
+
date: string | null;
|
|
3
|
+
character_gender: string | null;
|
|
4
|
+
character_class: string | null;
|
|
5
|
+
character_look_mode: string | null;
|
|
6
|
+
preset_no: number | null;
|
|
7
|
+
cash_item_equipment_base: CharacterCashItemEquipmentPresetBody[];
|
|
8
|
+
cash_item_equipment_preset_1: CharacterCashItemEquipmentPresetBody[];
|
|
9
|
+
cash_item_equipment_preset_2: CharacterCashItemEquipmentPresetBody[];
|
|
10
|
+
cash_item_equipment_preset_3: CharacterCashItemEquipmentPresetBody[];
|
|
11
|
+
additional_cash_item_equipment_base: CharacterCashItemEquipmentPresetBody[];
|
|
12
|
+
additional_cash_item_equipment_preset_1: CharacterCashItemEquipmentPresetBody[];
|
|
13
|
+
additional_cash_item_equipment_preset_2: CharacterCashItemEquipmentPresetBody[];
|
|
14
|
+
additional_cash_item_equipment_preset_3: CharacterCashItemEquipmentPresetBody[];
|
|
15
|
+
};
|
|
16
|
+
export type CharacterCashItemEquipmentPresetBody = {
|
|
17
|
+
cash_item_equipment_part: string;
|
|
18
|
+
cash_item_equipment_slot: string;
|
|
19
|
+
cash_item_name: string;
|
|
20
|
+
cash_item_icon: string;
|
|
21
|
+
cash_item_description: string | null;
|
|
22
|
+
cash_item_option: CharacterCashItemEquipmentOptionBody[];
|
|
23
|
+
date_expire: string | null;
|
|
24
|
+
date_option_expire: string | null;
|
|
25
|
+
cash_item_label: string | null;
|
|
26
|
+
cash_item_coloring_prism: CharacterCashItemEquipmentColoringPrismBody | null;
|
|
27
|
+
item_gender: string | null;
|
|
28
|
+
};
|
|
29
|
+
export type CharacterCashItemEquipmentOptionBody = {
|
|
30
|
+
option_type: string;
|
|
31
|
+
option_value: string;
|
|
32
|
+
};
|
|
33
|
+
export type CharacterCashItemEquipmentColoringPrismBody = {
|
|
34
|
+
color_range: string;
|
|
35
|
+
hue: number;
|
|
36
|
+
saturation: number;
|
|
37
|
+
value: number;
|
|
38
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export type CharacterHexaMatrixBody = {
|
|
2
|
+
date: string | null;
|
|
3
|
+
character_hexa_core_equipment: CharacterHexaMatrixEquipmentBody[] | null;
|
|
4
|
+
};
|
|
5
|
+
export type CharacterHexaMatrixEquipmentBody = {
|
|
6
|
+
hexa_core_name: string;
|
|
7
|
+
hexa_core_level: number;
|
|
8
|
+
hexa_core_type: string;
|
|
9
|
+
linked_skill: CharacterHexaMatrixEquipmentLinkedSkillBody[];
|
|
10
|
+
};
|
|
11
|
+
export type CharacterHexaMatrixEquipmentLinkedSkillBody = {
|
|
12
|
+
hexa_skill_id: string;
|
|
13
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export type CharacterHexaMatrixStatBody = {
|
|
2
|
+
date: string | null;
|
|
3
|
+
character_class: string | null;
|
|
4
|
+
character_hexa_stat_core: CharacterHexaMatrixStatCoreBody[] | null;
|
|
5
|
+
character_hexa_stat_core_2: CharacterHexaMatrixStatCoreBody[] | null;
|
|
6
|
+
character_hexa_stat_core_3: CharacterHexaMatrixStatCoreBody[] | null;
|
|
7
|
+
preset_hexa_stat_core: CharacterHexaMatrixStatCoreBody[] | null;
|
|
8
|
+
preset_hexa_stat_core_2: CharacterHexaMatrixStatCoreBody[] | null;
|
|
9
|
+
preset_hexa_stat_core_3: CharacterHexaMatrixStatCoreBody[] | null;
|
|
10
|
+
};
|
|
11
|
+
export type CharacterHexaMatrixStatCoreBody = {
|
|
12
|
+
slot_id: string;
|
|
13
|
+
main_stat_name: string;
|
|
14
|
+
sub_stat_name_1: string;
|
|
15
|
+
sub_stat_name_2: string;
|
|
16
|
+
main_stat_level: number;
|
|
17
|
+
sub_stat_level_1: number;
|
|
18
|
+
sub_stat_level_2: number;
|
|
19
|
+
stat_grade: number;
|
|
20
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export type CharacterHyperStatBody = {
|
|
2
|
+
date: string | null;
|
|
3
|
+
character_class: string | null;
|
|
4
|
+
use_preset_no: string | null;
|
|
5
|
+
use_available_hyper_stat: number | null;
|
|
6
|
+
hyper_stat_preset_1: CharacterHyperStatPresetBody[];
|
|
7
|
+
hyper_stat_preset_1_remain_point: number | null;
|
|
8
|
+
hyper_stat_preset_2: CharacterHyperStatPresetBody[];
|
|
9
|
+
hyper_stat_preset_2_remain_point: number | null;
|
|
10
|
+
hyper_stat_preset_3: CharacterHyperStatPresetBody[];
|
|
11
|
+
hyper_stat_preset_3_remain_point: number | null;
|
|
12
|
+
};
|
|
13
|
+
export type CharacterHyperStatPresetBody = {
|
|
14
|
+
stat_type: string;
|
|
15
|
+
stat_point: number | null;
|
|
16
|
+
stat_level: number;
|
|
17
|
+
stat_increase: string | null;
|
|
18
|
+
};
|