maplestory-openapi 2.13.1 → 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/{dto/character/characterDojangDto.d.ts → kms/dto/character/characterDojang.d.ts} +6 -6
- package/types/maplestory/api/kms/dto/character/characterHexaMatrix.d.ts +48 -0
- package/types/maplestory/api/kms/dto/character/characterHexaMatrixStat.d.ts +78 -0
- package/types/maplestory/api/{dto/character/characterHyperStatDto.d.ts → kms/dto/character/characterHyperStat.d.ts} +27 -6
- package/types/maplestory/api/kms/dto/character/characterImage.d.ts +74 -0
- package/types/maplestory/api/kms/dto/character/characterItemEquipment.d.ts +890 -0
- package/types/maplestory/api/{dto/character/characterLinkSkillDto.d.ts → kms/dto/character/characterLinkSkill.d.ts} +35 -6
- package/types/maplestory/api/kms/dto/character/characterList.d.ts +52 -0
- package/types/maplestory/api/{dto/character/characterPetEquipmentDto.d.ts → kms/dto/character/characterPetEquipment.d.ts} +79 -7
- package/types/maplestory/api/kms/dto/character/characterPopularity.d.ts +16 -0
- package/types/maplestory/api/{dto/character/characterPropensityDto.d.ts → kms/dto/character/characterPropensity.d.ts} +7 -4
- package/types/maplestory/api/kms/dto/character/characterSetEffect.d.ts +66 -0
- package/types/maplestory/api/kms/dto/character/characterSkill.d.ts +54 -0
- package/types/maplestory/api/kms/dto/character/characterStat.d.ts +38 -0
- package/types/maplestory/api/{dto/character/characterSymbolEquipmentInfoDto.d.ts → kms/dto/character/characterSymbolEquipment.d.ts} +22 -4
- package/types/maplestory/api/kms/dto/character/characterVMatrix.d.ts +62 -0
- package/types/maplestory/api/kms/dto/guild/guild.d.ts +12 -0
- package/types/maplestory/api/kms/dto/guild/guildBasic.d.ts +78 -0
- package/types/maplestory/api/{dto/history/cubeHistoryDto.d.ts → kms/dto/history/cubeHistory.d.ts} +37 -6
- package/types/maplestory/api/{dto/history/potentialHistoryDto.d.ts → kms/dto/history/potentialHistory.d.ts} +37 -6
- package/types/maplestory/api/{dto/history/starforceHistoryDto.d.ts → kms/dto/history/starforceHistory.d.ts} +47 -5
- package/types/maplestory/api/{dto/inspectionInfoDto.d.ts → kms/dto/inspectionInfo.d.ts} +1 -2
- package/types/maplestory/api/{dto/notice/cashshopNoticeDetailDto.d.ts → kms/dto/notice/cashshopNoticeDetail.d.ts} +3 -4
- package/types/maplestory/api/{dto/notice/cashshopNoticeListItemDto.d.ts → kms/dto/notice/cashshopNoticeList.d.ts} +13 -4
- package/types/maplestory/api/{dto/notice/eventNoticeDetailDto.d.ts → kms/dto/notice/eventNoticeDetail.d.ts} +3 -4
- package/types/maplestory/api/kms/dto/notice/eventNoticeList.d.ts +41 -0
- package/types/maplestory/api/{dto/notice/noticeDetailDto.d.ts → kms/dto/notice/noticeDetail.d.ts} +3 -4
- package/types/maplestory/api/kms/dto/notice/noticeList.d.ts +33 -0
- package/types/maplestory/api/{dto/notice/updateNoticeDetailDto.d.ts → kms/dto/notice/updateNoticeDetail.d.ts} +3 -4
- package/types/maplestory/api/kms/dto/notice/updateNoticeList.d.ts +33 -0
- package/types/maplestory/api/{dto/ranking/achievementRankingDto.d.ts → kms/dto/ranking/achievementRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/dojangRankingDto.d.ts → kms/dto/ranking/dojangRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/guildRankingDto.d.ts → kms/dto/ranking/guildRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/overallRankingDto.d.ts → kms/dto/ranking/overallRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/theSeedRankingDto.d.ts → kms/dto/ranking/theSeedRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/unionRankingDto.d.ts → kms/dto/ranking/unionRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/union/unionDto.d.ts → kms/dto/union/union.d.ts} +5 -5
- package/types/maplestory/api/kms/dto/union/unionArtifact.d.ts +76 -0
- package/types/maplestory/api/kms/dto/union/unionChampion.d.ts +55 -0
- package/types/maplestory/api/kms/dto/union/unionRaider.d.ts +142 -0
- package/types/maplestory/api/kms/index.d.ts +47 -0
- package/types/maplestory/api/{mapleStoryApi.d.ts → kms/mapleStoryApi.d.ts} +83 -78
- package/types/maplestory/api/kms/response/character/characterAbilityBody.d.ts +19 -0
- package/types/maplestory/api/{response/character/characterAndroidEquipmentDtoBody.d.ts → kms/response/character/characterAndroidEquipmentBody.d.ts} +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} +14 -15
- package/types/maplestory/api/{response/character/characterDojangDtoBody.d.ts → kms/response/character/characterDojangBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/character/characterHexaMatrixBody.d.ts +13 -0
- package/types/maplestory/api/kms/response/character/characterHexaMatrixStatBody.d.ts +20 -0
- package/types/maplestory/api/{response/character/characterHyperStatDtoBody.d.ts → kms/response/character/characterHyperStatBody.d.ts} +5 -6
- package/types/maplestory/api/{response/character/characterItemEquipmentDtoBody.d.ts → kms/response/character/characterItemEquipmentBody.d.ts} +33 -34
- package/types/maplestory/api/kms/response/character/characterLinkSkillBody.d.ts +20 -0
- package/types/maplestory/api/kms/response/character/characterListBody.d.ts +14 -0
- package/types/maplestory/api/{response/character/characterPetEquipmentDtoBody.d.ts → kms/response/character/characterPetEquipmentBody.d.ts} +11 -12
- package/types/maplestory/api/kms/response/character/characterPopularityBody.d.ts +4 -0
- package/types/maplestory/api/{response/character/characterPropensityDtoBody.d.ts → kms/response/character/characterPropensityBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/character/characterSetEffectBody.d.ts +18 -0
- package/types/maplestory/api/{response/character/characterSkillDtoBody.d.ts → kms/response/character/characterSkillBody.d.ts} +3 -4
- package/types/maplestory/api/kms/response/character/characterStatBody.d.ts +10 -0
- package/types/maplestory/api/{response/character/characterSymbolEquipmentDtoBody.d.ts → kms/response/character/characterSymbolEquipmentBody.d.ts} +3 -4
- package/types/maplestory/api/{response/character/characterVMatrixDtoBody.d.ts → kms/response/character/characterVMatrixBody.d.ts} +2 -3
- package/types/maplestory/api/{response/guild/guildBasicDtoBody.d.ts → kms/response/guild/guildBasicBody.d.ts} +4 -5
- package/types/maplestory/api/kms/response/guild/guildBody.d.ts +3 -0
- package/types/maplestory/api/kms/response/history/cubeHistoryBody.d.ts +29 -0
- package/types/maplestory/api/kms/response/history/potentialHistoryBody.d.ts +28 -0
- package/types/maplestory/api/{response/history/starforceHistoryDtoBody.d.ts → kms/response/history/starforceHistoryBody.d.ts} +14 -4
- package/types/maplestory/api/{response → kms/response}/inspectionInfoSoapBody.d.ts +1 -2
- package/types/maplestory/api/{response/notice/cashshopNoticeDetailDtoBody.d.ts → kms/response/notice/cashshopNoticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/cashshopNoticeListBody.d.ts +12 -0
- package/types/maplestory/api/{response/notice/eventNoticeDetailDtoBody.d.ts → kms/response/notice/eventNoticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/eventNoticeListBody.d.ts +11 -0
- package/types/maplestory/api/{response/notice/noticeDetailDtoBody.d.ts → kms/response/notice/noticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/noticeListBody.d.ts +9 -0
- package/types/maplestory/api/{response/notice/updateNoticeDetailDtoBody.d.ts → kms/response/notice/updateNoticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/updateNoticeListBody.d.ts +9 -0
- package/types/maplestory/api/kms/response/ranking/achievementRankingBody.d.ts +12 -0
- package/types/maplestory/api/kms/response/ranking/dojangRankingBody.d.ts +13 -0
- package/types/maplestory/api/kms/response/ranking/guildRankingBody.d.ts +12 -0
- package/types/maplestory/api/{response/ranking/overallRankingResponseDtoBody.d.ts → kms/response/ranking/overallRankingBody.d.ts} +3 -4
- package/types/maplestory/api/kms/response/ranking/rankingResponseBody.d.ts +6 -0
- package/types/maplestory/api/kms/response/ranking/theSeedRankingBody.d.ts +13 -0
- package/types/maplestory/api/kms/response/ranking/unionRankingBody.d.ts +12 -0
- package/types/maplestory/api/kms/response/union/unionArtifactBody.d.ts +19 -0
- package/types/maplestory/api/{response/union/unionDtoBody.d.ts → kms/response/union/unionBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/union/unionChampionBody.d.ts +15 -0
- package/types/maplestory/api/kms/response/union/unionRaiderBody.d.ts +38 -0
- package/types/maplestory/api/msea/dto/character/character.d.ts +12 -0
- package/types/maplestory/api/msea/dto/character/characterAbility.d.ts +72 -0
- package/types/maplestory/api/msea/dto/character/characterAndroidEquipment.d.ts +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/characterDto.d.ts +0 -12
- package/types/maplestory/api/dto/character/characterHexaMatrixDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterHexaMatrixEquipmentDto.d.ts +0 -25
- package/types/maplestory/api/dto/character/characterHexaMatrixEquipmentLinkedSkillDto.d.ts +0 -12
- package/types/maplestory/api/dto/character/characterHexaMatrixStatCoreDto.d.ts +0 -40
- package/types/maplestory/api/dto/character/characterHexaMatrixStatDto.d.ts +0 -41
- package/types/maplestory/api/dto/character/characterHyperStatPresetDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterImageDto.d.ts +0 -160
- package/types/maplestory/api/dto/character/characterItemEquipmentAddOptionDto.d.ts +0 -68
- package/types/maplestory/api/dto/character/characterItemEquipmentBaseOptionDto.d.ts +0 -76
- package/types/maplestory/api/dto/character/characterItemEquipmentDragonInfoDto.d.ts +0 -130
- package/types/maplestory/api/dto/character/characterItemEquipmentDto.d.ts +0 -61
- package/types/maplestory/api/dto/character/characterItemEquipmentEtcOptionDto.d.ts +0 -52
- package/types/maplestory/api/dto/character/characterItemEquipmentExceptionalOptionDto.d.ts +0 -44
- package/types/maplestory/api/dto/character/characterItemEquipmentInfoDto.d.ts +0 -162
- package/types/maplestory/api/dto/character/characterItemEquipmentMechanicInfoDto.d.ts +0 -130
- package/types/maplestory/api/dto/character/characterItemEquipmentMedalShapeDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterItemEquipmentStarforceOptionDto.d.ts +0 -52
- package/types/maplestory/api/dto/character/characterItemEquipmentTitleDto.d.ts +0 -48
- package/types/maplestory/api/dto/character/characterItemEquipmentTotalOptionDto.d.ts +0 -80
- package/types/maplestory/api/dto/character/characterLinkSkillInfoDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterListAccountCharacterDto.d.ts +0 -28
- package/types/maplestory/api/dto/character/characterListAccountDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterListDto.d.ts +0 -13
- package/types/maplestory/api/dto/character/characterPetEquipmentAutoSkillDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterPetEquipmentItemDto.d.ts +0 -41
- package/types/maplestory/api/dto/character/characterPetEquipmentItemOptionDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterPopularityDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterSetEffectDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterSetEffectInfoDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterSetEffectOptionFullDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterSetEffectSetDto.d.ts +0 -26
- package/types/maplestory/api/dto/character/characterSkillDto.d.ts +0 -25
- package/types/maplestory/api/dto/character/characterSkillInfoDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterStatDto.d.ts +0 -27
- package/types/maplestory/api/dto/character/characterSymbolEquipmentDto.d.ts +0 -21
- package/types/maplestory/api/dto/character/characterVMatrixCoreEquipmentDto.d.ts +0 -40
- package/types/maplestory/api/dto/character/characterVMatrixDto.d.ts +0 -25
- package/types/maplestory/api/dto/guild/guildBasicDto.d.ts +0 -53
- package/types/maplestory/api/dto/guild/guildDto.d.ts +0 -12
- package/types/maplestory/api/dto/guild/guildSkillDto.d.ts +0 -28
- package/types/maplestory/api/dto/history/cubeHistoryResponseDto.d.ts +0 -21
- package/types/maplestory/api/dto/history/cubeResultOptionDto.d.ts +0 -18
- package/types/maplestory/api/dto/history/potentialHistoryResponseDto.d.ts +0 -21
- package/types/maplestory/api/dto/history/potentialResultOptionDto.d.ts +0 -18
- package/types/maplestory/api/dto/history/starforceEventDto.d.ts +0 -28
- package/types/maplestory/api/dto/history/starforceHistoryResponseDto.d.ts +0 -21
- package/types/maplestory/api/dto/notice/cashshopNoticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/eventNoticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/eventNoticeListItemDto.d.ts +0 -32
- package/types/maplestory/api/dto/notice/noticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/noticeListItemDto.d.ts +0 -24
- package/types/maplestory/api/dto/notice/updateNoticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/updateNoticeListItemDto.d.ts +0 -24
- package/types/maplestory/api/dto/potentialOptionGrade.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/achievementRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/dojangRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/guildRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/overallRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/theSeedRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/unionRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/union/unionArtifactCrystalDto.d.ts +0 -40
- package/types/maplestory/api/dto/union/unionArtifactDto.d.ts +0 -26
- package/types/maplestory/api/dto/union/unionArtifactEffectDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionChampionBadgeInfoDto.d.ts +0 -12
- package/types/maplestory/api/dto/union/unionChampionDto.d.ts +0 -22
- package/types/maplestory/api/dto/union/unionChampionInfoDto.d.ts +0 -29
- package/types/maplestory/api/dto/union/unionRaiderBlockDto.d.ts +0 -30
- package/types/maplestory/api/dto/union/unionRaiderBlockPositionDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionRaiderControlPointDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionRaiderDto.d.ts +0 -52
- package/types/maplestory/api/dto/union/unionRaiderInnerStatDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionRaiderPresetDto.d.ts +0 -26
- package/types/maplestory/api/response/character/characterAbilityDtoBody.d.ts +0 -20
- package/types/maplestory/api/response/character/characterBeautyEquipmentDtoBody.d.ts +0 -31
- package/types/maplestory/api/response/character/characterDtoBody.d.ts +0 -4
- package/types/maplestory/api/response/character/characterHexaMatrixDtoBody.d.ts +0 -14
- package/types/maplestory/api/response/character/characterHexaMatrixStatDtoBody.d.ts +0 -21
- package/types/maplestory/api/response/character/characterLinkSkillDtoBody.d.ts +0 -21
- package/types/maplestory/api/response/character/characterListDtoBody.d.ts +0 -15
- package/types/maplestory/api/response/character/characterPopularityDtoBody.d.ts +0 -5
- package/types/maplestory/api/response/character/characterSetEffectDtoBody.d.ts +0 -19
- package/types/maplestory/api/response/character/characterStatDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/guild/guildDtoBody.d.ts +0 -4
- package/types/maplestory/api/response/history/cubeHistoryDtoBody.d.ts +0 -22
- package/types/maplestory/api/response/history/cubeHistoryResponseDtoBody.d.ts +0 -7
- package/types/maplestory/api/response/history/cubeResultOptionDtoBody.d.ts +0 -5
- package/types/maplestory/api/response/history/potentialHistoryResponseDtoBody.d.ts +0 -29
- package/types/maplestory/api/response/history/starforceEventDtoBody.d.ts +0 -8
- package/types/maplestory/api/response/history/starforceHistoryResponseDtoBody.d.ts +0 -7
- package/types/maplestory/api/response/notice/cashshopNoticeListDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/notice/eventNoticeListDtoBody.d.ts +0 -12
- package/types/maplestory/api/response/notice/noticeListDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/notice/updateNoticeListDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/ranking/achievementRankingResponseDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/ranking/dojangRankingResponseDtoBody.d.ts +0 -14
- package/types/maplestory/api/response/ranking/guildRankingResponseDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/ranking/rankingResponseDtoBody.d.ts +0 -7
- package/types/maplestory/api/response/ranking/theSeedRankingResponseDtoBody.d.ts +0 -14
- package/types/maplestory/api/response/ranking/unionRankingResponseDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/union/unionArtifactDtoBody.d.ts +0 -20
- package/types/maplestory/api/response/union/unionChampionDtoBody.d.ts +0 -16
- package/types/maplestory/api/response/union/unionRaiderDtoBody.d.ts +0 -39
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
import { CharacterBeautyEquipmentDto as CharacterBeautyEquipmentDto$1, CharacterBeautyEquipmentFaceDto as CharacterBeautyEquipmentFaceDto$1, CharacterBeautyEquipmentHairDto as CharacterBeautyEquipmentHairDto$1, CharacterBeautyEquipmentSkinDto as CharacterBeautyEquipmentSkinDto$1 } from '../../../common/dto/character/characterBeautyEquipment.js';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Character equipped hair, face, and skin information
|
|
5
|
+
*/
|
|
6
|
+
class CharacterBeautyEquipmentDto extends CharacterBeautyEquipmentDto$1 {
|
|
7
|
+
/**
|
|
8
|
+
* Reference date for query (SGT)
|
|
9
|
+
*/
|
|
10
|
+
date;
|
|
11
|
+
/**
|
|
12
|
+
* Character gender
|
|
13
|
+
*/
|
|
14
|
+
characterGender;
|
|
15
|
+
/**
|
|
16
|
+
* Character job
|
|
17
|
+
*/
|
|
18
|
+
characterClass;
|
|
19
|
+
/**
|
|
20
|
+
* Character hair information<br>
|
|
21
|
+
* (Alpha mode for Zero, Normal mode for Angelic Buster)
|
|
22
|
+
*/
|
|
23
|
+
characterHair;
|
|
24
|
+
/**
|
|
25
|
+
* Character face information<br>
|
|
26
|
+
* (Alpha mode for Zero, Normal mode for Angelic Buster)
|
|
27
|
+
*/
|
|
28
|
+
characterFace;
|
|
29
|
+
/**
|
|
30
|
+
* Character skin information<br>
|
|
31
|
+
* (Alpha mode for Zero, Normal mode for Angelic Buster)
|
|
32
|
+
*/
|
|
33
|
+
characterSkin;
|
|
34
|
+
/**
|
|
35
|
+
* Hair information applied in Beta mode for Zero or Dress-up mode for Angelic Buster
|
|
36
|
+
*/
|
|
37
|
+
additionalCharacterHair;
|
|
38
|
+
/**
|
|
39
|
+
* Face information applied in Beta mode for Zero or Dress-up mode for Angelic Buster
|
|
40
|
+
*/
|
|
41
|
+
additionalCharacterFace;
|
|
42
|
+
/**
|
|
43
|
+
* Skin information applied in Beta mode for Zero or Dress-up mode for Angelic Buster
|
|
44
|
+
*/
|
|
45
|
+
additionalCharacterSkin;
|
|
46
|
+
constructor(obj) {
|
|
47
|
+
super();
|
|
48
|
+
const { date, character_gender, character_class, character_hair, character_face, character_skin, additional_character_hair, additional_character_face, additional_character_skin, } = obj;
|
|
49
|
+
this.date = date ? new Date(date) : null;
|
|
50
|
+
this.characterGender = character_gender;
|
|
51
|
+
this.characterClass = character_class;
|
|
52
|
+
this.characterHair = character_hair
|
|
53
|
+
? new CharacterBeautyEquipmentHairDto(character_hair)
|
|
54
|
+
: null;
|
|
55
|
+
this.characterFace = character_face
|
|
56
|
+
? new CharacterBeautyEquipmentFaceDto(character_face)
|
|
57
|
+
: null;
|
|
58
|
+
this.characterSkin = character_skin
|
|
59
|
+
? new CharacterBeautyEquipmentSkinDto(character_skin)
|
|
60
|
+
: null;
|
|
61
|
+
this.additionalCharacterHair = additional_character_hair
|
|
62
|
+
? new CharacterBeautyEquipmentHairDto(additional_character_hair)
|
|
63
|
+
: null;
|
|
64
|
+
this.additionalCharacterFace = additional_character_face
|
|
65
|
+
? new CharacterBeautyEquipmentFaceDto(additional_character_face)
|
|
66
|
+
: null;
|
|
67
|
+
this.additionalCharacterSkin = additional_character_skin
|
|
68
|
+
? new CharacterBeautyEquipmentSkinDto(additional_character_skin)
|
|
69
|
+
: null;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* Character face information
|
|
74
|
+
*/
|
|
75
|
+
class CharacterBeautyEquipmentFaceDto extends CharacterBeautyEquipmentFaceDto$1 {
|
|
76
|
+
/**
|
|
77
|
+
* Face name
|
|
78
|
+
*/
|
|
79
|
+
faceName;
|
|
80
|
+
/**
|
|
81
|
+
* Base face color
|
|
82
|
+
*/
|
|
83
|
+
baseColor;
|
|
84
|
+
/**
|
|
85
|
+
* Mixed face color
|
|
86
|
+
*/
|
|
87
|
+
mixColor;
|
|
88
|
+
/**
|
|
89
|
+
* Dye ratio for mixed face color
|
|
90
|
+
*/
|
|
91
|
+
mixRate;
|
|
92
|
+
constructor(obj) {
|
|
93
|
+
super();
|
|
94
|
+
const { face_name, base_color, mix_color, mix_rate } = obj;
|
|
95
|
+
this.faceName = face_name;
|
|
96
|
+
this.baseColor = base_color;
|
|
97
|
+
this.mixColor = mix_color;
|
|
98
|
+
this.mixRate = mix_rate;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* Character hair information
|
|
103
|
+
*/
|
|
104
|
+
class CharacterBeautyEquipmentHairDto extends CharacterBeautyEquipmentHairDto$1 {
|
|
105
|
+
/**
|
|
106
|
+
* Hair name
|
|
107
|
+
*/
|
|
108
|
+
hairName;
|
|
109
|
+
/**
|
|
110
|
+
* Base hair color
|
|
111
|
+
*/
|
|
112
|
+
baseColor;
|
|
113
|
+
/**
|
|
114
|
+
* Mixed hair color
|
|
115
|
+
*/
|
|
116
|
+
mixColor;
|
|
117
|
+
/**
|
|
118
|
+
* Dye ratio for mixed hair color
|
|
119
|
+
*/
|
|
120
|
+
mixRate;
|
|
121
|
+
constructor(obj) {
|
|
122
|
+
super();
|
|
123
|
+
const { hair_name, base_color, mix_color, mix_rate } = obj;
|
|
124
|
+
this.hairName = hair_name;
|
|
125
|
+
this.baseColor = base_color;
|
|
126
|
+
this.mixColor = mix_color;
|
|
127
|
+
this.mixRate = mix_rate;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
/**
|
|
131
|
+
* Character skin information
|
|
132
|
+
*/
|
|
133
|
+
class CharacterBeautyEquipmentSkinDto extends CharacterBeautyEquipmentSkinDto$1 {
|
|
134
|
+
/**
|
|
135
|
+
* Skin name
|
|
136
|
+
*/
|
|
137
|
+
skinName;
|
|
138
|
+
/**
|
|
139
|
+
* Color style
|
|
140
|
+
*/
|
|
141
|
+
colorStyle;
|
|
142
|
+
/**
|
|
143
|
+
* Skin hue
|
|
144
|
+
*/
|
|
145
|
+
hue;
|
|
146
|
+
/**
|
|
147
|
+
* Skin saturation
|
|
148
|
+
*/
|
|
149
|
+
saturation;
|
|
150
|
+
/**
|
|
151
|
+
* Skin brightness
|
|
152
|
+
*/
|
|
153
|
+
brightness;
|
|
154
|
+
constructor(obj) {
|
|
155
|
+
super();
|
|
156
|
+
const { skin_name, color_style, hue, saturation, brightness } = obj;
|
|
157
|
+
this.skinName = skin_name;
|
|
158
|
+
this.colorStyle = color_style;
|
|
159
|
+
this.hue = hue;
|
|
160
|
+
this.saturation = saturation;
|
|
161
|
+
this.brightness = brightness;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
export { CharacterBeautyEquipmentDto, CharacterBeautyEquipmentFaceDto, CharacterBeautyEquipmentHairDto, CharacterBeautyEquipmentSkinDto };
|
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
import { CharacterCashItemEquipmentDto as CharacterCashItemEquipmentDto$1, CharacterCashItemEquipmentColoringPrismDto as CharacterCashItemEquipmentColoringPrismDto$1, CharacterCashItemEquipmentOptionDto as CharacterCashItemEquipmentOptionDto$1, CharacterCashItemEquipmentPresetDto as CharacterCashItemEquipmentPresetDto$1 } from '../../../common/dto/character/characterCashItemEquipment.js';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Character cash item equipment information
|
|
5
|
+
*/
|
|
6
|
+
class CharacterCashItemEquipmentDto extends CharacterCashItemEquipmentDto$1 {
|
|
7
|
+
/**
|
|
8
|
+
* Reference date for query (SGT, daily data with hours and minutes set to 0)
|
|
9
|
+
*/
|
|
10
|
+
date;
|
|
11
|
+
/**
|
|
12
|
+
* Character gender
|
|
13
|
+
*/
|
|
14
|
+
characterGender;
|
|
15
|
+
/**
|
|
16
|
+
* Character job
|
|
17
|
+
*/
|
|
18
|
+
characterClass;
|
|
19
|
+
/**
|
|
20
|
+
* Character appearance mode (0:Normal mode, 1:Beta for Zero, Dress-up mode for Angelic Buster)
|
|
21
|
+
*/
|
|
22
|
+
characterLookMode;
|
|
23
|
+
/**
|
|
24
|
+
* Preset number for equipped cash item
|
|
25
|
+
*/
|
|
26
|
+
presetNo;
|
|
27
|
+
/**
|
|
28
|
+
* Equipped cash item
|
|
29
|
+
*/
|
|
30
|
+
cashItemEquipmentBase;
|
|
31
|
+
/**
|
|
32
|
+
* Cosmetic item preset 1
|
|
33
|
+
*/
|
|
34
|
+
cashItemEquipmentPreset1;
|
|
35
|
+
/**
|
|
36
|
+
* Cosmetic item preset 2
|
|
37
|
+
*/
|
|
38
|
+
cashItemEquipmentPreset2;
|
|
39
|
+
/**
|
|
40
|
+
* Cosmetic item preset 3
|
|
41
|
+
*/
|
|
42
|
+
cashItemEquipmentPreset3;
|
|
43
|
+
/**
|
|
44
|
+
* Equipped cash items for Beta mode (if Zero) or Dress-up mode (if Angelic Buster)
|
|
45
|
+
*/
|
|
46
|
+
additionalCashItemEquipmentBase;
|
|
47
|
+
/**
|
|
48
|
+
* Cosmetic item preset 1 for Beta mode (if Zero) or Dress-up mode (if Angelic Buster)
|
|
49
|
+
*/
|
|
50
|
+
additionalCashItemEquipmentPreset1;
|
|
51
|
+
/**
|
|
52
|
+
* Cosmetic item preset 2 for Beta mode (if Zero) or Dress-up mode (if Angelic Buster)
|
|
53
|
+
*/
|
|
54
|
+
additionalCashItemEquipmentPreset2;
|
|
55
|
+
/**
|
|
56
|
+
* Cosmetic item preset 3 for Beta mode (if Zero) or Dress-up mode (if Angelic Buster)
|
|
57
|
+
*/
|
|
58
|
+
additionalCashItemEquipmentPreset3;
|
|
59
|
+
constructor(obj) {
|
|
60
|
+
super();
|
|
61
|
+
const { date, character_gender, character_class, character_look_mode, preset_no, cash_item_equipment_base, cash_item_equipment_preset_1, cash_item_equipment_preset_2, cash_item_equipment_preset_3, additional_cash_item_equipment_base, additional_cash_item_equipment_preset_1, additional_cash_item_equipment_preset_2, additional_cash_item_equipment_preset_3, } = obj;
|
|
62
|
+
this.date = date ? new Date(date) : null;
|
|
63
|
+
this.characterGender = character_gender;
|
|
64
|
+
this.characterClass = character_class;
|
|
65
|
+
this.characterLookMode = character_look_mode;
|
|
66
|
+
this.presetNo = preset_no;
|
|
67
|
+
this.cashItemEquipmentBase = cash_item_equipment_base.map((preset) => new CharacterCashItemEquipmentPresetDto(preset));
|
|
68
|
+
this.cashItemEquipmentPreset1 = cash_item_equipment_preset_1.map((preset) => new CharacterCashItemEquipmentPresetDto(preset));
|
|
69
|
+
this.cashItemEquipmentPreset2 = cash_item_equipment_preset_2.map((preset) => new CharacterCashItemEquipmentPresetDto(preset));
|
|
70
|
+
this.cashItemEquipmentPreset3 = cash_item_equipment_preset_3.map((preset) => new CharacterCashItemEquipmentPresetDto(preset));
|
|
71
|
+
this.additionalCashItemEquipmentBase =
|
|
72
|
+
additional_cash_item_equipment_base.map((preset) => new CharacterCashItemEquipmentPresetDto(preset));
|
|
73
|
+
this.additionalCashItemEquipmentPreset1 =
|
|
74
|
+
additional_cash_item_equipment_preset_1.map((preset) => new CharacterCashItemEquipmentPresetDto(preset));
|
|
75
|
+
this.additionalCashItemEquipmentPreset2 =
|
|
76
|
+
additional_cash_item_equipment_preset_2.map((preset) => new CharacterCashItemEquipmentPresetDto(preset));
|
|
77
|
+
this.additionalCashItemEquipmentPreset3 =
|
|
78
|
+
additional_cash_item_equipment_preset_3.map((preset) => new CharacterCashItemEquipmentPresetDto(preset));
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* Cash equipment coloring prism information
|
|
83
|
+
*/
|
|
84
|
+
class CharacterCashItemEquipmentColoringPrismDto extends CharacterCashItemEquipmentColoringPrismDto$1 {
|
|
85
|
+
/**
|
|
86
|
+
* Coloring prism color range
|
|
87
|
+
*/
|
|
88
|
+
colorRange;
|
|
89
|
+
/**
|
|
90
|
+
* Coloring prism hue
|
|
91
|
+
*/
|
|
92
|
+
hue;
|
|
93
|
+
/**
|
|
94
|
+
* Coloring prism saturation
|
|
95
|
+
*/
|
|
96
|
+
saturation;
|
|
97
|
+
/**
|
|
98
|
+
* Coloring prism brightness
|
|
99
|
+
*/
|
|
100
|
+
value;
|
|
101
|
+
constructor(obj) {
|
|
102
|
+
super();
|
|
103
|
+
const { color_range, hue, saturation, value } = obj;
|
|
104
|
+
this.colorRange = color_range;
|
|
105
|
+
this.hue = hue;
|
|
106
|
+
this.saturation = saturation;
|
|
107
|
+
this.value = value;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* Cash equipment option
|
|
112
|
+
*/
|
|
113
|
+
class CharacterCashItemEquipmentOptionDto extends CharacterCashItemEquipmentOptionDto$1 {
|
|
114
|
+
/**
|
|
115
|
+
* Option type
|
|
116
|
+
*/
|
|
117
|
+
optionType;
|
|
118
|
+
/**
|
|
119
|
+
* Option value
|
|
120
|
+
*/
|
|
121
|
+
optionValue;
|
|
122
|
+
constructor(obj) {
|
|
123
|
+
super();
|
|
124
|
+
const { option_type, option_value } = obj;
|
|
125
|
+
this.optionType = option_type;
|
|
126
|
+
this.optionValue = option_value;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
/**
|
|
130
|
+
* Equipped cash item preset information
|
|
131
|
+
*/
|
|
132
|
+
class CharacterCashItemEquipmentPresetDto extends CharacterCashItemEquipmentPresetDto$1 {
|
|
133
|
+
/**
|
|
134
|
+
* Cash equipment part name
|
|
135
|
+
*/
|
|
136
|
+
cashItemEquipmentPart;
|
|
137
|
+
/**
|
|
138
|
+
* Cash equipment slot position
|
|
139
|
+
*/
|
|
140
|
+
cashItemEquipmentSlot;
|
|
141
|
+
/**
|
|
142
|
+
* Cash equipment name
|
|
143
|
+
*/
|
|
144
|
+
cashItemName;
|
|
145
|
+
/**
|
|
146
|
+
* Cash equipment icon
|
|
147
|
+
*/
|
|
148
|
+
cashItemIcon;
|
|
149
|
+
/**
|
|
150
|
+
* Cash equipment description
|
|
151
|
+
*/
|
|
152
|
+
cashItemDescription;
|
|
153
|
+
/**
|
|
154
|
+
* Cash equipment option
|
|
155
|
+
*/
|
|
156
|
+
cashItemOption;
|
|
157
|
+
/**
|
|
158
|
+
* Cash equipment validity period (SGT)
|
|
159
|
+
*/
|
|
160
|
+
dateExpire = null;
|
|
161
|
+
/**
|
|
162
|
+
* Whether the cash equipment is expired
|
|
163
|
+
*/
|
|
164
|
+
isExpired = null;
|
|
165
|
+
/**
|
|
166
|
+
* Cash equipment option validity period (SGT, data with minutes set to 0)
|
|
167
|
+
*/
|
|
168
|
+
dateOptionExpire = null;
|
|
169
|
+
/**
|
|
170
|
+
* Whether the cash equipment option is expired
|
|
171
|
+
*/
|
|
172
|
+
isOptionExpired = null;
|
|
173
|
+
/**
|
|
174
|
+
* Cash equipment label information
|
|
175
|
+
*/
|
|
176
|
+
cashItemLabel;
|
|
177
|
+
/**
|
|
178
|
+
* Cash equipment coloring prism information
|
|
179
|
+
*/
|
|
180
|
+
cashItemColoringPrism;
|
|
181
|
+
/**
|
|
182
|
+
* Gender compatibility for item equipment
|
|
183
|
+
*/
|
|
184
|
+
itemGender;
|
|
185
|
+
constructor(obj) {
|
|
186
|
+
super();
|
|
187
|
+
const { cash_item_equipment_part, cash_item_equipment_slot, cash_item_name, cash_item_icon, cash_item_description, cash_item_option, date_expire, date_option_expire, cash_item_label, cash_item_coloring_prism, item_gender, } = obj;
|
|
188
|
+
this.cashItemEquipmentPart = cash_item_equipment_part;
|
|
189
|
+
this.cashItemEquipmentSlot = cash_item_equipment_slot;
|
|
190
|
+
this.cashItemName = cash_item_name;
|
|
191
|
+
this.cashItemIcon = cash_item_icon;
|
|
192
|
+
this.cashItemDescription = cash_item_description;
|
|
193
|
+
this.cashItemOption = cash_item_option.map((option) => new CharacterCashItemEquipmentOptionDto(option));
|
|
194
|
+
this.cashItemLabel = cash_item_label;
|
|
195
|
+
this.cashItemColoringPrism = cash_item_coloring_prism
|
|
196
|
+
? new CharacterCashItemEquipmentColoringPrismDto(cash_item_coloring_prism)
|
|
197
|
+
: null;
|
|
198
|
+
this.itemGender = item_gender;
|
|
199
|
+
if (date_expire === 'expired') {
|
|
200
|
+
this.isExpired = true;
|
|
201
|
+
}
|
|
202
|
+
else if (typeof date_expire === 'string') {
|
|
203
|
+
this.dateExpire = date_expire ? new Date(date_expire) : null;
|
|
204
|
+
}
|
|
205
|
+
if (date_option_expire === 'expired') {
|
|
206
|
+
this.isOptionExpired = true;
|
|
207
|
+
}
|
|
208
|
+
else if (typeof date_option_expire === 'string') {
|
|
209
|
+
this.dateOptionExpire = date_option_expire
|
|
210
|
+
? new Date(date_option_expire)
|
|
211
|
+
: null;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
export { CharacterCashItemEquipmentColoringPrismDto, CharacterCashItemEquipmentDto, CharacterCashItemEquipmentOptionDto, CharacterCashItemEquipmentPresetDto };
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { CharacterDojangDto as CharacterDojangDto$1 } from '../../../common/dto/character/characterDojang.js';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Character Mu Lung Garden highest record information
|
|
5
|
+
*/
|
|
6
|
+
class CharacterDojangDto extends CharacterDojangDto$1 {
|
|
7
|
+
/**
|
|
8
|
+
* Reference date for query (SGT, daily data with hours and minutes set to 0)
|
|
9
|
+
*/
|
|
10
|
+
date;
|
|
11
|
+
/**
|
|
12
|
+
* Character job
|
|
13
|
+
*/
|
|
14
|
+
characterClass;
|
|
15
|
+
/**
|
|
16
|
+
* World name
|
|
17
|
+
*/
|
|
18
|
+
worldName;
|
|
19
|
+
/**
|
|
20
|
+
* Highest floor record in Mu Lung Garden
|
|
21
|
+
*/
|
|
22
|
+
dojangBestFloor;
|
|
23
|
+
/**
|
|
24
|
+
* Achievement date of the highest Mu Lung Garden record (SGT, daily data with hours and minutes set to 0)
|
|
25
|
+
*/
|
|
26
|
+
dateDojangRecord;
|
|
27
|
+
/**
|
|
28
|
+
* Time taken to clear the highest floor in Mu Lung Garden (in seconds)
|
|
29
|
+
*/
|
|
30
|
+
dojangBestTime;
|
|
31
|
+
constructor(obj) {
|
|
32
|
+
super();
|
|
33
|
+
const { date, character_class, world_name, dojang_best_floor, date_dojang_record, dojang_best_time, } = obj;
|
|
34
|
+
this.date = date ? new Date(date) : null;
|
|
35
|
+
this.characterClass = character_class;
|
|
36
|
+
this.worldName = world_name;
|
|
37
|
+
this.dojangBestFloor = dojang_best_floor;
|
|
38
|
+
this.dateDojangRecord = date_dojang_record
|
|
39
|
+
? new Date(date_dojang_record)
|
|
40
|
+
: null;
|
|
41
|
+
this.dojangBestTime = dojang_best_time;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export { CharacterDojangDto };
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { CharacterHexaMatrixDto as CharacterHexaMatrixDto$1, CharacterHexaMatrixEquipmentLinkedSkillDto as CharacterHexaMatrixEquipmentLinkedSkillDto$1, CharacterHexaMatrixEquipmentDto as CharacterHexaMatrixEquipmentDto$1 } from '../../../common/dto/character/characterHexaMatrix.js';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Character HEXA Node information
|
|
5
|
+
*/
|
|
6
|
+
class CharacterHexaMatrixDto extends CharacterHexaMatrixDto$1 {
|
|
7
|
+
/**
|
|
8
|
+
* Reference date for query (SGT, daily data with hours and minutes set to 0)
|
|
9
|
+
*/
|
|
10
|
+
date;
|
|
11
|
+
/**
|
|
12
|
+
* HEXA Node information
|
|
13
|
+
*/
|
|
14
|
+
characterHexaCoreEquipment;
|
|
15
|
+
constructor(obj) {
|
|
16
|
+
super();
|
|
17
|
+
const { date, character_hexa_core_equipment } = obj;
|
|
18
|
+
this.date = date ? new Date(date) : null;
|
|
19
|
+
this.characterHexaCoreEquipment =
|
|
20
|
+
character_hexa_core_equipment?.map((equipment) => new CharacterHexaMatrixEquipmentDto(equipment)) ?? [];
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Linked skill
|
|
25
|
+
*/
|
|
26
|
+
class CharacterHexaMatrixEquipmentLinkedSkillDto extends CharacterHexaMatrixEquipmentLinkedSkillDto$1 {
|
|
27
|
+
/**
|
|
28
|
+
* HEXA Skill name
|
|
29
|
+
*/
|
|
30
|
+
hexaSkillId;
|
|
31
|
+
constructor(obj) {
|
|
32
|
+
super();
|
|
33
|
+
const { hexa_skill_id } = obj;
|
|
34
|
+
this.hexaSkillId = hexa_skill_id;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* HEXA Node information
|
|
39
|
+
*/
|
|
40
|
+
class CharacterHexaMatrixEquipmentDto extends CharacterHexaMatrixEquipmentDto$1 {
|
|
41
|
+
/**
|
|
42
|
+
* Node name
|
|
43
|
+
*/
|
|
44
|
+
hexaCoreName;
|
|
45
|
+
/**
|
|
46
|
+
* Node level
|
|
47
|
+
*/
|
|
48
|
+
hexaCoreLevel;
|
|
49
|
+
/**
|
|
50
|
+
* Node type
|
|
51
|
+
*/
|
|
52
|
+
hexaCoreType;
|
|
53
|
+
/**
|
|
54
|
+
* Linked skill
|
|
55
|
+
*/
|
|
56
|
+
linkedSkill;
|
|
57
|
+
constructor(obj) {
|
|
58
|
+
super();
|
|
59
|
+
const { hexa_core_name, hexa_core_level, hexa_core_type, linked_skill } = obj;
|
|
60
|
+
this.hexaCoreName = hexa_core_name;
|
|
61
|
+
this.hexaCoreLevel = hexa_core_level;
|
|
62
|
+
this.hexaCoreType = hexa_core_type;
|
|
63
|
+
this.linkedSkill = linked_skill.map((skill) => new CharacterHexaMatrixEquipmentLinkedSkillDto(skill));
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export { CharacterHexaMatrixDto, CharacterHexaMatrixEquipmentDto, CharacterHexaMatrixEquipmentLinkedSkillDto };
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import { CharacterHexaMatrixStatDto as CharacterHexaMatrixStatDto$1, CharacterHexaMatrixStatCoreDto as CharacterHexaMatrixStatCoreDto$1 } from '../../../common/dto/character/characterHexaMatrixStat.js';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Character HEXA Matrix configured HEXA stats information
|
|
5
|
+
*/
|
|
6
|
+
class CharacterHexaMatrixStatDto extends CharacterHexaMatrixStatDto$1 {
|
|
7
|
+
/**
|
|
8
|
+
* Reference date for query (SGT, daily data with hours and minutes set to 0)
|
|
9
|
+
*/
|
|
10
|
+
date;
|
|
11
|
+
/**
|
|
12
|
+
* Character job
|
|
13
|
+
*/
|
|
14
|
+
characterClass;
|
|
15
|
+
/**
|
|
16
|
+
* Information for HEXA Stat Node I
|
|
17
|
+
*/
|
|
18
|
+
characterHexaStatCore;
|
|
19
|
+
/**
|
|
20
|
+
* Information for HEXA Stat Node II
|
|
21
|
+
*/
|
|
22
|
+
characterHexaStatCore2;
|
|
23
|
+
/**
|
|
24
|
+
* Information for HEXA Stat Node III
|
|
25
|
+
*/
|
|
26
|
+
characterHexaStatCore3;
|
|
27
|
+
/**
|
|
28
|
+
* Preset HEXA Stat Node I information
|
|
29
|
+
*/
|
|
30
|
+
presetHexaStatCore;
|
|
31
|
+
/**
|
|
32
|
+
* Preset HEXA Stat Node II information
|
|
33
|
+
*/
|
|
34
|
+
presetHexaStatCore2;
|
|
35
|
+
/**
|
|
36
|
+
* Preset HEXA Stat Node III information
|
|
37
|
+
*/
|
|
38
|
+
presetHexaStatCore3;
|
|
39
|
+
constructor(obj) {
|
|
40
|
+
super();
|
|
41
|
+
const { date, character_class, character_hexa_stat_core, character_hexa_stat_core_2, character_hexa_stat_core_3, preset_hexa_stat_core, preset_hexa_stat_core_2, preset_hexa_stat_core_3, } = obj;
|
|
42
|
+
this.date = date ? new Date(date) : null;
|
|
43
|
+
this.characterClass = character_class;
|
|
44
|
+
this.characterHexaStatCore =
|
|
45
|
+
character_hexa_stat_core?.map((core) => new CharacterHexaMatrixStatCoreDto(core)) ?? [];
|
|
46
|
+
this.characterHexaStatCore2 =
|
|
47
|
+
character_hexa_stat_core_2?.map((core) => new CharacterHexaMatrixStatCoreDto(core)) ?? [];
|
|
48
|
+
this.characterHexaStatCore3 =
|
|
49
|
+
character_hexa_stat_core_3?.map((core) => new CharacterHexaMatrixStatCoreDto(core)) ?? [];
|
|
50
|
+
this.presetHexaStatCore =
|
|
51
|
+
preset_hexa_stat_core?.map((core) => new CharacterHexaMatrixStatCoreDto(core)) ?? [];
|
|
52
|
+
this.presetHexaStatCore2 =
|
|
53
|
+
preset_hexa_stat_core_2?.map((core) => new CharacterHexaMatrixStatCoreDto(core)) ?? [];
|
|
54
|
+
this.presetHexaStatCore3 =
|
|
55
|
+
preset_hexa_stat_core_3?.map((core) => new CharacterHexaMatrixStatCoreDto(core)) ?? [];
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* Information for HEXA Stat Node
|
|
60
|
+
*/
|
|
61
|
+
class CharacterHexaMatrixStatCoreDto extends CharacterHexaMatrixStatCoreDto$1 {
|
|
62
|
+
/**
|
|
63
|
+
* Slot index
|
|
64
|
+
*/
|
|
65
|
+
slotId;
|
|
66
|
+
/**
|
|
67
|
+
* Main Stat name
|
|
68
|
+
*/
|
|
69
|
+
mainStatName;
|
|
70
|
+
/**
|
|
71
|
+
* First sub stat name
|
|
72
|
+
*/
|
|
73
|
+
subStatName1;
|
|
74
|
+
/**
|
|
75
|
+
* Second sub stat name
|
|
76
|
+
*/
|
|
77
|
+
subStatName2;
|
|
78
|
+
/**
|
|
79
|
+
* Main Stat level
|
|
80
|
+
*/
|
|
81
|
+
mainStatLevel;
|
|
82
|
+
/**
|
|
83
|
+
* First sub stat level
|
|
84
|
+
*/
|
|
85
|
+
subStatLevel1;
|
|
86
|
+
/**
|
|
87
|
+
* Second sub stat level
|
|
88
|
+
*/
|
|
89
|
+
subStatLevel2;
|
|
90
|
+
/**
|
|
91
|
+
* Stat core level
|
|
92
|
+
*/
|
|
93
|
+
statGrade;
|
|
94
|
+
constructor(obj) {
|
|
95
|
+
super();
|
|
96
|
+
const { slot_id, main_stat_name, sub_stat_name_1, sub_stat_name_2, main_stat_level, sub_stat_level_1, sub_stat_level_2, stat_grade, } = obj;
|
|
97
|
+
this.slotId = slot_id;
|
|
98
|
+
this.mainStatName = main_stat_name;
|
|
99
|
+
this.subStatName1 = sub_stat_name_1;
|
|
100
|
+
this.subStatName2 = sub_stat_name_2;
|
|
101
|
+
this.mainStatLevel = main_stat_level;
|
|
102
|
+
this.subStatLevel1 = sub_stat_level_1;
|
|
103
|
+
this.subStatLevel2 = sub_stat_level_2;
|
|
104
|
+
this.statGrade = stat_grade;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
export { CharacterHexaMatrixStatCoreDto, CharacterHexaMatrixStatDto };
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { CharacterHyperStatDto as CharacterHyperStatDto$1, CharacterHyperStatPresetDto as CharacterHyperStatPresetDto$1 } from '../../../common/dto/character/characterHyperStat.js';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Character Hyper Stat information
|
|
5
|
+
*/
|
|
6
|
+
class CharacterHyperStatDto extends CharacterHyperStatDto$1 {
|
|
7
|
+
/**
|
|
8
|
+
* Reference date for query (SGT, daily data with hours and minutes set to 0)
|
|
9
|
+
*/
|
|
10
|
+
date;
|
|
11
|
+
/**
|
|
12
|
+
* Character job
|
|
13
|
+
*/
|
|
14
|
+
characterClass;
|
|
15
|
+
/**
|
|
16
|
+
* Active preset number
|
|
17
|
+
*/
|
|
18
|
+
usePresetNo;
|
|
19
|
+
/**
|
|
20
|
+
* Maximum available Hyper Stat points
|
|
21
|
+
*/
|
|
22
|
+
useAvailableHyperStat;
|
|
23
|
+
/**
|
|
24
|
+
* Hyper Stat information for preset 1
|
|
25
|
+
*/
|
|
26
|
+
hyperStatPreset1;
|
|
27
|
+
/**
|
|
28
|
+
* Remaining Hyper Stat points for preset 1
|
|
29
|
+
*/
|
|
30
|
+
hyperStatPreset1RemainPoint;
|
|
31
|
+
/**
|
|
32
|
+
* Hyper Stat information for preset 2
|
|
33
|
+
*/
|
|
34
|
+
hyperStatPreset2;
|
|
35
|
+
/**
|
|
36
|
+
* Remaining Hyper Stat points for preset 2
|
|
37
|
+
*/
|
|
38
|
+
hyperStatPreset2RemainPoint;
|
|
39
|
+
/**
|
|
40
|
+
* Hyper Stat information for preset 3
|
|
41
|
+
*/
|
|
42
|
+
hyperStatPreset3;
|
|
43
|
+
/**
|
|
44
|
+
* Remaining Hyper Stat points for preset 3
|
|
45
|
+
*/
|
|
46
|
+
hyperStatPreset3RemainPoint;
|
|
47
|
+
constructor(obj) {
|
|
48
|
+
super();
|
|
49
|
+
const { date, character_class, use_preset_no, use_available_hyper_stat, hyper_stat_preset_1, hyper_stat_preset_1_remain_point, hyper_stat_preset_2, hyper_stat_preset_2_remain_point, hyper_stat_preset_3, hyper_stat_preset_3_remain_point, } = obj;
|
|
50
|
+
this.date = date ? new Date(date) : null;
|
|
51
|
+
this.characterClass = character_class;
|
|
52
|
+
this.usePresetNo = use_preset_no;
|
|
53
|
+
this.useAvailableHyperStat = use_available_hyper_stat;
|
|
54
|
+
this.hyperStatPreset1 = hyper_stat_preset_1.map((preset) => new CharacterHyperStatPresetDto(preset));
|
|
55
|
+
this.hyperStatPreset1RemainPoint = hyper_stat_preset_1_remain_point;
|
|
56
|
+
this.hyperStatPreset2 = hyper_stat_preset_2.map((preset) => new CharacterHyperStatPresetDto(preset));
|
|
57
|
+
this.hyperStatPreset2RemainPoint = hyper_stat_preset_2_remain_point;
|
|
58
|
+
this.hyperStatPreset3 = hyper_stat_preset_3.map((preset) => new CharacterHyperStatPresetDto(preset));
|
|
59
|
+
this.hyperStatPreset3RemainPoint = hyper_stat_preset_3_remain_point;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* Hyper Stat information for preset
|
|
64
|
+
*/
|
|
65
|
+
class CharacterHyperStatPresetDto extends CharacterHyperStatPresetDto$1 {
|
|
66
|
+
/**
|
|
67
|
+
* Stat type
|
|
68
|
+
*/
|
|
69
|
+
statType;
|
|
70
|
+
/**
|
|
71
|
+
* Stat points to invest
|
|
72
|
+
*/
|
|
73
|
+
statPoint;
|
|
74
|
+
/**
|
|
75
|
+
* Stat level
|
|
76
|
+
*/
|
|
77
|
+
statLevel;
|
|
78
|
+
/**
|
|
79
|
+
* Stat increases
|
|
80
|
+
*/
|
|
81
|
+
statIncrease;
|
|
82
|
+
constructor(obj) {
|
|
83
|
+
super();
|
|
84
|
+
const { stat_type, stat_point, stat_level, stat_increase } = obj;
|
|
85
|
+
this.statType = stat_type;
|
|
86
|
+
this.statPoint = stat_point;
|
|
87
|
+
this.statLevel = stat_level;
|
|
88
|
+
this.statIncrease = stat_increase;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export { CharacterHyperStatDto, CharacterHyperStatPresetDto };
|