maplestory-openapi 2.13.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +37 -6
- package/dist/cjs/_virtual/_commonjsHelpers.js +7 -0
- package/dist/cjs/_virtual/index.js_commonjs-exports.js +7 -0
- package/dist/cjs/_virtual/index.js_commonjs-exports2.js +7 -0
- package/dist/cjs/_virtual/index.js_commonjs-exports3.js +7 -0
- package/dist/cjs/_virtual/timezone.js_commonjs-module.js +7 -0
- package/dist/cjs/_virtual/utc.js_commonjs-module.js +7 -0
- package/dist/cjs/index.js +133 -0
- package/dist/cjs/maplestory/api/common/dto/character/character.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterAbility.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterAndroidEquipment.js +29 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterBasic.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterBeautyEquipment.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterCashItemEquipment.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterDojang.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterHexaMatrix.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterHexaMatrixStat.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterHyperStat.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterImage.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterItemEquipment.js +38 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterLinkSkill.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterList.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterPetEquipment.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterPopularity.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterPropensity.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterSetEffect.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterSkill.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterStat.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterSymbolEquipment.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterVMatrix.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/guild/guild.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/guild/guildBasic.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/union/union.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/union/unionArtifact.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/union/unionRaider.js +23 -0
- package/dist/cjs/maplestory/api/common/enum/characterImage.js +94 -0
- package/dist/cjs/maplestory/api/common/enum/potentialOptionGrade.js +11 -0
- package/dist/cjs/maplestory/api/common/lib.js +26 -0
- package/dist/cjs/maplestory/api/common/mapleStoryApi.js +121 -0
- package/dist/cjs/maplestory/api/common/mapleStoryApiError.js +50 -0
- package/dist/cjs/maplestory/api/kms/dto/character/character.js +22 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterAbility.js +108 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterAndroidEquipment.js +418 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterBasic.js +99 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterBeautyEquipment.js +172 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterCashItemEquipment.js +228 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterDojang.js +49 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterHexaMatrix.js +73 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterHexaMatrixStat.js +113 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterHyperStat.js +97 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterImage.js +81 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterItemEquipment.js +1173 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterLinkSkill.js +115 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterList.js +77 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterPetEquipment.js +332 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterPopularity.js +27 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterPropensity.js +52 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterSetEffect.js +97 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterSkill.js +77 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterStat.js +57 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterSymbolEquipment.js +119 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterVMatrix.js +88 -0
- package/dist/cjs/maplestory/api/kms/dto/guild/guild.js +22 -0
- package/dist/cjs/maplestory/api/kms/dto/guild/guildBasic.js +107 -0
- package/dist/cjs/maplestory/api/kms/dto/history/cubeHistory.js +165 -0
- package/dist/cjs/maplestory/api/kms/dto/history/potentialHistory.js +160 -0
- package/dist/cjs/maplestory/api/kms/dto/history/starforceHistory.js +159 -0
- package/dist/cjs/maplestory/api/kms/dto/inspectionInfo.js +34 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/cashshopNoticeDetail.js +55 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/cashshopNoticeList.js +69 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/eventNoticeDetail.js +44 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/eventNoticeList.js +58 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/noticeDetail.js +34 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/noticeList.js +48 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/updateNoticeDetail.js +34 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/updateNoticeList.js +48 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/achievementRanking.js +68 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/dojangRanking.js +73 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/guildRanking.js +68 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/overallRanking.js +78 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/theSeedRanking.js +73 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/unionRanking.js +68 -0
- package/dist/cjs/maplestory/api/kms/dto/union/union.js +47 -0
- package/dist/cjs/maplestory/api/kms/dto/union/unionArtifact.js +111 -0
- package/dist/cjs/maplestory/api/kms/dto/union/unionChampion.js +77 -0
- package/dist/cjs/maplestory/api/kms/dto/union/unionRaider.js +209 -0
- package/dist/cjs/maplestory/api/kms/kms.js +170 -0
- package/dist/cjs/maplestory/api/kms/mapleStoryApi.js +1321 -0
- package/dist/cjs/maplestory/api/msea/dto/character/character.js +22 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterAbility.js +108 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterAndroidEquipment.js +419 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterBasic.js +99 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterBeautyEquipment.js +172 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterCashItemEquipment.js +223 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterDojang.js +49 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterHexaMatrix.js +73 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterHexaMatrixStat.js +113 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterHyperStat.js +97 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterImage.js +81 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterItemEquipment.js +1112 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterLinkSkill.js +115 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterPetEquipment.js +332 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterPopularity.js +27 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterPropensity.js +52 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterSetEffect.js +97 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterSkill.js +77 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterStat.js +57 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterSymbolEquipment.js +119 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterVMatrix.js +88 -0
- package/dist/cjs/maplestory/api/msea/dto/guild/guild.js +22 -0
- package/dist/cjs/maplestory/api/msea/dto/guild/guildBasic.js +107 -0
- package/dist/cjs/maplestory/api/msea/dto/union/union.js +47 -0
- package/dist/cjs/maplestory/api/msea/dto/union/unionArtifact.js +111 -0
- package/dist/cjs/maplestory/api/msea/dto/union/unionRaider.js +214 -0
- package/dist/cjs/maplestory/api/msea/mapleStoryApi.js +802 -0
- package/dist/cjs/maplestory/api/msea/msea.js +109 -0
- package/dist/cjs/node_modules/base64-js/index.js +154 -0
- package/dist/cjs/node_modules/buffer/index.js +2116 -0
- package/dist/cjs/node_modules/dayjs/plugin/timezone.js +12 -0
- package/dist/cjs/node_modules/dayjs/plugin/utc.js +12 -0
- package/dist/cjs/node_modules/ieee754/index.js +92 -0
- package/dist/esm/_virtual/_commonjsHelpers.js +3 -0
- package/dist/esm/_virtual/index.js_commonjs-exports.js +3 -0
- package/dist/esm/_virtual/index.js_commonjs-exports2.js +3 -0
- package/dist/esm/_virtual/index.js_commonjs-exports3.js +3 -0
- package/dist/esm/_virtual/timezone.js_commonjs-module.js +3 -0
- package/dist/esm/_virtual/utc.js_commonjs-module.js +3 -0
- package/dist/esm/index.js +30 -0
- package/dist/esm/maplestory/api/common/dto/character/character.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterAbility.js +8 -0
- package/dist/esm/maplestory/api/common/dto/character/characterAndroidEquipment.js +18 -0
- package/dist/esm/maplestory/api/common/dto/character/characterBasic.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterBeautyEquipment.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterCashItemEquipment.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterDojang.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterHexaMatrix.js +8 -0
- package/dist/esm/maplestory/api/common/dto/character/characterHexaMatrixStat.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterHyperStat.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterImage.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterItemEquipment.js +24 -0
- package/dist/esm/maplestory/api/common/dto/character/characterLinkSkill.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterList.js +8 -0
- package/dist/esm/maplestory/api/common/dto/character/characterPetEquipment.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterPopularity.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterPropensity.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterSetEffect.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterSkill.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterStat.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterSymbolEquipment.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterVMatrix.js +6 -0
- package/dist/esm/maplestory/api/common/dto/guild/guild.js +4 -0
- package/dist/esm/maplestory/api/common/dto/guild/guildBasic.js +6 -0
- package/dist/esm/maplestory/api/common/dto/union/union.js +4 -0
- package/dist/esm/maplestory/api/common/dto/union/unionArtifact.js +8 -0
- package/dist/esm/maplestory/api/common/dto/union/unionRaider.js +14 -0
- package/dist/esm/maplestory/api/common/enum/characterImage.js +92 -0
- package/dist/esm/maplestory/api/common/enum/potentialOptionGrade.js +9 -0
- package/dist/esm/maplestory/api/common/lib.js +22 -0
- package/dist/esm/maplestory/api/common/mapleStoryApi.js +112 -0
- package/dist/esm/maplestory/api/common/mapleStoryApiError.js +46 -0
- package/dist/esm/maplestory/api/kms/dto/character/character.js +18 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterAbility.js +102 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterAndroidEquipment.js +407 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterBasic.js +95 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterBeautyEquipment.js +165 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterCashItemEquipment.js +221 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterDojang.js +45 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterHexaMatrix.js +67 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterHexaMatrixStat.js +108 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterHyperStat.js +92 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterImage.js +77 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterItemEquipment.js +1158 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterLinkSkill.js +110 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterList.js +71 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterPetEquipment.js +325 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterPopularity.js +23 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterPropensity.js +48 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterSetEffect.js +90 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterSkill.js +72 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterStat.js +52 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterSymbolEquipment.js +114 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterVMatrix.js +83 -0
- package/dist/esm/maplestory/api/kms/dto/guild/guild.js +18 -0
- package/dist/esm/maplestory/api/kms/dto/guild/guildBasic.js +102 -0
- package/dist/esm/maplestory/api/kms/dto/history/cubeHistory.js +159 -0
- package/dist/esm/maplestory/api/kms/dto/history/potentialHistory.js +154 -0
- package/dist/esm/maplestory/api/kms/dto/history/starforceHistory.js +153 -0
- package/dist/esm/maplestory/api/kms/dto/inspectionInfo.js +30 -0
- package/dist/esm/maplestory/api/kms/dto/notice/cashshopNoticeDetail.js +51 -0
- package/dist/esm/maplestory/api/kms/dto/notice/cashshopNoticeList.js +64 -0
- package/dist/esm/maplestory/api/kms/dto/notice/eventNoticeDetail.js +40 -0
- package/dist/esm/maplestory/api/kms/dto/notice/eventNoticeList.js +53 -0
- package/dist/esm/maplestory/api/kms/dto/notice/noticeDetail.js +30 -0
- package/dist/esm/maplestory/api/kms/dto/notice/noticeList.js +43 -0
- package/dist/esm/maplestory/api/kms/dto/notice/updateNoticeDetail.js +30 -0
- package/dist/esm/maplestory/api/kms/dto/notice/updateNoticeList.js +43 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/achievementRanking.js +63 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/dojangRanking.js +68 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/guildRanking.js +63 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/overallRanking.js +73 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/theSeedRanking.js +68 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/unionRanking.js +63 -0
- package/dist/esm/maplestory/api/kms/dto/union/union.js +43 -0
- package/dist/esm/maplestory/api/kms/dto/union/unionArtifact.js +105 -0
- package/dist/esm/maplestory/api/kms/dto/union/unionChampion.js +71 -0
- package/dist/esm/maplestory/api/kms/dto/union/unionRaider.js +200 -0
- package/dist/esm/maplestory/api/kms/kms.js +47 -0
- package/dist/esm/maplestory/api/kms/mapleStoryApi.js +1312 -0
- package/dist/esm/maplestory/api/msea/dto/character/character.js +18 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterAbility.js +102 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterAndroidEquipment.js +408 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterBasic.js +95 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterBeautyEquipment.js +165 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterCashItemEquipment.js +216 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterDojang.js +45 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterHexaMatrix.js +67 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterHexaMatrixStat.js +108 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterHyperStat.js +92 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterImage.js +77 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterItemEquipment.js +1098 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterLinkSkill.js +110 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterPetEquipment.js +325 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterPopularity.js +23 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterPropensity.js +48 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterSetEffect.js +90 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterSkill.js +72 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterStat.js +52 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterSymbolEquipment.js +114 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterVMatrix.js +83 -0
- package/dist/esm/maplestory/api/msea/dto/guild/guild.js +18 -0
- package/dist/esm/maplestory/api/msea/dto/guild/guildBasic.js +102 -0
- package/dist/esm/maplestory/api/msea/dto/union/union.js +43 -0
- package/dist/esm/maplestory/api/msea/dto/union/unionArtifact.js +105 -0
- package/dist/esm/maplestory/api/msea/dto/union/unionRaider.js +205 -0
- package/dist/esm/maplestory/api/msea/mapleStoryApi.js +794 -0
- package/dist/esm/maplestory/api/msea/msea.js +27 -0
- package/dist/esm/node_modules/base64-js/index.js +151 -0
- package/dist/esm/node_modules/buffer/index.js +2113 -0
- package/dist/esm/node_modules/dayjs/plugin/timezone.js +10 -0
- package/dist/esm/node_modules/dayjs/plugin/utc.js +10 -0
- package/dist/esm/node_modules/ieee754/index.js +89 -0
- package/dist/index.min.js +1 -10
- package/package.json +14 -3
- package/types/index.d.ts +30 -111
- package/types/maplestory/api/common/dto/character/character.d.ts +3 -0
- package/types/maplestory/api/common/dto/character/characterAbility.d.ts +19 -0
- package/types/maplestory/api/common/dto/character/characterAndroidEquipment.d.ts +77 -0
- package/types/maplestory/api/common/dto/character/characterBasic.d.ts +18 -0
- package/types/maplestory/api/common/dto/character/characterBeautyEquipment.d.ts +30 -0
- package/types/maplestory/api/common/dto/character/characterCashItemEquipment.d.ts +40 -0
- package/types/maplestory/api/common/dto/character/characterDojang.d.ts +8 -0
- package/types/maplestory/api/common/dto/character/characterHexaMatrix.d.ts +13 -0
- package/types/maplestory/api/common/dto/character/characterHexaMatrixStat.d.ts +20 -0
- package/types/maplestory/api/common/dto/character/characterHyperStat.d.ts +18 -0
- package/types/maplestory/api/common/dto/character/characterImage.d.ts +16 -0
- package/types/maplestory/api/common/dto/character/characterItemEquipment.d.ts +216 -0
- package/types/maplestory/api/common/dto/character/characterLinkSkill.d.ts +20 -0
- package/types/maplestory/api/common/dto/character/characterList.d.ts +14 -0
- package/types/maplestory/api/common/dto/character/characterPetEquipment.d.ts +59 -0
- package/types/maplestory/api/common/dto/character/characterPopularity.d.ts +4 -0
- package/types/maplestory/api/common/dto/character/characterPropensity.d.ts +9 -0
- package/types/maplestory/api/common/dto/character/characterSetEffect.d.ts +18 -0
- package/types/maplestory/api/common/dto/character/characterSkill.d.ts +14 -0
- package/types/maplestory/api/common/dto/character/characterStat.d.ts +10 -0
- package/types/maplestory/api/common/dto/character/characterSymbolEquipment.d.ts +22 -0
- package/types/maplestory/api/common/dto/character/characterVMatrix.d.ts +16 -0
- package/types/maplestory/api/common/dto/guild/guild.d.ts +3 -0
- package/types/maplestory/api/common/dto/guild/guildBasic.d.ts +20 -0
- package/types/maplestory/api/common/dto/union/union.d.ts +8 -0
- package/types/maplestory/api/common/dto/union/unionArtifact.d.ts +20 -0
- package/types/maplestory/api/common/dto/union/unionRaider.d.ts +38 -0
- package/types/maplestory/api/common/enum/characterImage.d.ts +87 -0
- package/types/maplestory/api/common/enum/potentialOptionGrade.d.ts +6 -0
- package/types/maplestory/api/common/lib.d.ts +7 -0
- package/types/maplestory/api/common/mapleStoryApi.d.ts +140 -0
- package/types/maplestory/api/{mapleStoryApiError.d.ts → common/mapleStoryApiError.d.ts} +3 -4
- package/types/maplestory/api/common/mapleStoryApiErrorBody.d.ts +6 -0
- package/types/maplestory/api/kms/dto/character/character.d.ts +12 -0
- package/types/maplestory/api/kms/dto/character/characterAbility.d.ts +72 -0
- package/types/maplestory/api/kms/dto/character/characterAndroidEquipment.d.ts +294 -0
- package/types/maplestory/api/{dto/character/characterBasicDto.d.ts → kms/dto/character/characterBasic.d.ts} +7 -4
- package/types/maplestory/api/kms/dto/character/characterBeautyEquipment.d.ts +117 -0
- package/types/maplestory/api/kms/dto/character/characterCashItemEquipment.d.ts +158 -0
- package/types/maplestory/api/kms/dto/character/characterDojang.d.ts +32 -0
- package/types/maplestory/api/kms/dto/character/characterHexaMatrix.d.ts +48 -0
- package/types/maplestory/api/kms/dto/character/characterHexaMatrixStat.d.ts +78 -0
- package/types/maplestory/api/kms/dto/character/characterHyperStat.d.ts +70 -0
- package/types/maplestory/api/kms/dto/character/characterImage.d.ts +74 -0
- package/types/maplestory/api/kms/dto/character/characterItemEquipment.d.ts +890 -0
- package/types/maplestory/api/kms/dto/character/characterLinkSkill.d.ts +78 -0
- package/types/maplestory/api/kms/dto/character/characterList.d.ts +52 -0
- package/types/maplestory/api/{dto/character/characterPetEquipmentDto.d.ts → kms/dto/character/characterPetEquipment.d.ts} +79 -7
- package/types/maplestory/api/kms/dto/character/characterPopularity.d.ts +16 -0
- package/types/maplestory/api/kms/dto/character/characterPropensity.d.ts +36 -0
- package/types/maplestory/api/kms/dto/character/characterSetEffect.d.ts +66 -0
- package/types/maplestory/api/kms/dto/character/characterSkill.d.ts +54 -0
- package/types/maplestory/api/kms/dto/character/characterStat.d.ts +38 -0
- package/types/maplestory/api/{dto/character/characterSymbolEquipmentInfoDto.d.ts → kms/dto/character/characterSymbolEquipment.d.ts} +22 -4
- package/types/maplestory/api/kms/dto/character/characterVMatrix.d.ts +62 -0
- package/types/maplestory/api/kms/dto/guild/guild.d.ts +12 -0
- package/types/maplestory/api/kms/dto/guild/guildBasic.d.ts +78 -0
- package/types/maplestory/api/{dto/history/cubeHistoryDto.d.ts → kms/dto/history/cubeHistory.d.ts} +37 -6
- package/types/maplestory/api/{dto/history/potentialHistoryDto.d.ts → kms/dto/history/potentialHistory.d.ts} +37 -6
- package/types/maplestory/api/{dto/history/starforceHistoryDto.d.ts → kms/dto/history/starforceHistory.d.ts} +47 -5
- package/types/maplestory/api/{dto/inspectionInfoDto.d.ts → kms/dto/inspectionInfo.d.ts} +1 -2
- package/types/maplestory/api/{dto/notice/cashshopNoticeDetailDto.d.ts → kms/dto/notice/cashshopNoticeDetail.d.ts} +3 -4
- package/types/maplestory/api/{dto/notice/cashshopNoticeListItemDto.d.ts → kms/dto/notice/cashshopNoticeList.d.ts} +13 -4
- package/types/maplestory/api/{dto/notice/eventNoticeDetailDto.d.ts → kms/dto/notice/eventNoticeDetail.d.ts} +3 -4
- package/types/maplestory/api/kms/dto/notice/eventNoticeList.d.ts +41 -0
- package/types/maplestory/api/{dto/notice/noticeDetailDto.d.ts → kms/dto/notice/noticeDetail.d.ts} +3 -4
- package/types/maplestory/api/kms/dto/notice/noticeList.d.ts +33 -0
- package/types/maplestory/api/{dto/notice/updateNoticeDetailDto.d.ts → kms/dto/notice/updateNoticeDetail.d.ts} +3 -4
- package/types/maplestory/api/kms/dto/notice/updateNoticeList.d.ts +33 -0
- package/types/maplestory/api/{dto/ranking/achievementRankingDto.d.ts → kms/dto/ranking/achievementRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/dojangRankingDto.d.ts → kms/dto/ranking/dojangRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/guildRankingDto.d.ts → kms/dto/ranking/guildRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/overallRankingDto.d.ts → kms/dto/ranking/overallRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/theSeedRankingDto.d.ts → kms/dto/ranking/theSeedRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/unionRankingDto.d.ts → kms/dto/ranking/unionRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/union/unionDto.d.ts → kms/dto/union/union.d.ts} +7 -7
- package/types/maplestory/api/kms/dto/union/unionArtifact.d.ts +76 -0
- package/types/maplestory/api/kms/dto/union/unionChampion.d.ts +55 -0
- package/types/maplestory/api/kms/dto/union/unionRaider.d.ts +142 -0
- package/types/maplestory/api/kms/index.d.ts +47 -0
- package/types/maplestory/api/{mapleStoryApi.d.ts → kms/mapleStoryApi.d.ts} +94 -89
- package/types/maplestory/api/kms/response/character/characterAbilityBody.d.ts +19 -0
- package/types/maplestory/api/{response/character/characterAndroidEquipmentDtoBody.d.ts → kms/response/character/characterAndroidEquipmentBody.d.ts} +20 -21
- package/types/maplestory/api/{response/character/characterBasicDtoBody.d.ts → kms/response/character/characterBasicBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/character/characterBeautyEquipmentBody.d.ts +30 -0
- package/types/maplestory/api/kms/response/character/characterBody.d.ts +3 -0
- package/types/maplestory/api/{response/character/characterCashItemEquipmentDtoBody.d.ts → kms/response/character/characterCashItemEquipmentBody.d.ts} +17 -18
- package/types/maplestory/api/kms/response/character/characterDojangBody.d.ts +8 -0
- package/types/maplestory/api/kms/response/character/characterHexaMatrixBody.d.ts +13 -0
- package/types/maplestory/api/kms/response/character/characterHexaMatrixStatBody.d.ts +20 -0
- package/types/maplestory/api/kms/response/character/characterHyperStatBody.d.ts +18 -0
- package/types/maplestory/api/{response/character/characterItemEquipmentDtoBody.d.ts → kms/response/character/characterItemEquipmentBody.d.ts} +35 -36
- package/types/maplestory/api/kms/response/character/characterLinkSkillBody.d.ts +20 -0
- package/types/maplestory/api/kms/response/character/characterListBody.d.ts +14 -0
- package/types/maplestory/api/{response/character/characterPetEquipmentDtoBody.d.ts → kms/response/character/characterPetEquipmentBody.d.ts} +11 -12
- package/types/maplestory/api/kms/response/character/characterPopularityBody.d.ts +4 -0
- package/types/maplestory/api/kms/response/character/characterPropensityBody.d.ts +9 -0
- package/types/maplestory/api/kms/response/character/characterSetEffectBody.d.ts +18 -0
- package/types/maplestory/api/kms/response/character/characterSkillBody.d.ts +14 -0
- package/types/maplestory/api/kms/response/character/characterStatBody.d.ts +10 -0
- package/types/maplestory/api/{response/character/characterSymbolEquipmentDtoBody.d.ts → kms/response/character/characterSymbolEquipmentBody.d.ts} +4 -5
- package/types/maplestory/api/{response/character/characterVMatrixDtoBody.d.ts → kms/response/character/characterVMatrixBody.d.ts} +4 -5
- package/types/maplestory/api/{response/guild/guildBasicDtoBody.d.ts → kms/response/guild/guildBasicBody.d.ts} +4 -5
- package/types/maplestory/api/kms/response/guild/guildBody.d.ts +3 -0
- package/types/maplestory/api/kms/response/history/cubeHistoryBody.d.ts +29 -0
- package/types/maplestory/api/kms/response/history/potentialHistoryBody.d.ts +28 -0
- package/types/maplestory/api/{response/history/starforceHistoryDtoBody.d.ts → kms/response/history/starforceHistoryBody.d.ts} +14 -4
- package/types/maplestory/api/{response → kms/response}/inspectionInfoSoapBody.d.ts +1 -2
- package/types/maplestory/api/{response/notice/cashshopNoticeDetailDtoBody.d.ts → kms/response/notice/cashshopNoticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/cashshopNoticeListBody.d.ts +12 -0
- package/types/maplestory/api/{response/notice/eventNoticeDetailDtoBody.d.ts → kms/response/notice/eventNoticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/eventNoticeListBody.d.ts +11 -0
- package/types/maplestory/api/{response/notice/noticeDetailDtoBody.d.ts → kms/response/notice/noticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/noticeListBody.d.ts +9 -0
- package/types/maplestory/api/{response/notice/updateNoticeDetailDtoBody.d.ts → kms/response/notice/updateNoticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/updateNoticeListBody.d.ts +9 -0
- package/types/maplestory/api/kms/response/ranking/achievementRankingBody.d.ts +12 -0
- package/types/maplestory/api/kms/response/ranking/dojangRankingBody.d.ts +13 -0
- package/types/maplestory/api/kms/response/ranking/guildRankingBody.d.ts +12 -0
- package/types/maplestory/api/{response/ranking/overallRankingResponseDtoBody.d.ts → kms/response/ranking/overallRankingBody.d.ts} +3 -4
- package/types/maplestory/api/kms/response/ranking/rankingResponseBody.d.ts +6 -0
- package/types/maplestory/api/kms/response/ranking/theSeedRankingBody.d.ts +13 -0
- package/types/maplestory/api/kms/response/ranking/unionRankingBody.d.ts +12 -0
- package/types/maplestory/api/kms/response/union/unionArtifactBody.d.ts +19 -0
- package/types/maplestory/api/{response/union/unionDtoBody.d.ts → kms/response/union/unionBody.d.ts} +3 -4
- package/types/maplestory/api/kms/response/union/unionChampionBody.d.ts +15 -0
- package/types/maplestory/api/kms/response/union/unionRaiderBody.d.ts +38 -0
- package/types/maplestory/api/msea/dto/character/character.d.ts +12 -0
- package/types/maplestory/api/msea/dto/character/characterAbility.d.ts +72 -0
- package/types/maplestory/api/msea/dto/character/characterAndroidEquipment.d.ts +295 -0
- package/types/maplestory/api/msea/dto/character/characterBasic.d.ts +72 -0
- package/types/maplestory/api/msea/dto/character/characterBeautyEquipment.d.ts +117 -0
- package/types/maplestory/api/msea/dto/character/characterCashItemEquipment.d.ts +154 -0
- package/types/maplestory/api/msea/dto/character/characterDojang.d.ts +32 -0
- package/types/maplestory/api/msea/dto/character/characterHexaMatrix.d.ts +48 -0
- package/types/maplestory/api/msea/dto/character/characterHexaMatrixStat.d.ts +78 -0
- package/types/maplestory/api/msea/dto/character/characterHyperStat.d.ts +70 -0
- package/types/maplestory/api/msea/dto/character/characterImage.d.ts +74 -0
- package/types/maplestory/api/msea/dto/character/characterItemEquipment.d.ts +844 -0
- package/types/maplestory/api/msea/dto/character/characterLinkSkill.d.ts +78 -0
- package/types/maplestory/api/msea/dto/character/characterPetEquipment.d.ts +230 -0
- package/types/maplestory/api/msea/dto/character/characterPopularity.d.ts +16 -0
- package/types/maplestory/api/msea/dto/character/characterPropensity.d.ts +36 -0
- package/types/maplestory/api/msea/dto/character/characterSetEffect.d.ts +66 -0
- package/types/maplestory/api/msea/dto/character/characterSkill.d.ts +54 -0
- package/types/maplestory/api/msea/dto/character/characterStat.d.ts +38 -0
- package/types/maplestory/api/msea/dto/character/characterSymbolEquipment.d.ts +86 -0
- package/types/maplestory/api/msea/dto/character/characterVMatrix.d.ts +62 -0
- package/types/maplestory/api/msea/dto/guild/guild.d.ts +12 -0
- package/types/maplestory/api/msea/dto/guild/guildBasic.d.ts +78 -0
- package/types/maplestory/api/msea/dto/union/union.d.ts +32 -0
- package/types/maplestory/api/msea/dto/union/unionArtifact.d.ts +76 -0
- package/types/maplestory/api/msea/dto/union/unionRaider.d.ts +147 -0
- package/types/maplestory/api/msea/index.d.ts +27 -0
- package/types/maplestory/api/msea/mapleStoryApi.d.ts +364 -0
- package/types/maplestory/api/msea/response/character/characterAbilityBody.d.ts +19 -0
- package/types/maplestory/api/msea/response/character/characterAndroidEquipmentBody.d.ts +75 -0
- package/types/maplestory/api/msea/response/character/characterBasicBody.d.ts +16 -0
- package/types/maplestory/api/msea/response/character/characterBeautyEquipmentBody.d.ts +30 -0
- package/types/maplestory/api/msea/response/character/characterBody.d.ts +3 -0
- package/types/maplestory/api/msea/response/character/characterCashItemEquipmentBody.d.ts +38 -0
- package/types/maplestory/api/msea/response/character/characterDojangBody.d.ts +8 -0
- package/types/maplestory/api/msea/response/character/characterHexaMatrixBody.d.ts +13 -0
- package/types/maplestory/api/msea/response/character/characterHexaMatrixStatBody.d.ts +20 -0
- package/types/maplestory/api/msea/response/character/characterHyperStatBody.d.ts +18 -0
- package/types/maplestory/api/msea/response/character/characterItemEquipmentBody.d.ts +190 -0
- package/types/maplestory/api/msea/response/character/characterLinkSkillBody.d.ts +20 -0
- package/types/maplestory/api/msea/response/character/characterPetEquipmentBody.d.ts +56 -0
- package/types/maplestory/api/msea/response/character/characterPopularityBody.d.ts +4 -0
- package/types/maplestory/api/msea/response/character/characterPropensityBody.d.ts +9 -0
- package/types/maplestory/api/msea/response/character/characterSetEffectBody.d.ts +18 -0
- package/types/maplestory/api/msea/response/character/characterSkillBody.d.ts +14 -0
- package/types/maplestory/api/msea/response/character/characterStatBody.d.ts +10 -0
- package/types/maplestory/api/msea/response/character/characterSymbolEquipmentBody.d.ts +22 -0
- package/types/maplestory/api/msea/response/character/characterVMatrixBody.d.ts +16 -0
- package/types/maplestory/api/msea/response/guild/guildBasicBody.d.ts +20 -0
- package/types/maplestory/api/msea/response/guild/guildBody.d.ts +3 -0
- package/types/maplestory/api/msea/response/union/unionArtifactBody.d.ts +19 -0
- package/types/maplestory/api/msea/response/union/unionBody.d.ts +8 -0
- package/types/maplestory/api/msea/response/union/unionRaiderBody.d.ts +38 -0
- package/dist/index.js +0 -9120
- package/dist/index.mjs +0 -9002
- package/types/maplestory/api/dto/character/characterAbilityDto.d.ts +0 -42
- package/types/maplestory/api/dto/character/characterAbilityInfoDto.d.ts +0 -20
- package/types/maplestory/api/dto/character/characterAbilityPresetDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterAndroidCashItemEquipmentColoringPrismDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterAndroidCashItemEquipmentDto.d.ts +0 -58
- package/types/maplestory/api/dto/character/characterAndroidCashItemEquipmentOptionDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterAndroidEquipmentDto.d.ts +0 -85
- package/types/maplestory/api/dto/character/characterAndroidEquipmentFaceDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterAndroidEquipmentHairDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterAndroidEquipmentPresetDto.d.ts +0 -59
- package/types/maplestory/api/dto/character/characterAndroidEquipmentSkinDto.d.ts +0 -28
- package/types/maplestory/api/dto/character/characterBeautyEquipmentDto.d.ts +0 -50
- package/types/maplestory/api/dto/character/characterBeautyEquipmentFaceDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterBeautyEquipmentHairDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterBeautyEquipmentSkinDto.d.ts +0 -28
- package/types/maplestory/api/dto/character/characterCashItemEquipmentColoringPrismDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterCashItemEquipmentDto.d.ts +0 -61
- package/types/maplestory/api/dto/character/characterCashItemEquipmentOptionDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterCashItemEquipmentPresetDto.d.ts +0 -66
- package/types/maplestory/api/dto/character/characterDojangDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterDto.d.ts +0 -12
- package/types/maplestory/api/dto/character/characterHexaMatrixDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterHexaMatrixEquipmentDto.d.ts +0 -25
- package/types/maplestory/api/dto/character/characterHexaMatrixEquipmentLinkedSkillDto.d.ts +0 -12
- package/types/maplestory/api/dto/character/characterHexaMatrixStatCoreDto.d.ts +0 -40
- package/types/maplestory/api/dto/character/characterHexaMatrixStatDto.d.ts +0 -41
- package/types/maplestory/api/dto/character/characterHyperStatDto.d.ts +0 -49
- package/types/maplestory/api/dto/character/characterHyperStatPresetDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterImageDto.d.ts +0 -160
- package/types/maplestory/api/dto/character/characterItemEquipmentAddOptionDto.d.ts +0 -68
- package/types/maplestory/api/dto/character/characterItemEquipmentBaseOptionDto.d.ts +0 -76
- package/types/maplestory/api/dto/character/characterItemEquipmentDragonInfoDto.d.ts +0 -130
- package/types/maplestory/api/dto/character/characterItemEquipmentDto.d.ts +0 -61
- package/types/maplestory/api/dto/character/characterItemEquipmentEtcOptionDto.d.ts +0 -52
- package/types/maplestory/api/dto/character/characterItemEquipmentExceptionalOptionDto.d.ts +0 -44
- package/types/maplestory/api/dto/character/characterItemEquipmentInfoDto.d.ts +0 -162
- package/types/maplestory/api/dto/character/characterItemEquipmentMechanicInfoDto.d.ts +0 -130
- package/types/maplestory/api/dto/character/characterItemEquipmentMedalShapeDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterItemEquipmentStarforceOptionDto.d.ts +0 -52
- package/types/maplestory/api/dto/character/characterItemEquipmentTitleDto.d.ts +0 -48
- package/types/maplestory/api/dto/character/characterItemEquipmentTotalOptionDto.d.ts +0 -80
- package/types/maplestory/api/dto/character/characterLinkSkillDto.d.ts +0 -49
- package/types/maplestory/api/dto/character/characterLinkSkillInfoDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterListAccountCharacterDto.d.ts +0 -28
- package/types/maplestory/api/dto/character/characterListAccountDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterListDto.d.ts +0 -13
- package/types/maplestory/api/dto/character/characterPetEquipmentAutoSkillDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterPetEquipmentItemDto.d.ts +0 -41
- package/types/maplestory/api/dto/character/characterPetEquipmentItemOptionDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterPopularityDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterPropensityDto.d.ts +0 -33
- package/types/maplestory/api/dto/character/characterSetEffectDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterSetEffectInfoDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterSetEffectOptionFullDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterSetEffectSetDto.d.ts +0 -26
- package/types/maplestory/api/dto/character/characterSkillDto.d.ts +0 -25
- package/types/maplestory/api/dto/character/characterSkillInfoDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterStatDto.d.ts +0 -27
- package/types/maplestory/api/dto/character/characterSymbolEquipmentDto.d.ts +0 -21
- package/types/maplestory/api/dto/character/characterVMatrixCoreEquipmentDto.d.ts +0 -40
- package/types/maplestory/api/dto/character/characterVMatrixDto.d.ts +0 -25
- package/types/maplestory/api/dto/guild/guildBasicDto.d.ts +0 -53
- package/types/maplestory/api/dto/guild/guildDto.d.ts +0 -12
- package/types/maplestory/api/dto/guild/guildSkillDto.d.ts +0 -28
- package/types/maplestory/api/dto/history/cubeHistoryResponseDto.d.ts +0 -21
- package/types/maplestory/api/dto/history/cubeResultOptionDto.d.ts +0 -18
- package/types/maplestory/api/dto/history/potentialHistoryResponseDto.d.ts +0 -21
- package/types/maplestory/api/dto/history/potentialResultOptionDto.d.ts +0 -18
- package/types/maplestory/api/dto/history/starforceEventDto.d.ts +0 -28
- package/types/maplestory/api/dto/history/starforceHistoryResponseDto.d.ts +0 -21
- package/types/maplestory/api/dto/notice/cashshopNoticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/eventNoticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/eventNoticeListItemDto.d.ts +0 -32
- package/types/maplestory/api/dto/notice/noticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/noticeListItemDto.d.ts +0 -24
- package/types/maplestory/api/dto/notice/updateNoticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/updateNoticeListItemDto.d.ts +0 -24
- package/types/maplestory/api/dto/potentialOptionGrade.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/achievementRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/dojangRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/guildRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/overallRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/theSeedRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/unionRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/union/unionArtifactCrystalDto.d.ts +0 -40
- package/types/maplestory/api/dto/union/unionArtifactDto.d.ts +0 -26
- package/types/maplestory/api/dto/union/unionArtifactEffectDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionChampionBadgeInfoDto.d.ts +0 -12
- package/types/maplestory/api/dto/union/unionChampionDto.d.ts +0 -22
- package/types/maplestory/api/dto/union/unionChampionInfoDto.d.ts +0 -29
- package/types/maplestory/api/dto/union/unionRaiderBlockDto.d.ts +0 -30
- package/types/maplestory/api/dto/union/unionRaiderBlockPositionDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionRaiderControlPointDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionRaiderDto.d.ts +0 -52
- package/types/maplestory/api/dto/union/unionRaiderInnerStatDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionRaiderPresetDto.d.ts +0 -26
- package/types/maplestory/api/response/character/characterAbilityDtoBody.d.ts +0 -20
- package/types/maplestory/api/response/character/characterBeautyEquipmentDtoBody.d.ts +0 -31
- package/types/maplestory/api/response/character/characterDojangDtoBody.d.ts +0 -9
- package/types/maplestory/api/response/character/characterDtoBody.d.ts +0 -4
- package/types/maplestory/api/response/character/characterHexaMatrixDtoBody.d.ts +0 -14
- package/types/maplestory/api/response/character/characterHexaMatrixStatDtoBody.d.ts +0 -21
- package/types/maplestory/api/response/character/characterHyperStatDtoBody.d.ts +0 -19
- package/types/maplestory/api/response/character/characterLinkSkillDtoBody.d.ts +0 -21
- package/types/maplestory/api/response/character/characterListDtoBody.d.ts +0 -15
- package/types/maplestory/api/response/character/characterPopularityDtoBody.d.ts +0 -5
- package/types/maplestory/api/response/character/characterPropensityDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/character/characterSetEffectDtoBody.d.ts +0 -19
- package/types/maplestory/api/response/character/characterSkillDtoBody.d.ts +0 -15
- package/types/maplestory/api/response/character/characterStatDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/guild/guildDtoBody.d.ts +0 -4
- package/types/maplestory/api/response/history/cubeHistoryDtoBody.d.ts +0 -22
- package/types/maplestory/api/response/history/cubeHistoryResponseDtoBody.d.ts +0 -7
- package/types/maplestory/api/response/history/cubeResultOptionDtoBody.d.ts +0 -5
- package/types/maplestory/api/response/history/potentialHistoryResponseDtoBody.d.ts +0 -29
- package/types/maplestory/api/response/history/starforceEventDtoBody.d.ts +0 -8
- package/types/maplestory/api/response/history/starforceHistoryResponseDtoBody.d.ts +0 -7
- package/types/maplestory/api/response/notice/cashshopNoticeListDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/notice/eventNoticeListDtoBody.d.ts +0 -12
- package/types/maplestory/api/response/notice/noticeListDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/notice/updateNoticeListDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/ranking/achievementRankingResponseDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/ranking/dojangRankingResponseDtoBody.d.ts +0 -14
- package/types/maplestory/api/response/ranking/guildRankingResponseDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/ranking/rankingResponseDtoBody.d.ts +0 -7
- package/types/maplestory/api/response/ranking/theSeedRankingResponseDtoBody.d.ts +0 -14
- package/types/maplestory/api/response/ranking/unionRankingResponseDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/union/unionArtifactDtoBody.d.ts +0 -20
- package/types/maplestory/api/response/union/unionChampionDtoBody.d.ts +0 -16
- package/types/maplestory/api/response/union/unionRaiderDtoBody.d.ts +0 -39
|
@@ -0,0 +1,794 @@
|
|
|
1
|
+
import axios from 'axios';
|
|
2
|
+
import '../../../node_modules/buffer/index.js';
|
|
3
|
+
import { CharacterDto } from './dto/character/character.js';
|
|
4
|
+
import { CharacterAbilityDto } from './dto/character/characterAbility.js';
|
|
5
|
+
import { CharacterAndroidEquipmentDto } from './dto/character/characterAndroidEquipment.js';
|
|
6
|
+
import { CharacterBasicDto } from './dto/character/characterBasic.js';
|
|
7
|
+
import { CharacterBeautyEquipmentDto } from './dto/character/characterBeautyEquipment.js';
|
|
8
|
+
import { CharacterCashItemEquipmentDto } from './dto/character/characterCashItemEquipment.js';
|
|
9
|
+
import { CharacterDojangDto } from './dto/character/characterDojang.js';
|
|
10
|
+
import { CharacterHexaMatrixDto } from './dto/character/characterHexaMatrix.js';
|
|
11
|
+
import { CharacterHexaMatrixStatDto } from './dto/character/characterHexaMatrixStat.js';
|
|
12
|
+
import { CharacterHyperStatDto } from './dto/character/characterHyperStat.js';
|
|
13
|
+
import { CharacterImageDto } from './dto/character/characterImage.js';
|
|
14
|
+
import { CharacterItemEquipmentDto } from './dto/character/characterItemEquipment.js';
|
|
15
|
+
import { CharacterLinkSkillDto } from './dto/character/characterLinkSkill.js';
|
|
16
|
+
import { CharacterPetEquipmentDto } from './dto/character/characterPetEquipment.js';
|
|
17
|
+
import { CharacterPopularityDto } from './dto/character/characterPopularity.js';
|
|
18
|
+
import { CharacterPropensityDto } from './dto/character/characterPropensity.js';
|
|
19
|
+
import { CharacterSetEffectDto } from './dto/character/characterSetEffect.js';
|
|
20
|
+
import { CharacterSkillDto } from './dto/character/characterSkill.js';
|
|
21
|
+
import { CharacterStatDto } from './dto/character/characterStat.js';
|
|
22
|
+
import { CharacterSymbolEquipmentDto } from './dto/character/characterSymbolEquipment.js';
|
|
23
|
+
import { CharacterVMatrixDto } from './dto/character/characterVMatrix.js';
|
|
24
|
+
import { GuildDto } from './dto/guild/guild.js';
|
|
25
|
+
import { GuildBasicDto } from './dto/guild/guildBasic.js';
|
|
26
|
+
import { UnionDto } from './dto/union/union.js';
|
|
27
|
+
import { UnionArtifactDto } from './dto/union/unionArtifact.js';
|
|
28
|
+
import { UnionRaiderDto } from './dto/union/unionRaider.js';
|
|
29
|
+
import { CharacterImageAction, CharacterImageEmotion, CharacterImageWeaponMotion } from '../common/enum/characterImage.js';
|
|
30
|
+
import { MapleStoryApi as MapleStoryApi$1 } from '../common/mapleStoryApi.js';
|
|
31
|
+
import { __exports as buffer } from '../../../_virtual/index.js_commonjs-exports.js';
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* MapleStory OpenAPI client for MSEA.<br>
|
|
35
|
+
* This is an implementation of <a href="https://openapi.nexon.com/game/maplestorysea">MapleStory API</a>
|
|
36
|
+
*/
|
|
37
|
+
class MapleStoryApi extends MapleStoryApi$1 {
|
|
38
|
+
subUrl = 'maplestorysea';
|
|
39
|
+
timezoneOffset = 480;
|
|
40
|
+
constructor(apiKey) {
|
|
41
|
+
super(apiKey);
|
|
42
|
+
}
|
|
43
|
+
//#region Character Information Retrieval
|
|
44
|
+
/**
|
|
45
|
+
* Retrieves the character identifier (ocid).
|
|
46
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
47
|
+
* - Data is available starting from April 20, 2025.
|
|
48
|
+
* - 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.)
|
|
49
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
50
|
+
* - This API provides data for MapleStory SEA.
|
|
51
|
+
* @param characterName Character name
|
|
52
|
+
*/
|
|
53
|
+
async getCharacter(characterName) {
|
|
54
|
+
const path = `${this.subUrl}/v1/id`;
|
|
55
|
+
const { data } = await this.client.get(path, {
|
|
56
|
+
params: {
|
|
57
|
+
character_name: characterName,
|
|
58
|
+
},
|
|
59
|
+
});
|
|
60
|
+
return new CharacterDto(data);
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* Retrieves basic character information.
|
|
64
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
65
|
+
* - Data is available starting from April 20, 2025.
|
|
66
|
+
* - 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.)
|
|
67
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
68
|
+
* - This API provides data for MapleStory SEA.
|
|
69
|
+
* @param ocid Character identifier
|
|
70
|
+
* @param dateOptions Reference date for query (SGT)
|
|
71
|
+
*/
|
|
72
|
+
async getCharacterBasic(ocid, dateOptions) {
|
|
73
|
+
const path = `${this.subUrl}/v1/character/basic`;
|
|
74
|
+
const date = dateOptions
|
|
75
|
+
? this.toDateString(dateOptions, {
|
|
76
|
+
year: 2025,
|
|
77
|
+
month: 4,
|
|
78
|
+
day: 20,
|
|
79
|
+
})
|
|
80
|
+
: undefined;
|
|
81
|
+
const query = {
|
|
82
|
+
ocid: ocid,
|
|
83
|
+
date: date,
|
|
84
|
+
};
|
|
85
|
+
const { data } = await this.client.get(path, {
|
|
86
|
+
params: query,
|
|
87
|
+
});
|
|
88
|
+
return new CharacterBasicDto(data);
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* Retrieves character image information.
|
|
92
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
93
|
+
* - Data is available starting from April 20, 2025.
|
|
94
|
+
* - 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.)
|
|
95
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
96
|
+
* - This API provides data for MapleStory SEA.
|
|
97
|
+
* @param ocid Character identifier
|
|
98
|
+
* @param imageOptions Image options
|
|
99
|
+
* @param dateOptions Reference date for query (SGT)
|
|
100
|
+
*/
|
|
101
|
+
async getCharacterImage(ocid, imageOptions, dateOptions) {
|
|
102
|
+
const { date, characterImage: path } = await this.getCharacterBasic(ocid, dateOptions);
|
|
103
|
+
const action = imageOptions?.action ?? CharacterImageAction.Stand1;
|
|
104
|
+
const emotion = imageOptions?.emotion ?? CharacterImageEmotion.Default;
|
|
105
|
+
const wmotion = imageOptions?.wmotion ?? CharacterImageWeaponMotion.Default;
|
|
106
|
+
const actionFrame = imageOptions?.actionFrame ?? 0;
|
|
107
|
+
const emotionFrame = imageOptions?.emotionFrame ?? 0;
|
|
108
|
+
const width = 96;
|
|
109
|
+
const height = 96;
|
|
110
|
+
const x = imageOptions?.x ?? null;
|
|
111
|
+
const y = imageOptions?.y ?? null;
|
|
112
|
+
const query = {
|
|
113
|
+
action: `${action}.${actionFrame}`,
|
|
114
|
+
emotion: `${emotion}.${emotionFrame}`,
|
|
115
|
+
wmotion,
|
|
116
|
+
width,
|
|
117
|
+
height,
|
|
118
|
+
x,
|
|
119
|
+
y,
|
|
120
|
+
};
|
|
121
|
+
const urlImageToBase64 = async (path, query) => {
|
|
122
|
+
const { data, headers } = await axios.get(path, {
|
|
123
|
+
params: query,
|
|
124
|
+
responseType: 'arraybuffer',
|
|
125
|
+
});
|
|
126
|
+
const base64 = buffer.Buffer.from(data, 'binary').toString('base64');
|
|
127
|
+
const mimeType = headers['content-type'];
|
|
128
|
+
return `data:${mimeType};base64,${base64}`;
|
|
129
|
+
};
|
|
130
|
+
const [originImage, image] = await Promise.all([
|
|
131
|
+
urlImageToBase64(path),
|
|
132
|
+
urlImageToBase64(path, query),
|
|
133
|
+
]);
|
|
134
|
+
return new CharacterImageDto({
|
|
135
|
+
date,
|
|
136
|
+
originUrl: path,
|
|
137
|
+
originImage,
|
|
138
|
+
image,
|
|
139
|
+
action,
|
|
140
|
+
emotion,
|
|
141
|
+
wmotion,
|
|
142
|
+
actionFrame,
|
|
143
|
+
emotionFrame,
|
|
144
|
+
width,
|
|
145
|
+
height,
|
|
146
|
+
x,
|
|
147
|
+
y,
|
|
148
|
+
});
|
|
149
|
+
}
|
|
150
|
+
/**
|
|
151
|
+
* Retrieves popularity information of a character.
|
|
152
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
153
|
+
* - Data is available starting from April 20, 2025.
|
|
154
|
+
* - 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.)
|
|
155
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
156
|
+
* - This API provides data for MapleStory SEA.
|
|
157
|
+
* @param ocid Character identifier
|
|
158
|
+
* @param dateOptions Reference date for query (SGT)
|
|
159
|
+
*/
|
|
160
|
+
async getCharacterPopularity(ocid, dateOptions) {
|
|
161
|
+
const path = `${this.subUrl}/v1/character/popularity`;
|
|
162
|
+
const date = dateOptions
|
|
163
|
+
? this.toDateString(dateOptions, {
|
|
164
|
+
year: 2025,
|
|
165
|
+
month: 4,
|
|
166
|
+
day: 20,
|
|
167
|
+
})
|
|
168
|
+
: undefined;
|
|
169
|
+
const query = {
|
|
170
|
+
ocid: ocid,
|
|
171
|
+
date: date,
|
|
172
|
+
};
|
|
173
|
+
const { data } = await this.client.get(path, {
|
|
174
|
+
params: query,
|
|
175
|
+
});
|
|
176
|
+
return new CharacterPopularityDto(data);
|
|
177
|
+
}
|
|
178
|
+
/**
|
|
179
|
+
* Retrieves comprehensive character stats information.
|
|
180
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
181
|
+
* - Data is available starting from April 20, 2025.
|
|
182
|
+
* - 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.)
|
|
183
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
184
|
+
* - This API provides data for MapleStory SEA.
|
|
185
|
+
* @param ocid Character identifier
|
|
186
|
+
* @param dateOptions Reference date for query (SGT)
|
|
187
|
+
*/
|
|
188
|
+
async getCharacterStat(ocid, dateOptions) {
|
|
189
|
+
const path = `${this.subUrl}/v1/character/stat`;
|
|
190
|
+
const date = dateOptions
|
|
191
|
+
? this.toDateString(dateOptions, {
|
|
192
|
+
year: 2025,
|
|
193
|
+
month: 4,
|
|
194
|
+
day: 20,
|
|
195
|
+
})
|
|
196
|
+
: undefined;
|
|
197
|
+
const query = {
|
|
198
|
+
ocid: ocid,
|
|
199
|
+
date: date,
|
|
200
|
+
};
|
|
201
|
+
const { data } = await this.client.get(path, {
|
|
202
|
+
params: query,
|
|
203
|
+
});
|
|
204
|
+
return new CharacterStatDto(data);
|
|
205
|
+
}
|
|
206
|
+
/**
|
|
207
|
+
* Retrieves Hyper Stat information.
|
|
208
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
209
|
+
* - Data is available starting from April 20, 2025.
|
|
210
|
+
* - 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.)
|
|
211
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
212
|
+
* - This API provides data for MapleStory SEA.
|
|
213
|
+
* @param ocid Character identifier
|
|
214
|
+
* @param dateOptions Reference date for query (SGT)
|
|
215
|
+
*/
|
|
216
|
+
async getCharacterHyperStat(ocid, dateOptions) {
|
|
217
|
+
const path = `${this.subUrl}/v1/character/hyper-stat`;
|
|
218
|
+
const date = dateOptions
|
|
219
|
+
? this.toDateString(dateOptions, {
|
|
220
|
+
year: 2025,
|
|
221
|
+
month: 4,
|
|
222
|
+
day: 20,
|
|
223
|
+
})
|
|
224
|
+
: undefined;
|
|
225
|
+
const query = {
|
|
226
|
+
ocid: ocid,
|
|
227
|
+
date: date,
|
|
228
|
+
};
|
|
229
|
+
const { data } = await this.client.get(path, {
|
|
230
|
+
params: query,
|
|
231
|
+
});
|
|
232
|
+
return new CharacterHyperStatDto(data);
|
|
233
|
+
}
|
|
234
|
+
/**
|
|
235
|
+
* Retrieves traits information.
|
|
236
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
237
|
+
* - Data is available starting from April 20, 2025.
|
|
238
|
+
* - 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.)
|
|
239
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
240
|
+
* - This API provides data for MapleStory SEA.
|
|
241
|
+
* @param ocid Character identifier
|
|
242
|
+
* @param dateOptions Reference date for query (SGT)
|
|
243
|
+
*/
|
|
244
|
+
async getCharacterPropensity(ocid, dateOptions) {
|
|
245
|
+
const path = `${this.subUrl}/v1/character/propensity`;
|
|
246
|
+
const date = dateOptions
|
|
247
|
+
? this.toDateString(dateOptions, {
|
|
248
|
+
year: 2025,
|
|
249
|
+
month: 4,
|
|
250
|
+
day: 20,
|
|
251
|
+
})
|
|
252
|
+
: undefined;
|
|
253
|
+
const query = {
|
|
254
|
+
ocid: ocid,
|
|
255
|
+
date: date,
|
|
256
|
+
};
|
|
257
|
+
const { data } = await this.client.get(path, {
|
|
258
|
+
params: query,
|
|
259
|
+
});
|
|
260
|
+
return new CharacterPropensityDto(data);
|
|
261
|
+
}
|
|
262
|
+
/**
|
|
263
|
+
* Retrieves Ability information.
|
|
264
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
265
|
+
* - Data is available starting from April 20, 2025.
|
|
266
|
+
* - 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.)
|
|
267
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
268
|
+
* - This API provides data for MapleStory SEA.
|
|
269
|
+
* @param ocid Character identifier
|
|
270
|
+
* @param dateOptions Reference date for query (SGT)
|
|
271
|
+
*/
|
|
272
|
+
async getCharacterAbility(ocid, dateOptions) {
|
|
273
|
+
const path = `${this.subUrl}/v1/character/ability`;
|
|
274
|
+
const date = dateOptions
|
|
275
|
+
? this.toDateString(dateOptions, {
|
|
276
|
+
year: 2025,
|
|
277
|
+
month: 4,
|
|
278
|
+
day: 20,
|
|
279
|
+
})
|
|
280
|
+
: undefined;
|
|
281
|
+
const query = {
|
|
282
|
+
ocid: ocid,
|
|
283
|
+
date: date,
|
|
284
|
+
};
|
|
285
|
+
const { data } = await this.client.get(path, {
|
|
286
|
+
params: query,
|
|
287
|
+
});
|
|
288
|
+
return new CharacterAbilityDto(data);
|
|
289
|
+
}
|
|
290
|
+
/**
|
|
291
|
+
* Retrieves information about equipped equipment, excluding cash items.
|
|
292
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
293
|
+
* - Data is available starting from April 20, 2025.
|
|
294
|
+
* - 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.)
|
|
295
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
296
|
+
* - This API provides data for MapleStory SEA.
|
|
297
|
+
* @param ocid Character identifier
|
|
298
|
+
* @param dateOptions Reference date for query (SGT)
|
|
299
|
+
*/
|
|
300
|
+
async getCharacterItemEquipment(ocid, dateOptions) {
|
|
301
|
+
const path = `${this.subUrl}/v1/character/item-equipment`;
|
|
302
|
+
const date = dateOptions
|
|
303
|
+
? this.toDateString(dateOptions, {
|
|
304
|
+
year: 2025,
|
|
305
|
+
month: 4,
|
|
306
|
+
day: 20,
|
|
307
|
+
})
|
|
308
|
+
: undefined;
|
|
309
|
+
const query = {
|
|
310
|
+
ocid: ocid,
|
|
311
|
+
date: date,
|
|
312
|
+
};
|
|
313
|
+
const { data } = await this.client.get(path, {
|
|
314
|
+
params: query,
|
|
315
|
+
});
|
|
316
|
+
return new CharacterItemEquipmentDto(data);
|
|
317
|
+
}
|
|
318
|
+
/**
|
|
319
|
+
* Retrieves equipped cash item information.
|
|
320
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
321
|
+
* - Data is available starting from April 20, 2025.
|
|
322
|
+
* - 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.)
|
|
323
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
324
|
+
* - This API provides data for MapleStory SEA.
|
|
325
|
+
* @param ocid Character identifier
|
|
326
|
+
* @param dateOptions Reference date for query (SGT)
|
|
327
|
+
*/
|
|
328
|
+
async getCharacterCashItemEquipment(ocid, dateOptions) {
|
|
329
|
+
const path = `${this.subUrl}/v1/character/cashitem-equipment`;
|
|
330
|
+
const date = dateOptions
|
|
331
|
+
? this.toDateString(dateOptions, {
|
|
332
|
+
year: 2025,
|
|
333
|
+
month: 4,
|
|
334
|
+
day: 20,
|
|
335
|
+
})
|
|
336
|
+
: undefined;
|
|
337
|
+
const query = {
|
|
338
|
+
ocid: ocid,
|
|
339
|
+
date: date,
|
|
340
|
+
};
|
|
341
|
+
const { data } = await this.client.get(path, {
|
|
342
|
+
params: query,
|
|
343
|
+
});
|
|
344
|
+
return new CharacterCashItemEquipmentDto(data);
|
|
345
|
+
}
|
|
346
|
+
/**
|
|
347
|
+
* Retrieves information about equipped symbols.
|
|
348
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
349
|
+
* - Data is available starting from April 20, 2025.
|
|
350
|
+
* - 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.)
|
|
351
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
352
|
+
* - This API provides data for MapleStory SEA.
|
|
353
|
+
* @param ocid Character identifier
|
|
354
|
+
* @param dateOptions Reference date for query (SGT)
|
|
355
|
+
*/
|
|
356
|
+
async getCharacterSymbolEquipment(ocid, dateOptions) {
|
|
357
|
+
const path = `${this.subUrl}/v1/character/symbol-equipment`;
|
|
358
|
+
const date = dateOptions
|
|
359
|
+
? this.toDateString(dateOptions, {
|
|
360
|
+
year: 2025,
|
|
361
|
+
month: 4,
|
|
362
|
+
day: 20,
|
|
363
|
+
})
|
|
364
|
+
: undefined;
|
|
365
|
+
const query = {
|
|
366
|
+
ocid: ocid,
|
|
367
|
+
date: date,
|
|
368
|
+
};
|
|
369
|
+
const { data } = await this.client.get(path, {
|
|
370
|
+
params: query,
|
|
371
|
+
});
|
|
372
|
+
return new CharacterSymbolEquipmentDto(data);
|
|
373
|
+
}
|
|
374
|
+
/**
|
|
375
|
+
* Retrieves information about equipped set item effects.
|
|
376
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
377
|
+
* - Data is available starting from April 20, 2025.
|
|
378
|
+
* - 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.)
|
|
379
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
380
|
+
* - This API provides data for MapleStory SEA.
|
|
381
|
+
* @param ocid Character identifier
|
|
382
|
+
* @param dateOptions Reference date for query (SGT)
|
|
383
|
+
*/
|
|
384
|
+
async getCharacterSetEffect(ocid, dateOptions) {
|
|
385
|
+
const path = `${this.subUrl}/v1/character/set-effect`;
|
|
386
|
+
const date = dateOptions
|
|
387
|
+
? this.toDateString(dateOptions, {
|
|
388
|
+
year: 2025,
|
|
389
|
+
month: 4,
|
|
390
|
+
day: 20,
|
|
391
|
+
})
|
|
392
|
+
: undefined;
|
|
393
|
+
const query = {
|
|
394
|
+
ocid: ocid,
|
|
395
|
+
date: date,
|
|
396
|
+
};
|
|
397
|
+
const { data } = await this.client.get(path, {
|
|
398
|
+
params: query,
|
|
399
|
+
});
|
|
400
|
+
return new CharacterSetEffectDto(data);
|
|
401
|
+
}
|
|
402
|
+
/**
|
|
403
|
+
* Retrieves information about equipped hair, face, and skin.
|
|
404
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
405
|
+
* - Data is available starting from April 20, 2025.
|
|
406
|
+
* - 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.)
|
|
407
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
408
|
+
* - This API provides data for MapleStory SEA.
|
|
409
|
+
* @param ocid Character identifier
|
|
410
|
+
* @param dateOptions Reference date for query (SGT)
|
|
411
|
+
*/
|
|
412
|
+
async getCharacterBeautyEquipment(ocid, dateOptions) {
|
|
413
|
+
const path = `${this.subUrl}/v1/character/beauty-equipment`;
|
|
414
|
+
const date = dateOptions
|
|
415
|
+
? this.toDateString(dateOptions, {
|
|
416
|
+
year: 2025,
|
|
417
|
+
month: 4,
|
|
418
|
+
day: 20,
|
|
419
|
+
})
|
|
420
|
+
: undefined;
|
|
421
|
+
const query = {
|
|
422
|
+
ocid: ocid,
|
|
423
|
+
date: date,
|
|
424
|
+
};
|
|
425
|
+
const { data } = await this.client.get(path, {
|
|
426
|
+
params: query,
|
|
427
|
+
});
|
|
428
|
+
return new CharacterBeautyEquipmentDto(data);
|
|
429
|
+
}
|
|
430
|
+
/**
|
|
431
|
+
* Retrieves equipped android information.
|
|
432
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
433
|
+
* - Data is available starting from April 20, 2025.
|
|
434
|
+
* - 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.)
|
|
435
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
436
|
+
* - This API provides data for MapleStory SEA.
|
|
437
|
+
* @param ocid Character identifier
|
|
438
|
+
* @param dateOptions Reference date for query (SGT)
|
|
439
|
+
*/
|
|
440
|
+
async getCharacterAndroidEquipment(ocid, dateOptions) {
|
|
441
|
+
const path = `${this.subUrl}/v1/character/android-equipment`;
|
|
442
|
+
const date = dateOptions
|
|
443
|
+
? this.toDateString(dateOptions, {
|
|
444
|
+
year: 2025,
|
|
445
|
+
month: 4,
|
|
446
|
+
day: 20,
|
|
447
|
+
})
|
|
448
|
+
: undefined;
|
|
449
|
+
const query = {
|
|
450
|
+
ocid: ocid,
|
|
451
|
+
date: date,
|
|
452
|
+
};
|
|
453
|
+
const { data } = await this.client.get(path, {
|
|
454
|
+
params: query,
|
|
455
|
+
});
|
|
456
|
+
return new CharacterAndroidEquipmentDto(data);
|
|
457
|
+
}
|
|
458
|
+
/**
|
|
459
|
+
* Retrieves information about equipped pets, including pet skills and equipment.
|
|
460
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
461
|
+
* - Data is available starting from April 20, 2025.
|
|
462
|
+
* - 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.)
|
|
463
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
464
|
+
* - This API provides data for MapleStory SEA.
|
|
465
|
+
* @param ocid Character identifier
|
|
466
|
+
* @param dateOptions Reference date for query (SGT)
|
|
467
|
+
*/
|
|
468
|
+
async getCharacterPetEquipment(ocid, dateOptions) {
|
|
469
|
+
const path = `${this.subUrl}/v1/character/pet-equipment`;
|
|
470
|
+
const date = dateOptions
|
|
471
|
+
? this.toDateString(dateOptions, {
|
|
472
|
+
year: 2025,
|
|
473
|
+
month: 4,
|
|
474
|
+
day: 20,
|
|
475
|
+
})
|
|
476
|
+
: undefined;
|
|
477
|
+
const query = {
|
|
478
|
+
ocid: ocid,
|
|
479
|
+
date: date,
|
|
480
|
+
};
|
|
481
|
+
const { data } = await this.client.get(path, {
|
|
482
|
+
params: query,
|
|
483
|
+
});
|
|
484
|
+
return new CharacterPetEquipmentDto(data);
|
|
485
|
+
}
|
|
486
|
+
/**
|
|
487
|
+
* Retrieves information about character skills and Hyper Skills.
|
|
488
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
489
|
+
* - Data is available starting from April 20, 2025.
|
|
490
|
+
* - 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.)
|
|
491
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
492
|
+
* - This API provides data for MapleStory SEA.
|
|
493
|
+
* @param ocid Character identifier
|
|
494
|
+
* @param characterSkillGrade Job advancement tier to query <a href="https://openapi.nexon.com/game/maplestorysea/?id=45">Available values</a>
|
|
495
|
+
* @param dateOptions Reference date for query (SGT)
|
|
496
|
+
*/
|
|
497
|
+
async getCharacterSkill(ocid, characterSkillGrade, dateOptions) {
|
|
498
|
+
const path = `${this.subUrl}/v1/character/skill`;
|
|
499
|
+
const date = dateOptions
|
|
500
|
+
? this.toDateString(dateOptions, {
|
|
501
|
+
year: 2025,
|
|
502
|
+
month: 4,
|
|
503
|
+
day: 20,
|
|
504
|
+
})
|
|
505
|
+
: undefined;
|
|
506
|
+
const query = {
|
|
507
|
+
ocid: ocid,
|
|
508
|
+
character_skill_grade: characterSkillGrade,
|
|
509
|
+
date: date,
|
|
510
|
+
};
|
|
511
|
+
const { data } = await this.client.get(path, {
|
|
512
|
+
params: query,
|
|
513
|
+
});
|
|
514
|
+
return new CharacterSkillDto(data);
|
|
515
|
+
}
|
|
516
|
+
/**
|
|
517
|
+
* Retrieves information about equipped Link Skills.
|
|
518
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
519
|
+
* - Data is available starting from April 20, 2025.
|
|
520
|
+
* - 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.)
|
|
521
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
522
|
+
* - This API provides data for MapleStory SEA.
|
|
523
|
+
* @param ocid Character identifier
|
|
524
|
+
* @param dateOptions Reference date for query (SGT)
|
|
525
|
+
*/
|
|
526
|
+
async getCharacterLinkSkill(ocid, dateOptions) {
|
|
527
|
+
const path = `${this.subUrl}/v1/character/link-skill`;
|
|
528
|
+
const date = dateOptions
|
|
529
|
+
? this.toDateString(dateOptions, {
|
|
530
|
+
year: 2025,
|
|
531
|
+
month: 4,
|
|
532
|
+
day: 20,
|
|
533
|
+
})
|
|
534
|
+
: undefined;
|
|
535
|
+
const query = {
|
|
536
|
+
ocid: ocid,
|
|
537
|
+
date: date,
|
|
538
|
+
};
|
|
539
|
+
const { data } = await this.client.get(path, {
|
|
540
|
+
params: query,
|
|
541
|
+
});
|
|
542
|
+
return new CharacterLinkSkillDto(data);
|
|
543
|
+
}
|
|
544
|
+
/**
|
|
545
|
+
* Retrieves V Matrix slot and equipped Node information.
|
|
546
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
547
|
+
* - Data is available starting from April 20, 2025.
|
|
548
|
+
* - 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.)
|
|
549
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
550
|
+
* - This API provides data for MapleStory SEA.
|
|
551
|
+
* @param ocid Character identifier
|
|
552
|
+
* @param dateOptions Reference date for query (SGT)
|
|
553
|
+
*/
|
|
554
|
+
async getCharacterVMatrix(ocid, dateOptions) {
|
|
555
|
+
const path = `${this.subUrl}/v1/character/vmatrix`;
|
|
556
|
+
const date = dateOptions
|
|
557
|
+
? this.toDateString(dateOptions, {
|
|
558
|
+
year: 2025,
|
|
559
|
+
month: 4,
|
|
560
|
+
day: 20,
|
|
561
|
+
})
|
|
562
|
+
: undefined;
|
|
563
|
+
const query = {
|
|
564
|
+
ocid: ocid,
|
|
565
|
+
date: date,
|
|
566
|
+
};
|
|
567
|
+
const { data } = await this.client.get(path, {
|
|
568
|
+
params: query,
|
|
569
|
+
});
|
|
570
|
+
return new CharacterVMatrixDto(data);
|
|
571
|
+
}
|
|
572
|
+
/**
|
|
573
|
+
* Retrieves information about HEXA Nodes equipped in the HEXA Matrix.
|
|
574
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
575
|
+
* - Data is available starting from April 20, 2025.
|
|
576
|
+
* - 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.)
|
|
577
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
578
|
+
* - This API provides data for MapleStory SEA.
|
|
579
|
+
* @param ocid Character identifier
|
|
580
|
+
* @param dateOptions Reference date for query (SGT)
|
|
581
|
+
*/
|
|
582
|
+
async getCharacterHexaMatrix(ocid, dateOptions) {
|
|
583
|
+
const path = `${this.subUrl}/v1/character/hexamatrix`;
|
|
584
|
+
const date = dateOptions
|
|
585
|
+
? this.toDateString(dateOptions, {
|
|
586
|
+
year: 2025,
|
|
587
|
+
month: 4,
|
|
588
|
+
day: 20,
|
|
589
|
+
})
|
|
590
|
+
: undefined;
|
|
591
|
+
const query = {
|
|
592
|
+
ocid: ocid,
|
|
593
|
+
date: date,
|
|
594
|
+
};
|
|
595
|
+
const { data } = await this.client.get(path, {
|
|
596
|
+
params: query,
|
|
597
|
+
});
|
|
598
|
+
return new CharacterHexaMatrixDto(data);
|
|
599
|
+
}
|
|
600
|
+
/**
|
|
601
|
+
* Retrieves information about HEXA stats configured in the HEXA Matrix.
|
|
602
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
603
|
+
* - Data is available starting from April 20, 2025.
|
|
604
|
+
* - 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.)
|
|
605
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
606
|
+
* - This API provides data for MapleStory SEA.
|
|
607
|
+
* @param ocid Character identifier
|
|
608
|
+
* @param dateOptions Reference date for query (SGT)
|
|
609
|
+
*/
|
|
610
|
+
async getCharacterHexaMatrixStat(ocid, dateOptions) {
|
|
611
|
+
const path = `${this.subUrl}/v1/character/hexamatrix-stat`;
|
|
612
|
+
const date = dateOptions
|
|
613
|
+
? this.toDateString(dateOptions, {
|
|
614
|
+
year: 2025,
|
|
615
|
+
month: 4,
|
|
616
|
+
day: 20,
|
|
617
|
+
})
|
|
618
|
+
: undefined;
|
|
619
|
+
const query = {
|
|
620
|
+
ocid: ocid,
|
|
621
|
+
date: date,
|
|
622
|
+
};
|
|
623
|
+
const { data } = await this.client.get(path, {
|
|
624
|
+
params: query,
|
|
625
|
+
});
|
|
626
|
+
return new CharacterHexaMatrixStatDto(data);
|
|
627
|
+
}
|
|
628
|
+
/**
|
|
629
|
+
* Retrieves the character's highest record information in Mu Lung Garden.
|
|
630
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
631
|
+
* - Data is available starting from April 20, 2025.
|
|
632
|
+
* - 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.)
|
|
633
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
634
|
+
* - This API provides data for MapleStory SEA.
|
|
635
|
+
* @param ocid Character identifier
|
|
636
|
+
* @param dateOptions Reference date for query (SGT)
|
|
637
|
+
*/
|
|
638
|
+
async getCharacterDojang(ocid, dateOptions) {
|
|
639
|
+
const path = `${this.subUrl}/v1/character/dojang`;
|
|
640
|
+
const date = dateOptions
|
|
641
|
+
? this.toDateString(dateOptions, {
|
|
642
|
+
year: 2025,
|
|
643
|
+
month: 4,
|
|
644
|
+
day: 20,
|
|
645
|
+
})
|
|
646
|
+
: undefined;
|
|
647
|
+
const query = {
|
|
648
|
+
ocid: ocid,
|
|
649
|
+
date: date,
|
|
650
|
+
};
|
|
651
|
+
const { data } = await this.client.get(path, {
|
|
652
|
+
params: query,
|
|
653
|
+
});
|
|
654
|
+
return new CharacterDojangDto(data);
|
|
655
|
+
}
|
|
656
|
+
//#endregion
|
|
657
|
+
//#region Union Information Retrieval
|
|
658
|
+
/**
|
|
659
|
+
* Retrieves Union level and Union rank information.
|
|
660
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
661
|
+
* - Data is available starting from April 20, 2025.
|
|
662
|
+
* - 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.)
|
|
663
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
664
|
+
* - This API provides data for MapleStory SEA.
|
|
665
|
+
* @param ocid Character identifier
|
|
666
|
+
* @param dateOptions Reference date for query (SGT)
|
|
667
|
+
*/
|
|
668
|
+
async getUnion(ocid, dateOptions) {
|
|
669
|
+
const path = `${this.subUrl}/v1/user/union`;
|
|
670
|
+
const date = dateOptions
|
|
671
|
+
? this.toDateString(dateOptions, {
|
|
672
|
+
year: 2025,
|
|
673
|
+
month: 4,
|
|
674
|
+
day: 20,
|
|
675
|
+
})
|
|
676
|
+
: undefined;
|
|
677
|
+
const query = {
|
|
678
|
+
ocid: ocid,
|
|
679
|
+
date: date,
|
|
680
|
+
};
|
|
681
|
+
const { data } = await this.client.get(path, {
|
|
682
|
+
params: query,
|
|
683
|
+
});
|
|
684
|
+
return new UnionDto(data);
|
|
685
|
+
}
|
|
686
|
+
/**
|
|
687
|
+
* Retrieves detailed information about raid member effects and capture effects deployed in the Union.
|
|
688
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
689
|
+
* - Data is available starting from April 20, 2025.
|
|
690
|
+
* - 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.)
|
|
691
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
692
|
+
* - This API provides data for MapleStory SEA.
|
|
693
|
+
* @param ocid Character identifier
|
|
694
|
+
* @param dateOptions Reference date for query (SGT)
|
|
695
|
+
*/
|
|
696
|
+
async getUnionRaider(ocid, dateOptions) {
|
|
697
|
+
const path = `${this.subUrl}/v1/user/union-raider`;
|
|
698
|
+
const date = dateOptions
|
|
699
|
+
? this.toDateString(dateOptions, {
|
|
700
|
+
year: 2025,
|
|
701
|
+
month: 4,
|
|
702
|
+
day: 20,
|
|
703
|
+
})
|
|
704
|
+
: undefined;
|
|
705
|
+
const query = {
|
|
706
|
+
ocid: ocid,
|
|
707
|
+
date: date,
|
|
708
|
+
};
|
|
709
|
+
const { data } = await this.client.get(path, {
|
|
710
|
+
params: query,
|
|
711
|
+
});
|
|
712
|
+
return new UnionRaiderDto(data);
|
|
713
|
+
}
|
|
714
|
+
/**
|
|
715
|
+
* Retrieves Union Artifact information.
|
|
716
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
717
|
+
* - Data is available starting from April 20, 2025.
|
|
718
|
+
* - 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.)
|
|
719
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
720
|
+
* - This API provides data for MapleStory SEA.
|
|
721
|
+
* @param ocid Character identifier
|
|
722
|
+
* @param dateOptions Reference date for query (SGT)
|
|
723
|
+
*/
|
|
724
|
+
async getUnionArtifact(ocid, dateOptions) {
|
|
725
|
+
const path = `${this.subUrl}/v1/user/union-artifact`;
|
|
726
|
+
const date = dateOptions
|
|
727
|
+
? this.toDateString(dateOptions, {
|
|
728
|
+
year: 2025,
|
|
729
|
+
month: 4,
|
|
730
|
+
day: 20,
|
|
731
|
+
})
|
|
732
|
+
: undefined;
|
|
733
|
+
const query = {
|
|
734
|
+
ocid: ocid,
|
|
735
|
+
date: date,
|
|
736
|
+
};
|
|
737
|
+
const { data } = await this.client.get(path, {
|
|
738
|
+
params: query,
|
|
739
|
+
});
|
|
740
|
+
return new UnionArtifactDto(data);
|
|
741
|
+
}
|
|
742
|
+
//#endregion
|
|
743
|
+
//#region Guild Information Retrieval
|
|
744
|
+
/**
|
|
745
|
+
* Retrieves information for the guild identifier (oguild_id).
|
|
746
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
747
|
+
* - Data is available starting from April 20, 2025.
|
|
748
|
+
* - 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.)
|
|
749
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
750
|
+
* - This API provides data for MapleStory SEA.
|
|
751
|
+
* @param guildName Guild name
|
|
752
|
+
* @param worldName World name
|
|
753
|
+
*/
|
|
754
|
+
async getGuild(guildName, worldName) {
|
|
755
|
+
const path = `${this.subUrl}/v1/guild/id`;
|
|
756
|
+
const { data } = await this.client.get(path, {
|
|
757
|
+
params: {
|
|
758
|
+
guild_name: guildName,
|
|
759
|
+
world_name: worldName,
|
|
760
|
+
},
|
|
761
|
+
});
|
|
762
|
+
return new GuildDto(data);
|
|
763
|
+
}
|
|
764
|
+
/**
|
|
765
|
+
* Retrieves guild basic information.
|
|
766
|
+
* - MapleStory game data can be verified approximately 15 minutes after updates.
|
|
767
|
+
* - Data is available starting from April 20, 2025.
|
|
768
|
+
* - 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.)
|
|
769
|
+
* - Due to game content changes, the ocid may be updated. Please pay attention to this when updating services based on ocid.
|
|
770
|
+
* - This API provides data for MapleStory SEA.
|
|
771
|
+
* @param guildId Guild identifier
|
|
772
|
+
* @param dateOptions Reference date for query (SGT)
|
|
773
|
+
*/
|
|
774
|
+
async getGuildBasic(guildId, dateOptions) {
|
|
775
|
+
const path = `${this.subUrl}/v1/guild/basic`;
|
|
776
|
+
const date = dateOptions
|
|
777
|
+
? this.toDateString(dateOptions, {
|
|
778
|
+
year: 2025,
|
|
779
|
+
month: 4,
|
|
780
|
+
day: 20,
|
|
781
|
+
})
|
|
782
|
+
: undefined;
|
|
783
|
+
const query = {
|
|
784
|
+
oguild_id: guildId,
|
|
785
|
+
date: date,
|
|
786
|
+
};
|
|
787
|
+
const { data } = await this.client.get(path, {
|
|
788
|
+
params: query,
|
|
789
|
+
});
|
|
790
|
+
return new GuildBasicDto(data);
|
|
791
|
+
}
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
export { MapleStoryApi };
|