maplestory-openapi 2.13.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +37 -6
- package/dist/cjs/_virtual/_commonjsHelpers.js +7 -0
- package/dist/cjs/_virtual/index.js_commonjs-exports.js +7 -0
- package/dist/cjs/_virtual/index.js_commonjs-exports2.js +7 -0
- package/dist/cjs/_virtual/index.js_commonjs-exports3.js +7 -0
- package/dist/cjs/_virtual/timezone.js_commonjs-module.js +7 -0
- package/dist/cjs/_virtual/utc.js_commonjs-module.js +7 -0
- package/dist/cjs/index.js +133 -0
- package/dist/cjs/maplestory/api/common/dto/character/character.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterAbility.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterAndroidEquipment.js +29 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterBasic.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterBeautyEquipment.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterCashItemEquipment.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterDojang.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterHexaMatrix.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterHexaMatrixStat.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterHyperStat.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterImage.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterItemEquipment.js +38 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterLinkSkill.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterList.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterPetEquipment.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterPopularity.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterPropensity.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterSetEffect.js +17 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterSkill.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterStat.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterSymbolEquipment.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterVMatrix.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/guild/guild.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/guild/guildBasic.js +11 -0
- package/dist/cjs/maplestory/api/common/dto/union/union.js +8 -0
- package/dist/cjs/maplestory/api/common/dto/union/unionArtifact.js +14 -0
- package/dist/cjs/maplestory/api/common/dto/union/unionRaider.js +23 -0
- package/dist/cjs/maplestory/api/common/enum/characterImage.js +94 -0
- package/dist/cjs/maplestory/api/common/enum/potentialOptionGrade.js +11 -0
- package/dist/cjs/maplestory/api/common/lib.js +26 -0
- package/dist/cjs/maplestory/api/common/mapleStoryApi.js +121 -0
- package/dist/cjs/maplestory/api/common/mapleStoryApiError.js +50 -0
- package/dist/cjs/maplestory/api/kms/dto/character/character.js +22 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterAbility.js +108 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterAndroidEquipment.js +418 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterBasic.js +99 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterBeautyEquipment.js +172 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterCashItemEquipment.js +228 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterDojang.js +49 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterHexaMatrix.js +73 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterHexaMatrixStat.js +113 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterHyperStat.js +97 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterImage.js +81 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterItemEquipment.js +1173 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterLinkSkill.js +115 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterList.js +77 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterPetEquipment.js +332 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterPopularity.js +27 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterPropensity.js +52 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterSetEffect.js +97 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterSkill.js +77 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterStat.js +57 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterSymbolEquipment.js +119 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterVMatrix.js +88 -0
- package/dist/cjs/maplestory/api/kms/dto/guild/guild.js +22 -0
- package/dist/cjs/maplestory/api/kms/dto/guild/guildBasic.js +107 -0
- package/dist/cjs/maplestory/api/kms/dto/history/cubeHistory.js +165 -0
- package/dist/cjs/maplestory/api/kms/dto/history/potentialHistory.js +160 -0
- package/dist/cjs/maplestory/api/kms/dto/history/starforceHistory.js +159 -0
- package/dist/cjs/maplestory/api/kms/dto/inspectionInfo.js +34 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/cashshopNoticeDetail.js +55 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/cashshopNoticeList.js +69 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/eventNoticeDetail.js +44 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/eventNoticeList.js +58 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/noticeDetail.js +34 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/noticeList.js +48 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/updateNoticeDetail.js +34 -0
- package/dist/cjs/maplestory/api/kms/dto/notice/updateNoticeList.js +48 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/achievementRanking.js +68 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/dojangRanking.js +73 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/guildRanking.js +68 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/overallRanking.js +78 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/theSeedRanking.js +73 -0
- package/dist/cjs/maplestory/api/kms/dto/ranking/unionRanking.js +68 -0
- package/dist/cjs/maplestory/api/kms/dto/union/union.js +47 -0
- package/dist/cjs/maplestory/api/kms/dto/union/unionArtifact.js +111 -0
- package/dist/cjs/maplestory/api/kms/dto/union/unionChampion.js +77 -0
- package/dist/cjs/maplestory/api/kms/dto/union/unionRaider.js +209 -0
- package/dist/cjs/maplestory/api/kms/kms.js +170 -0
- package/dist/cjs/maplestory/api/kms/mapleStoryApi.js +1321 -0
- package/dist/cjs/maplestory/api/msea/dto/character/character.js +22 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterAbility.js +108 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterAndroidEquipment.js +419 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterBasic.js +99 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterBeautyEquipment.js +172 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterCashItemEquipment.js +223 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterDojang.js +49 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterHexaMatrix.js +73 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterHexaMatrixStat.js +113 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterHyperStat.js +97 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterImage.js +81 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterItemEquipment.js +1112 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterLinkSkill.js +115 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterPetEquipment.js +332 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterPopularity.js +27 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterPropensity.js +52 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterSetEffect.js +97 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterSkill.js +77 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterStat.js +57 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterSymbolEquipment.js +119 -0
- package/dist/cjs/maplestory/api/msea/dto/character/characterVMatrix.js +88 -0
- package/dist/cjs/maplestory/api/msea/dto/guild/guild.js +22 -0
- package/dist/cjs/maplestory/api/msea/dto/guild/guildBasic.js +107 -0
- package/dist/cjs/maplestory/api/msea/dto/union/union.js +47 -0
- package/dist/cjs/maplestory/api/msea/dto/union/unionArtifact.js +111 -0
- package/dist/cjs/maplestory/api/msea/dto/union/unionRaider.js +214 -0
- package/dist/cjs/maplestory/api/msea/mapleStoryApi.js +802 -0
- package/dist/cjs/maplestory/api/msea/msea.js +109 -0
- package/dist/cjs/node_modules/base64-js/index.js +154 -0
- package/dist/cjs/node_modules/buffer/index.js +2116 -0
- package/dist/cjs/node_modules/dayjs/plugin/timezone.js +12 -0
- package/dist/cjs/node_modules/dayjs/plugin/utc.js +12 -0
- package/dist/cjs/node_modules/ieee754/index.js +92 -0
- package/dist/esm/_virtual/_commonjsHelpers.js +3 -0
- package/dist/esm/_virtual/index.js_commonjs-exports.js +3 -0
- package/dist/esm/_virtual/index.js_commonjs-exports2.js +3 -0
- package/dist/esm/_virtual/index.js_commonjs-exports3.js +3 -0
- package/dist/esm/_virtual/timezone.js_commonjs-module.js +3 -0
- package/dist/esm/_virtual/utc.js_commonjs-module.js +3 -0
- package/dist/esm/index.js +30 -0
- package/dist/esm/maplestory/api/common/dto/character/character.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterAbility.js +8 -0
- package/dist/esm/maplestory/api/common/dto/character/characterAndroidEquipment.js +18 -0
- package/dist/esm/maplestory/api/common/dto/character/characterBasic.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterBeautyEquipment.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterCashItemEquipment.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterDojang.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterHexaMatrix.js +8 -0
- package/dist/esm/maplestory/api/common/dto/character/characterHexaMatrixStat.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterHyperStat.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterImage.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterItemEquipment.js +24 -0
- package/dist/esm/maplestory/api/common/dto/character/characterLinkSkill.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterList.js +8 -0
- package/dist/esm/maplestory/api/common/dto/character/characterPetEquipment.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterPopularity.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterPropensity.js +4 -0
- package/dist/esm/maplestory/api/common/dto/character/characterSetEffect.js +10 -0
- package/dist/esm/maplestory/api/common/dto/character/characterSkill.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterStat.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterSymbolEquipment.js +6 -0
- package/dist/esm/maplestory/api/common/dto/character/characterVMatrix.js +6 -0
- package/dist/esm/maplestory/api/common/dto/guild/guild.js +4 -0
- package/dist/esm/maplestory/api/common/dto/guild/guildBasic.js +6 -0
- package/dist/esm/maplestory/api/common/dto/union/union.js +4 -0
- package/dist/esm/maplestory/api/common/dto/union/unionArtifact.js +8 -0
- package/dist/esm/maplestory/api/common/dto/union/unionRaider.js +14 -0
- package/dist/esm/maplestory/api/common/enum/characterImage.js +92 -0
- package/dist/esm/maplestory/api/common/enum/potentialOptionGrade.js +9 -0
- package/dist/esm/maplestory/api/common/lib.js +22 -0
- package/dist/esm/maplestory/api/common/mapleStoryApi.js +112 -0
- package/dist/esm/maplestory/api/common/mapleStoryApiError.js +46 -0
- package/dist/esm/maplestory/api/kms/dto/character/character.js +18 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterAbility.js +102 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterAndroidEquipment.js +407 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterBasic.js +95 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterBeautyEquipment.js +165 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterCashItemEquipment.js +221 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterDojang.js +45 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterHexaMatrix.js +67 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterHexaMatrixStat.js +108 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterHyperStat.js +92 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterImage.js +77 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterItemEquipment.js +1158 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterLinkSkill.js +110 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterList.js +71 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterPetEquipment.js +325 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterPopularity.js +23 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterPropensity.js +48 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterSetEffect.js +90 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterSkill.js +72 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterStat.js +52 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterSymbolEquipment.js +114 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterVMatrix.js +83 -0
- package/dist/esm/maplestory/api/kms/dto/guild/guild.js +18 -0
- package/dist/esm/maplestory/api/kms/dto/guild/guildBasic.js +102 -0
- package/dist/esm/maplestory/api/kms/dto/history/cubeHistory.js +159 -0
- package/dist/esm/maplestory/api/kms/dto/history/potentialHistory.js +154 -0
- package/dist/esm/maplestory/api/kms/dto/history/starforceHistory.js +153 -0
- package/dist/esm/maplestory/api/kms/dto/inspectionInfo.js +30 -0
- package/dist/esm/maplestory/api/kms/dto/notice/cashshopNoticeDetail.js +51 -0
- package/dist/esm/maplestory/api/kms/dto/notice/cashshopNoticeList.js +64 -0
- package/dist/esm/maplestory/api/kms/dto/notice/eventNoticeDetail.js +40 -0
- package/dist/esm/maplestory/api/kms/dto/notice/eventNoticeList.js +53 -0
- package/dist/esm/maplestory/api/kms/dto/notice/noticeDetail.js +30 -0
- package/dist/esm/maplestory/api/kms/dto/notice/noticeList.js +43 -0
- package/dist/esm/maplestory/api/kms/dto/notice/updateNoticeDetail.js +30 -0
- package/dist/esm/maplestory/api/kms/dto/notice/updateNoticeList.js +43 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/achievementRanking.js +63 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/dojangRanking.js +68 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/guildRanking.js +63 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/overallRanking.js +73 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/theSeedRanking.js +68 -0
- package/dist/esm/maplestory/api/kms/dto/ranking/unionRanking.js +63 -0
- package/dist/esm/maplestory/api/kms/dto/union/union.js +43 -0
- package/dist/esm/maplestory/api/kms/dto/union/unionArtifact.js +105 -0
- package/dist/esm/maplestory/api/kms/dto/union/unionChampion.js +71 -0
- package/dist/esm/maplestory/api/kms/dto/union/unionRaider.js +200 -0
- package/dist/esm/maplestory/api/kms/kms.js +47 -0
- package/dist/esm/maplestory/api/kms/mapleStoryApi.js +1312 -0
- package/dist/esm/maplestory/api/msea/dto/character/character.js +18 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterAbility.js +102 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterAndroidEquipment.js +408 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterBasic.js +95 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterBeautyEquipment.js +165 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterCashItemEquipment.js +216 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterDojang.js +45 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterHexaMatrix.js +67 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterHexaMatrixStat.js +108 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterHyperStat.js +92 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterImage.js +77 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterItemEquipment.js +1098 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterLinkSkill.js +110 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterPetEquipment.js +325 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterPopularity.js +23 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterPropensity.js +48 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterSetEffect.js +90 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterSkill.js +72 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterStat.js +52 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterSymbolEquipment.js +114 -0
- package/dist/esm/maplestory/api/msea/dto/character/characterVMatrix.js +83 -0
- package/dist/esm/maplestory/api/msea/dto/guild/guild.js +18 -0
- package/dist/esm/maplestory/api/msea/dto/guild/guildBasic.js +102 -0
- package/dist/esm/maplestory/api/msea/dto/union/union.js +43 -0
- package/dist/esm/maplestory/api/msea/dto/union/unionArtifact.js +105 -0
- package/dist/esm/maplestory/api/msea/dto/union/unionRaider.js +205 -0
- package/dist/esm/maplestory/api/msea/mapleStoryApi.js +794 -0
- package/dist/esm/maplestory/api/msea/msea.js +27 -0
- package/dist/esm/node_modules/base64-js/index.js +151 -0
- package/dist/esm/node_modules/buffer/index.js +2113 -0
- package/dist/esm/node_modules/dayjs/plugin/timezone.js +10 -0
- package/dist/esm/node_modules/dayjs/plugin/utc.js +10 -0
- package/dist/esm/node_modules/ieee754/index.js +89 -0
- package/dist/index.min.js +1 -10
- package/package.json +14 -3
- package/types/index.d.ts +30 -111
- package/types/maplestory/api/common/dto/character/character.d.ts +3 -0
- package/types/maplestory/api/common/dto/character/characterAbility.d.ts +19 -0
- package/types/maplestory/api/common/dto/character/characterAndroidEquipment.d.ts +77 -0
- package/types/maplestory/api/common/dto/character/characterBasic.d.ts +18 -0
- package/types/maplestory/api/common/dto/character/characterBeautyEquipment.d.ts +30 -0
- package/types/maplestory/api/common/dto/character/characterCashItemEquipment.d.ts +40 -0
- package/types/maplestory/api/common/dto/character/characterDojang.d.ts +8 -0
- package/types/maplestory/api/common/dto/character/characterHexaMatrix.d.ts +13 -0
- package/types/maplestory/api/common/dto/character/characterHexaMatrixStat.d.ts +20 -0
- package/types/maplestory/api/common/dto/character/characterHyperStat.d.ts +18 -0
- package/types/maplestory/api/common/dto/character/characterImage.d.ts +16 -0
- package/types/maplestory/api/common/dto/character/characterItemEquipment.d.ts +216 -0
- package/types/maplestory/api/common/dto/character/characterLinkSkill.d.ts +20 -0
- package/types/maplestory/api/common/dto/character/characterList.d.ts +14 -0
- package/types/maplestory/api/common/dto/character/characterPetEquipment.d.ts +59 -0
- package/types/maplestory/api/common/dto/character/characterPopularity.d.ts +4 -0
- package/types/maplestory/api/common/dto/character/characterPropensity.d.ts +9 -0
- package/types/maplestory/api/common/dto/character/characterSetEffect.d.ts +18 -0
- package/types/maplestory/api/common/dto/character/characterSkill.d.ts +14 -0
- package/types/maplestory/api/common/dto/character/characterStat.d.ts +10 -0
- package/types/maplestory/api/common/dto/character/characterSymbolEquipment.d.ts +22 -0
- package/types/maplestory/api/common/dto/character/characterVMatrix.d.ts +16 -0
- package/types/maplestory/api/common/dto/guild/guild.d.ts +3 -0
- package/types/maplestory/api/common/dto/guild/guildBasic.d.ts +20 -0
- package/types/maplestory/api/common/dto/union/union.d.ts +8 -0
- package/types/maplestory/api/common/dto/union/unionArtifact.d.ts +20 -0
- package/types/maplestory/api/common/dto/union/unionRaider.d.ts +38 -0
- package/types/maplestory/api/common/enum/characterImage.d.ts +87 -0
- package/types/maplestory/api/common/enum/potentialOptionGrade.d.ts +6 -0
- package/types/maplestory/api/common/lib.d.ts +7 -0
- package/types/maplestory/api/common/mapleStoryApi.d.ts +140 -0
- package/types/maplestory/api/{mapleStoryApiError.d.ts → common/mapleStoryApiError.d.ts} +3 -4
- package/types/maplestory/api/common/mapleStoryApiErrorBody.d.ts +6 -0
- package/types/maplestory/api/kms/dto/character/character.d.ts +12 -0
- package/types/maplestory/api/kms/dto/character/characterAbility.d.ts +72 -0
- package/types/maplestory/api/kms/dto/character/characterAndroidEquipment.d.ts +294 -0
- package/types/maplestory/api/{dto/character/characterBasicDto.d.ts → kms/dto/character/characterBasic.d.ts} +7 -4
- package/types/maplestory/api/kms/dto/character/characterBeautyEquipment.d.ts +117 -0
- package/types/maplestory/api/kms/dto/character/characterCashItemEquipment.d.ts +158 -0
- package/types/maplestory/api/kms/dto/character/characterDojang.d.ts +32 -0
- package/types/maplestory/api/kms/dto/character/characterHexaMatrix.d.ts +48 -0
- package/types/maplestory/api/kms/dto/character/characterHexaMatrixStat.d.ts +78 -0
- package/types/maplestory/api/kms/dto/character/characterHyperStat.d.ts +70 -0
- package/types/maplestory/api/kms/dto/character/characterImage.d.ts +74 -0
- package/types/maplestory/api/kms/dto/character/characterItemEquipment.d.ts +890 -0
- package/types/maplestory/api/kms/dto/character/characterLinkSkill.d.ts +78 -0
- package/types/maplestory/api/kms/dto/character/characterList.d.ts +52 -0
- package/types/maplestory/api/{dto/character/characterPetEquipmentDto.d.ts → kms/dto/character/characterPetEquipment.d.ts} +79 -7
- package/types/maplestory/api/kms/dto/character/characterPopularity.d.ts +16 -0
- package/types/maplestory/api/kms/dto/character/characterPropensity.d.ts +36 -0
- package/types/maplestory/api/kms/dto/character/characterSetEffect.d.ts +66 -0
- package/types/maplestory/api/kms/dto/character/characterSkill.d.ts +54 -0
- package/types/maplestory/api/kms/dto/character/characterStat.d.ts +38 -0
- package/types/maplestory/api/{dto/character/characterSymbolEquipmentInfoDto.d.ts → kms/dto/character/characterSymbolEquipment.d.ts} +22 -4
- package/types/maplestory/api/kms/dto/character/characterVMatrix.d.ts +62 -0
- package/types/maplestory/api/kms/dto/guild/guild.d.ts +12 -0
- package/types/maplestory/api/kms/dto/guild/guildBasic.d.ts +78 -0
- package/types/maplestory/api/{dto/history/cubeHistoryDto.d.ts → kms/dto/history/cubeHistory.d.ts} +37 -6
- package/types/maplestory/api/{dto/history/potentialHistoryDto.d.ts → kms/dto/history/potentialHistory.d.ts} +37 -6
- package/types/maplestory/api/{dto/history/starforceHistoryDto.d.ts → kms/dto/history/starforceHistory.d.ts} +47 -5
- package/types/maplestory/api/{dto/inspectionInfoDto.d.ts → kms/dto/inspectionInfo.d.ts} +1 -2
- package/types/maplestory/api/{dto/notice/cashshopNoticeDetailDto.d.ts → kms/dto/notice/cashshopNoticeDetail.d.ts} +3 -4
- package/types/maplestory/api/{dto/notice/cashshopNoticeListItemDto.d.ts → kms/dto/notice/cashshopNoticeList.d.ts} +13 -4
- package/types/maplestory/api/{dto/notice/eventNoticeDetailDto.d.ts → kms/dto/notice/eventNoticeDetail.d.ts} +3 -4
- package/types/maplestory/api/kms/dto/notice/eventNoticeList.d.ts +41 -0
- package/types/maplestory/api/{dto/notice/noticeDetailDto.d.ts → kms/dto/notice/noticeDetail.d.ts} +3 -4
- package/types/maplestory/api/kms/dto/notice/noticeList.d.ts +33 -0
- package/types/maplestory/api/{dto/notice/updateNoticeDetailDto.d.ts → kms/dto/notice/updateNoticeDetail.d.ts} +3 -4
- package/types/maplestory/api/kms/dto/notice/updateNoticeList.d.ts +33 -0
- package/types/maplestory/api/{dto/ranking/achievementRankingDto.d.ts → kms/dto/ranking/achievementRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/dojangRankingDto.d.ts → kms/dto/ranking/dojangRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/guildRankingDto.d.ts → kms/dto/ranking/guildRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/overallRankingDto.d.ts → kms/dto/ranking/overallRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/theSeedRankingDto.d.ts → kms/dto/ranking/theSeedRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/ranking/unionRankingDto.d.ts → kms/dto/ranking/unionRanking.d.ts} +13 -4
- package/types/maplestory/api/{dto/union/unionDto.d.ts → kms/dto/union/union.d.ts} +7 -7
- package/types/maplestory/api/kms/dto/union/unionArtifact.d.ts +76 -0
- package/types/maplestory/api/kms/dto/union/unionChampion.d.ts +55 -0
- package/types/maplestory/api/kms/dto/union/unionRaider.d.ts +142 -0
- package/types/maplestory/api/kms/index.d.ts +47 -0
- package/types/maplestory/api/{mapleStoryApi.d.ts → kms/mapleStoryApi.d.ts} +94 -89
- package/types/maplestory/api/kms/response/character/characterAbilityBody.d.ts +19 -0
- package/types/maplestory/api/{response/character/characterAndroidEquipmentDtoBody.d.ts → kms/response/character/characterAndroidEquipmentBody.d.ts} +20 -21
- package/types/maplestory/api/{response/character/characterBasicDtoBody.d.ts → kms/response/character/characterBasicBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/character/characterBeautyEquipmentBody.d.ts +30 -0
- package/types/maplestory/api/kms/response/character/characterBody.d.ts +3 -0
- package/types/maplestory/api/{response/character/characterCashItemEquipmentDtoBody.d.ts → kms/response/character/characterCashItemEquipmentBody.d.ts} +17 -18
- package/types/maplestory/api/kms/response/character/characterDojangBody.d.ts +8 -0
- package/types/maplestory/api/kms/response/character/characterHexaMatrixBody.d.ts +13 -0
- package/types/maplestory/api/kms/response/character/characterHexaMatrixStatBody.d.ts +20 -0
- package/types/maplestory/api/kms/response/character/characterHyperStatBody.d.ts +18 -0
- package/types/maplestory/api/{response/character/characterItemEquipmentDtoBody.d.ts → kms/response/character/characterItemEquipmentBody.d.ts} +35 -36
- package/types/maplestory/api/kms/response/character/characterLinkSkillBody.d.ts +20 -0
- package/types/maplestory/api/kms/response/character/characterListBody.d.ts +14 -0
- package/types/maplestory/api/{response/character/characterPetEquipmentDtoBody.d.ts → kms/response/character/characterPetEquipmentBody.d.ts} +11 -12
- package/types/maplestory/api/kms/response/character/characterPopularityBody.d.ts +4 -0
- package/types/maplestory/api/kms/response/character/characterPropensityBody.d.ts +9 -0
- package/types/maplestory/api/kms/response/character/characterSetEffectBody.d.ts +18 -0
- package/types/maplestory/api/kms/response/character/characterSkillBody.d.ts +14 -0
- package/types/maplestory/api/kms/response/character/characterStatBody.d.ts +10 -0
- package/types/maplestory/api/{response/character/characterSymbolEquipmentDtoBody.d.ts → kms/response/character/characterSymbolEquipmentBody.d.ts} +4 -5
- package/types/maplestory/api/{response/character/characterVMatrixDtoBody.d.ts → kms/response/character/characterVMatrixBody.d.ts} +4 -5
- package/types/maplestory/api/{response/guild/guildBasicDtoBody.d.ts → kms/response/guild/guildBasicBody.d.ts} +4 -5
- package/types/maplestory/api/kms/response/guild/guildBody.d.ts +3 -0
- package/types/maplestory/api/kms/response/history/cubeHistoryBody.d.ts +29 -0
- package/types/maplestory/api/kms/response/history/potentialHistoryBody.d.ts +28 -0
- package/types/maplestory/api/{response/history/starforceHistoryDtoBody.d.ts → kms/response/history/starforceHistoryBody.d.ts} +14 -4
- package/types/maplestory/api/{response → kms/response}/inspectionInfoSoapBody.d.ts +1 -2
- package/types/maplestory/api/{response/notice/cashshopNoticeDetailDtoBody.d.ts → kms/response/notice/cashshopNoticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/cashshopNoticeListBody.d.ts +12 -0
- package/types/maplestory/api/{response/notice/eventNoticeDetailDtoBody.d.ts → kms/response/notice/eventNoticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/eventNoticeListBody.d.ts +11 -0
- package/types/maplestory/api/{response/notice/noticeDetailDtoBody.d.ts → kms/response/notice/noticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/noticeListBody.d.ts +9 -0
- package/types/maplestory/api/{response/notice/updateNoticeDetailDtoBody.d.ts → kms/response/notice/updateNoticeDetailBody.d.ts} +1 -2
- package/types/maplestory/api/kms/response/notice/updateNoticeListBody.d.ts +9 -0
- package/types/maplestory/api/kms/response/ranking/achievementRankingBody.d.ts +12 -0
- package/types/maplestory/api/kms/response/ranking/dojangRankingBody.d.ts +13 -0
- package/types/maplestory/api/kms/response/ranking/guildRankingBody.d.ts +12 -0
- package/types/maplestory/api/{response/ranking/overallRankingResponseDtoBody.d.ts → kms/response/ranking/overallRankingBody.d.ts} +3 -4
- package/types/maplestory/api/kms/response/ranking/rankingResponseBody.d.ts +6 -0
- package/types/maplestory/api/kms/response/ranking/theSeedRankingBody.d.ts +13 -0
- package/types/maplestory/api/kms/response/ranking/unionRankingBody.d.ts +12 -0
- package/types/maplestory/api/kms/response/union/unionArtifactBody.d.ts +19 -0
- package/types/maplestory/api/{response/union/unionDtoBody.d.ts → kms/response/union/unionBody.d.ts} +3 -4
- package/types/maplestory/api/kms/response/union/unionChampionBody.d.ts +15 -0
- package/types/maplestory/api/kms/response/union/unionRaiderBody.d.ts +38 -0
- package/types/maplestory/api/msea/dto/character/character.d.ts +12 -0
- package/types/maplestory/api/msea/dto/character/characterAbility.d.ts +72 -0
- package/types/maplestory/api/msea/dto/character/characterAndroidEquipment.d.ts +295 -0
- package/types/maplestory/api/msea/dto/character/characterBasic.d.ts +72 -0
- package/types/maplestory/api/msea/dto/character/characterBeautyEquipment.d.ts +117 -0
- package/types/maplestory/api/msea/dto/character/characterCashItemEquipment.d.ts +154 -0
- package/types/maplestory/api/msea/dto/character/characterDojang.d.ts +32 -0
- package/types/maplestory/api/msea/dto/character/characterHexaMatrix.d.ts +48 -0
- package/types/maplestory/api/msea/dto/character/characterHexaMatrixStat.d.ts +78 -0
- package/types/maplestory/api/msea/dto/character/characterHyperStat.d.ts +70 -0
- package/types/maplestory/api/msea/dto/character/characterImage.d.ts +74 -0
- package/types/maplestory/api/msea/dto/character/characterItemEquipment.d.ts +844 -0
- package/types/maplestory/api/msea/dto/character/characterLinkSkill.d.ts +78 -0
- package/types/maplestory/api/msea/dto/character/characterPetEquipment.d.ts +230 -0
- package/types/maplestory/api/msea/dto/character/characterPopularity.d.ts +16 -0
- package/types/maplestory/api/msea/dto/character/characterPropensity.d.ts +36 -0
- package/types/maplestory/api/msea/dto/character/characterSetEffect.d.ts +66 -0
- package/types/maplestory/api/msea/dto/character/characterSkill.d.ts +54 -0
- package/types/maplestory/api/msea/dto/character/characterStat.d.ts +38 -0
- package/types/maplestory/api/msea/dto/character/characterSymbolEquipment.d.ts +86 -0
- package/types/maplestory/api/msea/dto/character/characterVMatrix.d.ts +62 -0
- package/types/maplestory/api/msea/dto/guild/guild.d.ts +12 -0
- package/types/maplestory/api/msea/dto/guild/guildBasic.d.ts +78 -0
- package/types/maplestory/api/msea/dto/union/union.d.ts +32 -0
- package/types/maplestory/api/msea/dto/union/unionArtifact.d.ts +76 -0
- package/types/maplestory/api/msea/dto/union/unionRaider.d.ts +147 -0
- package/types/maplestory/api/msea/index.d.ts +27 -0
- package/types/maplestory/api/msea/mapleStoryApi.d.ts +364 -0
- package/types/maplestory/api/msea/response/character/characterAbilityBody.d.ts +19 -0
- package/types/maplestory/api/msea/response/character/characterAndroidEquipmentBody.d.ts +75 -0
- package/types/maplestory/api/msea/response/character/characterBasicBody.d.ts +16 -0
- package/types/maplestory/api/msea/response/character/characterBeautyEquipmentBody.d.ts +30 -0
- package/types/maplestory/api/msea/response/character/characterBody.d.ts +3 -0
- package/types/maplestory/api/msea/response/character/characterCashItemEquipmentBody.d.ts +38 -0
- package/types/maplestory/api/msea/response/character/characterDojangBody.d.ts +8 -0
- package/types/maplestory/api/msea/response/character/characterHexaMatrixBody.d.ts +13 -0
- package/types/maplestory/api/msea/response/character/characterHexaMatrixStatBody.d.ts +20 -0
- package/types/maplestory/api/msea/response/character/characterHyperStatBody.d.ts +18 -0
- package/types/maplestory/api/msea/response/character/characterItemEquipmentBody.d.ts +190 -0
- package/types/maplestory/api/msea/response/character/characterLinkSkillBody.d.ts +20 -0
- package/types/maplestory/api/msea/response/character/characterPetEquipmentBody.d.ts +56 -0
- package/types/maplestory/api/msea/response/character/characterPopularityBody.d.ts +4 -0
- package/types/maplestory/api/msea/response/character/characterPropensityBody.d.ts +9 -0
- package/types/maplestory/api/msea/response/character/characterSetEffectBody.d.ts +18 -0
- package/types/maplestory/api/msea/response/character/characterSkillBody.d.ts +14 -0
- package/types/maplestory/api/msea/response/character/characterStatBody.d.ts +10 -0
- package/types/maplestory/api/msea/response/character/characterSymbolEquipmentBody.d.ts +22 -0
- package/types/maplestory/api/msea/response/character/characterVMatrixBody.d.ts +16 -0
- package/types/maplestory/api/msea/response/guild/guildBasicBody.d.ts +20 -0
- package/types/maplestory/api/msea/response/guild/guildBody.d.ts +3 -0
- package/types/maplestory/api/msea/response/union/unionArtifactBody.d.ts +19 -0
- package/types/maplestory/api/msea/response/union/unionBody.d.ts +8 -0
- package/types/maplestory/api/msea/response/union/unionRaiderBody.d.ts +38 -0
- package/dist/index.js +0 -9120
- package/dist/index.mjs +0 -9002
- package/types/maplestory/api/dto/character/characterAbilityDto.d.ts +0 -42
- package/types/maplestory/api/dto/character/characterAbilityInfoDto.d.ts +0 -20
- package/types/maplestory/api/dto/character/characterAbilityPresetDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterAndroidCashItemEquipmentColoringPrismDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterAndroidCashItemEquipmentDto.d.ts +0 -58
- package/types/maplestory/api/dto/character/characterAndroidCashItemEquipmentOptionDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterAndroidEquipmentDto.d.ts +0 -85
- package/types/maplestory/api/dto/character/characterAndroidEquipmentFaceDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterAndroidEquipmentHairDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterAndroidEquipmentPresetDto.d.ts +0 -59
- package/types/maplestory/api/dto/character/characterAndroidEquipmentSkinDto.d.ts +0 -28
- package/types/maplestory/api/dto/character/characterBeautyEquipmentDto.d.ts +0 -50
- package/types/maplestory/api/dto/character/characterBeautyEquipmentFaceDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterBeautyEquipmentHairDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterBeautyEquipmentSkinDto.d.ts +0 -28
- package/types/maplestory/api/dto/character/characterCashItemEquipmentColoringPrismDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterCashItemEquipmentDto.d.ts +0 -61
- package/types/maplestory/api/dto/character/characterCashItemEquipmentOptionDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterCashItemEquipmentPresetDto.d.ts +0 -66
- package/types/maplestory/api/dto/character/characterDojangDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterDto.d.ts +0 -12
- package/types/maplestory/api/dto/character/characterHexaMatrixDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterHexaMatrixEquipmentDto.d.ts +0 -25
- package/types/maplestory/api/dto/character/characterHexaMatrixEquipmentLinkedSkillDto.d.ts +0 -12
- package/types/maplestory/api/dto/character/characterHexaMatrixStatCoreDto.d.ts +0 -40
- package/types/maplestory/api/dto/character/characterHexaMatrixStatDto.d.ts +0 -41
- package/types/maplestory/api/dto/character/characterHyperStatDto.d.ts +0 -49
- package/types/maplestory/api/dto/character/characterHyperStatPresetDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterImageDto.d.ts +0 -160
- package/types/maplestory/api/dto/character/characterItemEquipmentAddOptionDto.d.ts +0 -68
- package/types/maplestory/api/dto/character/characterItemEquipmentBaseOptionDto.d.ts +0 -76
- package/types/maplestory/api/dto/character/characterItemEquipmentDragonInfoDto.d.ts +0 -130
- package/types/maplestory/api/dto/character/characterItemEquipmentDto.d.ts +0 -61
- package/types/maplestory/api/dto/character/characterItemEquipmentEtcOptionDto.d.ts +0 -52
- package/types/maplestory/api/dto/character/characterItemEquipmentExceptionalOptionDto.d.ts +0 -44
- package/types/maplestory/api/dto/character/characterItemEquipmentInfoDto.d.ts +0 -162
- package/types/maplestory/api/dto/character/characterItemEquipmentMechanicInfoDto.d.ts +0 -130
- package/types/maplestory/api/dto/character/characterItemEquipmentMedalShapeDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterItemEquipmentStarforceOptionDto.d.ts +0 -52
- package/types/maplestory/api/dto/character/characterItemEquipmentTitleDto.d.ts +0 -48
- package/types/maplestory/api/dto/character/characterItemEquipmentTotalOptionDto.d.ts +0 -80
- package/types/maplestory/api/dto/character/characterLinkSkillDto.d.ts +0 -49
- package/types/maplestory/api/dto/character/characterLinkSkillInfoDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterListAccountCharacterDto.d.ts +0 -28
- package/types/maplestory/api/dto/character/characterListAccountDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterListDto.d.ts +0 -13
- package/types/maplestory/api/dto/character/characterPetEquipmentAutoSkillDto.d.ts +0 -24
- package/types/maplestory/api/dto/character/characterPetEquipmentItemDto.d.ts +0 -41
- package/types/maplestory/api/dto/character/characterPetEquipmentItemOptionDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterPopularityDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterPropensityDto.d.ts +0 -33
- package/types/maplestory/api/dto/character/characterSetEffectDto.d.ts +0 -17
- package/types/maplestory/api/dto/character/characterSetEffectInfoDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterSetEffectOptionFullDto.d.ts +0 -16
- package/types/maplestory/api/dto/character/characterSetEffectSetDto.d.ts +0 -26
- package/types/maplestory/api/dto/character/characterSkillDto.d.ts +0 -25
- package/types/maplestory/api/dto/character/characterSkillInfoDto.d.ts +0 -32
- package/types/maplestory/api/dto/character/characterStatDto.d.ts +0 -27
- package/types/maplestory/api/dto/character/characterSymbolEquipmentDto.d.ts +0 -21
- package/types/maplestory/api/dto/character/characterVMatrixCoreEquipmentDto.d.ts +0 -40
- package/types/maplestory/api/dto/character/characterVMatrixDto.d.ts +0 -25
- package/types/maplestory/api/dto/guild/guildBasicDto.d.ts +0 -53
- package/types/maplestory/api/dto/guild/guildDto.d.ts +0 -12
- package/types/maplestory/api/dto/guild/guildSkillDto.d.ts +0 -28
- package/types/maplestory/api/dto/history/cubeHistoryResponseDto.d.ts +0 -21
- package/types/maplestory/api/dto/history/cubeResultOptionDto.d.ts +0 -18
- package/types/maplestory/api/dto/history/potentialHistoryResponseDto.d.ts +0 -21
- package/types/maplestory/api/dto/history/potentialResultOptionDto.d.ts +0 -18
- package/types/maplestory/api/dto/history/starforceEventDto.d.ts +0 -28
- package/types/maplestory/api/dto/history/starforceHistoryResponseDto.d.ts +0 -21
- package/types/maplestory/api/dto/notice/cashshopNoticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/eventNoticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/eventNoticeListItemDto.d.ts +0 -32
- package/types/maplestory/api/dto/notice/noticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/noticeListItemDto.d.ts +0 -24
- package/types/maplestory/api/dto/notice/updateNoticeListDto.d.ts +0 -13
- package/types/maplestory/api/dto/notice/updateNoticeListItemDto.d.ts +0 -24
- package/types/maplestory/api/dto/potentialOptionGrade.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/achievementRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/dojangRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/guildRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/overallRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/theSeedRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/ranking/unionRankingResponseDto.d.ts +0 -13
- package/types/maplestory/api/dto/union/unionArtifactCrystalDto.d.ts +0 -40
- package/types/maplestory/api/dto/union/unionArtifactDto.d.ts +0 -26
- package/types/maplestory/api/dto/union/unionArtifactEffectDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionChampionBadgeInfoDto.d.ts +0 -12
- package/types/maplestory/api/dto/union/unionChampionDto.d.ts +0 -22
- package/types/maplestory/api/dto/union/unionChampionInfoDto.d.ts +0 -29
- package/types/maplestory/api/dto/union/unionRaiderBlockDto.d.ts +0 -30
- package/types/maplestory/api/dto/union/unionRaiderBlockPositionDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionRaiderControlPointDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionRaiderDto.d.ts +0 -52
- package/types/maplestory/api/dto/union/unionRaiderInnerStatDto.d.ts +0 -16
- package/types/maplestory/api/dto/union/unionRaiderPresetDto.d.ts +0 -26
- package/types/maplestory/api/response/character/characterAbilityDtoBody.d.ts +0 -20
- package/types/maplestory/api/response/character/characterBeautyEquipmentDtoBody.d.ts +0 -31
- package/types/maplestory/api/response/character/characterDojangDtoBody.d.ts +0 -9
- package/types/maplestory/api/response/character/characterDtoBody.d.ts +0 -4
- package/types/maplestory/api/response/character/characterHexaMatrixDtoBody.d.ts +0 -14
- package/types/maplestory/api/response/character/characterHexaMatrixStatDtoBody.d.ts +0 -21
- package/types/maplestory/api/response/character/characterHyperStatDtoBody.d.ts +0 -19
- package/types/maplestory/api/response/character/characterLinkSkillDtoBody.d.ts +0 -21
- package/types/maplestory/api/response/character/characterListDtoBody.d.ts +0 -15
- package/types/maplestory/api/response/character/characterPopularityDtoBody.d.ts +0 -5
- package/types/maplestory/api/response/character/characterPropensityDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/character/characterSetEffectDtoBody.d.ts +0 -19
- package/types/maplestory/api/response/character/characterSkillDtoBody.d.ts +0 -15
- package/types/maplestory/api/response/character/characterStatDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/guild/guildDtoBody.d.ts +0 -4
- package/types/maplestory/api/response/history/cubeHistoryDtoBody.d.ts +0 -22
- package/types/maplestory/api/response/history/cubeHistoryResponseDtoBody.d.ts +0 -7
- package/types/maplestory/api/response/history/cubeResultOptionDtoBody.d.ts +0 -5
- package/types/maplestory/api/response/history/potentialHistoryResponseDtoBody.d.ts +0 -29
- package/types/maplestory/api/response/history/starforceEventDtoBody.d.ts +0 -8
- package/types/maplestory/api/response/history/starforceHistoryResponseDtoBody.d.ts +0 -7
- package/types/maplestory/api/response/notice/cashshopNoticeListDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/notice/eventNoticeListDtoBody.d.ts +0 -12
- package/types/maplestory/api/response/notice/noticeListDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/notice/updateNoticeListDtoBody.d.ts +0 -10
- package/types/maplestory/api/response/ranking/achievementRankingResponseDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/ranking/dojangRankingResponseDtoBody.d.ts +0 -14
- package/types/maplestory/api/response/ranking/guildRankingResponseDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/ranking/rankingResponseDtoBody.d.ts +0 -7
- package/types/maplestory/api/response/ranking/theSeedRankingResponseDtoBody.d.ts +0 -14
- package/types/maplestory/api/response/ranking/unionRankingResponseDtoBody.d.ts +0 -13
- package/types/maplestory/api/response/union/unionArtifactDtoBody.d.ts +0 -20
- package/types/maplestory/api/response/union/unionChampionDtoBody.d.ts +0 -16
- package/types/maplestory/api/response/union/unionRaiderDtoBody.d.ts +0 -39
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
type
|
|
1
|
+
export type EventNoticeDetailBody = {
|
|
2
2
|
title: string;
|
|
3
3
|
url: string;
|
|
4
4
|
contents: string;
|
|
@@ -6,4 +6,3 @@ type EventNoticeDetailDtoBody = {
|
|
|
6
6
|
date_event_start: string;
|
|
7
7
|
date_event_end: string;
|
|
8
8
|
};
|
|
9
|
-
export type { EventNoticeDetailDtoBody };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { RankingResponseBody } from './rankingResponseBody';
|
|
2
|
+
export type AchievementRankingBody = {
|
|
3
|
+
date: string;
|
|
4
|
+
ranking: number;
|
|
5
|
+
character_name: string;
|
|
6
|
+
world_name: string;
|
|
7
|
+
class_name: string;
|
|
8
|
+
sub_class_name: string;
|
|
9
|
+
trophy_grade: string;
|
|
10
|
+
trophy_score: number;
|
|
11
|
+
};
|
|
12
|
+
export type AchievementRankingResponseBody = RankingResponseBody<AchievementRankingBody>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { RankingResponseBody } from './rankingResponseBody';
|
|
2
|
+
export type DojangRankingBody = {
|
|
3
|
+
date: string;
|
|
4
|
+
ranking: number;
|
|
5
|
+
character_name: string;
|
|
6
|
+
world_name: string;
|
|
7
|
+
class_name: string;
|
|
8
|
+
sub_class_name: string;
|
|
9
|
+
character_level: number;
|
|
10
|
+
dojang_floor: number;
|
|
11
|
+
dojang_time_record: number;
|
|
12
|
+
};
|
|
13
|
+
export type DojangRankingResponseBody = RankingResponseBody<DojangRankingBody>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { RankingResponseBody } from './rankingResponseBody';
|
|
2
|
+
export type GuildRankingBody = {
|
|
3
|
+
date: string;
|
|
4
|
+
ranking: number;
|
|
5
|
+
guild_name: string;
|
|
6
|
+
world_name: string;
|
|
7
|
+
guild_level: number;
|
|
8
|
+
guild_master_name: string;
|
|
9
|
+
guild_mark: string;
|
|
10
|
+
guild_point: number;
|
|
11
|
+
};
|
|
12
|
+
export type GuildRankingResponseBody = RankingResponseBody<GuildRankingBody>;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
type
|
|
3
|
-
type OverallRankingDtoBody = {
|
|
1
|
+
import { RankingResponseBody } from './rankingResponseBody';
|
|
2
|
+
export type OverallRankingBody = {
|
|
4
3
|
date: string;
|
|
5
4
|
ranking: number;
|
|
6
5
|
character_name: string;
|
|
@@ -12,4 +11,4 @@ type OverallRankingDtoBody = {
|
|
|
12
11
|
character_popularity: number;
|
|
13
12
|
character_guildname: string | null;
|
|
14
13
|
};
|
|
15
|
-
export type
|
|
14
|
+
export type OverallRankingResponseBody = RankingResponseBody<OverallRankingBody>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { RankingResponseBody } from './rankingResponseBody';
|
|
2
|
+
export type TheSeedRankingBody = {
|
|
3
|
+
date: string;
|
|
4
|
+
ranking: number;
|
|
5
|
+
character_name: string;
|
|
6
|
+
world_name: string;
|
|
7
|
+
class_name: string;
|
|
8
|
+
sub_class_name: string;
|
|
9
|
+
character_level: number;
|
|
10
|
+
theseed_floor: number;
|
|
11
|
+
theseed_time_record: number;
|
|
12
|
+
};
|
|
13
|
+
export type TheSeedRankingResponseBody = RankingResponseBody<TheSeedRankingBody>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { RankingResponseBody } from './rankingResponseBody';
|
|
2
|
+
export type UnionRankingBody = {
|
|
3
|
+
date: string;
|
|
4
|
+
ranking: number;
|
|
5
|
+
character_name: string;
|
|
6
|
+
world_name: string;
|
|
7
|
+
class_name: string;
|
|
8
|
+
sub_class_name: string;
|
|
9
|
+
union_level: number;
|
|
10
|
+
union_power: number;
|
|
11
|
+
};
|
|
12
|
+
export type UnionRankingResponseBody = RankingResponseBody<UnionRankingBody>;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export type UnionArtifactBody = {
|
|
2
|
+
date: string | null;
|
|
3
|
+
union_artifact_effect: UnionArtifactEffectBody[];
|
|
4
|
+
union_artifact_crystal: UnionArtifactCrystalBody[];
|
|
5
|
+
union_artifact_remain_ap: number | null;
|
|
6
|
+
};
|
|
7
|
+
export type UnionArtifactEffectBody = {
|
|
8
|
+
name: string;
|
|
9
|
+
level: number;
|
|
10
|
+
};
|
|
11
|
+
export type UnionArtifactCrystalBody = {
|
|
12
|
+
name: string;
|
|
13
|
+
validity_flag: string;
|
|
14
|
+
date_expire: string;
|
|
15
|
+
level: number;
|
|
16
|
+
crystal_option_name_1: string;
|
|
17
|
+
crystal_option_name_2: string;
|
|
18
|
+
crystal_option_name_3: string;
|
|
19
|
+
};
|
package/types/maplestory/api/{response/union/unionDtoBody.d.ts → kms/response/union/unionBody.d.ts}
RENAMED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
type
|
|
1
|
+
export type UnionBody = {
|
|
2
2
|
date: string | null;
|
|
3
|
-
union_level: number;
|
|
4
|
-
union_grade: string;
|
|
3
|
+
union_level: number | null;
|
|
4
|
+
union_grade: string | null;
|
|
5
5
|
union_artifact_level: number | null;
|
|
6
6
|
union_artifact_exp: number | null;
|
|
7
7
|
union_artifact_point: number | null;
|
|
8
8
|
};
|
|
9
|
-
export type { UnionDtoBody };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export type UnionChampionBody = {
|
|
2
|
+
date: string;
|
|
3
|
+
union_champion: UnionChampionInfoBody[];
|
|
4
|
+
champion_badge_total_info: UnionChampionBadgeInfoBody[];
|
|
5
|
+
};
|
|
6
|
+
export type UnionChampionInfoBody = {
|
|
7
|
+
champion_name: string;
|
|
8
|
+
champion_slot: number;
|
|
9
|
+
champion_grade: string;
|
|
10
|
+
champion_class: string;
|
|
11
|
+
champion_badge_info: UnionChampionBadgeInfoBody[];
|
|
12
|
+
};
|
|
13
|
+
export type UnionChampionBadgeInfoBody = {
|
|
14
|
+
stat: string;
|
|
15
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
export type UnionRaiderBody = {
|
|
2
|
+
date: string | null;
|
|
3
|
+
union_raider_stat: string[];
|
|
4
|
+
union_occupied_stat: string[];
|
|
5
|
+
union_inner_stat: UnionRaiderInnerStatBody[];
|
|
6
|
+
union_block: UnionRaiderBlockBody[];
|
|
7
|
+
use_preset_no: number;
|
|
8
|
+
union_raider_preset_1: UnionRaiderPresetBody | null;
|
|
9
|
+
union_raider_preset_2: UnionRaiderPresetBody | null;
|
|
10
|
+
union_raider_preset_3: UnionRaiderPresetBody | null;
|
|
11
|
+
union_raider_preset_4: UnionRaiderPresetBody | null;
|
|
12
|
+
union_raider_preset_5: UnionRaiderPresetBody | null;
|
|
13
|
+
};
|
|
14
|
+
export type UnionRaiderInnerStatBody = {
|
|
15
|
+
stat_field_id: string;
|
|
16
|
+
stat_field_effect: string;
|
|
17
|
+
};
|
|
18
|
+
export type UnionRaiderBlockBody = {
|
|
19
|
+
block_type: string;
|
|
20
|
+
block_class: string;
|
|
21
|
+
block_level: string;
|
|
22
|
+
block_control_point: UnionRaiderBlockControlPointBody;
|
|
23
|
+
block_position: UnionRaiderBlockPositionBody[];
|
|
24
|
+
};
|
|
25
|
+
export type UnionRaiderBlockControlPointBody = {
|
|
26
|
+
x: number;
|
|
27
|
+
y: number;
|
|
28
|
+
};
|
|
29
|
+
export type UnionRaiderBlockPositionBody = {
|
|
30
|
+
x: number;
|
|
31
|
+
y: number;
|
|
32
|
+
};
|
|
33
|
+
export type UnionRaiderPresetBody = {
|
|
34
|
+
union_raider_stat: string[];
|
|
35
|
+
union_occupied_stat: string[];
|
|
36
|
+
union_inner_stat: UnionRaiderInnerStatBody[];
|
|
37
|
+
union_block: UnionRaiderBlockBody[];
|
|
38
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as base from '../../../common/dto/character/character';
|
|
2
|
+
import { CharacterBody } from '../../response/character/characterBody';
|
|
3
|
+
/**
|
|
4
|
+
* Character identifier information
|
|
5
|
+
*/
|
|
6
|
+
export declare class CharacterDto extends base.CharacterDto {
|
|
7
|
+
/**
|
|
8
|
+
* Character identifier
|
|
9
|
+
*/
|
|
10
|
+
ocid: string;
|
|
11
|
+
constructor(obj: CharacterBody);
|
|
12
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import * as base from '../../../common/dto/character/characterAbility';
|
|
2
|
+
import { CharacterAbilityBody, CharacterAbilityInfoBody, CharacterAbilityPresetBody } from '../../response/character/characterAbilityBody';
|
|
3
|
+
/**
|
|
4
|
+
* Character ability information
|
|
5
|
+
*/
|
|
6
|
+
export declare class CharacterAbilityDto extends base.CharacterAbilityDto {
|
|
7
|
+
/**
|
|
8
|
+
* Reference date for query (SGT, daily data with hours and minutes set to 0)
|
|
9
|
+
*/
|
|
10
|
+
date: Date | null;
|
|
11
|
+
/**
|
|
12
|
+
* Ability grade
|
|
13
|
+
*/
|
|
14
|
+
abilityGrade: string | null;
|
|
15
|
+
/**
|
|
16
|
+
* Ability information
|
|
17
|
+
*/
|
|
18
|
+
abilityInfo: CharacterAbilityInfoDto[];
|
|
19
|
+
/**
|
|
20
|
+
* Owned Honor EXP
|
|
21
|
+
*/
|
|
22
|
+
remainFame: number | null;
|
|
23
|
+
/**
|
|
24
|
+
* Active ability preset number
|
|
25
|
+
*/
|
|
26
|
+
presetNo: number | null;
|
|
27
|
+
/**
|
|
28
|
+
* Complete information for Ability Preset 1
|
|
29
|
+
*/
|
|
30
|
+
abilityPreset1: CharacterAbilityPresetDto | null;
|
|
31
|
+
/**
|
|
32
|
+
* Complete information for Ability Preset 2
|
|
33
|
+
*/
|
|
34
|
+
abilityPreset2: CharacterAbilityPresetDto | null;
|
|
35
|
+
/**
|
|
36
|
+
* Complete information for Ability Preset 3
|
|
37
|
+
*/
|
|
38
|
+
abilityPreset3: CharacterAbilityPresetDto | null;
|
|
39
|
+
constructor(obj: CharacterAbilityBody);
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Information for Ability Preset
|
|
43
|
+
*/
|
|
44
|
+
export declare class CharacterAbilityInfoDto extends base.CharacterAbilityInfoDto {
|
|
45
|
+
/**
|
|
46
|
+
* Ability number
|
|
47
|
+
*/
|
|
48
|
+
abilityNo: string;
|
|
49
|
+
/**
|
|
50
|
+
* Ability grade
|
|
51
|
+
*/
|
|
52
|
+
abilityGrade: string;
|
|
53
|
+
/**
|
|
54
|
+
* Ability option and value
|
|
55
|
+
*/
|
|
56
|
+
abilityValue: string;
|
|
57
|
+
constructor(obj: CharacterAbilityInfoBody);
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* Character ability preset information
|
|
61
|
+
*/
|
|
62
|
+
export declare class CharacterAbilityPresetDto extends base.CharacterAbilityPresetDto {
|
|
63
|
+
/**
|
|
64
|
+
* Ability grade for Preset
|
|
65
|
+
*/
|
|
66
|
+
abilityPresetGrade: string;
|
|
67
|
+
/**
|
|
68
|
+
* Information for Ability Preset
|
|
69
|
+
*/
|
|
70
|
+
abilityInfo: CharacterAbilityInfoDto[];
|
|
71
|
+
constructor(obj: CharacterAbilityPresetBody);
|
|
72
|
+
}
|
|
@@ -0,0 +1,295 @@
|
|
|
1
|
+
import * as base from '../../../common/dto/character/characterAndroidEquipment';
|
|
2
|
+
import { CharacterAndroidCashItemEquipmentBody, CharacterAndroidCashItemEquipmentColoringPrismBody, CharacterAndroidCashItemEquipmentOptionBody, CharacterAndroidEquipmentBody, CharacterAndroidEquipmentFaceBody, CharacterAndroidEquipmentHairBody, CharacterAndroidEquipmentPresetBody, CharacterAndroidEquipmentSkinBody } from '../../response/character/characterAndroidEquipmentBody';
|
|
3
|
+
/**
|
|
4
|
+
* Character android equipment information
|
|
5
|
+
*/
|
|
6
|
+
export declare class CharacterAndroidEquipmentDto extends base.CharacterAndroidEquipmentDto {
|
|
7
|
+
/**
|
|
8
|
+
* Reference date for query (SGT, daily data with hours and minutes set to 0)
|
|
9
|
+
*/
|
|
10
|
+
date: Date | null;
|
|
11
|
+
/**
|
|
12
|
+
* Android name
|
|
13
|
+
*/
|
|
14
|
+
androidName: string | null;
|
|
15
|
+
/**
|
|
16
|
+
* Android nickname
|
|
17
|
+
*/
|
|
18
|
+
androidNickname: string | null;
|
|
19
|
+
/**
|
|
20
|
+
* Android icon
|
|
21
|
+
*/
|
|
22
|
+
androidIcon: string | null;
|
|
23
|
+
/**
|
|
24
|
+
* Android item description
|
|
25
|
+
*/
|
|
26
|
+
androidDescription: string | null;
|
|
27
|
+
/**
|
|
28
|
+
* Android hair information
|
|
29
|
+
*/
|
|
30
|
+
androidHair: CharacterAndroidEquipmentHairDto | null;
|
|
31
|
+
/**
|
|
32
|
+
* Android face information
|
|
33
|
+
*/
|
|
34
|
+
androidFace: CharacterAndroidEquipmentFaceDto | null;
|
|
35
|
+
/**
|
|
36
|
+
* Android skin information
|
|
37
|
+
*/
|
|
38
|
+
androidSkin: CharacterAndroidEquipmentSkinDto | null;
|
|
39
|
+
/**
|
|
40
|
+
* Android cash item equipment information
|
|
41
|
+
*/
|
|
42
|
+
androidCashItemEquipment: CharacterAndroidCashItemEquipmentDto[];
|
|
43
|
+
/**
|
|
44
|
+
* Whether the Android ear sensor clip is applied
|
|
45
|
+
*/
|
|
46
|
+
androidEarSensorClipFlag: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Android gender
|
|
49
|
+
*/
|
|
50
|
+
androidGender: string | null;
|
|
51
|
+
/**
|
|
52
|
+
* Android grade
|
|
53
|
+
*/
|
|
54
|
+
androidGrade: string | null;
|
|
55
|
+
/**
|
|
56
|
+
* Whether the Android is non-humanoid
|
|
57
|
+
*/
|
|
58
|
+
androidNonHumanoidFlag: string | null;
|
|
59
|
+
/**
|
|
60
|
+
* Whether the Android can use the general store functionality
|
|
61
|
+
*/
|
|
62
|
+
androidShopUsableFlag: string | null;
|
|
63
|
+
/**
|
|
64
|
+
* Active equipment preset number
|
|
65
|
+
*/
|
|
66
|
+
presetNo: number | null;
|
|
67
|
+
/**
|
|
68
|
+
* Android information for preset 1
|
|
69
|
+
*/
|
|
70
|
+
androidPreset1: CharacterAndroidEquipmentPresetDto | null;
|
|
71
|
+
/**
|
|
72
|
+
* Android information for preset 2
|
|
73
|
+
*/
|
|
74
|
+
androidPreset2: CharacterAndroidEquipmentPresetDto | null;
|
|
75
|
+
/**
|
|
76
|
+
* Android information for preset 3
|
|
77
|
+
*/
|
|
78
|
+
androidPreset3: CharacterAndroidEquipmentPresetDto | null;
|
|
79
|
+
constructor(obj: CharacterAndroidEquipmentBody);
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* Android face information
|
|
83
|
+
*/
|
|
84
|
+
export declare class CharacterAndroidEquipmentFaceDto extends base.CharacterAndroidEquipmentFaceDto {
|
|
85
|
+
/**
|
|
86
|
+
* Android face name
|
|
87
|
+
*/
|
|
88
|
+
faceName: string | null;
|
|
89
|
+
/**
|
|
90
|
+
* Android base face color
|
|
91
|
+
*/
|
|
92
|
+
baseColor: string | null;
|
|
93
|
+
/**
|
|
94
|
+
* Android mixed face color
|
|
95
|
+
*/
|
|
96
|
+
mixColor: string | null;
|
|
97
|
+
/**
|
|
98
|
+
* Dye ratio for Android mixed face color
|
|
99
|
+
*/
|
|
100
|
+
mixRate: string;
|
|
101
|
+
constructor(obj: CharacterAndroidEquipmentFaceBody);
|
|
102
|
+
}
|
|
103
|
+
/**
|
|
104
|
+
* Android hair information
|
|
105
|
+
*/
|
|
106
|
+
export declare class CharacterAndroidEquipmentHairDto extends base.CharacterAndroidEquipmentHairDto {
|
|
107
|
+
/**
|
|
108
|
+
* Android hair name
|
|
109
|
+
*/
|
|
110
|
+
hairName: string | null;
|
|
111
|
+
/**
|
|
112
|
+
* Android base hair color
|
|
113
|
+
*/
|
|
114
|
+
baseColor: string | null;
|
|
115
|
+
/**
|
|
116
|
+
* Android mixed hair color
|
|
117
|
+
*/
|
|
118
|
+
mixColor: string | null;
|
|
119
|
+
/**
|
|
120
|
+
* Dye ratio for Android mixed hair color
|
|
121
|
+
*/
|
|
122
|
+
mixRate: string;
|
|
123
|
+
constructor(obj: CharacterAndroidEquipmentHairBody);
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* Android skin information
|
|
127
|
+
*/
|
|
128
|
+
export declare class CharacterAndroidEquipmentSkinDto extends base.CharacterAndroidEquipmentSkinDto {
|
|
129
|
+
/**
|
|
130
|
+
* Skin name
|
|
131
|
+
*/
|
|
132
|
+
skinName: string;
|
|
133
|
+
/**
|
|
134
|
+
* Color style
|
|
135
|
+
*/
|
|
136
|
+
colorStyle: string | null;
|
|
137
|
+
/**
|
|
138
|
+
* Skin hue
|
|
139
|
+
*/
|
|
140
|
+
hue: number | null;
|
|
141
|
+
/**
|
|
142
|
+
* Skin saturation
|
|
143
|
+
*/
|
|
144
|
+
saturation: number | null;
|
|
145
|
+
/**
|
|
146
|
+
* Skin brightness
|
|
147
|
+
*/
|
|
148
|
+
brightness: number | null;
|
|
149
|
+
constructor(obj: CharacterAndroidEquipmentSkinBody);
|
|
150
|
+
}
|
|
151
|
+
/**
|
|
152
|
+
* Android preset information
|
|
153
|
+
*/
|
|
154
|
+
export declare class CharacterAndroidEquipmentPresetDto extends base.CharacterAndroidEquipmentPresetDto {
|
|
155
|
+
/**
|
|
156
|
+
* Android name
|
|
157
|
+
*/
|
|
158
|
+
androidName: string;
|
|
159
|
+
/**
|
|
160
|
+
* Android nickname
|
|
161
|
+
*/
|
|
162
|
+
androidNickname: string;
|
|
163
|
+
/**
|
|
164
|
+
* Android icon
|
|
165
|
+
*/
|
|
166
|
+
androidIcon: string;
|
|
167
|
+
/**
|
|
168
|
+
* Android item description
|
|
169
|
+
*/
|
|
170
|
+
androidDescription: string;
|
|
171
|
+
/**
|
|
172
|
+
* Android gender
|
|
173
|
+
*/
|
|
174
|
+
androidGender: string | null;
|
|
175
|
+
/**
|
|
176
|
+
* Android grade
|
|
177
|
+
*/
|
|
178
|
+
androidGrade: string;
|
|
179
|
+
/**
|
|
180
|
+
*
|
|
181
|
+
* Android hair information
|
|
182
|
+
*/
|
|
183
|
+
androidHair: CharacterAndroidEquipmentHairDto;
|
|
184
|
+
/**
|
|
185
|
+
* Android face information
|
|
186
|
+
*/
|
|
187
|
+
androidFace: CharacterAndroidEquipmentFaceDto;
|
|
188
|
+
/**
|
|
189
|
+
* Android skin information
|
|
190
|
+
*/
|
|
191
|
+
androidSkin: CharacterAndroidEquipmentSkinDto | null;
|
|
192
|
+
/**
|
|
193
|
+
* Whether the Android ear sensor clip is applied
|
|
194
|
+
*/
|
|
195
|
+
androidEarSensorClipFlag: string;
|
|
196
|
+
/**
|
|
197
|
+
* Whether the Android is non-humanoid
|
|
198
|
+
*/
|
|
199
|
+
androidNonHumanoidFlag: string;
|
|
200
|
+
/**
|
|
201
|
+
* Whether the Android can use the general store functionality
|
|
202
|
+
*/
|
|
203
|
+
androidShopUsableFlag: string;
|
|
204
|
+
constructor(obj: CharacterAndroidEquipmentPresetBody);
|
|
205
|
+
}
|
|
206
|
+
/**
|
|
207
|
+
* Android cash item coloring prism information
|
|
208
|
+
*/
|
|
209
|
+
export declare class CharacterAndroidCashItemEquipmentColoringPrismDto extends base.CharacterAndroidCashItemEquipmentColoringPrismDto {
|
|
210
|
+
/**
|
|
211
|
+
* Coloring prism color range
|
|
212
|
+
*/
|
|
213
|
+
colorRange: string;
|
|
214
|
+
/**
|
|
215
|
+
* Coloring prism hue
|
|
216
|
+
*/
|
|
217
|
+
hue: number;
|
|
218
|
+
/**
|
|
219
|
+
* Coloring prism saturation
|
|
220
|
+
*/
|
|
221
|
+
saturation: number;
|
|
222
|
+
/**
|
|
223
|
+
* Coloring prism brightness
|
|
224
|
+
*/
|
|
225
|
+
value: number;
|
|
226
|
+
constructor(obj: CharacterAndroidCashItemEquipmentColoringPrismBody);
|
|
227
|
+
}
|
|
228
|
+
/**
|
|
229
|
+
* Android cash item options
|
|
230
|
+
*/
|
|
231
|
+
export declare class CharacterAndroidCashItemEquipmentOptionDto extends base.CharacterAndroidCashItemEquipmentOptionDto {
|
|
232
|
+
/**
|
|
233
|
+
* Option type
|
|
234
|
+
*/
|
|
235
|
+
optionType: string;
|
|
236
|
+
/**
|
|
237
|
+
* Option value
|
|
238
|
+
*/
|
|
239
|
+
optionValue: string;
|
|
240
|
+
constructor(obj: CharacterAndroidCashItemEquipmentOptionBody);
|
|
241
|
+
}
|
|
242
|
+
/**
|
|
243
|
+
* Android cash item equipment information
|
|
244
|
+
*/
|
|
245
|
+
export declare class CharacterAndroidCashItemEquipmentDto extends base.CharacterAndroidCashItemEquipmentDto {
|
|
246
|
+
/**
|
|
247
|
+
* Android cash item part name
|
|
248
|
+
*/
|
|
249
|
+
cashItemEquipmentPart: string;
|
|
250
|
+
/**
|
|
251
|
+
* Android cash item slot position
|
|
252
|
+
*/
|
|
253
|
+
cashItemEquipmentSlot: string;
|
|
254
|
+
/**
|
|
255
|
+
* Android cash item name
|
|
256
|
+
*/
|
|
257
|
+
cashItemName: string;
|
|
258
|
+
/**
|
|
259
|
+
* Android cash item icon
|
|
260
|
+
*/
|
|
261
|
+
cashItemIcon: string;
|
|
262
|
+
/**
|
|
263
|
+
* Android cash item description
|
|
264
|
+
*/
|
|
265
|
+
cashItemDescription: string | null;
|
|
266
|
+
/**
|
|
267
|
+
* Android cash item options
|
|
268
|
+
*/
|
|
269
|
+
cashItemOption: CharacterAndroidCashItemEquipmentOptionDto[];
|
|
270
|
+
/**
|
|
271
|
+
* Android cash item validity period (SGT)
|
|
272
|
+
*/
|
|
273
|
+
dateExpire: Date | null;
|
|
274
|
+
/**
|
|
275
|
+
* Whether the android cash item is expired
|
|
276
|
+
*/
|
|
277
|
+
isExpired: boolean | null;
|
|
278
|
+
/**
|
|
279
|
+
* Android cash item option validity period (SGT, data with minutes set to 0)
|
|
280
|
+
*/
|
|
281
|
+
dateOptionExpire: Date | null;
|
|
282
|
+
/**
|
|
283
|
+
* Whether the android cash item option is expired
|
|
284
|
+
*/
|
|
285
|
+
isOptionExpired: boolean | null;
|
|
286
|
+
/**
|
|
287
|
+
* Android cash item label information (e.g., Special Label, Red Label, Black Label, Master Label)
|
|
288
|
+
*/
|
|
289
|
+
cashItemLabel: string | null;
|
|
290
|
+
/**
|
|
291
|
+
* Android cash item coloring prism information
|
|
292
|
+
*/
|
|
293
|
+
cashItemColoringPrism: CharacterAndroidCashItemEquipmentColoringPrismDto | null;
|
|
294
|
+
constructor(obj: CharacterAndroidCashItemEquipmentBody);
|
|
295
|
+
}
|