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,66 +0,0 @@
|
|
|
1
|
-
import { CharacterCashItemEquipmentColoringPrismDto } from './characterCashItemEquipmentColoringPrismDto';
|
|
2
|
-
import { CharacterCashItemEquipmentOptionDto } from './characterCashItemEquipmentOptionDto';
|
|
3
|
-
import { CharacterCashItemEquipmentPresetDtoBody } from '../../response/character/characterCashItemEquipmentDtoBody';
|
|
4
|
-
/**
|
|
5
|
-
* 캐릭터 프리셋 장착 캐시 장비 정보
|
|
6
|
-
*/
|
|
7
|
-
declare class CharacterCashItemEquipmentPresetDto {
|
|
8
|
-
/**
|
|
9
|
-
* 캐시 장비 부위 명
|
|
10
|
-
*/
|
|
11
|
-
cashItemEquipmentPart: string;
|
|
12
|
-
/**
|
|
13
|
-
* 캐시 장비 슬롯 위치
|
|
14
|
-
*/
|
|
15
|
-
cashItemEquipmentSlot: string;
|
|
16
|
-
/**
|
|
17
|
-
* 캐시 장비 명
|
|
18
|
-
*/
|
|
19
|
-
cashItemName: string;
|
|
20
|
-
/**
|
|
21
|
-
* 캐시 장비 아이콘
|
|
22
|
-
*/
|
|
23
|
-
cashItemIcon: string;
|
|
24
|
-
/**
|
|
25
|
-
* 캐시 장비 설명
|
|
26
|
-
*/
|
|
27
|
-
cashItemDescription: string | null;
|
|
28
|
-
/**
|
|
29
|
-
* 캐시 장비 옵션
|
|
30
|
-
*/
|
|
31
|
-
cashItemOption: CharacterCashItemEquipmentOptionDto[];
|
|
32
|
-
/**
|
|
33
|
-
* 캐시 장비 유효 기간 (KST)
|
|
34
|
-
*/
|
|
35
|
-
dateExpire: Date | null;
|
|
36
|
-
/**
|
|
37
|
-
* 캐시 장비 유효 기간 만료 여부
|
|
38
|
-
*/
|
|
39
|
-
isExpired: boolean | null;
|
|
40
|
-
/**
|
|
41
|
-
* 캐시 장비 옵션 유효 기간 (KST, 시간 단위 데이터로 분은 일괄 0으로 표기)
|
|
42
|
-
*/
|
|
43
|
-
dateOptionExpire: Date | null;
|
|
44
|
-
/**
|
|
45
|
-
* 캐시 장비 옵션 유효 기간 만료 여부
|
|
46
|
-
*/
|
|
47
|
-
isOptionExpired: boolean | null;
|
|
48
|
-
/**
|
|
49
|
-
* 캐시 장비 라벨 정보
|
|
50
|
-
*/
|
|
51
|
-
cashItemLabel: string | null;
|
|
52
|
-
/**
|
|
53
|
-
* 캐시 장비 컬러링프리즘 정보
|
|
54
|
-
*/
|
|
55
|
-
cashItemColoringPrism: CharacterCashItemEquipmentColoringPrismDto | null;
|
|
56
|
-
/**
|
|
57
|
-
* 아이템 장착 가능 성별
|
|
58
|
-
*/
|
|
59
|
-
itemGender: string | null;
|
|
60
|
-
/**
|
|
61
|
-
* 스킬명
|
|
62
|
-
*/
|
|
63
|
-
skills: string[];
|
|
64
|
-
constructor(obj: CharacterCashItemEquipmentPresetDtoBody);
|
|
65
|
-
}
|
|
66
|
-
export { CharacterCashItemEquipmentPresetDto };
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { CharacterDojangDtoBody } from '../../response/character/characterDojangDtoBody';
|
|
2
|
-
/**
|
|
3
|
-
* 캐릭터 도장 정보
|
|
4
|
-
*/
|
|
5
|
-
declare class CharacterDojangDto {
|
|
6
|
-
/**
|
|
7
|
-
* 조회 기준일
|
|
8
|
-
*/
|
|
9
|
-
date: Date | null;
|
|
10
|
-
/**
|
|
11
|
-
* 캐릭터 직업
|
|
12
|
-
*/
|
|
13
|
-
characterClass: string;
|
|
14
|
-
/**
|
|
15
|
-
* 월드 명
|
|
16
|
-
*/
|
|
17
|
-
worldName: string;
|
|
18
|
-
/**
|
|
19
|
-
* 무릉도장 최고 기록 층수
|
|
20
|
-
*/
|
|
21
|
-
dojangBestFloor: number;
|
|
22
|
-
/**
|
|
23
|
-
* 무릉도장 최고 기록 달성 일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
24
|
-
*/
|
|
25
|
-
dateDojangRecord: Date | null;
|
|
26
|
-
/**
|
|
27
|
-
* 무릉도장 최고 층수 클리어에 걸린 시간 (초)
|
|
28
|
-
*/
|
|
29
|
-
dojangBestTime: number;
|
|
30
|
-
constructor(obj: CharacterDojangDtoBody);
|
|
31
|
-
}
|
|
32
|
-
export { CharacterDojangDto };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { CharacterHexaMatrixEquipmentDto } from './characterHexaMatrixEquipmentDto';
|
|
2
|
-
import { CharacterHexaMatrixDtoBody } from '../../response/character/characterHexaMatrixDtoBody';
|
|
3
|
-
/**
|
|
4
|
-
* 캐릭터 HEXA 코어 정보
|
|
5
|
-
*/
|
|
6
|
-
declare class CharacterHexaMatrixDto {
|
|
7
|
-
/**
|
|
8
|
-
* 조회 기준일
|
|
9
|
-
*/
|
|
10
|
-
date: Date | null;
|
|
11
|
-
/**
|
|
12
|
-
* HEXA 코어 정보
|
|
13
|
-
*/
|
|
14
|
-
characterHexaCoreEquipment: CharacterHexaMatrixEquipmentDto[] | null;
|
|
15
|
-
constructor(obj: CharacterHexaMatrixDtoBody);
|
|
16
|
-
}
|
|
17
|
-
export { CharacterHexaMatrixDto };
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { CharacterHexaMatrixEquipmentLinkedSkillDto } from './characterHexaMatrixEquipmentLinkedSkillDto';
|
|
2
|
-
import { CharacterHexaMatrixEquipmentDtoBody } from '../../response/character/characterHexaMatrixDtoBody';
|
|
3
|
-
/**
|
|
4
|
-
* 캐릭터 HEXA 코어 정보
|
|
5
|
-
*/
|
|
6
|
-
declare class CharacterHexaMatrixEquipmentDto {
|
|
7
|
-
/**
|
|
8
|
-
* 코어 명
|
|
9
|
-
*/
|
|
10
|
-
hexaCoreName: string;
|
|
11
|
-
/**
|
|
12
|
-
* 코어 레벨
|
|
13
|
-
*/
|
|
14
|
-
hexaCoreLevel: number;
|
|
15
|
-
/**
|
|
16
|
-
* 코어 타입
|
|
17
|
-
*/
|
|
18
|
-
hexaCoreType: string;
|
|
19
|
-
/**
|
|
20
|
-
* 연결된 스킬 목록
|
|
21
|
-
*/
|
|
22
|
-
linkedSkill: CharacterHexaMatrixEquipmentLinkedSkillDto[];
|
|
23
|
-
constructor(obj: CharacterHexaMatrixEquipmentDtoBody);
|
|
24
|
-
}
|
|
25
|
-
export { CharacterHexaMatrixEquipmentDto };
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { CharacterHexaMatrixEquipmentLinkedSkillDtoBody } from '../../response/character/characterHexaMatrixDtoBody';
|
|
2
|
-
/**
|
|
3
|
-
* 연결된 HEXA 스킬 정보
|
|
4
|
-
*/
|
|
5
|
-
declare class CharacterHexaMatrixEquipmentLinkedSkillDto {
|
|
6
|
-
/**
|
|
7
|
-
* HEXA 스킬 명
|
|
8
|
-
*/
|
|
9
|
-
hexaSkillId: string;
|
|
10
|
-
constructor(obj: CharacterHexaMatrixEquipmentLinkedSkillDtoBody);
|
|
11
|
-
}
|
|
12
|
-
export { CharacterHexaMatrixEquipmentLinkedSkillDto };
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { CharacterHexaMatrixStatCoreDtoBody } from '../../response/character/characterHexaMatrixStatDtoBody';
|
|
2
|
-
/**
|
|
3
|
-
* 캐릭터 HEXA 스탯 코어 정보
|
|
4
|
-
*/
|
|
5
|
-
declare class CharacterHexaMatrixStatCoreDto {
|
|
6
|
-
/**
|
|
7
|
-
* 슬롯 인덱스
|
|
8
|
-
*/
|
|
9
|
-
slotId: string;
|
|
10
|
-
/**
|
|
11
|
-
* 메인 스탯 명
|
|
12
|
-
*/
|
|
13
|
-
mainStatName: string;
|
|
14
|
-
/**
|
|
15
|
-
* 첫 번째 서브 명
|
|
16
|
-
*/
|
|
17
|
-
subStatName1: string;
|
|
18
|
-
/**
|
|
19
|
-
* 두 번째 서브 명
|
|
20
|
-
*/
|
|
21
|
-
subStatName2: string;
|
|
22
|
-
/**
|
|
23
|
-
* 메인 스탯 레벨
|
|
24
|
-
*/
|
|
25
|
-
mainStatLevel: number;
|
|
26
|
-
/**
|
|
27
|
-
* 첫 번째 서브 레벨
|
|
28
|
-
*/
|
|
29
|
-
subStatLevel1: number;
|
|
30
|
-
/**
|
|
31
|
-
* 두 번째 서브 레벨
|
|
32
|
-
*/
|
|
33
|
-
subStatLevel2: number;
|
|
34
|
-
/**
|
|
35
|
-
* 스탯 코어 등급
|
|
36
|
-
*/
|
|
37
|
-
statGrade: number;
|
|
38
|
-
constructor(obj: CharacterHexaMatrixStatCoreDtoBody);
|
|
39
|
-
}
|
|
40
|
-
export { CharacterHexaMatrixStatCoreDto };
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { CharacterHexaMatrixStatCoreDto } from './characterHexaMatrixStatCoreDto';
|
|
2
|
-
import { CharacterHexaMatrixStatDtoBody } from '../../response/character/characterHexaMatrixStatDtoBody';
|
|
3
|
-
/**
|
|
4
|
-
* 캐릭터 HEXA 스탯 코어 정보
|
|
5
|
-
*/
|
|
6
|
-
declare class CharacterHexaMatrixStatDto {
|
|
7
|
-
/**
|
|
8
|
-
* 조회 기준일
|
|
9
|
-
*/
|
|
10
|
-
date: Date | null;
|
|
11
|
-
/**
|
|
12
|
-
* 캐릭터 직업
|
|
13
|
-
*/
|
|
14
|
-
characterClass: string;
|
|
15
|
-
/**
|
|
16
|
-
* HEXA 스탯 I 코어 정보
|
|
17
|
-
*/
|
|
18
|
-
characterHexaStatCore: CharacterHexaMatrixStatCoreDto[];
|
|
19
|
-
/**
|
|
20
|
-
* HEXA 스탯 II 코어 정보
|
|
21
|
-
*/
|
|
22
|
-
characterHexaStatCore2: CharacterHexaMatrixStatCoreDto[];
|
|
23
|
-
/**
|
|
24
|
-
* HEXA 스탯 III 코어 정보
|
|
25
|
-
*/
|
|
26
|
-
characterHexaStatCore3: CharacterHexaMatrixStatCoreDto[];
|
|
27
|
-
/**
|
|
28
|
-
* 프리셋 HEXA 스탯 I 코어 정보
|
|
29
|
-
*/
|
|
30
|
-
presetHexaStatCore: CharacterHexaMatrixStatCoreDto[];
|
|
31
|
-
/**
|
|
32
|
-
* 프리셋 HEXA 스탯 II 코어 정보
|
|
33
|
-
*/
|
|
34
|
-
presetHexaStatCore2: CharacterHexaMatrixStatCoreDto[];
|
|
35
|
-
/**
|
|
36
|
-
* 프리셋 HEXA 스탯 III 코어 정보
|
|
37
|
-
*/
|
|
38
|
-
presetHexaStatCore3: CharacterHexaMatrixStatCoreDto[];
|
|
39
|
-
constructor(obj: CharacterHexaMatrixStatDtoBody);
|
|
40
|
-
}
|
|
41
|
-
export { CharacterHexaMatrixStatDto };
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import { CharacterHyperStatPresetDto } from './characterHyperStatPresetDto';
|
|
2
|
-
import { CharacterHyperStatDtoBody } from '../../response/character/characterHyperStatDtoBody';
|
|
3
|
-
/**
|
|
4
|
-
* 캐릭터 하이퍼 스탯 정보
|
|
5
|
-
*/
|
|
6
|
-
declare class CharacterHyperStatDto {
|
|
7
|
-
/**
|
|
8
|
-
* 조회 기준일
|
|
9
|
-
*/
|
|
10
|
-
date: Date | null;
|
|
11
|
-
/**
|
|
12
|
-
* 캐릭터 직업
|
|
13
|
-
*/
|
|
14
|
-
characterClass: string;
|
|
15
|
-
/**
|
|
16
|
-
* 적용 중인 프리셋 번호
|
|
17
|
-
*/
|
|
18
|
-
usePresetNo: string;
|
|
19
|
-
/**
|
|
20
|
-
* 사용 가능한 최대 하이퍼스탯 포인트
|
|
21
|
-
*/
|
|
22
|
-
useAvailableHyperStat: number;
|
|
23
|
-
/**
|
|
24
|
-
* 프리셋 1번 하이퍼 스탯 정보
|
|
25
|
-
*/
|
|
26
|
-
hyperStatPreset1: CharacterHyperStatPresetDto[];
|
|
27
|
-
/**
|
|
28
|
-
* 프리셋 1번 하이퍼 스탯 잔여 포인트
|
|
29
|
-
*/
|
|
30
|
-
hyperStatPreset1RemainPoint: number;
|
|
31
|
-
/**
|
|
32
|
-
* 프리셋 2번 하이퍼 스탯 정보
|
|
33
|
-
*/
|
|
34
|
-
hyperStatPreset2: CharacterHyperStatPresetDto[];
|
|
35
|
-
/**
|
|
36
|
-
* 프리셋 2번 하이퍼 스탯 잔여 포인트
|
|
37
|
-
*/
|
|
38
|
-
hyperStatPreset2RemainPoint: number;
|
|
39
|
-
/**
|
|
40
|
-
* 프리셋 3번 하이퍼 스탯 정보
|
|
41
|
-
*/
|
|
42
|
-
hyperStatPreset3: CharacterHyperStatPresetDto[];
|
|
43
|
-
/**
|
|
44
|
-
* 프리셋 3번 하이퍼 스탯 잔여 포인트
|
|
45
|
-
*/
|
|
46
|
-
hyperStatPreset3RemainPoint: number;
|
|
47
|
-
constructor(obj: CharacterHyperStatDtoBody);
|
|
48
|
-
}
|
|
49
|
-
export { CharacterHyperStatDto };
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { CharacterHyperStatPresetDtoBody } from '../../response/character/characterHyperStatDtoBody';
|
|
2
|
-
/**
|
|
3
|
-
* 캐릭터 하이퍼 스탯 프리셋 정보
|
|
4
|
-
*/
|
|
5
|
-
declare class CharacterHyperStatPresetDto {
|
|
6
|
-
/**
|
|
7
|
-
* 스탯 종류
|
|
8
|
-
*/
|
|
9
|
-
statType: string;
|
|
10
|
-
/**
|
|
11
|
-
* 스탯 투자 포인트
|
|
12
|
-
*/
|
|
13
|
-
statPoint: number | null;
|
|
14
|
-
/**
|
|
15
|
-
* 스탯 레벨
|
|
16
|
-
*/
|
|
17
|
-
statLevel: number;
|
|
18
|
-
/**
|
|
19
|
-
* 스탯 상승량
|
|
20
|
-
*/
|
|
21
|
-
statIncrease: string | null;
|
|
22
|
-
constructor(obj: CharacterHyperStatPresetDtoBody);
|
|
23
|
-
}
|
|
24
|
-
export { CharacterHyperStatPresetDto };
|
|
@@ -1,160 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 캐릭터 외형 이미지 정보
|
|
3
|
-
*/
|
|
4
|
-
declare class CharacterImageDto {
|
|
5
|
-
/**
|
|
6
|
-
* 조회 기준일
|
|
7
|
-
*/
|
|
8
|
-
date: Date | null;
|
|
9
|
-
/**
|
|
10
|
-
* 캐릭터 외형 이미지 원본 (URL)
|
|
11
|
-
*/
|
|
12
|
-
originUrl: string;
|
|
13
|
-
/**
|
|
14
|
-
* 캐릭터 외형 기본 이미지 (base64)
|
|
15
|
-
*/
|
|
16
|
-
originImage: string;
|
|
17
|
-
/**
|
|
18
|
-
* 캐릭터 외형 이미지 (base64)
|
|
19
|
-
*/
|
|
20
|
-
image: string;
|
|
21
|
-
/**
|
|
22
|
-
* 캐릭터 액션
|
|
23
|
-
*/
|
|
24
|
-
action: CharacterImageAction;
|
|
25
|
-
/**
|
|
26
|
-
* 캐릭터 감정표현
|
|
27
|
-
*/
|
|
28
|
-
emotion: CharacterImageEmotion;
|
|
29
|
-
/**
|
|
30
|
-
* 캐릭터 무기 모션
|
|
31
|
-
*/
|
|
32
|
-
wmotion: CharacterImageWeaponMotion;
|
|
33
|
-
/**
|
|
34
|
-
* 캐릭터 액션 프레임
|
|
35
|
-
*/
|
|
36
|
-
actionFrame: number | null;
|
|
37
|
-
/**
|
|
38
|
-
* 캐릭터 감정표현 프레임
|
|
39
|
-
*/
|
|
40
|
-
emotionFrame: number | null;
|
|
41
|
-
/**
|
|
42
|
-
* 가로 길이. 배경 크기에 해당함, 96 (default) ~ 1000
|
|
43
|
-
*/
|
|
44
|
-
width: number;
|
|
45
|
-
/**
|
|
46
|
-
* 세로 길이. 배경 크기에 해당함, 96 (default) ~ 1000
|
|
47
|
-
*/
|
|
48
|
-
height: number;
|
|
49
|
-
/**
|
|
50
|
-
* 캐릭터의 가로 좌표
|
|
51
|
-
*/
|
|
52
|
-
x: number | null;
|
|
53
|
-
/**
|
|
54
|
-
* 캐릭터의 세로 좌표.
|
|
55
|
-
*/
|
|
56
|
-
y: number | null;
|
|
57
|
-
constructor(obj: {
|
|
58
|
-
date: Date | null;
|
|
59
|
-
originUrl: string;
|
|
60
|
-
originImage: string;
|
|
61
|
-
image: string;
|
|
62
|
-
action: CharacterImageAction;
|
|
63
|
-
emotion: CharacterImageEmotion;
|
|
64
|
-
wmotion: CharacterImageWeaponMotion;
|
|
65
|
-
actionFrame: number | null;
|
|
66
|
-
emotionFrame: number | null;
|
|
67
|
-
width: number;
|
|
68
|
-
height: number;
|
|
69
|
-
x: number | null;
|
|
70
|
-
y: number | null;
|
|
71
|
-
});
|
|
72
|
-
}
|
|
73
|
-
/**
|
|
74
|
-
* 캐릭터 액션
|
|
75
|
-
*/
|
|
76
|
-
declare enum CharacterImageAction {
|
|
77
|
-
Stand1 = "A00",
|
|
78
|
-
Stand2 = "A01",
|
|
79
|
-
Walk1 = "A02",
|
|
80
|
-
Walk2 = "A03",
|
|
81
|
-
Prone = "A04",
|
|
82
|
-
Fly = "A05",
|
|
83
|
-
Jump = "A06",
|
|
84
|
-
Sit = "A07",
|
|
85
|
-
Ladder = "A08",
|
|
86
|
-
Rope = "A09",
|
|
87
|
-
Heal = "A10",
|
|
88
|
-
Alert = "A11",
|
|
89
|
-
ProneStab = "A12",
|
|
90
|
-
SwingO1 = "A13",
|
|
91
|
-
SwingO2 = "A14",
|
|
92
|
-
SwingO3 = "A15",
|
|
93
|
-
SwingOF = "A16",
|
|
94
|
-
SwingP1 = "A17",
|
|
95
|
-
SwingP2 = "A18",
|
|
96
|
-
SwingPF = "A19",
|
|
97
|
-
SwingT1 = "A20",
|
|
98
|
-
SwingT2 = "A21",
|
|
99
|
-
SwingT3 = "A22",
|
|
100
|
-
SwingTF = "A23",
|
|
101
|
-
StabO1 = "A24",
|
|
102
|
-
StabO2 = "A25",
|
|
103
|
-
StabOF = "A26",
|
|
104
|
-
StabT1 = "A27",
|
|
105
|
-
StabT2 = "A28",
|
|
106
|
-
StabTF = "A29",
|
|
107
|
-
Shoot1 = "A30",
|
|
108
|
-
Shoot2 = "A31",
|
|
109
|
-
ShootF = "A32",
|
|
110
|
-
Dead = "A33",
|
|
111
|
-
GhostWalk = "A34",
|
|
112
|
-
GhostStand = "A35",
|
|
113
|
-
GhostJump = "A36",
|
|
114
|
-
GhostProneStab = "A37",
|
|
115
|
-
GhostLadder = "A38",
|
|
116
|
-
GhostRope = "A39",
|
|
117
|
-
GhostFly = "A40",
|
|
118
|
-
GhostSit = "A41"
|
|
119
|
-
}
|
|
120
|
-
/**
|
|
121
|
-
* 캐릭터 감정표현
|
|
122
|
-
*/
|
|
123
|
-
declare enum CharacterImageEmotion {
|
|
124
|
-
Default = "E00",
|
|
125
|
-
Wink = "E01",
|
|
126
|
-
Smile = "E02",
|
|
127
|
-
Cry = "E03",
|
|
128
|
-
Angry = "E04",
|
|
129
|
-
Bewildered = "E05",
|
|
130
|
-
Blink = "E06",
|
|
131
|
-
Blaze = "E07",
|
|
132
|
-
Bowing = "E08",
|
|
133
|
-
Cheers = "E09",
|
|
134
|
-
Chu = "E10",
|
|
135
|
-
Dam = "E11",
|
|
136
|
-
Despair = "E12",
|
|
137
|
-
Glitter = "E13",
|
|
138
|
-
Hit = "E14",
|
|
139
|
-
Hot = "E15",
|
|
140
|
-
Hum = "E16",
|
|
141
|
-
Love = "E17",
|
|
142
|
-
Oops = "E18",
|
|
143
|
-
Pain = "E19",
|
|
144
|
-
Troubled = "E20",
|
|
145
|
-
QBlue = "E21",
|
|
146
|
-
Shine = "E22",
|
|
147
|
-
Stunned = "E23",
|
|
148
|
-
Vomit = "E24"
|
|
149
|
-
}
|
|
150
|
-
/**
|
|
151
|
-
* 캐릭터 무기 모션
|
|
152
|
-
*/
|
|
153
|
-
declare enum CharacterImageWeaponMotion {
|
|
154
|
-
Default = "W00",
|
|
155
|
-
OneHand = "W01",
|
|
156
|
-
TwoHands = "W02",
|
|
157
|
-
Gun = "W03",
|
|
158
|
-
Nothing = "W04"
|
|
159
|
-
}
|
|
160
|
-
export { CharacterImageDto, CharacterImageAction, CharacterImageEmotion, CharacterImageWeaponMotion };
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
import { CharacterItemEquipmentAddOptionDtoBody } from '../../response/character/characterItemEquipmentDtoBody';
|
|
2
|
-
/**
|
|
3
|
-
* 캐릭터 장비 추가 옵션 정보
|
|
4
|
-
*/
|
|
5
|
-
declare class CharacterItemEquipmentAddOptionDto {
|
|
6
|
-
/**
|
|
7
|
-
* STR
|
|
8
|
-
*/
|
|
9
|
-
str: string;
|
|
10
|
-
/**
|
|
11
|
-
* DEX
|
|
12
|
-
*/
|
|
13
|
-
dex: string;
|
|
14
|
-
/**
|
|
15
|
-
* INT
|
|
16
|
-
*/
|
|
17
|
-
int: string;
|
|
18
|
-
/**
|
|
19
|
-
* LUK
|
|
20
|
-
*/
|
|
21
|
-
luk: string;
|
|
22
|
-
/**
|
|
23
|
-
* 최대 HP
|
|
24
|
-
*/
|
|
25
|
-
maxHp: string;
|
|
26
|
-
/**
|
|
27
|
-
* 최대 MP
|
|
28
|
-
*/
|
|
29
|
-
maxMp: string;
|
|
30
|
-
/**
|
|
31
|
-
* 공격력
|
|
32
|
-
*/
|
|
33
|
-
attackPower: string;
|
|
34
|
-
/**
|
|
35
|
-
* 마력
|
|
36
|
-
*/
|
|
37
|
-
magicPower: string;
|
|
38
|
-
/**
|
|
39
|
-
* 방어력
|
|
40
|
-
*/
|
|
41
|
-
armor: string;
|
|
42
|
-
/**
|
|
43
|
-
* 이동속도
|
|
44
|
-
*/
|
|
45
|
-
speed: string;
|
|
46
|
-
/**
|
|
47
|
-
* 점프력
|
|
48
|
-
*/
|
|
49
|
-
jump: string;
|
|
50
|
-
/**
|
|
51
|
-
* 보스 공격 시 데미지 증가(%)
|
|
52
|
-
*/
|
|
53
|
-
bossDamage: string;
|
|
54
|
-
/**
|
|
55
|
-
* 데미지(%)
|
|
56
|
-
*/
|
|
57
|
-
damage: string;
|
|
58
|
-
/**
|
|
59
|
-
* 올스탯(%)
|
|
60
|
-
*/
|
|
61
|
-
allStat: string;
|
|
62
|
-
/**
|
|
63
|
-
* 착용 레벨 감소
|
|
64
|
-
*/
|
|
65
|
-
equipmentLevelDecrease: number;
|
|
66
|
-
constructor(obj: CharacterItemEquipmentAddOptionDtoBody);
|
|
67
|
-
}
|
|
68
|
-
export { CharacterItemEquipmentAddOptionDto };
|
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
import { CharacterItemEquipmentBaseOptionDtoBody } from '../../response/character/characterItemEquipmentDtoBody';
|
|
2
|
-
/**
|
|
3
|
-
* 캐릭터 장비 기본 옵션 정보
|
|
4
|
-
*/
|
|
5
|
-
declare class CharacterItemEquipmentBaseOptionDto {
|
|
6
|
-
/**
|
|
7
|
-
* STR
|
|
8
|
-
*/
|
|
9
|
-
str: string;
|
|
10
|
-
/**
|
|
11
|
-
* DEX
|
|
12
|
-
*/
|
|
13
|
-
dex: string;
|
|
14
|
-
/**
|
|
15
|
-
* INT
|
|
16
|
-
*/
|
|
17
|
-
int: string;
|
|
18
|
-
/**
|
|
19
|
-
* LUK
|
|
20
|
-
*/
|
|
21
|
-
luk: string;
|
|
22
|
-
/**
|
|
23
|
-
* 최대 HP
|
|
24
|
-
*/
|
|
25
|
-
maxHp: string;
|
|
26
|
-
/**
|
|
27
|
-
* 최대 MP
|
|
28
|
-
*/
|
|
29
|
-
maxMp: string;
|
|
30
|
-
/**
|
|
31
|
-
* 공격력
|
|
32
|
-
*/
|
|
33
|
-
attackPower: string;
|
|
34
|
-
/**
|
|
35
|
-
* 마력
|
|
36
|
-
*/
|
|
37
|
-
magicPower: string;
|
|
38
|
-
/**
|
|
39
|
-
* 방어력
|
|
40
|
-
*/
|
|
41
|
-
armor: string;
|
|
42
|
-
/**
|
|
43
|
-
* 이동속도
|
|
44
|
-
*/
|
|
45
|
-
speed: string;
|
|
46
|
-
/**
|
|
47
|
-
* 점프력
|
|
48
|
-
*/
|
|
49
|
-
jump: string;
|
|
50
|
-
/**
|
|
51
|
-
* 보스 공격 시 데미지 증가(%)
|
|
52
|
-
*/
|
|
53
|
-
bossDamage: string;
|
|
54
|
-
/**
|
|
55
|
-
* 몬스터 방어율 무시(%)
|
|
56
|
-
*/
|
|
57
|
-
ignoreMonsterArmor: string;
|
|
58
|
-
/**
|
|
59
|
-
* 올스탯(%)
|
|
60
|
-
*/
|
|
61
|
-
allStat: string;
|
|
62
|
-
/**
|
|
63
|
-
* 최대 HP(%)
|
|
64
|
-
*/
|
|
65
|
-
maxHpRate: string;
|
|
66
|
-
/**
|
|
67
|
-
* 최대 MP(%)
|
|
68
|
-
*/
|
|
69
|
-
maxMpRate: string;
|
|
70
|
-
/**
|
|
71
|
-
* 기본 착용 레벨
|
|
72
|
-
*/
|
|
73
|
-
baseEquipmentLevel: number;
|
|
74
|
-
constructor(obj: CharacterItemEquipmentBaseOptionDtoBody);
|
|
75
|
-
}
|
|
76
|
-
export { CharacterItemEquipmentBaseOptionDto };
|