maplestory-openapi 2.13.1 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +37 -6
- package/dist/cjs/_virtual/_commonjsHelpers.js +7 -0
- package/dist/cjs/_virtual/index.js_commonjs-exports.js +7 -0
- package/dist/cjs/_virtual/index.js_commonjs-exports2.js +7 -0
- package/dist/cjs/_virtual/index.js_commonjs-exports3.js +7 -0
- package/dist/cjs/_virtual/timezone.js_commonjs-module.js +7 -0
- package/dist/cjs/_virtual/utc.js_commonjs-module.js +7 -0
- package/dist/cjs/index.js +133 -0
- package/dist/cjs/maplestory/api/common/dto/character/character.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterAbility.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterAndroidEquipment.js +29 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterBasic.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterBeautyEquipment.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterCashItemEquipment.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterDojang.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterHexaMatrix.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterHexaMatrixStat.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterHyperStat.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterImage.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterItemEquipment.js +38 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterLinkSkill.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterList.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterPetEquipment.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterPopularity.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterPropensity.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterSetEffect.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterSkill.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterStat.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterSymbolEquipment.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterVMatrix.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/guild/guild.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/guild/guildBasic.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/union/union.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/union/unionArtifact.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/union/unionRaider.js +23 -0
- package/dist/cjs/maplestory/api/common/enum/characterImage.js +94 -0
- package/dist/cjs/maplestory/api/common/enum/potentialOptionGrade.js +11 -0
- package/dist/cjs/maplestory/api/common/lib.js +26 -0
- package/dist/cjs/maplestory/api/common/mapleStoryApi.js +121 -0
- package/dist/cjs/maplestory/api/common/mapleStoryApiError.js +50 -0
- package/dist/cjs/maplestory/api/kms/dto/character/character.js +22 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterAbility.js +108 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterAndroidEquipment.js +456 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterBasic.js +99 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterBeautyEquipment.js +194 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterCashItemEquipment.js +239 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterDojang.js +49 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterHexaMatrix.js +73 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterHexaMatrixStat.js +113 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterHyperStat.js +97 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterImage.js +81 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterItemEquipment.js +1206 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterLinkSkill.js +115 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterList.js +77 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterPetEquipment.js +332 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterPopularity.js +27 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterPropensity.js +52 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterSetEffect.js +97 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterSkill.js +77 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterStat.js +57 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterSymbolEquipment.js +119 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterVMatrix.js +88 -0
- package/dist/cjs/maplestory/api/kms/dto/guild/guild.js +22 -0
- package/dist/cjs/maplestory/api/kms/dto/guild/guildBasic.js +107 -0
- package/dist/cjs/maplestory/api/kms/dto/history/cubeHistory.js +165 -0
- package/dist/cjs/maplestory/api/kms/dto/history/potentialHistory.js +160 -0
- package/dist/cjs/maplestory/api/kms/dto/history/starforceHistory.js +159 -0
- package/dist/cjs/maplestory/api/kms/dto/inspectionInfo.js +34 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/cashshopNoticeDetail.js +55 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/cashshopNoticeList.js +69 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/eventNoticeDetail.js +44 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/eventNoticeList.js +58 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/noticeDetail.js +34 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/noticeList.js +48 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/updateNoticeDetail.js +34 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/updateNoticeList.js +48 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/achievementRanking.js +68 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/dojangRanking.js +73 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/guildRanking.js +68 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/overallRanking.js +78 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/theSeedRanking.js +73 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/unionRanking.js +68 -0
- package/dist/cjs/maplestory/api/kms/dto/union/union.js +47 -0
- package/dist/cjs/maplestory/api/kms/dto/union/unionArtifact.js +111 -0
- package/dist/cjs/maplestory/api/kms/dto/union/unionChampion.js +77 -0
- package/dist/cjs/maplestory/api/kms/dto/union/unionRaider.js +209 -0
- package/dist/cjs/maplestory/api/kms/kms.js +170 -0
- package/dist/cjs/maplestory/api/kms/mapleStoryApi.js +1321 -0
- package/dist/cjs/maplestory/api/msea/dto/character/character.js +22 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterAbility.js +108 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterAndroidEquipment.js +424 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterBasic.js +99 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterBeautyEquipment.js +172 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterCashItemEquipment.js +223 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterDojang.js +49 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterHexaMatrix.js +73 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterHexaMatrixStat.js +113 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterHyperStat.js +97 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterImage.js +81 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterItemEquipment.js +1112 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterLinkSkill.js +115 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterPetEquipment.js +332 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterPopularity.js +27 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterPropensity.js +52 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterSetEffect.js +97 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterSkill.js +77 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterStat.js +57 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterSymbolEquipment.js +119 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterVMatrix.js +88 -0
- package/dist/cjs/maplestory/api/msea/dto/guild/guild.js +22 -0
- package/dist/cjs/maplestory/api/msea/dto/guild/guildBasic.js +107 -0
- package/dist/cjs/maplestory/api/msea/dto/union/union.js +47 -0
- package/dist/cjs/maplestory/api/msea/dto/union/unionArtifact.js +111 -0
- package/dist/cjs/maplestory/api/msea/dto/union/unionRaider.js +214 -0
- package/dist/cjs/maplestory/api/msea/mapleStoryApi.js +802 -0
- package/dist/cjs/maplestory/api/msea/msea.js +109 -0
- package/dist/cjs/node_modules/base64-js/index.js +154 -0
- package/dist/cjs/node_modules/buffer/index.js +2116 -0
- package/dist/cjs/node_modules/dayjs/plugin/timezone.js +12 -0
- package/dist/cjs/node_modules/dayjs/plugin/utc.js +12 -0
- package/dist/cjs/node_modules/ieee754/index.js +92 -0
- package/dist/esm/_virtual/_commonjsHelpers.js +3 -0
- package/dist/esm/_virtual/index.js_commonjs-exports.js +3 -0
- package/dist/esm/_virtual/index.js_commonjs-exports2.js +3 -0
- package/dist/esm/_virtual/index.js_commonjs-exports3.js +3 -0
- package/dist/esm/_virtual/timezone.js_commonjs-module.js +3 -0
- package/dist/esm/_virtual/utc.js_commonjs-module.js +3 -0
- package/dist/esm/index.js +30 -0
- package/dist/esm/maplestory/api/common/dto/character/character.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterAbility.js +8 -0
- package/dist/esm/maplestory/api/common/dto/character/characterAndroidEquipment.js +18 -0
- package/dist/esm/maplestory/api/common/dto/character/characterBasic.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterBeautyEquipment.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterCashItemEquipment.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterDojang.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterHexaMatrix.js +8 -0
- package/dist/esm/maplestory/api/common/dto/character/characterHexaMatrixStat.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterHyperStat.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterImage.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterItemEquipment.js +24 -0
- package/dist/esm/maplestory/api/common/dto/character/characterLinkSkill.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterList.js +8 -0
- package/dist/esm/maplestory/api/common/dto/character/characterPetEquipment.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterPopularity.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterPropensity.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterSetEffect.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterSkill.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterStat.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterSymbolEquipment.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterVMatrix.js +6 -0
- package/dist/esm/maplestory/api/common/dto/guild/guild.js +4 -0
- package/dist/esm/maplestory/api/common/dto/guild/guildBasic.js +6 -0
- package/dist/esm/maplestory/api/common/dto/union/union.js +4 -0
- package/dist/esm/maplestory/api/common/dto/union/unionArtifact.js +8 -0
- package/dist/esm/maplestory/api/common/dto/union/unionRaider.js +14 -0
- package/dist/esm/maplestory/api/common/enum/characterImage.js +92 -0
- package/dist/esm/maplestory/api/common/enum/potentialOptionGrade.js +9 -0
- package/dist/esm/maplestory/api/common/lib.js +22 -0
- package/dist/esm/maplestory/api/common/mapleStoryApi.js +112 -0
- package/dist/esm/maplestory/api/common/mapleStoryApiError.js +46 -0
- package/dist/esm/maplestory/api/kms/dto/character/character.js +18 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterAbility.js +102 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterAndroidEquipment.js +445 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterBasic.js +95 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterBeautyEquipment.js +187 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterCashItemEquipment.js +232 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterDojang.js +45 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterHexaMatrix.js +67 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterHexaMatrixStat.js +108 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterHyperStat.js +92 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterImage.js +77 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterItemEquipment.js +1191 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterLinkSkill.js +110 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterList.js +71 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterPetEquipment.js +325 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterPopularity.js +23 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterPropensity.js +48 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterSetEffect.js +90 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterSkill.js +72 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterStat.js +52 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterSymbolEquipment.js +114 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterVMatrix.js +83 -0
- package/dist/esm/maplestory/api/kms/dto/guild/guild.js +18 -0
- package/dist/esm/maplestory/api/kms/dto/guild/guildBasic.js +102 -0
- package/dist/esm/maplestory/api/kms/dto/history/cubeHistory.js +159 -0
- package/dist/esm/maplestory/api/kms/dto/history/potentialHistory.js +154 -0
- package/dist/esm/maplestory/api/kms/dto/history/starforceHistory.js +153 -0
- package/dist/esm/maplestory/api/kms/dto/inspectionInfo.js +30 -0
- package/dist/esm/maplestory/api/kms/dto/notice/cashshopNoticeDetail.js +51 -0
- package/dist/esm/maplestory/api/kms/dto/notice/cashshopNoticeList.js +64 -0
- package/dist/esm/maplestory/api/kms/dto/notice/eventNoticeDetail.js +40 -0
- package/dist/esm/maplestory/api/kms/dto/notice/eventNoticeList.js +53 -0
- package/dist/esm/maplestory/api/kms/dto/notice/noticeDetail.js +30 -0
- package/dist/esm/maplestory/api/kms/dto/notice/noticeList.js +43 -0
- package/dist/esm/maplestory/api/kms/dto/notice/updateNoticeDetail.js +30 -0
- package/dist/esm/maplestory/api/kms/dto/notice/updateNoticeList.js +43 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/achievementRanking.js +63 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/dojangRanking.js +68 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/guildRanking.js +63 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/overallRanking.js +73 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/theSeedRanking.js +68 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/unionRanking.js +63 -0
- package/dist/esm/maplestory/api/kms/dto/union/union.js +43 -0
- package/dist/esm/maplestory/api/kms/dto/union/unionArtifact.js +105 -0
- package/dist/esm/maplestory/api/kms/dto/union/unionChampion.js +71 -0
- package/dist/esm/maplestory/api/kms/dto/union/unionRaider.js +200 -0
- package/dist/esm/maplestory/api/kms/kms.js +47 -0
- package/dist/esm/maplestory/api/kms/mapleStoryApi.js +1312 -0
- package/dist/esm/maplestory/api/msea/dto/character/character.js +18 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterAbility.js +102 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterAndroidEquipment.js +413 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterBasic.js +95 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterBeautyEquipment.js +165 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterCashItemEquipment.js +216 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterDojang.js +45 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterHexaMatrix.js +67 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterHexaMatrixStat.js +108 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterHyperStat.js +92 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterImage.js +77 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterItemEquipment.js +1098 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterLinkSkill.js +110 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterPetEquipment.js +325 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterPopularity.js +23 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterPropensity.js +48 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterSetEffect.js +90 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterSkill.js +72 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterStat.js +52 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterSymbolEquipment.js +114 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterVMatrix.js +83 -0
- package/dist/esm/maplestory/api/msea/dto/guild/guild.js +18 -0
- package/dist/esm/maplestory/api/msea/dto/guild/guildBasic.js +102 -0
- package/dist/esm/maplestory/api/msea/dto/union/union.js +43 -0
- package/dist/esm/maplestory/api/msea/dto/union/unionArtifact.js +105 -0
- package/dist/esm/maplestory/api/msea/dto/union/unionRaider.js +205 -0
- package/dist/esm/maplestory/api/msea/mapleStoryApi.js +794 -0
- package/dist/esm/maplestory/api/msea/msea.js +27 -0
- package/dist/esm/node_modules/base64-js/index.js +151 -0
- package/dist/esm/node_modules/buffer/index.js +2113 -0
- package/dist/esm/node_modules/dayjs/plugin/timezone.js +10 -0
- package/dist/esm/node_modules/dayjs/plugin/utc.js +10 -0
- package/dist/esm/node_modules/ieee754/index.js +89 -0
- package/dist/index.min.js +1 -10
- package/package.json +14 -3
- package/types/index.d.ts +30 -111
- package/types/maplestory/api/common/dto/character/character.d.ts +3 -0
- package/types/maplestory/api/common/dto/character/characterAbility.d.ts +19 -0
- package/types/maplestory/api/common/dto/character/characterAndroidEquipment.d.ts +78 -0
- package/types/maplestory/api/common/dto/character/characterBasic.d.ts +18 -0
- package/types/maplestory/api/common/dto/character/characterBeautyEquipment.d.ts +30 -0
- package/types/maplestory/api/common/dto/character/characterCashItemEquipment.d.ts +40 -0
- package/types/maplestory/api/common/dto/character/characterDojang.d.ts +8 -0
- package/types/maplestory/api/common/dto/character/characterHexaMatrix.d.ts +13 -0
- package/types/maplestory/api/common/dto/character/characterHexaMatrixStat.d.ts +20 -0
- package/types/maplestory/api/common/dto/character/characterHyperStat.d.ts +18 -0
- package/types/maplestory/api/common/dto/character/characterImage.d.ts +16 -0
- package/types/maplestory/api/common/dto/character/characterItemEquipment.d.ts +216 -0
- package/types/maplestory/api/common/dto/character/characterLinkSkill.d.ts +20 -0
- package/types/maplestory/api/common/dto/character/characterList.d.ts +14 -0
- package/types/maplestory/api/common/dto/character/characterPetEquipment.d.ts +59 -0
- package/types/maplestory/api/common/dto/character/characterPopularity.d.ts +4 -0
- package/types/maplestory/api/common/dto/character/characterPropensity.d.ts +9 -0
- package/types/maplestory/api/common/dto/character/characterSetEffect.d.ts +18 -0
- package/types/maplestory/api/common/dto/character/characterSkill.d.ts +14 -0
- package/types/maplestory/api/common/dto/character/characterStat.d.ts +10 -0
- package/types/maplestory/api/common/dto/character/characterSymbolEquipment.d.ts +22 -0
- package/types/maplestory/api/common/dto/character/characterVMatrix.d.ts +16 -0
- package/types/maplestory/api/common/dto/guild/guild.d.ts +3 -0
- package/types/maplestory/api/common/dto/guild/guildBasic.d.ts +20 -0
- package/types/maplestory/api/common/dto/union/union.d.ts +8 -0
- package/types/maplestory/api/common/dto/union/unionArtifact.d.ts +20 -0
- package/types/maplestory/api/common/dto/union/unionRaider.d.ts +38 -0
- package/types/maplestory/api/common/enum/characterImage.d.ts +87 -0
- package/types/maplestory/api/common/enum/potentialOptionGrade.d.ts +6 -0
- package/types/maplestory/api/common/lib.d.ts +7 -0
- package/types/maplestory/api/common/mapleStoryApi.d.ts +140 -0
- package/types/maplestory/api/{mapleStoryApiError.d.ts → common/mapleStoryApiError.d.ts} +3 -4
- package/types/maplestory/api/common/mapleStoryApiErrorBody.d.ts +6 -0
- package/types/maplestory/api/kms/dto/character/character.d.ts +12 -0
- package/types/maplestory/api/kms/dto/character/characterAbility.d.ts +72 -0
- package/types/maplestory/api/kms/dto/character/characterAndroidEquipment.d.ts +322 -0
- package/types/maplestory/api/{dto/character/characterBasicDto.d.ts → kms/dto/character/characterBasic.d.ts} +7 -4
- package/types/maplestory/api/kms/dto/character/characterBeautyEquipment.d.ts +133 -0
- package/types/maplestory/api/kms/dto/character/characterCashItemEquipment.d.ts +166 -0
- package/types/maplestory/api/{dto/character/characterDojangDto.d.ts → kms/dto/character/characterDojang.d.ts} +6 -6
- package/types/maplestory/api/kms/dto/character/characterHexaMatrix.d.ts +48 -0
- package/types/maplestory/api/kms/dto/character/characterHexaMatrixStat.d.ts +78 -0
- package/types/maplestory/api/{dto/character/characterHyperStatDto.d.ts → kms/dto/character/characterHyperStat.d.ts} +27 -6
- package/types/maplestory/api/kms/dto/character/characterImage.d.ts +74 -0
- package/types/maplestory/api/kms/dto/character/characterItemEquipment.d.ts +914 -0
- package/types/maplestory/api/{dto/character/characterLinkSkillDto.d.ts → kms/dto/character/characterLinkSkill.d.ts} +35 -6
- package/types/maplestory/api/kms/dto/character/characterList.d.ts +52 -0
- package/types/maplestory/api/{dto/character/characterPetEquipmentDto.d.ts → kms/dto/character/characterPetEquipment.d.ts} +79 -7
- package/types/maplestory/api/kms/dto/character/characterPopularity.d.ts +16 -0
- package/types/maplestory/api/{dto/character/characterPropensityDto.d.ts → kms/dto/character/characterPropensity.d.ts} +7 -4
- package/types/maplestory/api/kms/dto/character/characterSetEffect.d.ts +66 -0
- package/types/maplestory/api/kms/dto/character/characterSkill.d.ts +54 -0
- package/types/maplestory/api/kms/dto/character/characterStat.d.ts +38 -0
- package/types/maplestory/api/{dto/character/characterSymbolEquipmentInfoDto.d.ts → kms/dto/character/characterSymbolEquipment.d.ts} +22 -4
- package/types/maplestory/api/kms/dto/character/characterVMatrix.d.ts +62 -0
- package/types/maplestory/api/kms/dto/guild/guild.d.ts +12 -0
- package/types/maplestory/api/kms/dto/guild/guildBasic.d.ts +78 -0
- package/types/maplestory/api/{dto/history/cubeHistoryDto.d.ts → kms/dto/history/cubeHistory.d.ts} +37 -6
- package/types/maplestory/api/{dto/history/potentialHistoryDto.d.ts → kms/dto/history/potentialHistory.d.ts} +37 -6
- package/types/maplestory/api/{dto/history/starforceHistoryDto.d.ts → kms/dto/history/starforceHistory.d.ts} +47 -5
- package/types/maplestory/api/{dto/inspectionInfoDto.d.ts → kms/dto/inspectionInfo.d.ts} +1 -2
- package/types/maplestory/api/{dto/notice/cashshopNoticeDetailDto.d.ts → kms/dto/notice/cashshopNoticeDetail.d.ts} +3 -4
- package/types/maplestory/api/{dto/notice/cashshopNoticeListItemDto.d.ts → kms/dto/notice/cashshopNoticeList.d.ts} +13 -4
- package/types/maplestory/api/{dto/notice/eventNoticeDetailDto.d.ts → kms/dto/notice/eventNoticeDetail.d.ts} +3 -4
- package/types/maplestory/api/kms/dto/notice/eventNoticeList.d.ts +41 -0
- package/types/maplestory/api/{dto/notice/noticeDetailDto.d.ts → kms/dto/notice/noticeDetail.d.ts} +3 -4
- package/types/maplestory/api/kms/dto/notice/noticeList.d.ts +33 -0
- package/types/maplestory/api/{dto/notice/updateNoticeDetailDto.d.ts → kms/dto/notice/updateNoticeDetail.d.ts} +3 -4
- package/types/maplestory/api/kms/dto/notice/updateNoticeList.d.ts +33 -0
- package/types/maplestory/api/{dto/ranking/achievementRankingDto.d.ts → kms/dto/ranking/achievementRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/dojangRankingDto.d.ts → kms/dto/ranking/dojangRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/guildRankingDto.d.ts → kms/dto/ranking/guildRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/overallRankingDto.d.ts → kms/dto/ranking/overallRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/theSeedRankingDto.d.ts → kms/dto/ranking/theSeedRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/unionRankingDto.d.ts → kms/dto/ranking/unionRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/union/unionDto.d.ts → kms/dto/union/union.d.ts} +5 -5
- package/types/maplestory/api/kms/dto/union/unionArtifact.d.ts +76 -0
- package/types/maplestory/api/kms/dto/union/unionChampion.d.ts +55 -0
- package/types/maplestory/api/kms/dto/union/unionRaider.d.ts +142 -0
- package/types/maplestory/api/kms/index.d.ts +47 -0
- package/types/maplestory/api/{mapleStoryApi.d.ts → kms/mapleStoryApi.d.ts} +83 -78
- package/types/maplestory/api/kms/response/character/characterAbilityBody.d.ts +19 -0
- package/types/maplestory/api/{response/character/characterAndroidEquipmentDtoBody.d.ts → kms/response/character/characterAndroidEquipmentBody.d.ts} +24 -21
- package/types/maplestory/api/{response/character/characterBasicDtoBody.d.ts → kms/response/character/characterBasicBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/character/characterBeautyEquipmentBody.d.ts +32 -0
- package/types/maplestory/api/kms/response/character/characterBody.d.ts +3 -0
- package/types/maplestory/api/{response/character/characterCashItemEquipmentDtoBody.d.ts → kms/response/character/characterCashItemEquipmentBody.d.ts} +15 -15
- package/types/maplestory/api/{response/character/characterDojangDtoBody.d.ts → kms/response/character/characterDojangBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/character/characterHexaMatrixBody.d.ts +13 -0
- package/types/maplestory/api/kms/response/character/characterHexaMatrixStatBody.d.ts +20 -0
- package/types/maplestory/api/{response/character/characterHyperStatDtoBody.d.ts → kms/response/character/characterHyperStatBody.d.ts} +5 -6
- package/types/maplestory/api/{response/character/characterItemEquipmentDtoBody.d.ts → kms/response/character/characterItemEquipmentBody.d.ts} +35 -34
- package/types/maplestory/api/kms/response/character/characterLinkSkillBody.d.ts +20 -0
- package/types/maplestory/api/kms/response/character/characterListBody.d.ts +14 -0
- package/types/maplestory/api/{response/character/characterPetEquipmentDtoBody.d.ts → kms/response/character/characterPetEquipmentBody.d.ts} +11 -12
- package/types/maplestory/api/kms/response/character/characterPopularityBody.d.ts +4 -0
- package/types/maplestory/api/{response/character/characterPropensityDtoBody.d.ts → kms/response/character/characterPropensityBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/character/characterSetEffectBody.d.ts +18 -0
- package/types/maplestory/api/{response/character/characterSkillDtoBody.d.ts → kms/response/character/characterSkillBody.d.ts} +3 -4
- package/types/maplestory/api/kms/response/character/characterStatBody.d.ts +10 -0
- package/types/maplestory/api/{response/character/characterSymbolEquipmentDtoBody.d.ts → kms/response/character/characterSymbolEquipmentBody.d.ts} +3 -4
- package/types/maplestory/api/{response/character/characterVMatrixDtoBody.d.ts → kms/response/character/characterVMatrixBody.d.ts} +2 -3
- package/types/maplestory/api/{response/guild/guildBasicDtoBody.d.ts → kms/response/guild/guildBasicBody.d.ts} +4 -5
- package/types/maplestory/api/kms/response/guild/guildBody.d.ts +3 -0
- package/types/maplestory/api/kms/response/history/cubeHistoryBody.d.ts +29 -0
- package/types/maplestory/api/kms/response/history/potentialHistoryBody.d.ts +28 -0
- package/types/maplestory/api/{response/history/starforceHistoryDtoBody.d.ts → kms/response/history/starforceHistoryBody.d.ts} +14 -4
- package/types/maplestory/api/{response → kms/response}/inspectionInfoSoapBody.d.ts +1 -2
- package/types/maplestory/api/{response/notice/cashshopNoticeDetailDtoBody.d.ts → kms/response/notice/cashshopNoticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/cashshopNoticeListBody.d.ts +12 -0
- package/types/maplestory/api/{response/notice/eventNoticeDetailDtoBody.d.ts → kms/response/notice/eventNoticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/eventNoticeListBody.d.ts +11 -0
- package/types/maplestory/api/{response/notice/noticeDetailDtoBody.d.ts → kms/response/notice/noticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/noticeListBody.d.ts +9 -0
- package/types/maplestory/api/{response/notice/updateNoticeDetailDtoBody.d.ts → kms/response/notice/updateNoticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/updateNoticeListBody.d.ts +9 -0
- package/types/maplestory/api/kms/response/ranking/achievementRankingBody.d.ts +12 -0
- package/types/maplestory/api/kms/response/ranking/dojangRankingBody.d.ts +13 -0
- package/types/maplestory/api/kms/response/ranking/guildRankingBody.d.ts +12 -0
- package/types/maplestory/api/{response/ranking/overallRankingResponseDtoBody.d.ts → kms/response/ranking/overallRankingBody.d.ts} +3 -4
- package/types/maplestory/api/kms/response/ranking/rankingResponseBody.d.ts +6 -0
- package/types/maplestory/api/kms/response/ranking/theSeedRankingBody.d.ts +13 -0
- package/types/maplestory/api/kms/response/ranking/unionRankingBody.d.ts +12 -0
- package/types/maplestory/api/kms/response/union/unionArtifactBody.d.ts +19 -0
- package/types/maplestory/api/{response/union/unionDtoBody.d.ts → kms/response/union/unionBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/union/unionChampionBody.d.ts +15 -0
- package/types/maplestory/api/kms/response/union/unionRaiderBody.d.ts +38 -0
- package/types/maplestory/api/msea/dto/character/character.d.ts +12 -0
- package/types/maplestory/api/msea/dto/character/characterAbility.d.ts +72 -0
- package/types/maplestory/api/msea/dto/character/characterAndroidEquipment.d.ts +299 -0
- package/types/maplestory/api/msea/dto/character/characterBasic.d.ts +72 -0
- package/types/maplestory/api/msea/dto/character/characterBeautyEquipment.d.ts +117 -0
- package/types/maplestory/api/msea/dto/character/characterCashItemEquipment.d.ts +154 -0
- package/types/maplestory/api/msea/dto/character/characterDojang.d.ts +32 -0
- package/types/maplestory/api/msea/dto/character/characterHexaMatrix.d.ts +48 -0
- package/types/maplestory/api/msea/dto/character/characterHexaMatrixStat.d.ts +78 -0
- package/types/maplestory/api/msea/dto/character/characterHyperStat.d.ts +70 -0
- package/types/maplestory/api/msea/dto/character/characterImage.d.ts +74 -0
- package/types/maplestory/api/msea/dto/character/characterItemEquipment.d.ts +844 -0
- package/types/maplestory/api/msea/dto/character/characterLinkSkill.d.ts +78 -0
- package/types/maplestory/api/msea/dto/character/characterPetEquipment.d.ts +230 -0
- package/types/maplestory/api/msea/dto/character/characterPopularity.d.ts +16 -0
- package/types/maplestory/api/msea/dto/character/characterPropensity.d.ts +36 -0
- package/types/maplestory/api/msea/dto/character/characterSetEffect.d.ts +66 -0
- package/types/maplestory/api/msea/dto/character/characterSkill.d.ts +54 -0
- package/types/maplestory/api/msea/dto/character/characterStat.d.ts +38 -0
- package/types/maplestory/api/msea/dto/character/characterSymbolEquipment.d.ts +86 -0
- package/types/maplestory/api/msea/dto/character/characterVMatrix.d.ts +62 -0
- package/types/maplestory/api/msea/dto/guild/guild.d.ts +12 -0
- package/types/maplestory/api/msea/dto/guild/guildBasic.d.ts +78 -0
- package/types/maplestory/api/msea/dto/union/union.d.ts +32 -0
- package/types/maplestory/api/msea/dto/union/unionArtifact.d.ts +76 -0
- package/types/maplestory/api/msea/dto/union/unionRaider.d.ts +147 -0
- package/types/maplestory/api/msea/index.d.ts +27 -0
- package/types/maplestory/api/msea/mapleStoryApi.d.ts +364 -0
- package/types/maplestory/api/msea/response/character/characterAbilityBody.d.ts +19 -0
- package/types/maplestory/api/msea/response/character/characterAndroidEquipmentBody.d.ts +76 -0
- package/types/maplestory/api/msea/response/character/characterBasicBody.d.ts +16 -0
- package/types/maplestory/api/msea/response/character/characterBeautyEquipmentBody.d.ts +30 -0
- package/types/maplestory/api/msea/response/character/characterBody.d.ts +3 -0
- package/types/maplestory/api/msea/response/character/characterCashItemEquipmentBody.d.ts +38 -0
- package/types/maplestory/api/msea/response/character/characterDojangBody.d.ts +8 -0
- package/types/maplestory/api/msea/response/character/characterHexaMatrixBody.d.ts +13 -0
- package/types/maplestory/api/msea/response/character/characterHexaMatrixStatBody.d.ts +20 -0
- package/types/maplestory/api/msea/response/character/characterHyperStatBody.d.ts +18 -0
- package/types/maplestory/api/msea/response/character/characterItemEquipmentBody.d.ts +190 -0
- package/types/maplestory/api/msea/response/character/characterLinkSkillBody.d.ts +20 -0
- package/types/maplestory/api/msea/response/character/characterPetEquipmentBody.d.ts +56 -0
- package/types/maplestory/api/msea/response/character/characterPopularityBody.d.ts +4 -0
- package/types/maplestory/api/msea/response/character/characterPropensityBody.d.ts +9 -0
- package/types/maplestory/api/msea/response/character/characterSetEffectBody.d.ts +18 -0
- package/types/maplestory/api/msea/response/character/characterSkillBody.d.ts +14 -0
- package/types/maplestory/api/msea/response/character/characterStatBody.d.ts +10 -0
- package/types/maplestory/api/msea/response/character/characterSymbolEquipmentBody.d.ts +22 -0
- package/types/maplestory/api/msea/response/character/characterVMatrixBody.d.ts +16 -0
- package/types/maplestory/api/msea/response/guild/guildBasicBody.d.ts +20 -0
- package/types/maplestory/api/msea/response/guild/guildBody.d.ts +3 -0
- package/types/maplestory/api/msea/response/union/unionArtifactBody.d.ts +19 -0
- package/types/maplestory/api/msea/response/union/unionBody.d.ts +8 -0
- package/types/maplestory/api/msea/response/union/unionRaiderBody.d.ts +38 -0
- package/dist/index.js +0 -9120
- package/dist/index.mjs +0 -9002
- package/types/maplestory/api/dto/character/characterAbilityDto.d.ts +0 -42
- package/types/maplestory/api/dto/character/characterAbilityInfoDto.d.ts +0 -20
- package/types/maplestory/api/dto/character/characterAbilityPresetDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterAndroidCashItemEquipmentColoringPrismDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterAndroidCashItemEquipmentDto.d.ts +0 -58
- package/types/maplestory/api/dto/character/characterAndroidCashItemEquipmentOptionDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterAndroidEquipmentDto.d.ts +0 -85
- package/types/maplestory/api/dto/character/characterAndroidEquipmentFaceDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterAndroidEquipmentHairDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterAndroidEquipmentPresetDto.d.ts +0 -59
- package/types/maplestory/api/dto/character/characterAndroidEquipmentSkinDto.d.ts +0 -28
- package/types/maplestory/api/dto/character/characterBeautyEquipmentDto.d.ts +0 -50
- package/types/maplestory/api/dto/character/characterBeautyEquipmentFaceDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterBeautyEquipmentHairDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterBeautyEquipmentSkinDto.d.ts +0 -28
- package/types/maplestory/api/dto/character/characterCashItemEquipmentColoringPrismDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterCashItemEquipmentDto.d.ts +0 -61
- package/types/maplestory/api/dto/character/characterCashItemEquipmentOptionDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterCashItemEquipmentPresetDto.d.ts +0 -66
- package/types/maplestory/api/dto/character/characterDto.d.ts +0 -12
- package/types/maplestory/api/dto/character/characterHexaMatrixDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterHexaMatrixEquipmentDto.d.ts +0 -25
- package/types/maplestory/api/dto/character/characterHexaMatrixEquipmentLinkedSkillDto.d.ts +0 -12
- package/types/maplestory/api/dto/character/characterHexaMatrixStatCoreDto.d.ts +0 -40
- package/types/maplestory/api/dto/character/characterHexaMatrixStatDto.d.ts +0 -41
- package/types/maplestory/api/dto/character/characterHyperStatPresetDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterImageDto.d.ts +0 -160
- package/types/maplestory/api/dto/character/characterItemEquipmentAddOptionDto.d.ts +0 -68
- package/types/maplestory/api/dto/character/characterItemEquipmentBaseOptionDto.d.ts +0 -76
- package/types/maplestory/api/dto/character/characterItemEquipmentDragonInfoDto.d.ts +0 -130
- package/types/maplestory/api/dto/character/characterItemEquipmentDto.d.ts +0 -61
- package/types/maplestory/api/dto/character/characterItemEquipmentEtcOptionDto.d.ts +0 -52
- package/types/maplestory/api/dto/character/characterItemEquipmentExceptionalOptionDto.d.ts +0 -44
- package/types/maplestory/api/dto/character/characterItemEquipmentInfoDto.d.ts +0 -162
- package/types/maplestory/api/dto/character/characterItemEquipmentMechanicInfoDto.d.ts +0 -130
- package/types/maplestory/api/dto/character/characterItemEquipmentMedalShapeDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterItemEquipmentStarforceOptionDto.d.ts +0 -52
- package/types/maplestory/api/dto/character/characterItemEquipmentTitleDto.d.ts +0 -48
- package/types/maplestory/api/dto/character/characterItemEquipmentTotalOptionDto.d.ts +0 -80
- package/types/maplestory/api/dto/character/characterLinkSkillInfoDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterListAccountCharacterDto.d.ts +0 -28
- package/types/maplestory/api/dto/character/characterListAccountDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterListDto.d.ts +0 -13
- package/types/maplestory/api/dto/character/characterPetEquipmentAutoSkillDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterPetEquipmentItemDto.d.ts +0 -41
- package/types/maplestory/api/dto/character/characterPetEquipmentItemOptionDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterPopularityDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterSetEffectDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterSetEffectInfoDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterSetEffectOptionFullDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterSetEffectSetDto.d.ts +0 -26
- package/types/maplestory/api/dto/character/characterSkillDto.d.ts +0 -25
- package/types/maplestory/api/dto/character/characterSkillInfoDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterStatDto.d.ts +0 -27
- package/types/maplestory/api/dto/character/characterSymbolEquipmentDto.d.ts +0 -21
- package/types/maplestory/api/dto/character/characterVMatrixCoreEquipmentDto.d.ts +0 -40
- package/types/maplestory/api/dto/character/characterVMatrixDto.d.ts +0 -25
- package/types/maplestory/api/dto/guild/guildBasicDto.d.ts +0 -53
- package/types/maplestory/api/dto/guild/guildDto.d.ts +0 -12
- package/types/maplestory/api/dto/guild/guildSkillDto.d.ts +0 -28
- package/types/maplestory/api/dto/history/cubeHistoryResponseDto.d.ts +0 -21
- package/types/maplestory/api/dto/history/cubeResultOptionDto.d.ts +0 -18
- package/types/maplestory/api/dto/history/potentialHistoryResponseDto.d.ts +0 -21
- package/types/maplestory/api/dto/history/potentialResultOptionDto.d.ts +0 -18
- package/types/maplestory/api/dto/history/starforceEventDto.d.ts +0 -28
- package/types/maplestory/api/dto/history/starforceHistoryResponseDto.d.ts +0 -21
- package/types/maplestory/api/dto/notice/cashshopNoticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/eventNoticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/eventNoticeListItemDto.d.ts +0 -32
- package/types/maplestory/api/dto/notice/noticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/noticeListItemDto.d.ts +0 -24
- package/types/maplestory/api/dto/notice/updateNoticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/updateNoticeListItemDto.d.ts +0 -24
- package/types/maplestory/api/dto/potentialOptionGrade.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/achievementRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/dojangRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/guildRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/overallRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/theSeedRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/unionRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/union/unionArtifactCrystalDto.d.ts +0 -40
- package/types/maplestory/api/dto/union/unionArtifactDto.d.ts +0 -26
- package/types/maplestory/api/dto/union/unionArtifactEffectDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionChampionBadgeInfoDto.d.ts +0 -12
- package/types/maplestory/api/dto/union/unionChampionDto.d.ts +0 -22
- package/types/maplestory/api/dto/union/unionChampionInfoDto.d.ts +0 -29
- package/types/maplestory/api/dto/union/unionRaiderBlockDto.d.ts +0 -30
- package/types/maplestory/api/dto/union/unionRaiderBlockPositionDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionRaiderControlPointDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionRaiderDto.d.ts +0 -52
- package/types/maplestory/api/dto/union/unionRaiderInnerStatDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionRaiderPresetDto.d.ts +0 -26
- package/types/maplestory/api/response/character/characterAbilityDtoBody.d.ts +0 -20
- package/types/maplestory/api/response/character/characterBeautyEquipmentDtoBody.d.ts +0 -31
- package/types/maplestory/api/response/character/characterDtoBody.d.ts +0 -4
- package/types/maplestory/api/response/character/characterHexaMatrixDtoBody.d.ts +0 -14
- package/types/maplestory/api/response/character/characterHexaMatrixStatDtoBody.d.ts +0 -21
- package/types/maplestory/api/response/character/characterLinkSkillDtoBody.d.ts +0 -21
- package/types/maplestory/api/response/character/characterListDtoBody.d.ts +0 -15
- package/types/maplestory/api/response/character/characterPopularityDtoBody.d.ts +0 -5
- package/types/maplestory/api/response/character/characterSetEffectDtoBody.d.ts +0 -19
- package/types/maplestory/api/response/character/characterStatDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/guild/guildDtoBody.d.ts +0 -4
- package/types/maplestory/api/response/history/cubeHistoryDtoBody.d.ts +0 -22
- package/types/maplestory/api/response/history/cubeHistoryResponseDtoBody.d.ts +0 -7
- package/types/maplestory/api/response/history/cubeResultOptionDtoBody.d.ts +0 -5
- package/types/maplestory/api/response/history/potentialHistoryResponseDtoBody.d.ts +0 -29
- package/types/maplestory/api/response/history/starforceEventDtoBody.d.ts +0 -8
- package/types/maplestory/api/response/history/starforceHistoryResponseDtoBody.d.ts +0 -7
- package/types/maplestory/api/response/notice/cashshopNoticeListDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/notice/eventNoticeListDtoBody.d.ts +0 -12
- package/types/maplestory/api/response/notice/noticeListDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/notice/updateNoticeListDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/ranking/achievementRankingResponseDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/ranking/dojangRankingResponseDtoBody.d.ts +0 -14
- package/types/maplestory/api/response/ranking/guildRankingResponseDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/ranking/rankingResponseDtoBody.d.ts +0 -7
- package/types/maplestory/api/response/ranking/theSeedRankingResponseDtoBody.d.ts +0 -14
- package/types/maplestory/api/response/ranking/unionRankingResponseDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/union/unionArtifactDtoBody.d.ts +0 -20
- package/types/maplestory/api/response/union/unionChampionDtoBody.d.ts +0 -16
- package/types/maplestory/api/response/union/unionRaiderDtoBody.d.ts +0 -39
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var unionRaider = require('../../../common/dto/union/unionRaider.js');
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* 유니온 공격대 정보
|
|
9
|
+
*/
|
|
10
|
+
class UnionRaiderDto extends unionRaider.UnionRaiderDto {
|
|
11
|
+
/**
|
|
12
|
+
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
13
|
+
*/
|
|
14
|
+
date;
|
|
15
|
+
/**
|
|
16
|
+
* 유니온 공격대원 효과
|
|
17
|
+
*/
|
|
18
|
+
unionRaiderStat;
|
|
19
|
+
/**
|
|
20
|
+
* 유니온 공격대 점령 효과
|
|
21
|
+
*/
|
|
22
|
+
unionOccupiedStat;
|
|
23
|
+
/**
|
|
24
|
+
* 유니온 공격대 배치
|
|
25
|
+
*/
|
|
26
|
+
unionInnerStat;
|
|
27
|
+
/**
|
|
28
|
+
* 유니온 블록 정보
|
|
29
|
+
*/
|
|
30
|
+
unionBlock;
|
|
31
|
+
/**
|
|
32
|
+
* 적용 중인 프리셋 번호
|
|
33
|
+
*/
|
|
34
|
+
usePresetNo;
|
|
35
|
+
/**
|
|
36
|
+
* 유니온 프리셋 1번 정보
|
|
37
|
+
*/
|
|
38
|
+
unionRaiderPreset1;
|
|
39
|
+
/**
|
|
40
|
+
* 유니온 프리셋 2번 정보
|
|
41
|
+
*/
|
|
42
|
+
unionRaiderPreset2;
|
|
43
|
+
/**
|
|
44
|
+
* 유니온 프리셋 3번 정보
|
|
45
|
+
*/
|
|
46
|
+
unionRaiderPreset3;
|
|
47
|
+
/**
|
|
48
|
+
* 유니온 프리셋 4번 정보
|
|
49
|
+
*/
|
|
50
|
+
unionRaiderPreset4;
|
|
51
|
+
/**
|
|
52
|
+
* 유니온 프리셋 5번 정보
|
|
53
|
+
*/
|
|
54
|
+
unionRaiderPreset5;
|
|
55
|
+
constructor(obj) {
|
|
56
|
+
super();
|
|
57
|
+
const { date, union_raider_stat, union_occupied_stat, union_inner_stat, union_block, use_preset_no, union_raider_preset_1, union_raider_preset_2, union_raider_preset_3, union_raider_preset_4, union_raider_preset_5, } = obj;
|
|
58
|
+
this.date = date ? new Date(date) : null;
|
|
59
|
+
this.unionRaiderStat = union_raider_stat;
|
|
60
|
+
this.unionOccupiedStat = union_occupied_stat;
|
|
61
|
+
this.unionInnerStat = union_inner_stat.map((stat) => new UnionRaiderInnerStatDto(stat));
|
|
62
|
+
this.unionBlock = union_block.map((block) => new UnionRaiderBlockDto(block));
|
|
63
|
+
this.usePresetNo = use_preset_no;
|
|
64
|
+
this.unionRaiderPreset1 = union_raider_preset_1
|
|
65
|
+
? new UnionRaiderPresetDto(union_raider_preset_1)
|
|
66
|
+
: null;
|
|
67
|
+
this.unionRaiderPreset2 = union_raider_preset_2
|
|
68
|
+
? new UnionRaiderPresetDto(union_raider_preset_2)
|
|
69
|
+
: null;
|
|
70
|
+
this.unionRaiderPreset3 = union_raider_preset_3
|
|
71
|
+
? new UnionRaiderPresetDto(union_raider_preset_3)
|
|
72
|
+
: null;
|
|
73
|
+
this.unionRaiderPreset4 = union_raider_preset_4
|
|
74
|
+
? new UnionRaiderPresetDto(union_raider_preset_4)
|
|
75
|
+
: null;
|
|
76
|
+
this.unionRaiderPreset5 = union_raider_preset_5
|
|
77
|
+
? new UnionRaiderPresetDto(union_raider_preset_5)
|
|
78
|
+
: null;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* 유니온 공격대 배치 정보
|
|
83
|
+
*/
|
|
84
|
+
class UnionRaiderInnerStatDto extends unionRaider.UnionRaiderInnerStatDto {
|
|
85
|
+
/**
|
|
86
|
+
* 공격대 배치 위치 (11시 방향부터 시계 방향 순서대로 0~7)
|
|
87
|
+
*/
|
|
88
|
+
statFieldId;
|
|
89
|
+
/**
|
|
90
|
+
* 해당 지역 점령 효과
|
|
91
|
+
*/
|
|
92
|
+
statFieldEffect;
|
|
93
|
+
constructor(obj) {
|
|
94
|
+
super();
|
|
95
|
+
const { stat_field_id, stat_field_effect } = obj;
|
|
96
|
+
this.statFieldId = stat_field_id;
|
|
97
|
+
this.statFieldEffect = stat_field_effect;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* 유니온 블록이 차지하고 있는 영역 좌표들
|
|
102
|
+
*/
|
|
103
|
+
class UnionRaiderBlockPositionDto extends unionRaider.UnionRaiderBlockPositionDto {
|
|
104
|
+
/**
|
|
105
|
+
* 블록 X좌표
|
|
106
|
+
*/
|
|
107
|
+
x;
|
|
108
|
+
/**
|
|
109
|
+
* 블록 Y좌표
|
|
110
|
+
*/
|
|
111
|
+
y;
|
|
112
|
+
constructor(obj) {
|
|
113
|
+
super();
|
|
114
|
+
const { x, y } = obj;
|
|
115
|
+
this.x = x;
|
|
116
|
+
this.y = y;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* 유니온 블록 기준점 좌표 정보
|
|
121
|
+
*/
|
|
122
|
+
class UnionRaiderBlockControlPointDto extends unionRaider.UnionRaiderBlockControlPointDto {
|
|
123
|
+
/**
|
|
124
|
+
* 블록 기준점 X좌표
|
|
125
|
+
*/
|
|
126
|
+
x;
|
|
127
|
+
/**
|
|
128
|
+
* 블록 기준점 Y좌표
|
|
129
|
+
*/
|
|
130
|
+
y;
|
|
131
|
+
constructor(obj) {
|
|
132
|
+
super();
|
|
133
|
+
const { x, y } = obj;
|
|
134
|
+
this.x = x;
|
|
135
|
+
this.y = y;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
/**
|
|
139
|
+
* 유니온 블록 정보
|
|
140
|
+
*/
|
|
141
|
+
class UnionRaiderBlockDto extends unionRaider.UnionRaiderBlockDto {
|
|
142
|
+
/**
|
|
143
|
+
* 블록 모양 (전사, 마법사, 궁수, 도적, 해적, 메이플m, 하이브리드)
|
|
144
|
+
*/
|
|
145
|
+
blockType;
|
|
146
|
+
/**
|
|
147
|
+
* 블록 해당 캐릭터 직업
|
|
148
|
+
*/
|
|
149
|
+
blockClass;
|
|
150
|
+
/**
|
|
151
|
+
* 블록 해당 캐릭터 레벨
|
|
152
|
+
*/
|
|
153
|
+
blockLevel;
|
|
154
|
+
/**
|
|
155
|
+
* 블록 기준점 좌표
|
|
156
|
+
*/
|
|
157
|
+
blockControlPoint;
|
|
158
|
+
/**
|
|
159
|
+
* 블록이 차지하고 있는 영역 좌표들 (null:미 배치 시)
|
|
160
|
+
*/
|
|
161
|
+
blockPosition;
|
|
162
|
+
constructor(obj) {
|
|
163
|
+
super();
|
|
164
|
+
const { block_type, block_class, block_level, block_control_point, block_position, } = obj;
|
|
165
|
+
this.blockType = block_type;
|
|
166
|
+
this.blockClass = block_class;
|
|
167
|
+
this.blockLevel = block_level;
|
|
168
|
+
this.blockControlPoint = new UnionRaiderBlockControlPointDto(block_control_point);
|
|
169
|
+
this.blockPosition = block_position
|
|
170
|
+
? block_position.map((position) => new UnionRaiderBlockPositionDto(position))
|
|
171
|
+
: null;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
/**
|
|
175
|
+
* 유니온 프리셋 정보
|
|
176
|
+
*/
|
|
177
|
+
class UnionRaiderPresetDto extends unionRaider.UnionRaiderPresetDto {
|
|
178
|
+
/**
|
|
179
|
+
* 유니온 공격대원 효과
|
|
180
|
+
*/
|
|
181
|
+
unionRaiderStat;
|
|
182
|
+
/**
|
|
183
|
+
* 유니온 공격대 점령 효과
|
|
184
|
+
*/
|
|
185
|
+
unionOccupiedStat;
|
|
186
|
+
/**
|
|
187
|
+
* 유니온 공격대 배치
|
|
188
|
+
*/
|
|
189
|
+
unionInnerStat;
|
|
190
|
+
/**
|
|
191
|
+
* 유니온 블록 정보
|
|
192
|
+
*/
|
|
193
|
+
unionBlock;
|
|
194
|
+
constructor(obj) {
|
|
195
|
+
super();
|
|
196
|
+
const { union_raider_stat, union_occupied_stat, union_inner_stat, union_block, } = obj;
|
|
197
|
+
this.unionRaiderStat = union_raider_stat;
|
|
198
|
+
this.unionOccupiedStat = union_occupied_stat;
|
|
199
|
+
this.unionInnerStat = union_inner_stat.map((stat) => new UnionRaiderInnerStatDto(stat));
|
|
200
|
+
this.unionBlock = union_block.map((block) => new UnionRaiderBlockDto(block));
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
exports.UnionRaiderBlockControlPointDto = UnionRaiderBlockControlPointDto;
|
|
205
|
+
exports.UnionRaiderBlockDto = UnionRaiderBlockDto;
|
|
206
|
+
exports.UnionRaiderBlockPositionDto = UnionRaiderBlockPositionDto;
|
|
207
|
+
exports.UnionRaiderDto = UnionRaiderDto;
|
|
208
|
+
exports.UnionRaiderInnerStatDto = UnionRaiderInnerStatDto;
|
|
209
|
+
exports.UnionRaiderPresetDto = UnionRaiderPresetDto;
|
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var mapleStoryApi = require('./mapleStoryApi.js');
|
|
6
|
+
var character = require('./dto/character/character.js');
|
|
7
|
+
var characterAbility = require('./dto/character/characterAbility.js');
|
|
8
|
+
var characterAndroidEquipment = require('./dto/character/characterAndroidEquipment.js');
|
|
9
|
+
var characterBasic = require('./dto/character/characterBasic.js');
|
|
10
|
+
var characterBeautyEquipment = require('./dto/character/characterBeautyEquipment.js');
|
|
11
|
+
var characterCashItemEquipment = require('./dto/character/characterCashItemEquipment.js');
|
|
12
|
+
var characterDojang = require('./dto/character/characterDojang.js');
|
|
13
|
+
var characterHexaMatrix = require('./dto/character/characterHexaMatrix.js');
|
|
14
|
+
var characterHexaMatrixStat = require('./dto/character/characterHexaMatrixStat.js');
|
|
15
|
+
var characterHyperStat = require('./dto/character/characterHyperStat.js');
|
|
16
|
+
var characterImage = require('./dto/character/characterImage.js');
|
|
17
|
+
var characterItemEquipment = require('./dto/character/characterItemEquipment.js');
|
|
18
|
+
var characterLinkSkill = require('./dto/character/characterLinkSkill.js');
|
|
19
|
+
var characterList = require('./dto/character/characterList.js');
|
|
20
|
+
var characterPetEquipment = require('./dto/character/characterPetEquipment.js');
|
|
21
|
+
var characterPopularity = require('./dto/character/characterPopularity.js');
|
|
22
|
+
var characterPropensity = require('./dto/character/characterPropensity.js');
|
|
23
|
+
var characterSetEffect = require('./dto/character/characterSetEffect.js');
|
|
24
|
+
var characterSkill = require('./dto/character/characterSkill.js');
|
|
25
|
+
var characterStat = require('./dto/character/characterStat.js');
|
|
26
|
+
var characterSymbolEquipment = require('./dto/character/characterSymbolEquipment.js');
|
|
27
|
+
var characterVMatrix = require('./dto/character/characterVMatrix.js');
|
|
28
|
+
var guild = require('./dto/guild/guild.js');
|
|
29
|
+
var guildBasic = require('./dto/guild/guildBasic.js');
|
|
30
|
+
var cubeHistory = require('./dto/history/cubeHistory.js');
|
|
31
|
+
var potentialHistory = require('./dto/history/potentialHistory.js');
|
|
32
|
+
var starforceHistory = require('./dto/history/starforceHistory.js');
|
|
33
|
+
var cashshopNoticeDetail = require('./dto/notice/cashshopNoticeDetail.js');
|
|
34
|
+
var cashshopNoticeList = require('./dto/notice/cashshopNoticeList.js');
|
|
35
|
+
var eventNoticeDetail = require('./dto/notice/eventNoticeDetail.js');
|
|
36
|
+
var eventNoticeList = require('./dto/notice/eventNoticeList.js');
|
|
37
|
+
var noticeDetail = require('./dto/notice/noticeDetail.js');
|
|
38
|
+
var noticeList = require('./dto/notice/noticeList.js');
|
|
39
|
+
var updateNoticeDetail = require('./dto/notice/updateNoticeDetail.js');
|
|
40
|
+
var updateNoticeList = require('./dto/notice/updateNoticeList.js');
|
|
41
|
+
var achievementRanking = require('./dto/ranking/achievementRanking.js');
|
|
42
|
+
var dojangRanking = require('./dto/ranking/dojangRanking.js');
|
|
43
|
+
var guildRanking = require('./dto/ranking/guildRanking.js');
|
|
44
|
+
var overallRanking = require('./dto/ranking/overallRanking.js');
|
|
45
|
+
var theSeedRanking = require('./dto/ranking/theSeedRanking.js');
|
|
46
|
+
var unionRanking = require('./dto/ranking/unionRanking.js');
|
|
47
|
+
var union = require('./dto/union/union.js');
|
|
48
|
+
var unionArtifact = require('./dto/union/unionArtifact.js');
|
|
49
|
+
var unionChampion = require('./dto/union/unionChampion.js');
|
|
50
|
+
var unionRaider = require('./dto/union/unionRaider.js');
|
|
51
|
+
var inspectionInfo = require('./dto/inspectionInfo.js');
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
exports.MapleStoryApi = mapleStoryApi.MapleStoryApi;
|
|
56
|
+
exports.CharacterDto = character.CharacterDto;
|
|
57
|
+
exports.CharacterAbilityDto = characterAbility.CharacterAbilityDto;
|
|
58
|
+
exports.CharacterAbilityInfoDto = characterAbility.CharacterAbilityInfoDto;
|
|
59
|
+
exports.CharacterAbilityPresetDto = characterAbility.CharacterAbilityPresetDto;
|
|
60
|
+
exports.CharacterAndroidCashItemEquipmentColoringPrismDto = characterAndroidEquipment.CharacterAndroidCashItemEquipmentColoringPrismDto;
|
|
61
|
+
exports.CharacterAndroidCashItemEquipmentDto = characterAndroidEquipment.CharacterAndroidCashItemEquipmentDto;
|
|
62
|
+
exports.CharacterAndroidCashItemEquipmentOptionDto = characterAndroidEquipment.CharacterAndroidCashItemEquipmentOptionDto;
|
|
63
|
+
exports.CharacterAndroidEquipmentDto = characterAndroidEquipment.CharacterAndroidEquipmentDto;
|
|
64
|
+
exports.CharacterAndroidEquipmentFaceDto = characterAndroidEquipment.CharacterAndroidEquipmentFaceDto;
|
|
65
|
+
exports.CharacterAndroidEquipmentHairDto = characterAndroidEquipment.CharacterAndroidEquipmentHairDto;
|
|
66
|
+
exports.CharacterAndroidEquipmentPresetDto = characterAndroidEquipment.CharacterAndroidEquipmentPresetDto;
|
|
67
|
+
exports.CharacterAndroidEquipmentSkinDto = characterAndroidEquipment.CharacterAndroidEquipmentSkinDto;
|
|
68
|
+
exports.CharacterBasicDto = characterBasic.CharacterBasicDto;
|
|
69
|
+
exports.CharacterBeautyEquipmentDto = characterBeautyEquipment.CharacterBeautyEquipmentDto;
|
|
70
|
+
exports.CharacterBeautyEquipmentFaceDto = characterBeautyEquipment.CharacterBeautyEquipmentFaceDto;
|
|
71
|
+
exports.CharacterBeautyEquipmentHairDto = characterBeautyEquipment.CharacterBeautyEquipmentHairDto;
|
|
72
|
+
exports.CharacterBeautyEquipmentSkinDto = characterBeautyEquipment.CharacterBeautyEquipmentSkinDto;
|
|
73
|
+
exports.CharacterCashItemEquipmentColoringPrismDto = characterCashItemEquipment.CharacterCashItemEquipmentColoringPrismDto;
|
|
74
|
+
exports.CharacterCashItemEquipmentDto = characterCashItemEquipment.CharacterCashItemEquipmentDto;
|
|
75
|
+
exports.CharacterCashItemEquipmentOptionDto = characterCashItemEquipment.CharacterCashItemEquipmentOptionDto;
|
|
76
|
+
exports.CharacterCashItemEquipmentPresetDto = characterCashItemEquipment.CharacterCashItemEquipmentPresetDto;
|
|
77
|
+
exports.CharacterDojangDto = characterDojang.CharacterDojangDto;
|
|
78
|
+
exports.CharacterHexaMatrixDto = characterHexaMatrix.CharacterHexaMatrixDto;
|
|
79
|
+
exports.CharacterHexaMatrixEquipmentDto = characterHexaMatrix.CharacterHexaMatrixEquipmentDto;
|
|
80
|
+
exports.CharacterHexaMatrixEquipmentLinkedSkillDto = characterHexaMatrix.CharacterHexaMatrixEquipmentLinkedSkillDto;
|
|
81
|
+
exports.CharacterHexaMatrixStatCoreDto = characterHexaMatrixStat.CharacterHexaMatrixStatCoreDto;
|
|
82
|
+
exports.CharacterHexaMatrixStatDto = characterHexaMatrixStat.CharacterHexaMatrixStatDto;
|
|
83
|
+
exports.CharacterHyperStatDto = characterHyperStat.CharacterHyperStatDto;
|
|
84
|
+
exports.CharacterHyperStatPresetDto = characterHyperStat.CharacterHyperStatPresetDto;
|
|
85
|
+
exports.CharacterImageDto = characterImage.CharacterImageDto;
|
|
86
|
+
exports.CharacterItemEquipmentAddOptionDto = characterItemEquipment.CharacterItemEquipmentAddOptionDto;
|
|
87
|
+
exports.CharacterItemEquipmentBaseOptionDto = characterItemEquipment.CharacterItemEquipmentBaseOptionDto;
|
|
88
|
+
exports.CharacterItemEquipmentDragonInfoDto = characterItemEquipment.CharacterItemEquipmentDragonInfoDto;
|
|
89
|
+
exports.CharacterItemEquipmentDto = characterItemEquipment.CharacterItemEquipmentDto;
|
|
90
|
+
exports.CharacterItemEquipmentEtcOptionDto = characterItemEquipment.CharacterItemEquipmentEtcOptionDto;
|
|
91
|
+
exports.CharacterItemEquipmentExceptionalOptionDto = characterItemEquipment.CharacterItemEquipmentExceptionalOptionDto;
|
|
92
|
+
exports.CharacterItemEquipmentInfoDto = characterItemEquipment.CharacterItemEquipmentInfoDto;
|
|
93
|
+
exports.CharacterItemEquipmentMechanicInfoDto = characterItemEquipment.CharacterItemEquipmentMechanicInfoDto;
|
|
94
|
+
exports.CharacterItemEquipmentMedalShapeDto = characterItemEquipment.CharacterItemEquipmentMedalShapeDto;
|
|
95
|
+
exports.CharacterItemEquipmentStarforceOptionDto = characterItemEquipment.CharacterItemEquipmentStarforceOptionDto;
|
|
96
|
+
exports.CharacterItemEquipmentTitleDto = characterItemEquipment.CharacterItemEquipmentTitleDto;
|
|
97
|
+
exports.CharacterItemEquipmentTotalOptionDto = characterItemEquipment.CharacterItemEquipmentTotalOptionDto;
|
|
98
|
+
exports.CharacterLinkSkillDto = characterLinkSkill.CharacterLinkSkillDto;
|
|
99
|
+
exports.CharacterLinkSkillInfoDto = characterLinkSkill.CharacterLinkSkillInfoDto;
|
|
100
|
+
exports.CharacterListAccountCharacterDto = characterList.CharacterListAccountCharacterDto;
|
|
101
|
+
exports.CharacterListAccountDto = characterList.CharacterListAccountDto;
|
|
102
|
+
exports.CharacterListDto = characterList.CharacterListDto;
|
|
103
|
+
exports.CharacterPetEquipmentAutoSkillDto = characterPetEquipment.CharacterPetEquipmentAutoSkillDto;
|
|
104
|
+
exports.CharacterPetEquipmentDto = characterPetEquipment.CharacterPetEquipmentDto;
|
|
105
|
+
exports.CharacterPetEquipmentItemDto = characterPetEquipment.CharacterPetEquipmentItemDto;
|
|
106
|
+
exports.CharacterPetEquipmentItemOptionDto = characterPetEquipment.CharacterPetEquipmentItemOptionDto;
|
|
107
|
+
exports.CharacterPopularityDto = characterPopularity.CharacterPopularityDto;
|
|
108
|
+
exports.CharacterPropensityDto = characterPropensity.CharacterPropensityDto;
|
|
109
|
+
exports.CharacterSetEffectDto = characterSetEffect.CharacterSetEffectDto;
|
|
110
|
+
exports.CharacterSetEffectInfoDto = characterSetEffect.CharacterSetEffectInfoDto;
|
|
111
|
+
exports.CharacterSetEffectOptionFullDto = characterSetEffect.CharacterSetEffectOptionFullDto;
|
|
112
|
+
exports.CharacterSetEffectSetDto = characterSetEffect.CharacterSetEffectSetDto;
|
|
113
|
+
exports.CharacterSkillDto = characterSkill.CharacterSkillDto;
|
|
114
|
+
exports.CharacterSkillInfoDto = characterSkill.CharacterSkillInfoDto;
|
|
115
|
+
exports.CharacterFinalStatDto = characterStat.CharacterFinalStatDto;
|
|
116
|
+
exports.CharacterStatDto = characterStat.CharacterStatDto;
|
|
117
|
+
exports.CharacterSymbolEquipmentDto = characterSymbolEquipment.CharacterSymbolEquipmentDto;
|
|
118
|
+
exports.CharacterSymbolEquipmentInfoDto = characterSymbolEquipment.CharacterSymbolEquipmentInfoDto;
|
|
119
|
+
exports.CharacterVMatrixCodeEquipmentDto = characterVMatrix.CharacterVMatrixCodeEquipmentDto;
|
|
120
|
+
exports.CharacterVMatrixDto = characterVMatrix.CharacterVMatrixDto;
|
|
121
|
+
exports.GuildDto = guild.GuildDto;
|
|
122
|
+
exports.GuildBasicDto = guildBasic.GuildBasicDto;
|
|
123
|
+
exports.GuildSkillDto = guildBasic.GuildSkillDto;
|
|
124
|
+
exports.CubeHistoryDto = cubeHistory.CubeHistoryDto;
|
|
125
|
+
exports.CubeHistoryResponseDto = cubeHistory.CubeHistoryResponseDto;
|
|
126
|
+
exports.CubeResultOptionDto = cubeHistory.CubeResultOptionDto;
|
|
127
|
+
exports.PotentialHistoryDto = potentialHistory.PotentialHistoryDto;
|
|
128
|
+
exports.PotentialHistoryResponseDto = potentialHistory.PotentialHistoryResponseDto;
|
|
129
|
+
exports.PotentialResultOptionDto = potentialHistory.PotentialResultOptionDto;
|
|
130
|
+
exports.StarforceEventDto = starforceHistory.StarforceEventDto;
|
|
131
|
+
exports.StarforceHistoryDto = starforceHistory.StarforceHistoryDto;
|
|
132
|
+
exports.StarforceHistoryResponseDto = starforceHistory.StarforceHistoryResponseDto;
|
|
133
|
+
exports.CashshopNoticeDetailDto = cashshopNoticeDetail.CashshopNoticeDetailDto;
|
|
134
|
+
exports.CashshopNoticeListDto = cashshopNoticeList.CashshopNoticeListDto;
|
|
135
|
+
exports.CashshopNoticeListItemDto = cashshopNoticeList.CashshopNoticeListItemDto;
|
|
136
|
+
exports.EventNoticeDetailDto = eventNoticeDetail.EventNoticeDetailDto;
|
|
137
|
+
exports.EventNoticeListDto = eventNoticeList.EventNoticeListDto;
|
|
138
|
+
exports.EventNoticeListItemDto = eventNoticeList.EventNoticeListItemDto;
|
|
139
|
+
exports.NoticeDetailDto = noticeDetail.NoticeDetailDto;
|
|
140
|
+
exports.NoticeListDto = noticeList.NoticeListDto;
|
|
141
|
+
exports.NoticeListItemDto = noticeList.NoticeListItemDto;
|
|
142
|
+
exports.UpdateNoticeDetailDto = updateNoticeDetail.UpdateNoticeDetailDto;
|
|
143
|
+
exports.UpdateNoticeListDto = updateNoticeList.UpdateNoticeListDto;
|
|
144
|
+
exports.UpdateNoticeListItemDto = updateNoticeList.UpdateNoticeListItemDto;
|
|
145
|
+
exports.AchievementRankingDto = achievementRanking.AchievementRankingDto;
|
|
146
|
+
exports.AchievementRankingResponseDto = achievementRanking.AchievementRankingResponseDto;
|
|
147
|
+
exports.DojangRankingDto = dojangRanking.DojangRankingDto;
|
|
148
|
+
exports.DojangRankingResponseDto = dojangRanking.DojangRankingResponseDto;
|
|
149
|
+
exports.GuildRankingDto = guildRanking.GuildRankingDto;
|
|
150
|
+
exports.GuildRankingResponseDto = guildRanking.GuildRankingResponseDto;
|
|
151
|
+
exports.OverallRankingDto = overallRanking.OverallRankingDto;
|
|
152
|
+
exports.OverallRankingResponseDto = overallRanking.OverallRankingResponseDto;
|
|
153
|
+
exports.TheSeedRankingDto = theSeedRanking.TheSeedRankingDto;
|
|
154
|
+
exports.TheSeedRankingResponseDto = theSeedRanking.TheSeedRankingResponseDto;
|
|
155
|
+
exports.UnionRankingDto = unionRanking.UnionRankingDto;
|
|
156
|
+
exports.UnionRankingResponseDto = unionRanking.UnionRankingResponseDto;
|
|
157
|
+
exports.UnionDto = union.UnionDto;
|
|
158
|
+
exports.UnionArtifactCrystalDto = unionArtifact.UnionArtifactCrystalDto;
|
|
159
|
+
exports.UnionArtifactDto = unionArtifact.UnionArtifactDto;
|
|
160
|
+
exports.UnionArtifactEffectDto = unionArtifact.UnionArtifactEffectDto;
|
|
161
|
+
exports.UnionChampionBadgeInfoDto = unionChampion.UnionChampionBadgeInfoDto;
|
|
162
|
+
exports.UnionChampionDto = unionChampion.UnionChampionDto;
|
|
163
|
+
exports.UnionChampionInfoDto = unionChampion.UnionChampionInfoDto;
|
|
164
|
+
exports.UnionRaiderBlockControlPointDto = unionRaider.UnionRaiderBlockControlPointDto;
|
|
165
|
+
exports.UnionRaiderBlockDto = unionRaider.UnionRaiderBlockDto;
|
|
166
|
+
exports.UnionRaiderBlockPositionDto = unionRaider.UnionRaiderBlockPositionDto;
|
|
167
|
+
exports.UnionRaiderDto = unionRaider.UnionRaiderDto;
|
|
168
|
+
exports.UnionRaiderInnerStatDto = unionRaider.UnionRaiderInnerStatDto;
|
|
169
|
+
exports.UnionRaiderPresetDto = unionRaider.UnionRaiderPresetDto;
|
|
170
|
+
exports.InspectionInfoDto = inspectionInfo.InspectionInfoDto;
|