maplestory-openapi 2.13.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +37 -6
- package/dist/cjs/_virtual/_commonjsHelpers.js +7 -0
- package/dist/cjs/_virtual/index.js_commonjs-exports.js +7 -0
- package/dist/cjs/_virtual/index.js_commonjs-exports2.js +7 -0
- package/dist/cjs/_virtual/index.js_commonjs-exports3.js +7 -0
- package/dist/cjs/_virtual/timezone.js_commonjs-module.js +7 -0
- package/dist/cjs/_virtual/utc.js_commonjs-module.js +7 -0
- package/dist/cjs/index.js +133 -0
- package/dist/cjs/maplestory/api/common/dto/character/character.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterAbility.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterAndroidEquipment.js +29 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterBasic.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterBeautyEquipment.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterCashItemEquipment.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterDojang.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterHexaMatrix.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterHexaMatrixStat.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterHyperStat.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterImage.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterItemEquipment.js +38 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterLinkSkill.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterList.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterPetEquipment.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterPopularity.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterPropensity.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterSetEffect.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterSkill.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterStat.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterSymbolEquipment.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterVMatrix.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/guild/guild.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/guild/guildBasic.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/union/union.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/union/unionArtifact.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/union/unionRaider.js +23 -0
- package/dist/cjs/maplestory/api/common/enum/characterImage.js +94 -0
- package/dist/cjs/maplestory/api/common/enum/potentialOptionGrade.js +11 -0
- package/dist/cjs/maplestory/api/common/lib.js +26 -0
- package/dist/cjs/maplestory/api/common/mapleStoryApi.js +121 -0
- package/dist/cjs/maplestory/api/common/mapleStoryApiError.js +50 -0
- package/dist/cjs/maplestory/api/kms/dto/character/character.js +22 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterAbility.js +108 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterAndroidEquipment.js +418 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterBasic.js +99 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterBeautyEquipment.js +172 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterCashItemEquipment.js +228 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterDojang.js +49 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterHexaMatrix.js +73 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterHexaMatrixStat.js +113 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterHyperStat.js +97 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterImage.js +81 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterItemEquipment.js +1173 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterLinkSkill.js +115 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterList.js +77 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterPetEquipment.js +332 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterPopularity.js +27 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterPropensity.js +52 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterSetEffect.js +97 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterSkill.js +77 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterStat.js +57 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterSymbolEquipment.js +119 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterVMatrix.js +88 -0
- package/dist/cjs/maplestory/api/kms/dto/guild/guild.js +22 -0
- package/dist/cjs/maplestory/api/kms/dto/guild/guildBasic.js +107 -0
- package/dist/cjs/maplestory/api/kms/dto/history/cubeHistory.js +165 -0
- package/dist/cjs/maplestory/api/kms/dto/history/potentialHistory.js +160 -0
- package/dist/cjs/maplestory/api/kms/dto/history/starforceHistory.js +159 -0
- package/dist/cjs/maplestory/api/kms/dto/inspectionInfo.js +34 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/cashshopNoticeDetail.js +55 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/cashshopNoticeList.js +69 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/eventNoticeDetail.js +44 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/eventNoticeList.js +58 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/noticeDetail.js +34 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/noticeList.js +48 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/updateNoticeDetail.js +34 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/updateNoticeList.js +48 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/achievementRanking.js +68 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/dojangRanking.js +73 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/guildRanking.js +68 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/overallRanking.js +78 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/theSeedRanking.js +73 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/unionRanking.js +68 -0
- package/dist/cjs/maplestory/api/kms/dto/union/union.js +47 -0
- package/dist/cjs/maplestory/api/kms/dto/union/unionArtifact.js +111 -0
- package/dist/cjs/maplestory/api/kms/dto/union/unionChampion.js +77 -0
- package/dist/cjs/maplestory/api/kms/dto/union/unionRaider.js +209 -0
- package/dist/cjs/maplestory/api/kms/kms.js +170 -0
- package/dist/cjs/maplestory/api/kms/mapleStoryApi.js +1321 -0
- package/dist/cjs/maplestory/api/msea/dto/character/character.js +22 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterAbility.js +108 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterAndroidEquipment.js +419 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterBasic.js +99 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterBeautyEquipment.js +172 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterCashItemEquipment.js +223 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterDojang.js +49 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterHexaMatrix.js +73 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterHexaMatrixStat.js +113 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterHyperStat.js +97 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterImage.js +81 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterItemEquipment.js +1112 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterLinkSkill.js +115 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterPetEquipment.js +332 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterPopularity.js +27 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterPropensity.js +52 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterSetEffect.js +97 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterSkill.js +77 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterStat.js +57 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterSymbolEquipment.js +119 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterVMatrix.js +88 -0
- package/dist/cjs/maplestory/api/msea/dto/guild/guild.js +22 -0
- package/dist/cjs/maplestory/api/msea/dto/guild/guildBasic.js +107 -0
- package/dist/cjs/maplestory/api/msea/dto/union/union.js +47 -0
- package/dist/cjs/maplestory/api/msea/dto/union/unionArtifact.js +111 -0
- package/dist/cjs/maplestory/api/msea/dto/union/unionRaider.js +214 -0
- package/dist/cjs/maplestory/api/msea/mapleStoryApi.js +802 -0
- package/dist/cjs/maplestory/api/msea/msea.js +109 -0
- package/dist/cjs/node_modules/base64-js/index.js +154 -0
- package/dist/cjs/node_modules/buffer/index.js +2116 -0
- package/dist/cjs/node_modules/dayjs/plugin/timezone.js +12 -0
- package/dist/cjs/node_modules/dayjs/plugin/utc.js +12 -0
- package/dist/cjs/node_modules/ieee754/index.js +92 -0
- package/dist/esm/_virtual/_commonjsHelpers.js +3 -0
- package/dist/esm/_virtual/index.js_commonjs-exports.js +3 -0
- package/dist/esm/_virtual/index.js_commonjs-exports2.js +3 -0
- package/dist/esm/_virtual/index.js_commonjs-exports3.js +3 -0
- package/dist/esm/_virtual/timezone.js_commonjs-module.js +3 -0
- package/dist/esm/_virtual/utc.js_commonjs-module.js +3 -0
- package/dist/esm/index.js +30 -0
- package/dist/esm/maplestory/api/common/dto/character/character.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterAbility.js +8 -0
- package/dist/esm/maplestory/api/common/dto/character/characterAndroidEquipment.js +18 -0
- package/dist/esm/maplestory/api/common/dto/character/characterBasic.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterBeautyEquipment.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterCashItemEquipment.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterDojang.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterHexaMatrix.js +8 -0
- package/dist/esm/maplestory/api/common/dto/character/characterHexaMatrixStat.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterHyperStat.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterImage.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterItemEquipment.js +24 -0
- package/dist/esm/maplestory/api/common/dto/character/characterLinkSkill.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterList.js +8 -0
- package/dist/esm/maplestory/api/common/dto/character/characterPetEquipment.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterPopularity.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterPropensity.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterSetEffect.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterSkill.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterStat.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterSymbolEquipment.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterVMatrix.js +6 -0
- package/dist/esm/maplestory/api/common/dto/guild/guild.js +4 -0
- package/dist/esm/maplestory/api/common/dto/guild/guildBasic.js +6 -0
- package/dist/esm/maplestory/api/common/dto/union/union.js +4 -0
- package/dist/esm/maplestory/api/common/dto/union/unionArtifact.js +8 -0
- package/dist/esm/maplestory/api/common/dto/union/unionRaider.js +14 -0
- package/dist/esm/maplestory/api/common/enum/characterImage.js +92 -0
- package/dist/esm/maplestory/api/common/enum/potentialOptionGrade.js +9 -0
- package/dist/esm/maplestory/api/common/lib.js +22 -0
- package/dist/esm/maplestory/api/common/mapleStoryApi.js +112 -0
- package/dist/esm/maplestory/api/common/mapleStoryApiError.js +46 -0
- package/dist/esm/maplestory/api/kms/dto/character/character.js +18 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterAbility.js +102 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterAndroidEquipment.js +407 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterBasic.js +95 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterBeautyEquipment.js +165 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterCashItemEquipment.js +221 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterDojang.js +45 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterHexaMatrix.js +67 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterHexaMatrixStat.js +108 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterHyperStat.js +92 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterImage.js +77 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterItemEquipment.js +1158 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterLinkSkill.js +110 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterList.js +71 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterPetEquipment.js +325 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterPopularity.js +23 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterPropensity.js +48 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterSetEffect.js +90 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterSkill.js +72 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterStat.js +52 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterSymbolEquipment.js +114 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterVMatrix.js +83 -0
- package/dist/esm/maplestory/api/kms/dto/guild/guild.js +18 -0
- package/dist/esm/maplestory/api/kms/dto/guild/guildBasic.js +102 -0
- package/dist/esm/maplestory/api/kms/dto/history/cubeHistory.js +159 -0
- package/dist/esm/maplestory/api/kms/dto/history/potentialHistory.js +154 -0
- package/dist/esm/maplestory/api/kms/dto/history/starforceHistory.js +153 -0
- package/dist/esm/maplestory/api/kms/dto/inspectionInfo.js +30 -0
- package/dist/esm/maplestory/api/kms/dto/notice/cashshopNoticeDetail.js +51 -0
- package/dist/esm/maplestory/api/kms/dto/notice/cashshopNoticeList.js +64 -0
- package/dist/esm/maplestory/api/kms/dto/notice/eventNoticeDetail.js +40 -0
- package/dist/esm/maplestory/api/kms/dto/notice/eventNoticeList.js +53 -0
- package/dist/esm/maplestory/api/kms/dto/notice/noticeDetail.js +30 -0
- package/dist/esm/maplestory/api/kms/dto/notice/noticeList.js +43 -0
- package/dist/esm/maplestory/api/kms/dto/notice/updateNoticeDetail.js +30 -0
- package/dist/esm/maplestory/api/kms/dto/notice/updateNoticeList.js +43 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/achievementRanking.js +63 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/dojangRanking.js +68 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/guildRanking.js +63 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/overallRanking.js +73 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/theSeedRanking.js +68 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/unionRanking.js +63 -0
- package/dist/esm/maplestory/api/kms/dto/union/union.js +43 -0
- package/dist/esm/maplestory/api/kms/dto/union/unionArtifact.js +105 -0
- package/dist/esm/maplestory/api/kms/dto/union/unionChampion.js +71 -0
- package/dist/esm/maplestory/api/kms/dto/union/unionRaider.js +200 -0
- package/dist/esm/maplestory/api/kms/kms.js +47 -0
- package/dist/esm/maplestory/api/kms/mapleStoryApi.js +1312 -0
- package/dist/esm/maplestory/api/msea/dto/character/character.js +18 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterAbility.js +102 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterAndroidEquipment.js +408 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterBasic.js +95 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterBeautyEquipment.js +165 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterCashItemEquipment.js +216 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterDojang.js +45 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterHexaMatrix.js +67 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterHexaMatrixStat.js +108 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterHyperStat.js +92 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterImage.js +77 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterItemEquipment.js +1098 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterLinkSkill.js +110 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterPetEquipment.js +325 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterPopularity.js +23 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterPropensity.js +48 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterSetEffect.js +90 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterSkill.js +72 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterStat.js +52 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterSymbolEquipment.js +114 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterVMatrix.js +83 -0
- package/dist/esm/maplestory/api/msea/dto/guild/guild.js +18 -0
- package/dist/esm/maplestory/api/msea/dto/guild/guildBasic.js +102 -0
- package/dist/esm/maplestory/api/msea/dto/union/union.js +43 -0
- package/dist/esm/maplestory/api/msea/dto/union/unionArtifact.js +105 -0
- package/dist/esm/maplestory/api/msea/dto/union/unionRaider.js +205 -0
- package/dist/esm/maplestory/api/msea/mapleStoryApi.js +794 -0
- package/dist/esm/maplestory/api/msea/msea.js +27 -0
- package/dist/esm/node_modules/base64-js/index.js +151 -0
- package/dist/esm/node_modules/buffer/index.js +2113 -0
- package/dist/esm/node_modules/dayjs/plugin/timezone.js +10 -0
- package/dist/esm/node_modules/dayjs/plugin/utc.js +10 -0
- package/dist/esm/node_modules/ieee754/index.js +89 -0
- package/dist/index.min.js +1 -10
- package/package.json +14 -3
- package/types/index.d.ts +30 -111
- package/types/maplestory/api/common/dto/character/character.d.ts +3 -0
- package/types/maplestory/api/common/dto/character/characterAbility.d.ts +19 -0
- package/types/maplestory/api/common/dto/character/characterAndroidEquipment.d.ts +77 -0
- package/types/maplestory/api/common/dto/character/characterBasic.d.ts +18 -0
- package/types/maplestory/api/common/dto/character/characterBeautyEquipment.d.ts +30 -0
- package/types/maplestory/api/common/dto/character/characterCashItemEquipment.d.ts +40 -0
- package/types/maplestory/api/common/dto/character/characterDojang.d.ts +8 -0
- package/types/maplestory/api/common/dto/character/characterHexaMatrix.d.ts +13 -0
- package/types/maplestory/api/common/dto/character/characterHexaMatrixStat.d.ts +20 -0
- package/types/maplestory/api/common/dto/character/characterHyperStat.d.ts +18 -0
- package/types/maplestory/api/common/dto/character/characterImage.d.ts +16 -0
- package/types/maplestory/api/common/dto/character/characterItemEquipment.d.ts +216 -0
- package/types/maplestory/api/common/dto/character/characterLinkSkill.d.ts +20 -0
- package/types/maplestory/api/common/dto/character/characterList.d.ts +14 -0
- package/types/maplestory/api/common/dto/character/characterPetEquipment.d.ts +59 -0
- package/types/maplestory/api/common/dto/character/characterPopularity.d.ts +4 -0
- package/types/maplestory/api/common/dto/character/characterPropensity.d.ts +9 -0
- package/types/maplestory/api/common/dto/character/characterSetEffect.d.ts +18 -0
- package/types/maplestory/api/common/dto/character/characterSkill.d.ts +14 -0
- package/types/maplestory/api/common/dto/character/characterStat.d.ts +10 -0
- package/types/maplestory/api/common/dto/character/characterSymbolEquipment.d.ts +22 -0
- package/types/maplestory/api/common/dto/character/characterVMatrix.d.ts +16 -0
- package/types/maplestory/api/common/dto/guild/guild.d.ts +3 -0
- package/types/maplestory/api/common/dto/guild/guildBasic.d.ts +20 -0
- package/types/maplestory/api/common/dto/union/union.d.ts +8 -0
- package/types/maplestory/api/common/dto/union/unionArtifact.d.ts +20 -0
- package/types/maplestory/api/common/dto/union/unionRaider.d.ts +38 -0
- package/types/maplestory/api/common/enum/characterImage.d.ts +87 -0
- package/types/maplestory/api/common/enum/potentialOptionGrade.d.ts +6 -0
- package/types/maplestory/api/common/lib.d.ts +7 -0
- package/types/maplestory/api/common/mapleStoryApi.d.ts +140 -0
- package/types/maplestory/api/{mapleStoryApiError.d.ts → common/mapleStoryApiError.d.ts} +3 -4
- package/types/maplestory/api/common/mapleStoryApiErrorBody.d.ts +6 -0
- package/types/maplestory/api/kms/dto/character/character.d.ts +12 -0
- package/types/maplestory/api/kms/dto/character/characterAbility.d.ts +72 -0
- package/types/maplestory/api/kms/dto/character/characterAndroidEquipment.d.ts +294 -0
- package/types/maplestory/api/{dto/character/characterBasicDto.d.ts → kms/dto/character/characterBasic.d.ts} +7 -4
- package/types/maplestory/api/kms/dto/character/characterBeautyEquipment.d.ts +117 -0
- package/types/maplestory/api/kms/dto/character/characterCashItemEquipment.d.ts +158 -0
- package/types/maplestory/api/kms/dto/character/characterDojang.d.ts +32 -0
- package/types/maplestory/api/kms/dto/character/characterHexaMatrix.d.ts +48 -0
- package/types/maplestory/api/kms/dto/character/characterHexaMatrixStat.d.ts +78 -0
- package/types/maplestory/api/kms/dto/character/characterHyperStat.d.ts +70 -0
- package/types/maplestory/api/kms/dto/character/characterImage.d.ts +74 -0
- package/types/maplestory/api/kms/dto/character/characterItemEquipment.d.ts +890 -0
- package/types/maplestory/api/kms/dto/character/characterLinkSkill.d.ts +78 -0
- package/types/maplestory/api/kms/dto/character/characterList.d.ts +52 -0
- package/types/maplestory/api/{dto/character/characterPetEquipmentDto.d.ts → kms/dto/character/characterPetEquipment.d.ts} +79 -7
- package/types/maplestory/api/kms/dto/character/characterPopularity.d.ts +16 -0
- package/types/maplestory/api/kms/dto/character/characterPropensity.d.ts +36 -0
- package/types/maplestory/api/kms/dto/character/characterSetEffect.d.ts +66 -0
- package/types/maplestory/api/kms/dto/character/characterSkill.d.ts +54 -0
- package/types/maplestory/api/kms/dto/character/characterStat.d.ts +38 -0
- package/types/maplestory/api/{dto/character/characterSymbolEquipmentInfoDto.d.ts → kms/dto/character/characterSymbolEquipment.d.ts} +22 -4
- package/types/maplestory/api/kms/dto/character/characterVMatrix.d.ts +62 -0
- package/types/maplestory/api/kms/dto/guild/guild.d.ts +12 -0
- package/types/maplestory/api/kms/dto/guild/guildBasic.d.ts +78 -0
- package/types/maplestory/api/{dto/history/cubeHistoryDto.d.ts → kms/dto/history/cubeHistory.d.ts} +37 -6
- package/types/maplestory/api/{dto/history/potentialHistoryDto.d.ts → kms/dto/history/potentialHistory.d.ts} +37 -6
- package/types/maplestory/api/{dto/history/starforceHistoryDto.d.ts → kms/dto/history/starforceHistory.d.ts} +47 -5
- package/types/maplestory/api/{dto/inspectionInfoDto.d.ts → kms/dto/inspectionInfo.d.ts} +1 -2
- package/types/maplestory/api/{dto/notice/cashshopNoticeDetailDto.d.ts → kms/dto/notice/cashshopNoticeDetail.d.ts} +3 -4
- package/types/maplestory/api/{dto/notice/cashshopNoticeListItemDto.d.ts → kms/dto/notice/cashshopNoticeList.d.ts} +13 -4
- package/types/maplestory/api/{dto/notice/eventNoticeDetailDto.d.ts → kms/dto/notice/eventNoticeDetail.d.ts} +3 -4
- package/types/maplestory/api/kms/dto/notice/eventNoticeList.d.ts +41 -0
- package/types/maplestory/api/{dto/notice/noticeDetailDto.d.ts → kms/dto/notice/noticeDetail.d.ts} +3 -4
- package/types/maplestory/api/kms/dto/notice/noticeList.d.ts +33 -0
- package/types/maplestory/api/{dto/notice/updateNoticeDetailDto.d.ts → kms/dto/notice/updateNoticeDetail.d.ts} +3 -4
- package/types/maplestory/api/kms/dto/notice/updateNoticeList.d.ts +33 -0
- package/types/maplestory/api/{dto/ranking/achievementRankingDto.d.ts → kms/dto/ranking/achievementRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/dojangRankingDto.d.ts → kms/dto/ranking/dojangRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/guildRankingDto.d.ts → kms/dto/ranking/guildRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/overallRankingDto.d.ts → kms/dto/ranking/overallRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/theSeedRankingDto.d.ts → kms/dto/ranking/theSeedRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/unionRankingDto.d.ts → kms/dto/ranking/unionRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/union/unionDto.d.ts → kms/dto/union/union.d.ts} +7 -7
- package/types/maplestory/api/kms/dto/union/unionArtifact.d.ts +76 -0
- package/types/maplestory/api/kms/dto/union/unionChampion.d.ts +55 -0
- package/types/maplestory/api/kms/dto/union/unionRaider.d.ts +142 -0
- package/types/maplestory/api/kms/index.d.ts +47 -0
- package/types/maplestory/api/{mapleStoryApi.d.ts → kms/mapleStoryApi.d.ts} +94 -89
- package/types/maplestory/api/kms/response/character/characterAbilityBody.d.ts +19 -0
- package/types/maplestory/api/{response/character/characterAndroidEquipmentDtoBody.d.ts → kms/response/character/characterAndroidEquipmentBody.d.ts} +20 -21
- package/types/maplestory/api/{response/character/characterBasicDtoBody.d.ts → kms/response/character/characterBasicBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/character/characterBeautyEquipmentBody.d.ts +30 -0
- package/types/maplestory/api/kms/response/character/characterBody.d.ts +3 -0
- package/types/maplestory/api/{response/character/characterCashItemEquipmentDtoBody.d.ts → kms/response/character/characterCashItemEquipmentBody.d.ts} +17 -18
- package/types/maplestory/api/kms/response/character/characterDojangBody.d.ts +8 -0
- package/types/maplestory/api/kms/response/character/characterHexaMatrixBody.d.ts +13 -0
- package/types/maplestory/api/kms/response/character/characterHexaMatrixStatBody.d.ts +20 -0
- package/types/maplestory/api/kms/response/character/characterHyperStatBody.d.ts +18 -0
- package/types/maplestory/api/{response/character/characterItemEquipmentDtoBody.d.ts → kms/response/character/characterItemEquipmentBody.d.ts} +35 -36
- package/types/maplestory/api/kms/response/character/characterLinkSkillBody.d.ts +20 -0
- package/types/maplestory/api/kms/response/character/characterListBody.d.ts +14 -0
- package/types/maplestory/api/{response/character/characterPetEquipmentDtoBody.d.ts → kms/response/character/characterPetEquipmentBody.d.ts} +11 -12
- package/types/maplestory/api/kms/response/character/characterPopularityBody.d.ts +4 -0
- package/types/maplestory/api/kms/response/character/characterPropensityBody.d.ts +9 -0
- package/types/maplestory/api/kms/response/character/characterSetEffectBody.d.ts +18 -0
- package/types/maplestory/api/kms/response/character/characterSkillBody.d.ts +14 -0
- package/types/maplestory/api/kms/response/character/characterStatBody.d.ts +10 -0
- package/types/maplestory/api/{response/character/characterSymbolEquipmentDtoBody.d.ts → kms/response/character/characterSymbolEquipmentBody.d.ts} +4 -5
- package/types/maplestory/api/{response/character/characterVMatrixDtoBody.d.ts → kms/response/character/characterVMatrixBody.d.ts} +4 -5
- package/types/maplestory/api/{response/guild/guildBasicDtoBody.d.ts → kms/response/guild/guildBasicBody.d.ts} +4 -5
- package/types/maplestory/api/kms/response/guild/guildBody.d.ts +3 -0
- package/types/maplestory/api/kms/response/history/cubeHistoryBody.d.ts +29 -0
- package/types/maplestory/api/kms/response/history/potentialHistoryBody.d.ts +28 -0
- package/types/maplestory/api/{response/history/starforceHistoryDtoBody.d.ts → kms/response/history/starforceHistoryBody.d.ts} +14 -4
- package/types/maplestory/api/{response → kms/response}/inspectionInfoSoapBody.d.ts +1 -2
- package/types/maplestory/api/{response/notice/cashshopNoticeDetailDtoBody.d.ts → kms/response/notice/cashshopNoticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/cashshopNoticeListBody.d.ts +12 -0
- package/types/maplestory/api/{response/notice/eventNoticeDetailDtoBody.d.ts → kms/response/notice/eventNoticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/eventNoticeListBody.d.ts +11 -0
- package/types/maplestory/api/{response/notice/noticeDetailDtoBody.d.ts → kms/response/notice/noticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/noticeListBody.d.ts +9 -0
- package/types/maplestory/api/{response/notice/updateNoticeDetailDtoBody.d.ts → kms/response/notice/updateNoticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/updateNoticeListBody.d.ts +9 -0
- package/types/maplestory/api/kms/response/ranking/achievementRankingBody.d.ts +12 -0
- package/types/maplestory/api/kms/response/ranking/dojangRankingBody.d.ts +13 -0
- package/types/maplestory/api/kms/response/ranking/guildRankingBody.d.ts +12 -0
- package/types/maplestory/api/{response/ranking/overallRankingResponseDtoBody.d.ts → kms/response/ranking/overallRankingBody.d.ts} +3 -4
- package/types/maplestory/api/kms/response/ranking/rankingResponseBody.d.ts +6 -0
- package/types/maplestory/api/kms/response/ranking/theSeedRankingBody.d.ts +13 -0
- package/types/maplestory/api/kms/response/ranking/unionRankingBody.d.ts +12 -0
- package/types/maplestory/api/kms/response/union/unionArtifactBody.d.ts +19 -0
- package/types/maplestory/api/{response/union/unionDtoBody.d.ts → kms/response/union/unionBody.d.ts} +3 -4
- package/types/maplestory/api/kms/response/union/unionChampionBody.d.ts +15 -0
- package/types/maplestory/api/kms/response/union/unionRaiderBody.d.ts +38 -0
- package/types/maplestory/api/msea/dto/character/character.d.ts +12 -0
- package/types/maplestory/api/msea/dto/character/characterAbility.d.ts +72 -0
- package/types/maplestory/api/msea/dto/character/characterAndroidEquipment.d.ts +295 -0
- package/types/maplestory/api/msea/dto/character/characterBasic.d.ts +72 -0
- package/types/maplestory/api/msea/dto/character/characterBeautyEquipment.d.ts +117 -0
- package/types/maplestory/api/msea/dto/character/characterCashItemEquipment.d.ts +154 -0
- package/types/maplestory/api/msea/dto/character/characterDojang.d.ts +32 -0
- package/types/maplestory/api/msea/dto/character/characterHexaMatrix.d.ts +48 -0
- package/types/maplestory/api/msea/dto/character/characterHexaMatrixStat.d.ts +78 -0
- package/types/maplestory/api/msea/dto/character/characterHyperStat.d.ts +70 -0
- package/types/maplestory/api/msea/dto/character/characterImage.d.ts +74 -0
- package/types/maplestory/api/msea/dto/character/characterItemEquipment.d.ts +844 -0
- package/types/maplestory/api/msea/dto/character/characterLinkSkill.d.ts +78 -0
- package/types/maplestory/api/msea/dto/character/characterPetEquipment.d.ts +230 -0
- package/types/maplestory/api/msea/dto/character/characterPopularity.d.ts +16 -0
- package/types/maplestory/api/msea/dto/character/characterPropensity.d.ts +36 -0
- package/types/maplestory/api/msea/dto/character/characterSetEffect.d.ts +66 -0
- package/types/maplestory/api/msea/dto/character/characterSkill.d.ts +54 -0
- package/types/maplestory/api/msea/dto/character/characterStat.d.ts +38 -0
- package/types/maplestory/api/msea/dto/character/characterSymbolEquipment.d.ts +86 -0
- package/types/maplestory/api/msea/dto/character/characterVMatrix.d.ts +62 -0
- package/types/maplestory/api/msea/dto/guild/guild.d.ts +12 -0
- package/types/maplestory/api/msea/dto/guild/guildBasic.d.ts +78 -0
- package/types/maplestory/api/msea/dto/union/union.d.ts +32 -0
- package/types/maplestory/api/msea/dto/union/unionArtifact.d.ts +76 -0
- package/types/maplestory/api/msea/dto/union/unionRaider.d.ts +147 -0
- package/types/maplestory/api/msea/index.d.ts +27 -0
- package/types/maplestory/api/msea/mapleStoryApi.d.ts +364 -0
- package/types/maplestory/api/msea/response/character/characterAbilityBody.d.ts +19 -0
- package/types/maplestory/api/msea/response/character/characterAndroidEquipmentBody.d.ts +75 -0
- package/types/maplestory/api/msea/response/character/characterBasicBody.d.ts +16 -0
- package/types/maplestory/api/msea/response/character/characterBeautyEquipmentBody.d.ts +30 -0
- package/types/maplestory/api/msea/response/character/characterBody.d.ts +3 -0
- package/types/maplestory/api/msea/response/character/characterCashItemEquipmentBody.d.ts +38 -0
- package/types/maplestory/api/msea/response/character/characterDojangBody.d.ts +8 -0
- package/types/maplestory/api/msea/response/character/characterHexaMatrixBody.d.ts +13 -0
- package/types/maplestory/api/msea/response/character/characterHexaMatrixStatBody.d.ts +20 -0
- package/types/maplestory/api/msea/response/character/characterHyperStatBody.d.ts +18 -0
- package/types/maplestory/api/msea/response/character/characterItemEquipmentBody.d.ts +190 -0
- package/types/maplestory/api/msea/response/character/characterLinkSkillBody.d.ts +20 -0
- package/types/maplestory/api/msea/response/character/characterPetEquipmentBody.d.ts +56 -0
- package/types/maplestory/api/msea/response/character/characterPopularityBody.d.ts +4 -0
- package/types/maplestory/api/msea/response/character/characterPropensityBody.d.ts +9 -0
- package/types/maplestory/api/msea/response/character/characterSetEffectBody.d.ts +18 -0
- package/types/maplestory/api/msea/response/character/characterSkillBody.d.ts +14 -0
- package/types/maplestory/api/msea/response/character/characterStatBody.d.ts +10 -0
- package/types/maplestory/api/msea/response/character/characterSymbolEquipmentBody.d.ts +22 -0
- package/types/maplestory/api/msea/response/character/characterVMatrixBody.d.ts +16 -0
- package/types/maplestory/api/msea/response/guild/guildBasicBody.d.ts +20 -0
- package/types/maplestory/api/msea/response/guild/guildBody.d.ts +3 -0
- package/types/maplestory/api/msea/response/union/unionArtifactBody.d.ts +19 -0
- package/types/maplestory/api/msea/response/union/unionBody.d.ts +8 -0
- package/types/maplestory/api/msea/response/union/unionRaiderBody.d.ts +38 -0
- package/dist/index.js +0 -9120
- package/dist/index.mjs +0 -9002
- package/types/maplestory/api/dto/character/characterAbilityDto.d.ts +0 -42
- package/types/maplestory/api/dto/character/characterAbilityInfoDto.d.ts +0 -20
- package/types/maplestory/api/dto/character/characterAbilityPresetDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterAndroidCashItemEquipmentColoringPrismDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterAndroidCashItemEquipmentDto.d.ts +0 -58
- package/types/maplestory/api/dto/character/characterAndroidCashItemEquipmentOptionDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterAndroidEquipmentDto.d.ts +0 -85
- package/types/maplestory/api/dto/character/characterAndroidEquipmentFaceDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterAndroidEquipmentHairDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterAndroidEquipmentPresetDto.d.ts +0 -59
- package/types/maplestory/api/dto/character/characterAndroidEquipmentSkinDto.d.ts +0 -28
- package/types/maplestory/api/dto/character/characterBeautyEquipmentDto.d.ts +0 -50
- package/types/maplestory/api/dto/character/characterBeautyEquipmentFaceDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterBeautyEquipmentHairDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterBeautyEquipmentSkinDto.d.ts +0 -28
- package/types/maplestory/api/dto/character/characterCashItemEquipmentColoringPrismDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterCashItemEquipmentDto.d.ts +0 -61
- package/types/maplestory/api/dto/character/characterCashItemEquipmentOptionDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterCashItemEquipmentPresetDto.d.ts +0 -66
- package/types/maplestory/api/dto/character/characterDojangDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterDto.d.ts +0 -12
- package/types/maplestory/api/dto/character/characterHexaMatrixDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterHexaMatrixEquipmentDto.d.ts +0 -25
- package/types/maplestory/api/dto/character/characterHexaMatrixEquipmentLinkedSkillDto.d.ts +0 -12
- package/types/maplestory/api/dto/character/characterHexaMatrixStatCoreDto.d.ts +0 -40
- package/types/maplestory/api/dto/character/characterHexaMatrixStatDto.d.ts +0 -41
- package/types/maplestory/api/dto/character/characterHyperStatDto.d.ts +0 -49
- package/types/maplestory/api/dto/character/characterHyperStatPresetDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterImageDto.d.ts +0 -160
- package/types/maplestory/api/dto/character/characterItemEquipmentAddOptionDto.d.ts +0 -68
- package/types/maplestory/api/dto/character/characterItemEquipmentBaseOptionDto.d.ts +0 -76
- package/types/maplestory/api/dto/character/characterItemEquipmentDragonInfoDto.d.ts +0 -130
- package/types/maplestory/api/dto/character/characterItemEquipmentDto.d.ts +0 -61
- package/types/maplestory/api/dto/character/characterItemEquipmentEtcOptionDto.d.ts +0 -52
- package/types/maplestory/api/dto/character/characterItemEquipmentExceptionalOptionDto.d.ts +0 -44
- package/types/maplestory/api/dto/character/characterItemEquipmentInfoDto.d.ts +0 -162
- package/types/maplestory/api/dto/character/characterItemEquipmentMechanicInfoDto.d.ts +0 -130
- package/types/maplestory/api/dto/character/characterItemEquipmentMedalShapeDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterItemEquipmentStarforceOptionDto.d.ts +0 -52
- package/types/maplestory/api/dto/character/characterItemEquipmentTitleDto.d.ts +0 -48
- package/types/maplestory/api/dto/character/characterItemEquipmentTotalOptionDto.d.ts +0 -80
- package/types/maplestory/api/dto/character/characterLinkSkillDto.d.ts +0 -49
- package/types/maplestory/api/dto/character/characterLinkSkillInfoDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterListAccountCharacterDto.d.ts +0 -28
- package/types/maplestory/api/dto/character/characterListAccountDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterListDto.d.ts +0 -13
- package/types/maplestory/api/dto/character/characterPetEquipmentAutoSkillDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterPetEquipmentItemDto.d.ts +0 -41
- package/types/maplestory/api/dto/character/characterPetEquipmentItemOptionDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterPopularityDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterPropensityDto.d.ts +0 -33
- package/types/maplestory/api/dto/character/characterSetEffectDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterSetEffectInfoDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterSetEffectOptionFullDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterSetEffectSetDto.d.ts +0 -26
- package/types/maplestory/api/dto/character/characterSkillDto.d.ts +0 -25
- package/types/maplestory/api/dto/character/characterSkillInfoDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterStatDto.d.ts +0 -27
- package/types/maplestory/api/dto/character/characterSymbolEquipmentDto.d.ts +0 -21
- package/types/maplestory/api/dto/character/characterVMatrixCoreEquipmentDto.d.ts +0 -40
- package/types/maplestory/api/dto/character/characterVMatrixDto.d.ts +0 -25
- package/types/maplestory/api/dto/guild/guildBasicDto.d.ts +0 -53
- package/types/maplestory/api/dto/guild/guildDto.d.ts +0 -12
- package/types/maplestory/api/dto/guild/guildSkillDto.d.ts +0 -28
- package/types/maplestory/api/dto/history/cubeHistoryResponseDto.d.ts +0 -21
- package/types/maplestory/api/dto/history/cubeResultOptionDto.d.ts +0 -18
- package/types/maplestory/api/dto/history/potentialHistoryResponseDto.d.ts +0 -21
- package/types/maplestory/api/dto/history/potentialResultOptionDto.d.ts +0 -18
- package/types/maplestory/api/dto/history/starforceEventDto.d.ts +0 -28
- package/types/maplestory/api/dto/history/starforceHistoryResponseDto.d.ts +0 -21
- package/types/maplestory/api/dto/notice/cashshopNoticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/eventNoticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/eventNoticeListItemDto.d.ts +0 -32
- package/types/maplestory/api/dto/notice/noticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/noticeListItemDto.d.ts +0 -24
- package/types/maplestory/api/dto/notice/updateNoticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/updateNoticeListItemDto.d.ts +0 -24
- package/types/maplestory/api/dto/potentialOptionGrade.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/achievementRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/dojangRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/guildRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/overallRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/theSeedRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/unionRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/union/unionArtifactCrystalDto.d.ts +0 -40
- package/types/maplestory/api/dto/union/unionArtifactDto.d.ts +0 -26
- package/types/maplestory/api/dto/union/unionArtifactEffectDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionChampionBadgeInfoDto.d.ts +0 -12
- package/types/maplestory/api/dto/union/unionChampionDto.d.ts +0 -22
- package/types/maplestory/api/dto/union/unionChampionInfoDto.d.ts +0 -29
- package/types/maplestory/api/dto/union/unionRaiderBlockDto.d.ts +0 -30
- package/types/maplestory/api/dto/union/unionRaiderBlockPositionDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionRaiderControlPointDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionRaiderDto.d.ts +0 -52
- package/types/maplestory/api/dto/union/unionRaiderInnerStatDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionRaiderPresetDto.d.ts +0 -26
- package/types/maplestory/api/response/character/characterAbilityDtoBody.d.ts +0 -20
- package/types/maplestory/api/response/character/characterBeautyEquipmentDtoBody.d.ts +0 -31
- package/types/maplestory/api/response/character/characterDojangDtoBody.d.ts +0 -9
- package/types/maplestory/api/response/character/characterDtoBody.d.ts +0 -4
- package/types/maplestory/api/response/character/characterHexaMatrixDtoBody.d.ts +0 -14
- package/types/maplestory/api/response/character/characterHexaMatrixStatDtoBody.d.ts +0 -21
- package/types/maplestory/api/response/character/characterHyperStatDtoBody.d.ts +0 -19
- package/types/maplestory/api/response/character/characterLinkSkillDtoBody.d.ts +0 -21
- package/types/maplestory/api/response/character/characterListDtoBody.d.ts +0 -15
- package/types/maplestory/api/response/character/characterPopularityDtoBody.d.ts +0 -5
- package/types/maplestory/api/response/character/characterPropensityDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/character/characterSetEffectDtoBody.d.ts +0 -19
- package/types/maplestory/api/response/character/characterSkillDtoBody.d.ts +0 -15
- package/types/maplestory/api/response/character/characterStatDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/guild/guildDtoBody.d.ts +0 -4
- package/types/maplestory/api/response/history/cubeHistoryDtoBody.d.ts +0 -22
- package/types/maplestory/api/response/history/cubeHistoryResponseDtoBody.d.ts +0 -7
- package/types/maplestory/api/response/history/cubeResultOptionDtoBody.d.ts +0 -5
- package/types/maplestory/api/response/history/potentialHistoryResponseDtoBody.d.ts +0 -29
- package/types/maplestory/api/response/history/starforceEventDtoBody.d.ts +0 -8
- package/types/maplestory/api/response/history/starforceHistoryResponseDtoBody.d.ts +0 -7
- package/types/maplestory/api/response/notice/cashshopNoticeListDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/notice/eventNoticeListDtoBody.d.ts +0 -12
- package/types/maplestory/api/response/notice/noticeListDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/notice/updateNoticeListDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/ranking/achievementRankingResponseDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/ranking/dojangRankingResponseDtoBody.d.ts +0 -14
- package/types/maplestory/api/response/ranking/guildRankingResponseDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/ranking/rankingResponseDtoBody.d.ts +0 -7
- package/types/maplestory/api/response/ranking/theSeedRankingResponseDtoBody.d.ts +0 -14
- package/types/maplestory/api/response/ranking/unionRankingResponseDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/union/unionArtifactDtoBody.d.ts +0 -20
- package/types/maplestory/api/response/union/unionChampionDtoBody.d.ts +0 -16
- package/types/maplestory/api/response/union/unionRaiderDtoBody.d.ts +0 -39
|
@@ -0,0 +1,890 @@
|
|
|
1
|
+
import * as base from '../../../common/dto/character/characterItemEquipment';
|
|
2
|
+
import { CharacterItemEquipmentAddOptionBody, CharacterItemEquipmentBaseOptionBody, CharacterItemEquipmentBody, CharacterItemEquipmentDragonInfoBody, CharacterItemEquipmentEtcOptionBody, CharacterItemEquipmentExceptionalOptionBody, CharacterItemEquipmentInfoBody, CharacterItemEquipmentMechanicInfoBody, CharacterItemEquipmentMedalShapeBody, CharacterItemEquipmentStarforceOptionBody, CharacterItemEquipmentTitleBody, CharacterItemEquipmentTotalOptionBody } from '../../response/character/characterItemEquipmentBody';
|
|
3
|
+
/**
|
|
4
|
+
* 캐릭터 장비 아이템 정보
|
|
5
|
+
*/
|
|
6
|
+
export declare class CharacterItemEquipmentDto extends base.CharacterItemEquipmentDto {
|
|
7
|
+
/**
|
|
8
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
9
|
+
*/
|
|
10
|
+
date: Date | null;
|
|
11
|
+
/**
|
|
12
|
+
* 캐릭터 성별
|
|
13
|
+
*/
|
|
14
|
+
characterGender: string | null;
|
|
15
|
+
/**
|
|
16
|
+
* 캐릭터 직업
|
|
17
|
+
*/
|
|
18
|
+
characterClass: string | null;
|
|
19
|
+
/**
|
|
20
|
+
* 적용 중인 장비 프리셋 번호
|
|
21
|
+
*/
|
|
22
|
+
presetNo: number | null;
|
|
23
|
+
/**
|
|
24
|
+
* 장비 정보
|
|
25
|
+
*/
|
|
26
|
+
itemEquipment: CharacterItemEquipmentInfoDto[];
|
|
27
|
+
/**
|
|
28
|
+
* 1번 프리셋 장비 정보
|
|
29
|
+
*/
|
|
30
|
+
itemEquipmentPreset1: CharacterItemEquipmentInfoDto[];
|
|
31
|
+
/**
|
|
32
|
+
* 2번 프리셋 장비 정보
|
|
33
|
+
*/
|
|
34
|
+
itemEquipmentPreset2: CharacterItemEquipmentInfoDto[];
|
|
35
|
+
/**
|
|
36
|
+
* 3번 프리셋 장비 정보
|
|
37
|
+
*/
|
|
38
|
+
itemEquipmentPreset3: CharacterItemEquipmentInfoDto[];
|
|
39
|
+
/**
|
|
40
|
+
* 칭호 정보
|
|
41
|
+
*/
|
|
42
|
+
title: CharacterItemEquipmentTitleDto | null;
|
|
43
|
+
/**
|
|
44
|
+
* 외형 설정에 등록한 훈장 외형 정보
|
|
45
|
+
*/
|
|
46
|
+
medalShape: CharacterItemEquipmentMedalShapeDto | null;
|
|
47
|
+
/**
|
|
48
|
+
* 에반 드래곤 장비 정보 (에반인 경우 응답)
|
|
49
|
+
*/
|
|
50
|
+
dragonEquipment: CharacterItemEquipmentDragonInfoDto[];
|
|
51
|
+
/**
|
|
52
|
+
* 메카닉 장비 정보 (메카닉인 경우 응답)
|
|
53
|
+
*/
|
|
54
|
+
mechanicEquipment: CharacterItemEquipmentMechanicInfoDto[];
|
|
55
|
+
constructor(obj: CharacterItemEquipmentBody);
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* 캐릭터 칭호 아이템 정보
|
|
59
|
+
*/
|
|
60
|
+
export declare class CharacterItemEquipmentTitleDto extends base.CharacterItemEquipmentTitleDto {
|
|
61
|
+
/**
|
|
62
|
+
* 칭호 장비 명
|
|
63
|
+
*/
|
|
64
|
+
titleName: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* 칭호 아이콘
|
|
67
|
+
*/
|
|
68
|
+
titleIcon: string | null;
|
|
69
|
+
/**
|
|
70
|
+
* 칭호 설명
|
|
71
|
+
*/
|
|
72
|
+
titleDescription: string | null;
|
|
73
|
+
/**
|
|
74
|
+
* 칭호 유효 기간
|
|
75
|
+
*/
|
|
76
|
+
dateExpire: Date | null;
|
|
77
|
+
/**
|
|
78
|
+
* 칭호 유효 기간 만료 여부
|
|
79
|
+
*/
|
|
80
|
+
isExpired: boolean | null;
|
|
81
|
+
/**
|
|
82
|
+
* 칭호 옵션 유효 기간
|
|
83
|
+
*/
|
|
84
|
+
dateOptionExpire: Date | null;
|
|
85
|
+
/**
|
|
86
|
+
* 칭호 옵션 유효 기간 만료 여부
|
|
87
|
+
*/
|
|
88
|
+
isOptionExpired: boolean | null;
|
|
89
|
+
/**
|
|
90
|
+
* 외형 설정에 등록한 칭호 장비 명
|
|
91
|
+
*/
|
|
92
|
+
titleShapeName: string | null;
|
|
93
|
+
/**
|
|
94
|
+
* 외형 설정에 등록한 칭호 아이콘
|
|
95
|
+
*/
|
|
96
|
+
titleShapeIcon: string | null;
|
|
97
|
+
/**
|
|
98
|
+
* 외형 설정에 등록한 칭호 설명
|
|
99
|
+
*/
|
|
100
|
+
titleShapeDescription: string | null;
|
|
101
|
+
constructor(obj: CharacterItemEquipmentTitleBody);
|
|
102
|
+
}
|
|
103
|
+
/**
|
|
104
|
+
* 캐릭터 외형 설정에 등록한 훈장 외형 정보
|
|
105
|
+
*/
|
|
106
|
+
export declare class CharacterItemEquipmentMedalShapeDto {
|
|
107
|
+
/**
|
|
108
|
+
* 외형 설정에 등록한 훈장 장비 명
|
|
109
|
+
*/
|
|
110
|
+
medalShapeName: string;
|
|
111
|
+
/**
|
|
112
|
+
* 외형 설정에 등록한 훈장 아이콘
|
|
113
|
+
*/
|
|
114
|
+
medalShapeIcon: string;
|
|
115
|
+
/**
|
|
116
|
+
* 외형 설정에 등록한 훈장 설명
|
|
117
|
+
*/
|
|
118
|
+
medalShapeDescription: string;
|
|
119
|
+
/**
|
|
120
|
+
* 외형 설정에 등록한 훈장의 모루 적용 장비 명
|
|
121
|
+
*/
|
|
122
|
+
medalShapeChangedName: string;
|
|
123
|
+
/**
|
|
124
|
+
* 외형 설정에 등록한 훈장의 모루 적용 아이콘
|
|
125
|
+
*/
|
|
126
|
+
medalShapeChangedIcon: string;
|
|
127
|
+
/**
|
|
128
|
+
* 외형 설정에 등록한 훈장의 모루 적용 훈장 설명
|
|
129
|
+
*/
|
|
130
|
+
medalShapeChangedDescription: string;
|
|
131
|
+
constructor(obj: CharacterItemEquipmentMedalShapeBody);
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* 캐릭터 장비 추가 옵션 정보
|
|
135
|
+
*/
|
|
136
|
+
export declare class CharacterItemEquipmentAddOptionDto extends base.CharacterItemEquipmentAddOptionDto {
|
|
137
|
+
/**
|
|
138
|
+
* STR
|
|
139
|
+
*/
|
|
140
|
+
str: string;
|
|
141
|
+
/**
|
|
142
|
+
* DEX
|
|
143
|
+
*/
|
|
144
|
+
dex: string;
|
|
145
|
+
/**
|
|
146
|
+
* INT
|
|
147
|
+
*/
|
|
148
|
+
int: string;
|
|
149
|
+
/**
|
|
150
|
+
* LUK
|
|
151
|
+
*/
|
|
152
|
+
luk: string;
|
|
153
|
+
/**
|
|
154
|
+
* 최대 HP
|
|
155
|
+
*/
|
|
156
|
+
maxHp: string;
|
|
157
|
+
/**
|
|
158
|
+
* 최대 MP
|
|
159
|
+
*/
|
|
160
|
+
maxMp: string;
|
|
161
|
+
/**
|
|
162
|
+
* 공격력
|
|
163
|
+
*/
|
|
164
|
+
attackPower: string;
|
|
165
|
+
/**
|
|
166
|
+
* 마력
|
|
167
|
+
*/
|
|
168
|
+
magicPower: string;
|
|
169
|
+
/**
|
|
170
|
+
* 방어력
|
|
171
|
+
*/
|
|
172
|
+
armor: string;
|
|
173
|
+
/**
|
|
174
|
+
* 이동속도
|
|
175
|
+
*/
|
|
176
|
+
speed: string;
|
|
177
|
+
/**
|
|
178
|
+
* 점프력
|
|
179
|
+
*/
|
|
180
|
+
jump: string;
|
|
181
|
+
/**
|
|
182
|
+
* 보스 공격 시 데미지 증가(%)
|
|
183
|
+
*/
|
|
184
|
+
bossDamage: string;
|
|
185
|
+
/**
|
|
186
|
+
* 데미지(%)
|
|
187
|
+
*/
|
|
188
|
+
damage: string;
|
|
189
|
+
/**
|
|
190
|
+
* 올스탯(%)
|
|
191
|
+
*/
|
|
192
|
+
allStat: string;
|
|
193
|
+
/**
|
|
194
|
+
* 착용 레벨 감소
|
|
195
|
+
*/
|
|
196
|
+
equipmentLevelDecrease: number;
|
|
197
|
+
constructor(obj: CharacterItemEquipmentAddOptionBody);
|
|
198
|
+
}
|
|
199
|
+
/**
|
|
200
|
+
* 캐릭터 장비 기본 옵션 정보
|
|
201
|
+
*/
|
|
202
|
+
export declare class CharacterItemEquipmentBaseOptionDto extends base.CharacterItemEquipmentBaseOptionDto {
|
|
203
|
+
/**
|
|
204
|
+
* STR
|
|
205
|
+
*/
|
|
206
|
+
str: string;
|
|
207
|
+
/**
|
|
208
|
+
* DEX
|
|
209
|
+
*/
|
|
210
|
+
dex: string;
|
|
211
|
+
/**
|
|
212
|
+
* INT
|
|
213
|
+
*/
|
|
214
|
+
int: string;
|
|
215
|
+
/**
|
|
216
|
+
* LUK
|
|
217
|
+
*/
|
|
218
|
+
luk: string;
|
|
219
|
+
/**
|
|
220
|
+
* 최대 HP
|
|
221
|
+
*/
|
|
222
|
+
maxHp: string;
|
|
223
|
+
/**
|
|
224
|
+
* 최대 MP
|
|
225
|
+
*/
|
|
226
|
+
maxMp: string;
|
|
227
|
+
/**
|
|
228
|
+
* 공격력
|
|
229
|
+
*/
|
|
230
|
+
attackPower: string;
|
|
231
|
+
/**
|
|
232
|
+
* 마력
|
|
233
|
+
*/
|
|
234
|
+
magicPower: string;
|
|
235
|
+
/**
|
|
236
|
+
* 방어력
|
|
237
|
+
*/
|
|
238
|
+
armor: string;
|
|
239
|
+
/**
|
|
240
|
+
* 이동속도
|
|
241
|
+
*/
|
|
242
|
+
speed: string;
|
|
243
|
+
/**
|
|
244
|
+
* 점프력
|
|
245
|
+
*/
|
|
246
|
+
jump: string;
|
|
247
|
+
/**
|
|
248
|
+
* 보스 공격 시 데미지 증가(%)
|
|
249
|
+
*/
|
|
250
|
+
bossDamage: string;
|
|
251
|
+
/**
|
|
252
|
+
* 몬스터 방어율 무시(%)
|
|
253
|
+
*/
|
|
254
|
+
ignoreMonsterArmor: string;
|
|
255
|
+
/**
|
|
256
|
+
* 올스탯(%)
|
|
257
|
+
*/
|
|
258
|
+
allStat: string;
|
|
259
|
+
/**
|
|
260
|
+
* 최대 HP(%)
|
|
261
|
+
*/
|
|
262
|
+
maxHpRate: string;
|
|
263
|
+
/**
|
|
264
|
+
* 최대 MP(%)
|
|
265
|
+
*/
|
|
266
|
+
maxMpRate: string;
|
|
267
|
+
/**
|
|
268
|
+
* 기본 착용 레벨
|
|
269
|
+
*/
|
|
270
|
+
baseEquipmentLevel: number;
|
|
271
|
+
constructor(obj: CharacterItemEquipmentBaseOptionBody);
|
|
272
|
+
}
|
|
273
|
+
/**
|
|
274
|
+
* 캐릭터 장비 기타 옵션 정보
|
|
275
|
+
*/
|
|
276
|
+
export declare class CharacterItemEquipmentEtcOptionDto extends base.CharacterItemEquipmentEtcOptionDto {
|
|
277
|
+
/**
|
|
278
|
+
* STR
|
|
279
|
+
*/
|
|
280
|
+
str: string;
|
|
281
|
+
/**
|
|
282
|
+
* DEX
|
|
283
|
+
*/
|
|
284
|
+
dex: string;
|
|
285
|
+
/**
|
|
286
|
+
* INT
|
|
287
|
+
*/
|
|
288
|
+
int: string;
|
|
289
|
+
/**
|
|
290
|
+
* LUK
|
|
291
|
+
*/
|
|
292
|
+
luk: string;
|
|
293
|
+
/**
|
|
294
|
+
* 최대 HP
|
|
295
|
+
*/
|
|
296
|
+
maxHp: string;
|
|
297
|
+
/**
|
|
298
|
+
* 최대 MP
|
|
299
|
+
*/
|
|
300
|
+
maxMp: string;
|
|
301
|
+
/**
|
|
302
|
+
* 공격력
|
|
303
|
+
*/
|
|
304
|
+
attackPower: string;
|
|
305
|
+
/**
|
|
306
|
+
* 마력
|
|
307
|
+
*/
|
|
308
|
+
magicPower: string;
|
|
309
|
+
/**
|
|
310
|
+
* 방어력
|
|
311
|
+
*/
|
|
312
|
+
armor: string;
|
|
313
|
+
/**
|
|
314
|
+
* 이동속도
|
|
315
|
+
*/
|
|
316
|
+
speed: string;
|
|
317
|
+
/**
|
|
318
|
+
* 점프력
|
|
319
|
+
*/
|
|
320
|
+
jump: string;
|
|
321
|
+
constructor(obj: CharacterItemEquipmentEtcOptionBody);
|
|
322
|
+
}
|
|
323
|
+
/**
|
|
324
|
+
* 캐릭터 장비 특별 옵션 정보
|
|
325
|
+
*/
|
|
326
|
+
export declare class CharacterItemEquipmentExceptionalOptionDto extends base.CharacterItemEquipmentExceptionalOptionDto {
|
|
327
|
+
/**
|
|
328
|
+
* STR
|
|
329
|
+
*/
|
|
330
|
+
str: string;
|
|
331
|
+
/**
|
|
332
|
+
* DEX
|
|
333
|
+
*/
|
|
334
|
+
dex: string;
|
|
335
|
+
/**
|
|
336
|
+
* INT
|
|
337
|
+
*/
|
|
338
|
+
int: string;
|
|
339
|
+
/**
|
|
340
|
+
* LUK
|
|
341
|
+
*/
|
|
342
|
+
luk: string;
|
|
343
|
+
/**
|
|
344
|
+
* 최대 HP
|
|
345
|
+
*/
|
|
346
|
+
maxHp: string;
|
|
347
|
+
/**
|
|
348
|
+
* 최대 MP
|
|
349
|
+
*/
|
|
350
|
+
maxMp: string;
|
|
351
|
+
/**
|
|
352
|
+
* 공격력
|
|
353
|
+
*/
|
|
354
|
+
attackPower: string;
|
|
355
|
+
/**
|
|
356
|
+
* 마력
|
|
357
|
+
*/
|
|
358
|
+
magicPower: string;
|
|
359
|
+
/**
|
|
360
|
+
* 익셉셔널 강화 적용 횟수
|
|
361
|
+
*/
|
|
362
|
+
exceptionalUpgrade: number;
|
|
363
|
+
constructor(obj: CharacterItemEquipmentExceptionalOptionBody);
|
|
364
|
+
}
|
|
365
|
+
/**
|
|
366
|
+
* 캐릭터 장비 스타포스 옵션 정보
|
|
367
|
+
*/
|
|
368
|
+
export declare class CharacterItemEquipmentStarforceOptionDto extends base.CharacterItemEquipmentStarforceOptionDto {
|
|
369
|
+
/**
|
|
370
|
+
* STR
|
|
371
|
+
*/
|
|
372
|
+
str: string;
|
|
373
|
+
/**
|
|
374
|
+
* DEX
|
|
375
|
+
*/
|
|
376
|
+
dex: string;
|
|
377
|
+
/**
|
|
378
|
+
* INT
|
|
379
|
+
*/
|
|
380
|
+
int: string;
|
|
381
|
+
/**
|
|
382
|
+
* LUK
|
|
383
|
+
*/
|
|
384
|
+
luk: string;
|
|
385
|
+
/**
|
|
386
|
+
* 최대 HP
|
|
387
|
+
*/
|
|
388
|
+
maxHp: string;
|
|
389
|
+
/**
|
|
390
|
+
* 최대 MP
|
|
391
|
+
*/
|
|
392
|
+
maxMp: string;
|
|
393
|
+
/**
|
|
394
|
+
* 공격력
|
|
395
|
+
*/
|
|
396
|
+
attackPower: string;
|
|
397
|
+
/**
|
|
398
|
+
* 마력
|
|
399
|
+
*/
|
|
400
|
+
magicPower: string;
|
|
401
|
+
/**
|
|
402
|
+
* 방어력
|
|
403
|
+
*/
|
|
404
|
+
armor: string;
|
|
405
|
+
/**
|
|
406
|
+
* 이동속도
|
|
407
|
+
*/
|
|
408
|
+
speed: string;
|
|
409
|
+
/**
|
|
410
|
+
* 점프력
|
|
411
|
+
*/
|
|
412
|
+
jump: string;
|
|
413
|
+
constructor(obj: CharacterItemEquipmentStarforceOptionBody);
|
|
414
|
+
}
|
|
415
|
+
/**
|
|
416
|
+
* 캐릭터 장비 최종 옵션 정보
|
|
417
|
+
*/
|
|
418
|
+
export declare class CharacterItemEquipmentTotalOptionDto extends base.CharacterItemEquipmentTotalOptionDto {
|
|
419
|
+
/**
|
|
420
|
+
* STR
|
|
421
|
+
*/
|
|
422
|
+
str: string;
|
|
423
|
+
/**
|
|
424
|
+
* DEX
|
|
425
|
+
*/
|
|
426
|
+
dex: string;
|
|
427
|
+
/**
|
|
428
|
+
* INT
|
|
429
|
+
*/
|
|
430
|
+
int: string;
|
|
431
|
+
/**
|
|
432
|
+
* LUK
|
|
433
|
+
*/
|
|
434
|
+
luk: string;
|
|
435
|
+
/**
|
|
436
|
+
* 최대 HP
|
|
437
|
+
*/
|
|
438
|
+
maxHp: string;
|
|
439
|
+
/**
|
|
440
|
+
* 최대 MP
|
|
441
|
+
*/
|
|
442
|
+
maxMp: string;
|
|
443
|
+
/**
|
|
444
|
+
* 공격력
|
|
445
|
+
*/
|
|
446
|
+
attackPower: string;
|
|
447
|
+
/**
|
|
448
|
+
* 마력
|
|
449
|
+
*/
|
|
450
|
+
magicPower: string;
|
|
451
|
+
/**
|
|
452
|
+
* 방어력
|
|
453
|
+
*/
|
|
454
|
+
armor: string;
|
|
455
|
+
/**
|
|
456
|
+
* 이동속도
|
|
457
|
+
*/
|
|
458
|
+
speed: string;
|
|
459
|
+
/**
|
|
460
|
+
* 점프력
|
|
461
|
+
*/
|
|
462
|
+
jump: string;
|
|
463
|
+
/**
|
|
464
|
+
* 보스 공격 시 데미지 증가(%)
|
|
465
|
+
*/
|
|
466
|
+
bossDamage: string;
|
|
467
|
+
/**
|
|
468
|
+
* 몬스터 방어율 무시(%)
|
|
469
|
+
*/
|
|
470
|
+
ignoreMonsterArmor: string;
|
|
471
|
+
/**
|
|
472
|
+
* 올스탯(%)
|
|
473
|
+
*/
|
|
474
|
+
allStat: string;
|
|
475
|
+
/**
|
|
476
|
+
* 데미지(%)
|
|
477
|
+
*/
|
|
478
|
+
damage: string;
|
|
479
|
+
/**
|
|
480
|
+
* 착용 레벨 감소
|
|
481
|
+
*/
|
|
482
|
+
equipmentLevelDecrease: number;
|
|
483
|
+
/**
|
|
484
|
+
* 최대 HP(%)
|
|
485
|
+
*/
|
|
486
|
+
maxHpRate: string;
|
|
487
|
+
/**
|
|
488
|
+
* 최대 MP(%)
|
|
489
|
+
*/
|
|
490
|
+
maxMpRate: string;
|
|
491
|
+
constructor(obj: CharacterItemEquipmentTotalOptionBody);
|
|
492
|
+
}
|
|
493
|
+
/**
|
|
494
|
+
* 에반 드래곤 장비 정보
|
|
495
|
+
*/
|
|
496
|
+
export declare class CharacterItemEquipmentDragonInfoDto extends base.CharacterItemEquipmentDragonInfoDto {
|
|
497
|
+
/**
|
|
498
|
+
* 장비 부위 명
|
|
499
|
+
*/
|
|
500
|
+
itemEquipmentPart: string;
|
|
501
|
+
/**
|
|
502
|
+
* 장비 슬롯 위치
|
|
503
|
+
*/
|
|
504
|
+
itemEquipmentSlot: string;
|
|
505
|
+
/**
|
|
506
|
+
* 장비 명
|
|
507
|
+
*/
|
|
508
|
+
itemName: string;
|
|
509
|
+
/**
|
|
510
|
+
* 장비 아이콘
|
|
511
|
+
*/
|
|
512
|
+
itemIcon: string;
|
|
513
|
+
/**
|
|
514
|
+
* 장비 설명
|
|
515
|
+
*/
|
|
516
|
+
itemDescription: string | null;
|
|
517
|
+
/**
|
|
518
|
+
* 장비 외형
|
|
519
|
+
*/
|
|
520
|
+
itemShapeName: string;
|
|
521
|
+
/**
|
|
522
|
+
* 장비 외형 아이콘
|
|
523
|
+
*/
|
|
524
|
+
itemShapeIcon: string;
|
|
525
|
+
/**
|
|
526
|
+
* 전용 성별
|
|
527
|
+
*/
|
|
528
|
+
itemGender: string | null;
|
|
529
|
+
/**
|
|
530
|
+
* 장비 최종 옵션
|
|
531
|
+
*/
|
|
532
|
+
itemTotalOption: CharacterItemEquipmentTotalOptionDto;
|
|
533
|
+
/**
|
|
534
|
+
* 장비 기본 옵션
|
|
535
|
+
*/
|
|
536
|
+
itemBaseOption: CharacterItemEquipmentBaseOptionDto;
|
|
537
|
+
/**
|
|
538
|
+
* 착용 레벨 증가
|
|
539
|
+
*/
|
|
540
|
+
equipmentLevelIncrease: number;
|
|
541
|
+
/**
|
|
542
|
+
* 장비 특별 옵션
|
|
543
|
+
*/
|
|
544
|
+
itemExceptionalOption: CharacterItemEquipmentExceptionalOptionDto;
|
|
545
|
+
/**
|
|
546
|
+
* 장비 추가 옵션
|
|
547
|
+
*/
|
|
548
|
+
itemAddOption: CharacterItemEquipmentAddOptionDto;
|
|
549
|
+
/**
|
|
550
|
+
* 성장 경험치
|
|
551
|
+
*/
|
|
552
|
+
growthExp: number;
|
|
553
|
+
/**
|
|
554
|
+
* 성장 레벨
|
|
555
|
+
*/
|
|
556
|
+
growthLevel: number;
|
|
557
|
+
/**
|
|
558
|
+
* 업그레이드 횟수
|
|
559
|
+
*/
|
|
560
|
+
scrollUpgrade: string;
|
|
561
|
+
/**
|
|
562
|
+
* 가위 사용 가능 횟수 (교환 불가 장비, 가위 횟수가 없는 교환 가능 장비는 255)
|
|
563
|
+
*/
|
|
564
|
+
cuttableCount: string;
|
|
565
|
+
/**
|
|
566
|
+
* 황금 망치 재련 적용 (1:적용, 이외 미 적용)
|
|
567
|
+
*/
|
|
568
|
+
goldenHammerFlag: string;
|
|
569
|
+
/**
|
|
570
|
+
* 복구 가능 횟수
|
|
571
|
+
*/
|
|
572
|
+
scrollResilienceCount: string;
|
|
573
|
+
/**
|
|
574
|
+
* 업그레이드 가능 횟수
|
|
575
|
+
*/
|
|
576
|
+
scrollUpgradeableCount: string;
|
|
577
|
+
/**
|
|
578
|
+
* 소울 명
|
|
579
|
+
*/
|
|
580
|
+
soulName: string | null;
|
|
581
|
+
/**
|
|
582
|
+
* 소울 옵션
|
|
583
|
+
*/
|
|
584
|
+
soulOption: string | null;
|
|
585
|
+
/**
|
|
586
|
+
* 장비 기타 옵션
|
|
587
|
+
*/
|
|
588
|
+
itemEtcOption: CharacterItemEquipmentEtcOptionDto;
|
|
589
|
+
/**
|
|
590
|
+
* 강화 단계
|
|
591
|
+
*/
|
|
592
|
+
starforce: string;
|
|
593
|
+
/**
|
|
594
|
+
* 놀라운 장비 강화 주문서 사용 여부 (0:미사용, 1:사용)
|
|
595
|
+
*/
|
|
596
|
+
starforceScrollFlag: string;
|
|
597
|
+
/**
|
|
598
|
+
* 장비 스타포스 옵션
|
|
599
|
+
*/
|
|
600
|
+
itemStarforceOption: CharacterItemEquipmentStarforceOptionDto;
|
|
601
|
+
/**
|
|
602
|
+
* 특수 반지 레벨
|
|
603
|
+
*/
|
|
604
|
+
specialRingLevel: number;
|
|
605
|
+
/**
|
|
606
|
+
* 장비 유효 기간
|
|
607
|
+
*/
|
|
608
|
+
dateExpire: Date | null;
|
|
609
|
+
/**
|
|
610
|
+
* 장비 유효 기간 만료 여부
|
|
611
|
+
*/
|
|
612
|
+
isExpired: boolean | null;
|
|
613
|
+
constructor(obj: CharacterItemEquipmentDragonInfoBody);
|
|
614
|
+
}
|
|
615
|
+
/**
|
|
616
|
+
* 메카닉 장비 정보
|
|
617
|
+
*/
|
|
618
|
+
export declare class CharacterItemEquipmentMechanicInfoDto extends base.CharacterItemEquipmentMechanicInfoDto {
|
|
619
|
+
/**
|
|
620
|
+
* 장비 부위 명
|
|
621
|
+
*/
|
|
622
|
+
itemEquipmentPart: string;
|
|
623
|
+
/**
|
|
624
|
+
* 장비 슬롯 위치
|
|
625
|
+
*/
|
|
626
|
+
itemEquipmentSlot: string;
|
|
627
|
+
/**
|
|
628
|
+
* 장비 명
|
|
629
|
+
*/
|
|
630
|
+
itemName: string;
|
|
631
|
+
/**
|
|
632
|
+
* 장비 아이콘
|
|
633
|
+
*/
|
|
634
|
+
itemIcon: string;
|
|
635
|
+
/**
|
|
636
|
+
* 장비 설명
|
|
637
|
+
*/
|
|
638
|
+
itemDescription: string | null;
|
|
639
|
+
/**
|
|
640
|
+
* 장비 외형
|
|
641
|
+
*/
|
|
642
|
+
itemShapeName: string;
|
|
643
|
+
/**
|
|
644
|
+
* 장비 외형 아이콘
|
|
645
|
+
*/
|
|
646
|
+
itemShapeIcon: string;
|
|
647
|
+
/**
|
|
648
|
+
* 전용 성별
|
|
649
|
+
*/
|
|
650
|
+
itemGender: string | null;
|
|
651
|
+
/**
|
|
652
|
+
* 장비 최종 옵션
|
|
653
|
+
*/
|
|
654
|
+
itemTotalOption: CharacterItemEquipmentTotalOptionDto;
|
|
655
|
+
/**
|
|
656
|
+
* 장비 기본 옵션
|
|
657
|
+
*/
|
|
658
|
+
itemBaseOption: CharacterItemEquipmentBaseOptionDto;
|
|
659
|
+
/**
|
|
660
|
+
* 착용 레벨 증가
|
|
661
|
+
*/
|
|
662
|
+
equipmentLevelIncrease: number;
|
|
663
|
+
/**
|
|
664
|
+
* 장비 특별 옵션
|
|
665
|
+
*/
|
|
666
|
+
itemExceptionalOption: CharacterItemEquipmentExceptionalOptionDto;
|
|
667
|
+
/**
|
|
668
|
+
* 장비 추가 옵션
|
|
669
|
+
*/
|
|
670
|
+
itemAddOption: CharacterItemEquipmentAddOptionDto;
|
|
671
|
+
/**
|
|
672
|
+
* 성장 경험치
|
|
673
|
+
*/
|
|
674
|
+
growthExp: number;
|
|
675
|
+
/**
|
|
676
|
+
* 성장 레벨
|
|
677
|
+
*/
|
|
678
|
+
growthLevel: number;
|
|
679
|
+
/**
|
|
680
|
+
* 업그레이드 횟수
|
|
681
|
+
*/
|
|
682
|
+
scrollUpgrade: string;
|
|
683
|
+
/**
|
|
684
|
+
* 가위 사용 가능 횟수 (교환 불가 장비, 가위 횟수가 없는 교환 가능 장비는 255)
|
|
685
|
+
*/
|
|
686
|
+
cuttableCount: string;
|
|
687
|
+
/**
|
|
688
|
+
* 황금 망치 재련 적용 (1:적용, 이외 미 적용)
|
|
689
|
+
*/
|
|
690
|
+
goldenHammerFlag: string;
|
|
691
|
+
/**
|
|
692
|
+
* 복구 가능 횟수
|
|
693
|
+
*/
|
|
694
|
+
scrollResilienceCount: string;
|
|
695
|
+
/**
|
|
696
|
+
* 업그레이드 가능 횟수
|
|
697
|
+
*/
|
|
698
|
+
scrollUpgradeableCount: string;
|
|
699
|
+
/**
|
|
700
|
+
* 소울 명
|
|
701
|
+
*/
|
|
702
|
+
soulName: string | null;
|
|
703
|
+
/**
|
|
704
|
+
* 소울 옵션
|
|
705
|
+
*/
|
|
706
|
+
soulOption: string | null;
|
|
707
|
+
/**
|
|
708
|
+
* 장비 기타 옵션
|
|
709
|
+
*/
|
|
710
|
+
itemEtcOption: CharacterItemEquipmentEtcOptionDto;
|
|
711
|
+
/**
|
|
712
|
+
* 강화 단계
|
|
713
|
+
*/
|
|
714
|
+
starforce: string;
|
|
715
|
+
/**
|
|
716
|
+
* 놀라운 장비 강화 주문서 사용 여부 (0:미사용, 1:사용)
|
|
717
|
+
*/
|
|
718
|
+
starforceScrollFlag: string;
|
|
719
|
+
/**
|
|
720
|
+
* 장비 스타포스 옵션
|
|
721
|
+
*/
|
|
722
|
+
itemStarforceOption: CharacterItemEquipmentStarforceOptionDto;
|
|
723
|
+
/**
|
|
724
|
+
* 특수 반지 레벨
|
|
725
|
+
*/
|
|
726
|
+
specialRingLevel: number;
|
|
727
|
+
/**
|
|
728
|
+
* 장비 유효 기간
|
|
729
|
+
*/
|
|
730
|
+
dateExpire: Date | null;
|
|
731
|
+
/**
|
|
732
|
+
* 장비 유효 기간 만료 여부
|
|
733
|
+
*/
|
|
734
|
+
isExpired: boolean | null;
|
|
735
|
+
constructor(obj: CharacterItemEquipmentMechanicInfoBody);
|
|
736
|
+
}
|
|
737
|
+
/**
|
|
738
|
+
* 캐릭터 장비 아이템 상세 정보
|
|
739
|
+
*/
|
|
740
|
+
export declare class CharacterItemEquipmentInfoDto extends base.CharacterItemEquipmentInfoDto {
|
|
741
|
+
/**
|
|
742
|
+
* 장비 부위 명
|
|
743
|
+
*/
|
|
744
|
+
itemEquipmentPart: string;
|
|
745
|
+
/**
|
|
746
|
+
* 장비 슬롯 위치
|
|
747
|
+
*/
|
|
748
|
+
itemEquipmentSlot: string;
|
|
749
|
+
/**
|
|
750
|
+
* 장비 명
|
|
751
|
+
*/
|
|
752
|
+
itemName: string;
|
|
753
|
+
/**
|
|
754
|
+
* 장비 아이콘
|
|
755
|
+
*/
|
|
756
|
+
itemIcon: string;
|
|
757
|
+
/**
|
|
758
|
+
* 장비 설명
|
|
759
|
+
*/
|
|
760
|
+
itemDescription: string | null;
|
|
761
|
+
/**
|
|
762
|
+
* 장비 외형
|
|
763
|
+
*/
|
|
764
|
+
itemShapeName: string;
|
|
765
|
+
/**
|
|
766
|
+
* 장비 외형 아이콘
|
|
767
|
+
*/
|
|
768
|
+
itemShapeIcon: string;
|
|
769
|
+
/**
|
|
770
|
+
* 전용 성별
|
|
771
|
+
*/
|
|
772
|
+
itemGender: string | null;
|
|
773
|
+
/**
|
|
774
|
+
* 장비 최종 옵션
|
|
775
|
+
*/
|
|
776
|
+
itemTotalOption: CharacterItemEquipmentTotalOptionDto;
|
|
777
|
+
/**
|
|
778
|
+
* 장비 기본 옵션
|
|
779
|
+
*/
|
|
780
|
+
itemBaseOption: CharacterItemEquipmentBaseOptionDto;
|
|
781
|
+
/**
|
|
782
|
+
* 잠재능력 등급
|
|
783
|
+
*/
|
|
784
|
+
potentialOptionGrade: string | null;
|
|
785
|
+
/**
|
|
786
|
+
* 에디셔널 잠재능력 등급
|
|
787
|
+
*/
|
|
788
|
+
additionalPotentialOptionGrade: string | null;
|
|
789
|
+
/**
|
|
790
|
+
* 잠재능력 첫 번째 옵션
|
|
791
|
+
*/
|
|
792
|
+
potentialOption1: string | null;
|
|
793
|
+
/**
|
|
794
|
+
* 잠재능력 두 번째 옵션
|
|
795
|
+
*/
|
|
796
|
+
potentialOption2: string | null;
|
|
797
|
+
/**
|
|
798
|
+
* 잠재능력 세 번째 옵션
|
|
799
|
+
*/
|
|
800
|
+
potentialOption3: string | null;
|
|
801
|
+
/**
|
|
802
|
+
* 에디셔널 잠재능력 첫 번째 옵션
|
|
803
|
+
*/
|
|
804
|
+
additionalPotentialOption1: string | null;
|
|
805
|
+
/**
|
|
806
|
+
* 에디셔널 잠재능력 두 번째 옵션
|
|
807
|
+
*/
|
|
808
|
+
additionalPotentialOption2: string | null;
|
|
809
|
+
/**
|
|
810
|
+
* 에디셔널 잠재능력 세 번째 옵션
|
|
811
|
+
*/
|
|
812
|
+
additionalPotentialOption3: string | null;
|
|
813
|
+
/**
|
|
814
|
+
* 착용 레벨 증가
|
|
815
|
+
*/
|
|
816
|
+
equipmentLevelIncrease: number;
|
|
817
|
+
/**
|
|
818
|
+
* 장비 특별 옵션
|
|
819
|
+
*/
|
|
820
|
+
itemExceptionalOption: CharacterItemEquipmentExceptionalOptionDto;
|
|
821
|
+
/**
|
|
822
|
+
* 장비 추가 옵션
|
|
823
|
+
*/
|
|
824
|
+
itemAddOption: CharacterItemEquipmentAddOptionDto;
|
|
825
|
+
/**
|
|
826
|
+
* 성장 경험치
|
|
827
|
+
*/
|
|
828
|
+
growthExp: number;
|
|
829
|
+
/**
|
|
830
|
+
* 성장 레벨
|
|
831
|
+
*/
|
|
832
|
+
growthLevel: number;
|
|
833
|
+
/**
|
|
834
|
+
* 업그레이드 횟수
|
|
835
|
+
*/
|
|
836
|
+
scrollUpgrade: string;
|
|
837
|
+
/**
|
|
838
|
+
* 가위 사용 가능 횟수 (교환 불가 장비, 가위 횟수가 없는 교환 가능 장비는 255)
|
|
839
|
+
*/
|
|
840
|
+
cuttableCount: string;
|
|
841
|
+
/**
|
|
842
|
+
* 황금 망치 재련 적용 (1:적용, 이외 미 적용)
|
|
843
|
+
*/
|
|
844
|
+
goldenHammerFlag: string;
|
|
845
|
+
/**
|
|
846
|
+
* 복구 가능 횟수
|
|
847
|
+
*/
|
|
848
|
+
scrollResilienceCount: string;
|
|
849
|
+
/**
|
|
850
|
+
* 업그레이드 가능 횟수
|
|
851
|
+
*/
|
|
852
|
+
scrollUpgradeableCount: string;
|
|
853
|
+
/**
|
|
854
|
+
* 소울 명
|
|
855
|
+
*/
|
|
856
|
+
soulName: string | null;
|
|
857
|
+
/**
|
|
858
|
+
* 소울 옵션
|
|
859
|
+
*/
|
|
860
|
+
soulOption: string | null;
|
|
861
|
+
/**
|
|
862
|
+
* 장비 기타 옵션
|
|
863
|
+
*/
|
|
864
|
+
itemEtcOption: CharacterItemEquipmentEtcOptionDto;
|
|
865
|
+
/**
|
|
866
|
+
* 강화 단계
|
|
867
|
+
*/
|
|
868
|
+
starforce: string;
|
|
869
|
+
/**
|
|
870
|
+
* 놀라운 장비 강화 주문서 사용 여부 (0:미사용, 1:사용)
|
|
871
|
+
*/
|
|
872
|
+
starforceScrollFlag: string;
|
|
873
|
+
/**
|
|
874
|
+
* 장비 스타포스 옵션
|
|
875
|
+
*/
|
|
876
|
+
itemStarforceOption: CharacterItemEquipmentStarforceOptionDto;
|
|
877
|
+
/**
|
|
878
|
+
* 특수 반지 레벨
|
|
879
|
+
*/
|
|
880
|
+
specialRingLevel: number;
|
|
881
|
+
/**
|
|
882
|
+
* 장비 유효 기간
|
|
883
|
+
*/
|
|
884
|
+
dateExpire: Date | null;
|
|
885
|
+
/**
|
|
886
|
+
* 장비 유효 기간 만료 여부
|
|
887
|
+
*/
|
|
888
|
+
isExpired: boolean | null;
|
|
889
|
+
constructor(obj: CharacterItemEquipmentInfoBody);
|
|
890
|
+
}
|