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
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import { PotentialOptionGrade } from '../potentialOptionGrade';
|
|
1
|
+
import { PotentialOptionGrade } from '../../../common/enum/potentialOptionGrade';
|
|
2
|
+
import { PotentialHistoryBody, PotentialHistoryResponseBody, PotentialResultOptionBody } from '../../response/history/potentialHistoryBody';
|
|
4
3
|
/**
|
|
5
4
|
* 잠재능력 재설정 히스토리
|
|
6
5
|
*/
|
|
7
|
-
declare class PotentialHistoryDto {
|
|
6
|
+
export declare class PotentialHistoryDto {
|
|
8
7
|
/**
|
|
9
8
|
* 잠재능력 재설정 히스토리 식별자
|
|
10
9
|
*/
|
|
@@ -73,10 +72,42 @@ declare class PotentialHistoryDto {
|
|
|
73
72
|
* 사용 후 에디셔널 잠재능력 옵션
|
|
74
73
|
*/
|
|
75
74
|
afterAdditionalPotentialOption: PotentialResultOptionDto[];
|
|
76
|
-
constructor(obj:
|
|
75
|
+
constructor(obj: PotentialHistoryBody);
|
|
77
76
|
get isItemUpgrade(): boolean;
|
|
78
77
|
get isMiracleTimeFlag(): boolean;
|
|
79
78
|
get potentialOptionGradeEnum(): PotentialOptionGrade;
|
|
80
79
|
get additionalPotentialOptionGradeEnum(): PotentialOptionGrade;
|
|
81
80
|
}
|
|
82
|
-
|
|
81
|
+
/**
|
|
82
|
+
* 잠재능력 재설정 결과 옵션 정보
|
|
83
|
+
*/
|
|
84
|
+
export declare class PotentialResultOptionDto {
|
|
85
|
+
/**
|
|
86
|
+
* 옵션 명
|
|
87
|
+
*/
|
|
88
|
+
value: string;
|
|
89
|
+
/**
|
|
90
|
+
* 옵션 등급
|
|
91
|
+
*/
|
|
92
|
+
grade: string;
|
|
93
|
+
constructor(obj: PotentialResultOptionBody);
|
|
94
|
+
get gradeEnum(): PotentialOptionGrade;
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* 잠재능력 재설정 히스토리 응답 정보
|
|
98
|
+
*/
|
|
99
|
+
export declare class PotentialHistoryResponseDto {
|
|
100
|
+
/**
|
|
101
|
+
* 결과 건 수
|
|
102
|
+
*/
|
|
103
|
+
count: number;
|
|
104
|
+
/**
|
|
105
|
+
* 잠재능력 재설정 히스토리
|
|
106
|
+
*/
|
|
107
|
+
potentialHistory: PotentialHistoryDto[];
|
|
108
|
+
/**
|
|
109
|
+
* 페이징 처리를 위한 cursor
|
|
110
|
+
*/
|
|
111
|
+
nextCursor: string | null;
|
|
112
|
+
constructor(obj: PotentialHistoryResponseBody);
|
|
113
|
+
}
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { StarforceHistoryDtoBody } from '../../response/history/starforceHistoryDtoBody';
|
|
1
|
+
import { StarforceEventBody, StarforceHistoryBody, StarforceHistoryResponseBody } from '../../response/history/starforceHistoryBody';
|
|
3
2
|
/**
|
|
4
3
|
* 스타포스 히스토리
|
|
5
4
|
*/
|
|
6
|
-
declare class StarforceHistoryDto {
|
|
5
|
+
export declare class StarforceHistoryDto {
|
|
7
6
|
/**
|
|
8
7
|
* 스타포스 히스토리 식별자
|
|
9
8
|
*/
|
|
@@ -72,6 +71,49 @@ declare class StarforceHistoryDto {
|
|
|
72
71
|
* 진행 중인 스타포스 강화 이벤트 정보
|
|
73
72
|
*/
|
|
74
73
|
starforceEventList: StarforceEventDto[] | null;
|
|
75
|
-
constructor(obj:
|
|
74
|
+
constructor(obj: StarforceHistoryBody);
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* 스타포스 강화 이벤트 정보
|
|
78
|
+
*/
|
|
79
|
+
export declare class StarforceEventDto {
|
|
80
|
+
/**
|
|
81
|
+
* 이벤트 성공 확률
|
|
82
|
+
*/
|
|
83
|
+
successRate: string;
|
|
84
|
+
/**
|
|
85
|
+
* 이벤트 파괴 확률 감소율
|
|
86
|
+
*/
|
|
87
|
+
destroyDecreaseRate: string | null;
|
|
88
|
+
/**
|
|
89
|
+
* 이벤트 비용 할인율
|
|
90
|
+
*/
|
|
91
|
+
costDiscountRate: string;
|
|
92
|
+
/**
|
|
93
|
+
* 이벤트 강화 수치 가중값
|
|
94
|
+
*/
|
|
95
|
+
plusValue: string;
|
|
96
|
+
/**
|
|
97
|
+
* 이벤트 적용 강화 시도 가능한 n성 범위
|
|
98
|
+
*/
|
|
99
|
+
starforceEventRange: string;
|
|
100
|
+
constructor(obj: StarforceEventBody);
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* 스타포스 히스토리 응답 정보
|
|
104
|
+
*/
|
|
105
|
+
export declare class StarforceHistoryResponseDto {
|
|
106
|
+
/**
|
|
107
|
+
* 결과 건 수
|
|
108
|
+
*/
|
|
109
|
+
count: number;
|
|
110
|
+
/**
|
|
111
|
+
* 스타포스 히스토리
|
|
112
|
+
*/
|
|
113
|
+
starforceHistory: StarforceHistoryDto[];
|
|
114
|
+
/**
|
|
115
|
+
* 페이징 처리를 위한 cursor
|
|
116
|
+
*/
|
|
117
|
+
nextCursor: string | null;
|
|
118
|
+
constructor(obj: StarforceHistoryResponseBody);
|
|
76
119
|
}
|
|
77
|
-
export { StarforceHistoryDto };
|
|
@@ -2,7 +2,7 @@ import { InspectionInfoSoapBody } from '../response/inspectionInfoSoapBody';
|
|
|
2
2
|
/**
|
|
3
3
|
* 서버 점검 정보
|
|
4
4
|
*/
|
|
5
|
-
declare class InspectionInfoDto {
|
|
5
|
+
export declare class InspectionInfoDto {
|
|
6
6
|
/**
|
|
7
7
|
* 서비스 코드
|
|
8
8
|
*/
|
|
@@ -21,4 +21,3 @@ declare class InspectionInfoDto {
|
|
|
21
21
|
strObstacleContents: string;
|
|
22
22
|
constructor(obj: InspectionInfoSoapBody);
|
|
23
23
|
}
|
|
24
|
-
export { InspectionInfoDto };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CashshopNoticeDetailBody } from '../../response/notice/cashshopNoticeDetailBody';
|
|
2
2
|
/**
|
|
3
3
|
* 캐시샵 공지 상세
|
|
4
4
|
*/
|
|
5
|
-
declare class CashshopNoticeDetailDto {
|
|
5
|
+
export declare class CashshopNoticeDetailDto {
|
|
6
6
|
/**
|
|
7
7
|
* 공지 제목
|
|
8
8
|
*/
|
|
@@ -31,10 +31,9 @@ declare class CashshopNoticeDetailDto {
|
|
|
31
31
|
* 상시 판매 여부 (true - 상시)
|
|
32
32
|
*/
|
|
33
33
|
ongoingFlag: string;
|
|
34
|
-
constructor(obj:
|
|
34
|
+
constructor(obj: CashshopNoticeDetailBody);
|
|
35
35
|
/**
|
|
36
36
|
* 상시 판매 여부 (true - 상시)
|
|
37
37
|
*/
|
|
38
38
|
get isOnGoing(): boolean;
|
|
39
39
|
}
|
|
40
|
-
export { CashshopNoticeDetailDto };
|
|
@@ -1,8 +1,18 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CashshopNoticeListBody, CashshopNoticeListItemBody } from '../../response/notice/cashshopNoticeListBody';
|
|
2
|
+
/**
|
|
3
|
+
* 캐시샵 공지 목록
|
|
4
|
+
*/
|
|
5
|
+
export declare class CashshopNoticeListDto {
|
|
6
|
+
/**
|
|
7
|
+
* 공지 목록
|
|
8
|
+
*/
|
|
9
|
+
cashshopNotice: CashshopNoticeListItemDto[];
|
|
10
|
+
constructor(obj: CashshopNoticeListBody);
|
|
11
|
+
}
|
|
2
12
|
/**
|
|
3
13
|
* 캐시샵 공지
|
|
4
14
|
*/
|
|
5
|
-
declare class CashshopNoticeListItemDto {
|
|
15
|
+
export declare class CashshopNoticeListItemDto {
|
|
6
16
|
/**
|
|
7
17
|
* 공지 제목
|
|
8
18
|
*/
|
|
@@ -31,10 +41,9 @@ declare class CashshopNoticeListItemDto {
|
|
|
31
41
|
* 상시 판매 여부 (true - 상시)
|
|
32
42
|
*/
|
|
33
43
|
ongoingFlag: string;
|
|
34
|
-
constructor(obj:
|
|
44
|
+
constructor(obj: CashshopNoticeListItemBody);
|
|
35
45
|
/**
|
|
36
46
|
* 상시 판매 여부 (true - 상시)
|
|
37
47
|
*/
|
|
38
48
|
get isOnGoing(): boolean;
|
|
39
49
|
}
|
|
40
|
-
export { CashshopNoticeListItemDto };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EventNoticeDetailBody } from '../../response/notice/eventNoticeDetailBody';
|
|
2
2
|
/**
|
|
3
3
|
* 진행 중 이벤트 상세
|
|
4
4
|
*/
|
|
5
|
-
declare class EventNoticeDetailDto {
|
|
5
|
+
export declare class EventNoticeDetailDto {
|
|
6
6
|
/**
|
|
7
7
|
* 공지 제목
|
|
8
8
|
*/
|
|
@@ -27,6 +27,5 @@ declare class EventNoticeDetailDto {
|
|
|
27
27
|
* 이벤트 종료일
|
|
28
28
|
*/
|
|
29
29
|
dateEventEnd: Date;
|
|
30
|
-
constructor(obj:
|
|
30
|
+
constructor(obj: EventNoticeDetailBody);
|
|
31
31
|
}
|
|
32
|
-
export { EventNoticeDetailDto };
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EventNoticeListBody, EventNoticeListItemBody } from '../../response/notice/eventNoticeListBody';
|
|
2
|
+
/**
|
|
3
|
+
* 진행 중 이벤트 공지 목록
|
|
4
|
+
*/
|
|
5
|
+
export declare class EventNoticeListDto {
|
|
6
|
+
/**
|
|
7
|
+
* 공지 목록
|
|
8
|
+
*/
|
|
9
|
+
eventNotice: EventNoticeListItemDto[];
|
|
10
|
+
constructor(obj: EventNoticeListBody);
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* 진행 중 이벤트 공지
|
|
14
|
+
*/
|
|
15
|
+
export declare class EventNoticeListItemDto {
|
|
16
|
+
/**
|
|
17
|
+
* 공지 제목
|
|
18
|
+
*/
|
|
19
|
+
title: string;
|
|
20
|
+
/**
|
|
21
|
+
* 공지 링크
|
|
22
|
+
*/
|
|
23
|
+
url: string;
|
|
24
|
+
/**
|
|
25
|
+
* 공지 식별자
|
|
26
|
+
*/
|
|
27
|
+
noticeId: number;
|
|
28
|
+
/**
|
|
29
|
+
* 공지 등록일
|
|
30
|
+
*/
|
|
31
|
+
date: Date;
|
|
32
|
+
/**
|
|
33
|
+
* 이벤트 시작일
|
|
34
|
+
*/
|
|
35
|
+
dateEventStart: Date;
|
|
36
|
+
/**
|
|
37
|
+
* 이벤트 종료일
|
|
38
|
+
*/
|
|
39
|
+
dateEventEnd: Date;
|
|
40
|
+
constructor(obj: EventNoticeListItemBody);
|
|
41
|
+
}
|
package/types/maplestory/api/{dto/notice/noticeDetailDto.d.ts → kms/dto/notice/noticeDetail.d.ts}
RENAMED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { NoticeDetailBody } from '../../response/notice/noticeDetailBody';
|
|
2
2
|
/**
|
|
3
3
|
* 공지사항 상세
|
|
4
4
|
*/
|
|
5
|
-
declare class NoticeDetailDto {
|
|
5
|
+
export declare class NoticeDetailDto {
|
|
6
6
|
/**
|
|
7
7
|
* 공지 제목
|
|
8
8
|
*/
|
|
@@ -19,6 +19,5 @@ declare class NoticeDetailDto {
|
|
|
19
19
|
* 공지 등록일
|
|
20
20
|
*/
|
|
21
21
|
date: Date;
|
|
22
|
-
constructor(obj:
|
|
22
|
+
constructor(obj: NoticeDetailBody);
|
|
23
23
|
}
|
|
24
|
-
export { NoticeDetailDto };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { NoticeListBody, NoticeListItemBody } from '../../response/notice/noticeListBody';
|
|
2
|
+
/**
|
|
3
|
+
* 공지사항 목록
|
|
4
|
+
*/
|
|
5
|
+
export declare class NoticeListDto {
|
|
6
|
+
/**
|
|
7
|
+
* 공지 목록
|
|
8
|
+
*/
|
|
9
|
+
notice: NoticeListItemDto[];
|
|
10
|
+
constructor(obj: NoticeListBody);
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* 공지사항
|
|
14
|
+
*/
|
|
15
|
+
export declare class NoticeListItemDto {
|
|
16
|
+
/**
|
|
17
|
+
* 공지 제목
|
|
18
|
+
*/
|
|
19
|
+
title: string;
|
|
20
|
+
/**
|
|
21
|
+
* 공지 링크
|
|
22
|
+
*/
|
|
23
|
+
url: string;
|
|
24
|
+
/**
|
|
25
|
+
* 공지 식별자
|
|
26
|
+
*/
|
|
27
|
+
noticeId: number;
|
|
28
|
+
/**
|
|
29
|
+
* 공지 등록일
|
|
30
|
+
*/
|
|
31
|
+
date: Date;
|
|
32
|
+
constructor(obj: NoticeListItemBody);
|
|
33
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { UpdateNoticeDetailBody } from '../../response/notice/updateNoticeDetailBody';
|
|
2
2
|
/**
|
|
3
3
|
* 업데이트 상세
|
|
4
4
|
*/
|
|
5
|
-
declare class UpdateNoticeDetailDto {
|
|
5
|
+
export declare class UpdateNoticeDetailDto {
|
|
6
6
|
/**
|
|
7
7
|
* 공지 제목
|
|
8
8
|
*/
|
|
@@ -19,6 +19,5 @@ declare class UpdateNoticeDetailDto {
|
|
|
19
19
|
* 공지 등록일
|
|
20
20
|
*/
|
|
21
21
|
date: Date;
|
|
22
|
-
constructor(obj:
|
|
22
|
+
constructor(obj: UpdateNoticeDetailBody);
|
|
23
23
|
}
|
|
24
|
-
export { UpdateNoticeDetailDto };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { UpdateNoticeListBody, UpdateNoticeListItemBody } from '../../response/notice/updateNoticeListBody';
|
|
2
|
+
/**
|
|
3
|
+
* 업데이트 목록
|
|
4
|
+
*/
|
|
5
|
+
export declare class UpdateNoticeListDto {
|
|
6
|
+
/**
|
|
7
|
+
* 공지 목록
|
|
8
|
+
*/
|
|
9
|
+
updateNotice: UpdateNoticeListItemDto[];
|
|
10
|
+
constructor(obj: UpdateNoticeListBody);
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* 업데이트 공지
|
|
14
|
+
*/
|
|
15
|
+
export declare class UpdateNoticeListItemDto {
|
|
16
|
+
/**
|
|
17
|
+
* 공지 제목
|
|
18
|
+
*/
|
|
19
|
+
title: string;
|
|
20
|
+
/**
|
|
21
|
+
* 공지 링크
|
|
22
|
+
*/
|
|
23
|
+
url: string;
|
|
24
|
+
/**
|
|
25
|
+
* 공지 식별자
|
|
26
|
+
*/
|
|
27
|
+
noticeId: number;
|
|
28
|
+
/**
|
|
29
|
+
* 공지 등록일
|
|
30
|
+
*/
|
|
31
|
+
date: Date;
|
|
32
|
+
constructor(obj: UpdateNoticeListItemBody);
|
|
33
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AchievementRankingBody, AchievementRankingResponseBody } from '../../response/ranking/achievementRankingBody';
|
|
2
2
|
/**
|
|
3
3
|
* 업적 랭킹 정보
|
|
4
4
|
*/
|
|
5
|
-
declare class AchievementRankingDto {
|
|
5
|
+
export declare class AchievementRankingDto {
|
|
6
6
|
/**
|
|
7
7
|
* 랭킹 업데이트 일자 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
8
8
|
*/
|
|
@@ -35,6 +35,15 @@ declare class AchievementRankingDto {
|
|
|
35
35
|
* 업적 점수
|
|
36
36
|
*/
|
|
37
37
|
trophyScore: number;
|
|
38
|
-
constructor(obj:
|
|
38
|
+
constructor(obj: AchievementRankingBody);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* 업적 랭킹 응답 정보
|
|
42
|
+
*/
|
|
43
|
+
export declare class AchievementRankingResponseDto {
|
|
44
|
+
/**
|
|
45
|
+
* 업적 랭킹 정보
|
|
46
|
+
*/
|
|
47
|
+
ranking: AchievementRankingDto[];
|
|
48
|
+
constructor(obj: AchievementRankingResponseBody);
|
|
39
49
|
}
|
|
40
|
-
export { AchievementRankingDto };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DojangRankingBody, DojangRankingResponseBody } from '../../response/ranking/dojangRankingBody';
|
|
2
2
|
/**
|
|
3
3
|
* 무릉도장 랭킹 정보
|
|
4
4
|
*/
|
|
5
|
-
declare class DojangRankingDto {
|
|
5
|
+
export declare class DojangRankingDto {
|
|
6
6
|
/**
|
|
7
7
|
* 랭킹 업데이트 일자 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
8
8
|
*/
|
|
@@ -39,6 +39,15 @@ declare class DojangRankingDto {
|
|
|
39
39
|
* 무릉도장 클리어 시간 기록 (초 단위)
|
|
40
40
|
*/
|
|
41
41
|
dojangTimeRecord: number;
|
|
42
|
-
constructor(obj:
|
|
42
|
+
constructor(obj: DojangRankingBody);
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* 무릉도장 랭킹 응답 정보
|
|
46
|
+
*/
|
|
47
|
+
export declare class DojangRankingResponseDto {
|
|
48
|
+
/**
|
|
49
|
+
* 길드 랭킹 정보
|
|
50
|
+
*/
|
|
51
|
+
ranking: DojangRankingDto[];
|
|
52
|
+
constructor(obj: DojangRankingResponseBody);
|
|
43
53
|
}
|
|
44
|
-
export { DojangRankingDto };
|
package/types/maplestory/api/{dto/ranking/guildRankingDto.d.ts → kms/dto/ranking/guildRanking.d.ts}
RENAMED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { GuildRankingBody, GuildRankingResponseBody } from '../../response/ranking/guildRankingBody';
|
|
2
2
|
/**
|
|
3
3
|
* 길드 랭킹 정보
|
|
4
4
|
*/
|
|
5
|
-
declare class GuildRankingDto {
|
|
5
|
+
export declare class GuildRankingDto {
|
|
6
6
|
/**
|
|
7
7
|
* 랭킹 업데이트 일자 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
8
8
|
*/
|
|
@@ -35,6 +35,15 @@ declare class GuildRankingDto {
|
|
|
35
35
|
* 길드 포인트
|
|
36
36
|
*/
|
|
37
37
|
guildPoint: number;
|
|
38
|
-
constructor(obj:
|
|
38
|
+
constructor(obj: GuildRankingBody);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* 길드 랭킹 응답 정보
|
|
42
|
+
*/
|
|
43
|
+
export declare class GuildRankingResponseDto {
|
|
44
|
+
/**
|
|
45
|
+
* 길드 랭킹 정보
|
|
46
|
+
*/
|
|
47
|
+
ranking: GuildRankingDto[];
|
|
48
|
+
constructor(obj: GuildRankingResponseBody);
|
|
39
49
|
}
|
|
40
|
-
export { GuildRankingDto };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OverallRankingBody, OverallRankingResponseBody } from '../../response/ranking/overallRankingBody';
|
|
2
2
|
/**
|
|
3
3
|
* 종합 랭킹 정보
|
|
4
4
|
*/
|
|
5
|
-
declare class OverallRankingDto {
|
|
5
|
+
export declare class OverallRankingDto {
|
|
6
6
|
/**
|
|
7
7
|
* 랭킹 업데이트 일자 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
8
8
|
*/
|
|
@@ -43,6 +43,15 @@ declare class OverallRankingDto {
|
|
|
43
43
|
* 길드 명
|
|
44
44
|
*/
|
|
45
45
|
characterGuildName: string | null;
|
|
46
|
-
constructor(obj:
|
|
46
|
+
constructor(obj: OverallRankingBody);
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* 종합 랭킹 응답 정보
|
|
50
|
+
*/
|
|
51
|
+
export declare class OverallRankingResponseDto {
|
|
52
|
+
/**
|
|
53
|
+
* 종합 랭킹 정보
|
|
54
|
+
*/
|
|
55
|
+
ranking: OverallRankingDto[];
|
|
56
|
+
constructor(obj: OverallRankingResponseBody);
|
|
47
57
|
}
|
|
48
|
-
export { OverallRankingDto };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { TheSeedRankingBody, TheSeedRankingResponseBody } from '../../response/ranking/theSeedRankingBody';
|
|
2
2
|
/**
|
|
3
3
|
* 더 시드 랭킹 정보
|
|
4
4
|
*/
|
|
5
|
-
declare class TheSeedRankingDto {
|
|
5
|
+
export declare class TheSeedRankingDto {
|
|
6
6
|
/**
|
|
7
7
|
* 랭킹 업데이트 일자 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
8
8
|
*/
|
|
@@ -39,6 +39,15 @@ declare class TheSeedRankingDto {
|
|
|
39
39
|
* 더 시드 클리어 시간 기록 (초 단위)
|
|
40
40
|
*/
|
|
41
41
|
theSeedTimeRecord: number;
|
|
42
|
-
constructor(obj:
|
|
42
|
+
constructor(obj: TheSeedRankingBody);
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* 더 시드 랭킹 응답 정보
|
|
46
|
+
*/
|
|
47
|
+
export declare class TheSeedRankingResponseDto {
|
|
48
|
+
/**
|
|
49
|
+
* 더 시드 랭킹 정보
|
|
50
|
+
*/
|
|
51
|
+
ranking: TheSeedRankingDto[];
|
|
52
|
+
constructor(obj: TheSeedRankingResponseBody);
|
|
43
53
|
}
|
|
44
|
-
export { TheSeedRankingDto };
|
package/types/maplestory/api/{dto/ranking/unionRankingDto.d.ts → kms/dto/ranking/unionRanking.d.ts}
RENAMED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { UnionRankingBody, UnionRankingResponseBody } from '../../response/ranking/unionRankingBody';
|
|
2
2
|
/**
|
|
3
3
|
* 유니온 랭킹 정보
|
|
4
4
|
*/
|
|
5
|
-
declare class UnionRankingDto {
|
|
5
|
+
export declare class UnionRankingDto {
|
|
6
6
|
/**
|
|
7
7
|
* 랭킹 업데이트 일자 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
8
8
|
*/
|
|
@@ -35,6 +35,15 @@ declare class UnionRankingDto {
|
|
|
35
35
|
* 유니온 파워
|
|
36
36
|
*/
|
|
37
37
|
unionPower: number;
|
|
38
|
-
constructor(obj:
|
|
38
|
+
constructor(obj: UnionRankingBody);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* 유니온 랭킹 응답 정보
|
|
42
|
+
*/
|
|
43
|
+
export declare class UnionRankingResponseDto {
|
|
44
|
+
/**
|
|
45
|
+
* 유니온 랭킹 정보
|
|
46
|
+
*/
|
|
47
|
+
ranking: UnionRankingDto[];
|
|
48
|
+
constructor(obj: UnionRankingResponseBody);
|
|
39
49
|
}
|
|
40
|
-
export { UnionRankingDto };
|
|
@@ -1,20 +1,21 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as base from '../../../common/dto/union/union';
|
|
2
|
+
import { UnionBody } from '../../response/union/unionBody';
|
|
2
3
|
/**
|
|
3
4
|
* 유니온 정보
|
|
4
5
|
*/
|
|
5
|
-
declare class UnionDto {
|
|
6
|
+
export declare class UnionDto extends base.UnionDto {
|
|
6
7
|
/**
|
|
7
|
-
* 조회 기준일
|
|
8
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
8
9
|
*/
|
|
9
10
|
date: Date | null;
|
|
10
11
|
/**
|
|
11
12
|
* 유니온 레벨
|
|
12
13
|
*/
|
|
13
|
-
unionLevel: number;
|
|
14
|
+
unionLevel: number | null;
|
|
14
15
|
/**
|
|
15
16
|
* 유니온 등급
|
|
16
17
|
*/
|
|
17
|
-
unionGrade: string;
|
|
18
|
+
unionGrade: string | null;
|
|
18
19
|
/**
|
|
19
20
|
* 아티팩트 레벨
|
|
20
21
|
*/
|
|
@@ -27,6 +28,5 @@ declare class UnionDto {
|
|
|
27
28
|
* 보유 아티팩트 포인트
|
|
28
29
|
*/
|
|
29
30
|
unionArtifactPoint: number | null;
|
|
30
|
-
constructor(obj:
|
|
31
|
+
constructor(obj: UnionBody);
|
|
31
32
|
}
|
|
32
|
-
export { UnionDto };
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import * as base from '../../../common/dto/union/unionArtifact';
|
|
2
|
+
import { UnionArtifactBody, UnionArtifactCrystalBody, UnionArtifactEffectBody } from '../../response/union/unionArtifactBody';
|
|
3
|
+
/**
|
|
4
|
+
* 유니온 아티팩트 정보
|
|
5
|
+
*/
|
|
6
|
+
export declare class UnionArtifactDto extends base.UnionArtifactDto {
|
|
7
|
+
/**
|
|
8
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
9
|
+
*/
|
|
10
|
+
date: Date | null;
|
|
11
|
+
/**
|
|
12
|
+
* 아티팩트 효과 정보
|
|
13
|
+
*/
|
|
14
|
+
unionArtifactEffect: UnionArtifactEffectDto[];
|
|
15
|
+
/**
|
|
16
|
+
* 아티팩트 크리스탈 정보
|
|
17
|
+
*/
|
|
18
|
+
unionArtifactCrystal: UnionArtifactCrystalDto[];
|
|
19
|
+
/**
|
|
20
|
+
* 잔여 아티팩트 AP
|
|
21
|
+
*/
|
|
22
|
+
unionArtifactRemainAp: number | null;
|
|
23
|
+
constructor(obj: UnionArtifactBody);
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* 유니온 아티팩트 효과 정보
|
|
27
|
+
*/
|
|
28
|
+
export declare class UnionArtifactEffectDto extends base.UnionArtifactEffectDto {
|
|
29
|
+
/**
|
|
30
|
+
* 아티팩트 효과 명
|
|
31
|
+
*/
|
|
32
|
+
name: string;
|
|
33
|
+
/**
|
|
34
|
+
* 아티팩트 효과 레벨
|
|
35
|
+
*/
|
|
36
|
+
level: number;
|
|
37
|
+
constructor(obj: UnionArtifactEffectBody);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* 유니온 아티팩트 크리스탈 정보
|
|
41
|
+
*/
|
|
42
|
+
export declare class UnionArtifactCrystalDto extends base.UnionArtifactCrystalDto {
|
|
43
|
+
/**
|
|
44
|
+
* 아티팩트 크리스탈 명
|
|
45
|
+
*/
|
|
46
|
+
name: string;
|
|
47
|
+
/**
|
|
48
|
+
* 능력치 유효 여부 (0:유효, 1:유효하지 않음)
|
|
49
|
+
*/
|
|
50
|
+
validityFlag: string;
|
|
51
|
+
/**
|
|
52
|
+
* 능력치 유효 기간 (KST)
|
|
53
|
+
*/
|
|
54
|
+
dateExpire: Date | null;
|
|
55
|
+
/**
|
|
56
|
+
* 능력치 유효 기간 만료 여부
|
|
57
|
+
*/
|
|
58
|
+
isExpired: boolean | null;
|
|
59
|
+
/**
|
|
60
|
+
* 아티팩트 크리스탈 등급
|
|
61
|
+
*/
|
|
62
|
+
level: number;
|
|
63
|
+
/**
|
|
64
|
+
* 아티팩트 크리스탈 첫 번째 옵션 명
|
|
65
|
+
*/
|
|
66
|
+
crystalOptionName1: string;
|
|
67
|
+
/**
|
|
68
|
+
* 아티팩트 크리스탈 두 번째 옵션 명
|
|
69
|
+
*/
|
|
70
|
+
crystalOptionName2: string;
|
|
71
|
+
/**
|
|
72
|
+
* 아티팩트 크리스탈 세 번째 옵션 명
|
|
73
|
+
*/
|
|
74
|
+
crystalOptionName3: string;
|
|
75
|
+
constructor(obj: UnionArtifactCrystalBody);
|
|
76
|
+
}
|