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