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.
Files changed (556) hide show
  1. package/README.md +37 -6
  2. package/dist/cjs/_virtual/_commonjsHelpers.js +7 -0
  3. package/dist/cjs/_virtual/index.js_commonjs-exports.js +7 -0
  4. package/dist/cjs/_virtual/index.js_commonjs-exports2.js +7 -0
  5. package/dist/cjs/_virtual/index.js_commonjs-exports3.js +7 -0
  6. package/dist/cjs/_virtual/timezone.js_commonjs-module.js +7 -0
  7. package/dist/cjs/_virtual/utc.js_commonjs-module.js +7 -0
  8. package/dist/cjs/index.js +133 -0
  9. package/dist/cjs/maplestory/api/common/dto/character/character.js +8 -0
  10. package/dist/cjs/maplestory/api/common/dto/character/characterAbility.js +14 -0
  11. package/dist/cjs/maplestory/api/common/dto/character/characterAndroidEquipment.js +29 -0
  12. package/dist/cjs/maplestory/api/common/dto/character/characterBasic.js +14 -0
  13. package/dist/cjs/maplestory/api/common/dto/character/characterBeautyEquipment.js +17 -0
  14. package/dist/cjs/maplestory/api/common/dto/character/characterCashItemEquipment.js +17 -0
  15. package/dist/cjs/maplestory/api/common/dto/character/characterDojang.js +8 -0
  16. package/dist/cjs/maplestory/api/common/dto/character/characterHexaMatrix.js +14 -0
  17. package/dist/cjs/maplestory/api/common/dto/character/characterHexaMatrixStat.js +11 -0
  18. package/dist/cjs/maplestory/api/common/dto/character/characterHyperStat.js +11 -0
  19. package/dist/cjs/maplestory/api/common/dto/character/characterImage.js +8 -0
  20. package/dist/cjs/maplestory/api/common/dto/character/characterItemEquipment.js +38 -0
  21. package/dist/cjs/maplestory/api/common/dto/character/characterLinkSkill.js +11 -0
  22. package/dist/cjs/maplestory/api/common/dto/character/characterList.js +14 -0
  23. package/dist/cjs/maplestory/api/common/dto/character/characterPetEquipment.js +17 -0
  24. package/dist/cjs/maplestory/api/common/dto/character/characterPopularity.js +8 -0
  25. package/dist/cjs/maplestory/api/common/dto/character/characterPropensity.js +8 -0
  26. package/dist/cjs/maplestory/api/common/dto/character/characterSetEffect.js +17 -0
  27. package/dist/cjs/maplestory/api/common/dto/character/characterSkill.js +11 -0
  28. package/dist/cjs/maplestory/api/common/dto/character/characterStat.js +11 -0
  29. package/dist/cjs/maplestory/api/common/dto/character/characterSymbolEquipment.js +11 -0
  30. package/dist/cjs/maplestory/api/common/dto/character/characterVMatrix.js +11 -0
  31. package/dist/cjs/maplestory/api/common/dto/guild/guild.js +8 -0
  32. package/dist/cjs/maplestory/api/common/dto/guild/guildBasic.js +11 -0
  33. package/dist/cjs/maplestory/api/common/dto/union/union.js +8 -0
  34. package/dist/cjs/maplestory/api/common/dto/union/unionArtifact.js +14 -0
  35. package/dist/cjs/maplestory/api/common/dto/union/unionRaider.js +23 -0
  36. package/dist/cjs/maplestory/api/common/enum/characterImage.js +94 -0
  37. package/dist/cjs/maplestory/api/common/enum/potentialOptionGrade.js +11 -0
  38. package/dist/cjs/maplestory/api/common/lib.js +26 -0
  39. package/dist/cjs/maplestory/api/common/mapleStoryApi.js +121 -0
  40. package/dist/cjs/maplestory/api/common/mapleStoryApiError.js +50 -0
  41. package/dist/cjs/maplestory/api/kms/dto/character/character.js +22 -0
  42. package/dist/cjs/maplestory/api/kms/dto/character/characterAbility.js +108 -0
  43. package/dist/cjs/maplestory/api/kms/dto/character/characterAndroidEquipment.js +418 -0
  44. package/dist/cjs/maplestory/api/kms/dto/character/characterBasic.js +99 -0
  45. package/dist/cjs/maplestory/api/kms/dto/character/characterBeautyEquipment.js +172 -0
  46. package/dist/cjs/maplestory/api/kms/dto/character/characterCashItemEquipment.js +228 -0
  47. package/dist/cjs/maplestory/api/kms/dto/character/characterDojang.js +49 -0
  48. package/dist/cjs/maplestory/api/kms/dto/character/characterHexaMatrix.js +73 -0
  49. package/dist/cjs/maplestory/api/kms/dto/character/characterHexaMatrixStat.js +113 -0
  50. package/dist/cjs/maplestory/api/kms/dto/character/characterHyperStat.js +97 -0
  51. package/dist/cjs/maplestory/api/kms/dto/character/characterImage.js +81 -0
  52. package/dist/cjs/maplestory/api/kms/dto/character/characterItemEquipment.js +1173 -0
  53. package/dist/cjs/maplestory/api/kms/dto/character/characterLinkSkill.js +115 -0
  54. package/dist/cjs/maplestory/api/kms/dto/character/characterList.js +77 -0
  55. package/dist/cjs/maplestory/api/kms/dto/character/characterPetEquipment.js +332 -0
  56. package/dist/cjs/maplestory/api/kms/dto/character/characterPopularity.js +27 -0
  57. package/dist/cjs/maplestory/api/kms/dto/character/characterPropensity.js +52 -0
  58. package/dist/cjs/maplestory/api/kms/dto/character/characterSetEffect.js +97 -0
  59. package/dist/cjs/maplestory/api/kms/dto/character/characterSkill.js +77 -0
  60. package/dist/cjs/maplestory/api/kms/dto/character/characterStat.js +57 -0
  61. package/dist/cjs/maplestory/api/kms/dto/character/characterSymbolEquipment.js +119 -0
  62. package/dist/cjs/maplestory/api/kms/dto/character/characterVMatrix.js +88 -0
  63. package/dist/cjs/maplestory/api/kms/dto/guild/guild.js +22 -0
  64. package/dist/cjs/maplestory/api/kms/dto/guild/guildBasic.js +107 -0
  65. package/dist/cjs/maplestory/api/kms/dto/history/cubeHistory.js +165 -0
  66. package/dist/cjs/maplestory/api/kms/dto/history/potentialHistory.js +160 -0
  67. package/dist/cjs/maplestory/api/kms/dto/history/starforceHistory.js +159 -0
  68. package/dist/cjs/maplestory/api/kms/dto/inspectionInfo.js +34 -0
  69. package/dist/cjs/maplestory/api/kms/dto/notice/cashshopNoticeDetail.js +55 -0
  70. package/dist/cjs/maplestory/api/kms/dto/notice/cashshopNoticeList.js +69 -0
  71. package/dist/cjs/maplestory/api/kms/dto/notice/eventNoticeDetail.js +44 -0
  72. package/dist/cjs/maplestory/api/kms/dto/notice/eventNoticeList.js +58 -0
  73. package/dist/cjs/maplestory/api/kms/dto/notice/noticeDetail.js +34 -0
  74. package/dist/cjs/maplestory/api/kms/dto/notice/noticeList.js +48 -0
  75. package/dist/cjs/maplestory/api/kms/dto/notice/updateNoticeDetail.js +34 -0
  76. package/dist/cjs/maplestory/api/kms/dto/notice/updateNoticeList.js +48 -0
  77. package/dist/cjs/maplestory/api/kms/dto/ranking/achievementRanking.js +68 -0
  78. package/dist/cjs/maplestory/api/kms/dto/ranking/dojangRanking.js +73 -0
  79. package/dist/cjs/maplestory/api/kms/dto/ranking/guildRanking.js +68 -0
  80. package/dist/cjs/maplestory/api/kms/dto/ranking/overallRanking.js +78 -0
  81. package/dist/cjs/maplestory/api/kms/dto/ranking/theSeedRanking.js +73 -0
  82. package/dist/cjs/maplestory/api/kms/dto/ranking/unionRanking.js +68 -0
  83. package/dist/cjs/maplestory/api/kms/dto/union/union.js +47 -0
  84. package/dist/cjs/maplestory/api/kms/dto/union/unionArtifact.js +111 -0
  85. package/dist/cjs/maplestory/api/kms/dto/union/unionChampion.js +77 -0
  86. package/dist/cjs/maplestory/api/kms/dto/union/unionRaider.js +209 -0
  87. package/dist/cjs/maplestory/api/kms/kms.js +170 -0
  88. package/dist/cjs/maplestory/api/kms/mapleStoryApi.js +1321 -0
  89. package/dist/cjs/maplestory/api/msea/dto/character/character.js +22 -0
  90. package/dist/cjs/maplestory/api/msea/dto/character/characterAbility.js +108 -0
  91. package/dist/cjs/maplestory/api/msea/dto/character/characterAndroidEquipment.js +419 -0
  92. package/dist/cjs/maplestory/api/msea/dto/character/characterBasic.js +99 -0
  93. package/dist/cjs/maplestory/api/msea/dto/character/characterBeautyEquipment.js +172 -0
  94. package/dist/cjs/maplestory/api/msea/dto/character/characterCashItemEquipment.js +223 -0
  95. package/dist/cjs/maplestory/api/msea/dto/character/characterDojang.js +49 -0
  96. package/dist/cjs/maplestory/api/msea/dto/character/characterHexaMatrix.js +73 -0
  97. package/dist/cjs/maplestory/api/msea/dto/character/characterHexaMatrixStat.js +113 -0
  98. package/dist/cjs/maplestory/api/msea/dto/character/characterHyperStat.js +97 -0
  99. package/dist/cjs/maplestory/api/msea/dto/character/characterImage.js +81 -0
  100. package/dist/cjs/maplestory/api/msea/dto/character/characterItemEquipment.js +1112 -0
  101. package/dist/cjs/maplestory/api/msea/dto/character/characterLinkSkill.js +115 -0
  102. package/dist/cjs/maplestory/api/msea/dto/character/characterPetEquipment.js +332 -0
  103. package/dist/cjs/maplestory/api/msea/dto/character/characterPopularity.js +27 -0
  104. package/dist/cjs/maplestory/api/msea/dto/character/characterPropensity.js +52 -0
  105. package/dist/cjs/maplestory/api/msea/dto/character/characterSetEffect.js +97 -0
  106. package/dist/cjs/maplestory/api/msea/dto/character/characterSkill.js +77 -0
  107. package/dist/cjs/maplestory/api/msea/dto/character/characterStat.js +57 -0
  108. package/dist/cjs/maplestory/api/msea/dto/character/characterSymbolEquipment.js +119 -0
  109. package/dist/cjs/maplestory/api/msea/dto/character/characterVMatrix.js +88 -0
  110. package/dist/cjs/maplestory/api/msea/dto/guild/guild.js +22 -0
  111. package/dist/cjs/maplestory/api/msea/dto/guild/guildBasic.js +107 -0
  112. package/dist/cjs/maplestory/api/msea/dto/union/union.js +47 -0
  113. package/dist/cjs/maplestory/api/msea/dto/union/unionArtifact.js +111 -0
  114. package/dist/cjs/maplestory/api/msea/dto/union/unionRaider.js +214 -0
  115. package/dist/cjs/maplestory/api/msea/mapleStoryApi.js +802 -0
  116. package/dist/cjs/maplestory/api/msea/msea.js +109 -0
  117. package/dist/cjs/node_modules/base64-js/index.js +154 -0
  118. package/dist/cjs/node_modules/buffer/index.js +2116 -0
  119. package/dist/cjs/node_modules/dayjs/plugin/timezone.js +12 -0
  120. package/dist/cjs/node_modules/dayjs/plugin/utc.js +12 -0
  121. package/dist/cjs/node_modules/ieee754/index.js +92 -0
  122. package/dist/esm/_virtual/_commonjsHelpers.js +3 -0
  123. package/dist/esm/_virtual/index.js_commonjs-exports.js +3 -0
  124. package/dist/esm/_virtual/index.js_commonjs-exports2.js +3 -0
  125. package/dist/esm/_virtual/index.js_commonjs-exports3.js +3 -0
  126. package/dist/esm/_virtual/timezone.js_commonjs-module.js +3 -0
  127. package/dist/esm/_virtual/utc.js_commonjs-module.js +3 -0
  128. package/dist/esm/index.js +30 -0
  129. package/dist/esm/maplestory/api/common/dto/character/character.js +4 -0
  130. package/dist/esm/maplestory/api/common/dto/character/characterAbility.js +8 -0
  131. package/dist/esm/maplestory/api/common/dto/character/characterAndroidEquipment.js +18 -0
  132. package/dist/esm/maplestory/api/common/dto/character/characterBasic.js +10 -0
  133. package/dist/esm/maplestory/api/common/dto/character/characterBeautyEquipment.js +10 -0
  134. package/dist/esm/maplestory/api/common/dto/character/characterCashItemEquipment.js +10 -0
  135. package/dist/esm/maplestory/api/common/dto/character/characterDojang.js +4 -0
  136. package/dist/esm/maplestory/api/common/dto/character/characterHexaMatrix.js +8 -0
  137. package/dist/esm/maplestory/api/common/dto/character/characterHexaMatrixStat.js +6 -0
  138. package/dist/esm/maplestory/api/common/dto/character/characterHyperStat.js +6 -0
  139. package/dist/esm/maplestory/api/common/dto/character/characterImage.js +4 -0
  140. package/dist/esm/maplestory/api/common/dto/character/characterItemEquipment.js +24 -0
  141. package/dist/esm/maplestory/api/common/dto/character/characterLinkSkill.js +6 -0
  142. package/dist/esm/maplestory/api/common/dto/character/characterList.js +8 -0
  143. package/dist/esm/maplestory/api/common/dto/character/characterPetEquipment.js +10 -0
  144. package/dist/esm/maplestory/api/common/dto/character/characterPopularity.js +4 -0
  145. package/dist/esm/maplestory/api/common/dto/character/characterPropensity.js +4 -0
  146. package/dist/esm/maplestory/api/common/dto/character/characterSetEffect.js +10 -0
  147. package/dist/esm/maplestory/api/common/dto/character/characterSkill.js +6 -0
  148. package/dist/esm/maplestory/api/common/dto/character/characterStat.js +6 -0
  149. package/dist/esm/maplestory/api/common/dto/character/characterSymbolEquipment.js +6 -0
  150. package/dist/esm/maplestory/api/common/dto/character/characterVMatrix.js +6 -0
  151. package/dist/esm/maplestory/api/common/dto/guild/guild.js +4 -0
  152. package/dist/esm/maplestory/api/common/dto/guild/guildBasic.js +6 -0
  153. package/dist/esm/maplestory/api/common/dto/union/union.js +4 -0
  154. package/dist/esm/maplestory/api/common/dto/union/unionArtifact.js +8 -0
  155. package/dist/esm/maplestory/api/common/dto/union/unionRaider.js +14 -0
  156. package/dist/esm/maplestory/api/common/enum/characterImage.js +92 -0
  157. package/dist/esm/maplestory/api/common/enum/potentialOptionGrade.js +9 -0
  158. package/dist/esm/maplestory/api/common/lib.js +22 -0
  159. package/dist/esm/maplestory/api/common/mapleStoryApi.js +112 -0
  160. package/dist/esm/maplestory/api/common/mapleStoryApiError.js +46 -0
  161. package/dist/esm/maplestory/api/kms/dto/character/character.js +18 -0
  162. package/dist/esm/maplestory/api/kms/dto/character/characterAbility.js +102 -0
  163. package/dist/esm/maplestory/api/kms/dto/character/characterAndroidEquipment.js +407 -0
  164. package/dist/esm/maplestory/api/kms/dto/character/characterBasic.js +95 -0
  165. package/dist/esm/maplestory/api/kms/dto/character/characterBeautyEquipment.js +165 -0
  166. package/dist/esm/maplestory/api/kms/dto/character/characterCashItemEquipment.js +221 -0
  167. package/dist/esm/maplestory/api/kms/dto/character/characterDojang.js +45 -0
  168. package/dist/esm/maplestory/api/kms/dto/character/characterHexaMatrix.js +67 -0
  169. package/dist/esm/maplestory/api/kms/dto/character/characterHexaMatrixStat.js +108 -0
  170. package/dist/esm/maplestory/api/kms/dto/character/characterHyperStat.js +92 -0
  171. package/dist/esm/maplestory/api/kms/dto/character/characterImage.js +77 -0
  172. package/dist/esm/maplestory/api/kms/dto/character/characterItemEquipment.js +1158 -0
  173. package/dist/esm/maplestory/api/kms/dto/character/characterLinkSkill.js +110 -0
  174. package/dist/esm/maplestory/api/kms/dto/character/characterList.js +71 -0
  175. package/dist/esm/maplestory/api/kms/dto/character/characterPetEquipment.js +325 -0
  176. package/dist/esm/maplestory/api/kms/dto/character/characterPopularity.js +23 -0
  177. package/dist/esm/maplestory/api/kms/dto/character/characterPropensity.js +48 -0
  178. package/dist/esm/maplestory/api/kms/dto/character/characterSetEffect.js +90 -0
  179. package/dist/esm/maplestory/api/kms/dto/character/characterSkill.js +72 -0
  180. package/dist/esm/maplestory/api/kms/dto/character/characterStat.js +52 -0
  181. package/dist/esm/maplestory/api/kms/dto/character/characterSymbolEquipment.js +114 -0
  182. package/dist/esm/maplestory/api/kms/dto/character/characterVMatrix.js +83 -0
  183. package/dist/esm/maplestory/api/kms/dto/guild/guild.js +18 -0
  184. package/dist/esm/maplestory/api/kms/dto/guild/guildBasic.js +102 -0
  185. package/dist/esm/maplestory/api/kms/dto/history/cubeHistory.js +159 -0
  186. package/dist/esm/maplestory/api/kms/dto/history/potentialHistory.js +154 -0
  187. package/dist/esm/maplestory/api/kms/dto/history/starforceHistory.js +153 -0
  188. package/dist/esm/maplestory/api/kms/dto/inspectionInfo.js +30 -0
  189. package/dist/esm/maplestory/api/kms/dto/notice/cashshopNoticeDetail.js +51 -0
  190. package/dist/esm/maplestory/api/kms/dto/notice/cashshopNoticeList.js +64 -0
  191. package/dist/esm/maplestory/api/kms/dto/notice/eventNoticeDetail.js +40 -0
  192. package/dist/esm/maplestory/api/kms/dto/notice/eventNoticeList.js +53 -0
  193. package/dist/esm/maplestory/api/kms/dto/notice/noticeDetail.js +30 -0
  194. package/dist/esm/maplestory/api/kms/dto/notice/noticeList.js +43 -0
  195. package/dist/esm/maplestory/api/kms/dto/notice/updateNoticeDetail.js +30 -0
  196. package/dist/esm/maplestory/api/kms/dto/notice/updateNoticeList.js +43 -0
  197. package/dist/esm/maplestory/api/kms/dto/ranking/achievementRanking.js +63 -0
  198. package/dist/esm/maplestory/api/kms/dto/ranking/dojangRanking.js +68 -0
  199. package/dist/esm/maplestory/api/kms/dto/ranking/guildRanking.js +63 -0
  200. package/dist/esm/maplestory/api/kms/dto/ranking/overallRanking.js +73 -0
  201. package/dist/esm/maplestory/api/kms/dto/ranking/theSeedRanking.js +68 -0
  202. package/dist/esm/maplestory/api/kms/dto/ranking/unionRanking.js +63 -0
  203. package/dist/esm/maplestory/api/kms/dto/union/union.js +43 -0
  204. package/dist/esm/maplestory/api/kms/dto/union/unionArtifact.js +105 -0
  205. package/dist/esm/maplestory/api/kms/dto/union/unionChampion.js +71 -0
  206. package/dist/esm/maplestory/api/kms/dto/union/unionRaider.js +200 -0
  207. package/dist/esm/maplestory/api/kms/kms.js +47 -0
  208. package/dist/esm/maplestory/api/kms/mapleStoryApi.js +1312 -0
  209. package/dist/esm/maplestory/api/msea/dto/character/character.js +18 -0
  210. package/dist/esm/maplestory/api/msea/dto/character/characterAbility.js +102 -0
  211. package/dist/esm/maplestory/api/msea/dto/character/characterAndroidEquipment.js +408 -0
  212. package/dist/esm/maplestory/api/msea/dto/character/characterBasic.js +95 -0
  213. package/dist/esm/maplestory/api/msea/dto/character/characterBeautyEquipment.js +165 -0
  214. package/dist/esm/maplestory/api/msea/dto/character/characterCashItemEquipment.js +216 -0
  215. package/dist/esm/maplestory/api/msea/dto/character/characterDojang.js +45 -0
  216. package/dist/esm/maplestory/api/msea/dto/character/characterHexaMatrix.js +67 -0
  217. package/dist/esm/maplestory/api/msea/dto/character/characterHexaMatrixStat.js +108 -0
  218. package/dist/esm/maplestory/api/msea/dto/character/characterHyperStat.js +92 -0
  219. package/dist/esm/maplestory/api/msea/dto/character/characterImage.js +77 -0
  220. package/dist/esm/maplestory/api/msea/dto/character/characterItemEquipment.js +1098 -0
  221. package/dist/esm/maplestory/api/msea/dto/character/characterLinkSkill.js +110 -0
  222. package/dist/esm/maplestory/api/msea/dto/character/characterPetEquipment.js +325 -0
  223. package/dist/esm/maplestory/api/msea/dto/character/characterPopularity.js +23 -0
  224. package/dist/esm/maplestory/api/msea/dto/character/characterPropensity.js +48 -0
  225. package/dist/esm/maplestory/api/msea/dto/character/characterSetEffect.js +90 -0
  226. package/dist/esm/maplestory/api/msea/dto/character/characterSkill.js +72 -0
  227. package/dist/esm/maplestory/api/msea/dto/character/characterStat.js +52 -0
  228. package/dist/esm/maplestory/api/msea/dto/character/characterSymbolEquipment.js +114 -0
  229. package/dist/esm/maplestory/api/msea/dto/character/characterVMatrix.js +83 -0
  230. package/dist/esm/maplestory/api/msea/dto/guild/guild.js +18 -0
  231. package/dist/esm/maplestory/api/msea/dto/guild/guildBasic.js +102 -0
  232. package/dist/esm/maplestory/api/msea/dto/union/union.js +43 -0
  233. package/dist/esm/maplestory/api/msea/dto/union/unionArtifact.js +105 -0
  234. package/dist/esm/maplestory/api/msea/dto/union/unionRaider.js +205 -0
  235. package/dist/esm/maplestory/api/msea/mapleStoryApi.js +794 -0
  236. package/dist/esm/maplestory/api/msea/msea.js +27 -0
  237. package/dist/esm/node_modules/base64-js/index.js +151 -0
  238. package/dist/esm/node_modules/buffer/index.js +2113 -0
  239. package/dist/esm/node_modules/dayjs/plugin/timezone.js +10 -0
  240. package/dist/esm/node_modules/dayjs/plugin/utc.js +10 -0
  241. package/dist/esm/node_modules/ieee754/index.js +89 -0
  242. package/dist/index.min.js +1 -10
  243. package/package.json +14 -3
  244. package/types/index.d.ts +30 -111
  245. package/types/maplestory/api/common/dto/character/character.d.ts +3 -0
  246. package/types/maplestory/api/common/dto/character/characterAbility.d.ts +19 -0
  247. package/types/maplestory/api/common/dto/character/characterAndroidEquipment.d.ts +77 -0
  248. package/types/maplestory/api/common/dto/character/characterBasic.d.ts +18 -0
  249. package/types/maplestory/api/common/dto/character/characterBeautyEquipment.d.ts +30 -0
  250. package/types/maplestory/api/common/dto/character/characterCashItemEquipment.d.ts +40 -0
  251. package/types/maplestory/api/common/dto/character/characterDojang.d.ts +8 -0
  252. package/types/maplestory/api/common/dto/character/characterHexaMatrix.d.ts +13 -0
  253. package/types/maplestory/api/common/dto/character/characterHexaMatrixStat.d.ts +20 -0
  254. package/types/maplestory/api/common/dto/character/characterHyperStat.d.ts +18 -0
  255. package/types/maplestory/api/common/dto/character/characterImage.d.ts +16 -0
  256. package/types/maplestory/api/common/dto/character/characterItemEquipment.d.ts +216 -0
  257. package/types/maplestory/api/common/dto/character/characterLinkSkill.d.ts +20 -0
  258. package/types/maplestory/api/common/dto/character/characterList.d.ts +14 -0
  259. package/types/maplestory/api/common/dto/character/characterPetEquipment.d.ts +59 -0
  260. package/types/maplestory/api/common/dto/character/characterPopularity.d.ts +4 -0
  261. package/types/maplestory/api/common/dto/character/characterPropensity.d.ts +9 -0
  262. package/types/maplestory/api/common/dto/character/characterSetEffect.d.ts +18 -0
  263. package/types/maplestory/api/common/dto/character/characterSkill.d.ts +14 -0
  264. package/types/maplestory/api/common/dto/character/characterStat.d.ts +10 -0
  265. package/types/maplestory/api/common/dto/character/characterSymbolEquipment.d.ts +22 -0
  266. package/types/maplestory/api/common/dto/character/characterVMatrix.d.ts +16 -0
  267. package/types/maplestory/api/common/dto/guild/guild.d.ts +3 -0
  268. package/types/maplestory/api/common/dto/guild/guildBasic.d.ts +20 -0
  269. package/types/maplestory/api/common/dto/union/union.d.ts +8 -0
  270. package/types/maplestory/api/common/dto/union/unionArtifact.d.ts +20 -0
  271. package/types/maplestory/api/common/dto/union/unionRaider.d.ts +38 -0
  272. package/types/maplestory/api/common/enum/characterImage.d.ts +87 -0
  273. package/types/maplestory/api/common/enum/potentialOptionGrade.d.ts +6 -0
  274. package/types/maplestory/api/common/lib.d.ts +7 -0
  275. package/types/maplestory/api/common/mapleStoryApi.d.ts +140 -0
  276. package/types/maplestory/api/{mapleStoryApiError.d.ts → common/mapleStoryApiError.d.ts} +3 -4
  277. package/types/maplestory/api/common/mapleStoryApiErrorBody.d.ts +6 -0
  278. package/types/maplestory/api/kms/dto/character/character.d.ts +12 -0
  279. package/types/maplestory/api/kms/dto/character/characterAbility.d.ts +72 -0
  280. package/types/maplestory/api/kms/dto/character/characterAndroidEquipment.d.ts +294 -0
  281. package/types/maplestory/api/{dto/character/characterBasicDto.d.ts → kms/dto/character/characterBasic.d.ts} +7 -4
  282. package/types/maplestory/api/kms/dto/character/characterBeautyEquipment.d.ts +117 -0
  283. package/types/maplestory/api/kms/dto/character/characterCashItemEquipment.d.ts +158 -0
  284. package/types/maplestory/api/kms/dto/character/characterDojang.d.ts +32 -0
  285. package/types/maplestory/api/kms/dto/character/characterHexaMatrix.d.ts +48 -0
  286. package/types/maplestory/api/kms/dto/character/characterHexaMatrixStat.d.ts +78 -0
  287. package/types/maplestory/api/kms/dto/character/characterHyperStat.d.ts +70 -0
  288. package/types/maplestory/api/kms/dto/character/characterImage.d.ts +74 -0
  289. package/types/maplestory/api/kms/dto/character/characterItemEquipment.d.ts +890 -0
  290. package/types/maplestory/api/kms/dto/character/characterLinkSkill.d.ts +78 -0
  291. package/types/maplestory/api/kms/dto/character/characterList.d.ts +52 -0
  292. package/types/maplestory/api/{dto/character/characterPetEquipmentDto.d.ts → kms/dto/character/characterPetEquipment.d.ts} +79 -7
  293. package/types/maplestory/api/kms/dto/character/characterPopularity.d.ts +16 -0
  294. package/types/maplestory/api/kms/dto/character/characterPropensity.d.ts +36 -0
  295. package/types/maplestory/api/kms/dto/character/characterSetEffect.d.ts +66 -0
  296. package/types/maplestory/api/kms/dto/character/characterSkill.d.ts +54 -0
  297. package/types/maplestory/api/kms/dto/character/characterStat.d.ts +38 -0
  298. package/types/maplestory/api/{dto/character/characterSymbolEquipmentInfoDto.d.ts → kms/dto/character/characterSymbolEquipment.d.ts} +22 -4
  299. package/types/maplestory/api/kms/dto/character/characterVMatrix.d.ts +62 -0
  300. package/types/maplestory/api/kms/dto/guild/guild.d.ts +12 -0
  301. package/types/maplestory/api/kms/dto/guild/guildBasic.d.ts +78 -0
  302. package/types/maplestory/api/{dto/history/cubeHistoryDto.d.ts → kms/dto/history/cubeHistory.d.ts} +37 -6
  303. package/types/maplestory/api/{dto/history/potentialHistoryDto.d.ts → kms/dto/history/potentialHistory.d.ts} +37 -6
  304. package/types/maplestory/api/{dto/history/starforceHistoryDto.d.ts → kms/dto/history/starforceHistory.d.ts} +47 -5
  305. package/types/maplestory/api/{dto/inspectionInfoDto.d.ts → kms/dto/inspectionInfo.d.ts} +1 -2
  306. package/types/maplestory/api/{dto/notice/cashshopNoticeDetailDto.d.ts → kms/dto/notice/cashshopNoticeDetail.d.ts} +3 -4
  307. package/types/maplestory/api/{dto/notice/cashshopNoticeListItemDto.d.ts → kms/dto/notice/cashshopNoticeList.d.ts} +13 -4
  308. package/types/maplestory/api/{dto/notice/eventNoticeDetailDto.d.ts → kms/dto/notice/eventNoticeDetail.d.ts} +3 -4
  309. package/types/maplestory/api/kms/dto/notice/eventNoticeList.d.ts +41 -0
  310. package/types/maplestory/api/{dto/notice/noticeDetailDto.d.ts → kms/dto/notice/noticeDetail.d.ts} +3 -4
  311. package/types/maplestory/api/kms/dto/notice/noticeList.d.ts +33 -0
  312. package/types/maplestory/api/{dto/notice/updateNoticeDetailDto.d.ts → kms/dto/notice/updateNoticeDetail.d.ts} +3 -4
  313. package/types/maplestory/api/kms/dto/notice/updateNoticeList.d.ts +33 -0
  314. package/types/maplestory/api/{dto/ranking/achievementRankingDto.d.ts → kms/dto/ranking/achievementRanking.d.ts} +13 -4
  315. package/types/maplestory/api/{dto/ranking/dojangRankingDto.d.ts → kms/dto/ranking/dojangRanking.d.ts} +13 -4
  316. package/types/maplestory/api/{dto/ranking/guildRankingDto.d.ts → kms/dto/ranking/guildRanking.d.ts} +13 -4
  317. package/types/maplestory/api/{dto/ranking/overallRankingDto.d.ts → kms/dto/ranking/overallRanking.d.ts} +13 -4
  318. package/types/maplestory/api/{dto/ranking/theSeedRankingDto.d.ts → kms/dto/ranking/theSeedRanking.d.ts} +13 -4
  319. package/types/maplestory/api/{dto/ranking/unionRankingDto.d.ts → kms/dto/ranking/unionRanking.d.ts} +13 -4
  320. package/types/maplestory/api/{dto/union/unionDto.d.ts → kms/dto/union/union.d.ts} +7 -7
  321. package/types/maplestory/api/kms/dto/union/unionArtifact.d.ts +76 -0
  322. package/types/maplestory/api/kms/dto/union/unionChampion.d.ts +55 -0
  323. package/types/maplestory/api/kms/dto/union/unionRaider.d.ts +142 -0
  324. package/types/maplestory/api/kms/index.d.ts +47 -0
  325. package/types/maplestory/api/{mapleStoryApi.d.ts → kms/mapleStoryApi.d.ts} +94 -89
  326. package/types/maplestory/api/kms/response/character/characterAbilityBody.d.ts +19 -0
  327. package/types/maplestory/api/{response/character/characterAndroidEquipmentDtoBody.d.ts → kms/response/character/characterAndroidEquipmentBody.d.ts} +20 -21
  328. package/types/maplestory/api/{response/character/characterBasicDtoBody.d.ts → kms/response/character/characterBasicBody.d.ts} +1 -2
  329. package/types/maplestory/api/kms/response/character/characterBeautyEquipmentBody.d.ts +30 -0
  330. package/types/maplestory/api/kms/response/character/characterBody.d.ts +3 -0
  331. package/types/maplestory/api/{response/character/characterCashItemEquipmentDtoBody.d.ts → kms/response/character/characterCashItemEquipmentBody.d.ts} +17 -18
  332. package/types/maplestory/api/kms/response/character/characterDojangBody.d.ts +8 -0
  333. package/types/maplestory/api/kms/response/character/characterHexaMatrixBody.d.ts +13 -0
  334. package/types/maplestory/api/kms/response/character/characterHexaMatrixStatBody.d.ts +20 -0
  335. package/types/maplestory/api/kms/response/character/characterHyperStatBody.d.ts +18 -0
  336. package/types/maplestory/api/{response/character/characterItemEquipmentDtoBody.d.ts → kms/response/character/characterItemEquipmentBody.d.ts} +35 -36
  337. package/types/maplestory/api/kms/response/character/characterLinkSkillBody.d.ts +20 -0
  338. package/types/maplestory/api/kms/response/character/characterListBody.d.ts +14 -0
  339. package/types/maplestory/api/{response/character/characterPetEquipmentDtoBody.d.ts → kms/response/character/characterPetEquipmentBody.d.ts} +11 -12
  340. package/types/maplestory/api/kms/response/character/characterPopularityBody.d.ts +4 -0
  341. package/types/maplestory/api/kms/response/character/characterPropensityBody.d.ts +9 -0
  342. package/types/maplestory/api/kms/response/character/characterSetEffectBody.d.ts +18 -0
  343. package/types/maplestory/api/kms/response/character/characterSkillBody.d.ts +14 -0
  344. package/types/maplestory/api/kms/response/character/characterStatBody.d.ts +10 -0
  345. package/types/maplestory/api/{response/character/characterSymbolEquipmentDtoBody.d.ts → kms/response/character/characterSymbolEquipmentBody.d.ts} +4 -5
  346. package/types/maplestory/api/{response/character/characterVMatrixDtoBody.d.ts → kms/response/character/characterVMatrixBody.d.ts} +4 -5
  347. package/types/maplestory/api/{response/guild/guildBasicDtoBody.d.ts → kms/response/guild/guildBasicBody.d.ts} +4 -5
  348. package/types/maplestory/api/kms/response/guild/guildBody.d.ts +3 -0
  349. package/types/maplestory/api/kms/response/history/cubeHistoryBody.d.ts +29 -0
  350. package/types/maplestory/api/kms/response/history/potentialHistoryBody.d.ts +28 -0
  351. package/types/maplestory/api/{response/history/starforceHistoryDtoBody.d.ts → kms/response/history/starforceHistoryBody.d.ts} +14 -4
  352. package/types/maplestory/api/{response → kms/response}/inspectionInfoSoapBody.d.ts +1 -2
  353. package/types/maplestory/api/{response/notice/cashshopNoticeDetailDtoBody.d.ts → kms/response/notice/cashshopNoticeDetailBody.d.ts} +1 -2
  354. package/types/maplestory/api/kms/response/notice/cashshopNoticeListBody.d.ts +12 -0
  355. package/types/maplestory/api/{response/notice/eventNoticeDetailDtoBody.d.ts → kms/response/notice/eventNoticeDetailBody.d.ts} +1 -2
  356. package/types/maplestory/api/kms/response/notice/eventNoticeListBody.d.ts +11 -0
  357. package/types/maplestory/api/{response/notice/noticeDetailDtoBody.d.ts → kms/response/notice/noticeDetailBody.d.ts} +1 -2
  358. package/types/maplestory/api/kms/response/notice/noticeListBody.d.ts +9 -0
  359. package/types/maplestory/api/{response/notice/updateNoticeDetailDtoBody.d.ts → kms/response/notice/updateNoticeDetailBody.d.ts} +1 -2
  360. package/types/maplestory/api/kms/response/notice/updateNoticeListBody.d.ts +9 -0
  361. package/types/maplestory/api/kms/response/ranking/achievementRankingBody.d.ts +12 -0
  362. package/types/maplestory/api/kms/response/ranking/dojangRankingBody.d.ts +13 -0
  363. package/types/maplestory/api/kms/response/ranking/guildRankingBody.d.ts +12 -0
  364. package/types/maplestory/api/{response/ranking/overallRankingResponseDtoBody.d.ts → kms/response/ranking/overallRankingBody.d.ts} +3 -4
  365. package/types/maplestory/api/kms/response/ranking/rankingResponseBody.d.ts +6 -0
  366. package/types/maplestory/api/kms/response/ranking/theSeedRankingBody.d.ts +13 -0
  367. package/types/maplestory/api/kms/response/ranking/unionRankingBody.d.ts +12 -0
  368. package/types/maplestory/api/kms/response/union/unionArtifactBody.d.ts +19 -0
  369. package/types/maplestory/api/{response/union/unionDtoBody.d.ts → kms/response/union/unionBody.d.ts} +3 -4
  370. package/types/maplestory/api/kms/response/union/unionChampionBody.d.ts +15 -0
  371. package/types/maplestory/api/kms/response/union/unionRaiderBody.d.ts +38 -0
  372. package/types/maplestory/api/msea/dto/character/character.d.ts +12 -0
  373. package/types/maplestory/api/msea/dto/character/characterAbility.d.ts +72 -0
  374. package/types/maplestory/api/msea/dto/character/characterAndroidEquipment.d.ts +295 -0
  375. package/types/maplestory/api/msea/dto/character/characterBasic.d.ts +72 -0
  376. package/types/maplestory/api/msea/dto/character/characterBeautyEquipment.d.ts +117 -0
  377. package/types/maplestory/api/msea/dto/character/characterCashItemEquipment.d.ts +154 -0
  378. package/types/maplestory/api/msea/dto/character/characterDojang.d.ts +32 -0
  379. package/types/maplestory/api/msea/dto/character/characterHexaMatrix.d.ts +48 -0
  380. package/types/maplestory/api/msea/dto/character/characterHexaMatrixStat.d.ts +78 -0
  381. package/types/maplestory/api/msea/dto/character/characterHyperStat.d.ts +70 -0
  382. package/types/maplestory/api/msea/dto/character/characterImage.d.ts +74 -0
  383. package/types/maplestory/api/msea/dto/character/characterItemEquipment.d.ts +844 -0
  384. package/types/maplestory/api/msea/dto/character/characterLinkSkill.d.ts +78 -0
  385. package/types/maplestory/api/msea/dto/character/characterPetEquipment.d.ts +230 -0
  386. package/types/maplestory/api/msea/dto/character/characterPopularity.d.ts +16 -0
  387. package/types/maplestory/api/msea/dto/character/characterPropensity.d.ts +36 -0
  388. package/types/maplestory/api/msea/dto/character/characterSetEffect.d.ts +66 -0
  389. package/types/maplestory/api/msea/dto/character/characterSkill.d.ts +54 -0
  390. package/types/maplestory/api/msea/dto/character/characterStat.d.ts +38 -0
  391. package/types/maplestory/api/msea/dto/character/characterSymbolEquipment.d.ts +86 -0
  392. package/types/maplestory/api/msea/dto/character/characterVMatrix.d.ts +62 -0
  393. package/types/maplestory/api/msea/dto/guild/guild.d.ts +12 -0
  394. package/types/maplestory/api/msea/dto/guild/guildBasic.d.ts +78 -0
  395. package/types/maplestory/api/msea/dto/union/union.d.ts +32 -0
  396. package/types/maplestory/api/msea/dto/union/unionArtifact.d.ts +76 -0
  397. package/types/maplestory/api/msea/dto/union/unionRaider.d.ts +147 -0
  398. package/types/maplestory/api/msea/index.d.ts +27 -0
  399. package/types/maplestory/api/msea/mapleStoryApi.d.ts +364 -0
  400. package/types/maplestory/api/msea/response/character/characterAbilityBody.d.ts +19 -0
  401. package/types/maplestory/api/msea/response/character/characterAndroidEquipmentBody.d.ts +75 -0
  402. package/types/maplestory/api/msea/response/character/characterBasicBody.d.ts +16 -0
  403. package/types/maplestory/api/msea/response/character/characterBeautyEquipmentBody.d.ts +30 -0
  404. package/types/maplestory/api/msea/response/character/characterBody.d.ts +3 -0
  405. package/types/maplestory/api/msea/response/character/characterCashItemEquipmentBody.d.ts +38 -0
  406. package/types/maplestory/api/msea/response/character/characterDojangBody.d.ts +8 -0
  407. package/types/maplestory/api/msea/response/character/characterHexaMatrixBody.d.ts +13 -0
  408. package/types/maplestory/api/msea/response/character/characterHexaMatrixStatBody.d.ts +20 -0
  409. package/types/maplestory/api/msea/response/character/characterHyperStatBody.d.ts +18 -0
  410. package/types/maplestory/api/msea/response/character/characterItemEquipmentBody.d.ts +190 -0
  411. package/types/maplestory/api/msea/response/character/characterLinkSkillBody.d.ts +20 -0
  412. package/types/maplestory/api/msea/response/character/characterPetEquipmentBody.d.ts +56 -0
  413. package/types/maplestory/api/msea/response/character/characterPopularityBody.d.ts +4 -0
  414. package/types/maplestory/api/msea/response/character/characterPropensityBody.d.ts +9 -0
  415. package/types/maplestory/api/msea/response/character/characterSetEffectBody.d.ts +18 -0
  416. package/types/maplestory/api/msea/response/character/characterSkillBody.d.ts +14 -0
  417. package/types/maplestory/api/msea/response/character/characterStatBody.d.ts +10 -0
  418. package/types/maplestory/api/msea/response/character/characterSymbolEquipmentBody.d.ts +22 -0
  419. package/types/maplestory/api/msea/response/character/characterVMatrixBody.d.ts +16 -0
  420. package/types/maplestory/api/msea/response/guild/guildBasicBody.d.ts +20 -0
  421. package/types/maplestory/api/msea/response/guild/guildBody.d.ts +3 -0
  422. package/types/maplestory/api/msea/response/union/unionArtifactBody.d.ts +19 -0
  423. package/types/maplestory/api/msea/response/union/unionBody.d.ts +8 -0
  424. package/types/maplestory/api/msea/response/union/unionRaiderBody.d.ts +38 -0
  425. package/dist/index.js +0 -9120
  426. package/dist/index.mjs +0 -9002
  427. package/types/maplestory/api/dto/character/characterAbilityDto.d.ts +0 -42
  428. package/types/maplestory/api/dto/character/characterAbilityInfoDto.d.ts +0 -20
  429. package/types/maplestory/api/dto/character/characterAbilityPresetDto.d.ts +0 -17
  430. package/types/maplestory/api/dto/character/characterAndroidCashItemEquipmentColoringPrismDto.d.ts +0 -24
  431. package/types/maplestory/api/dto/character/characterAndroidCashItemEquipmentDto.d.ts +0 -58
  432. package/types/maplestory/api/dto/character/characterAndroidCashItemEquipmentOptionDto.d.ts +0 -16
  433. package/types/maplestory/api/dto/character/characterAndroidEquipmentDto.d.ts +0 -85
  434. package/types/maplestory/api/dto/character/characterAndroidEquipmentFaceDto.d.ts +0 -24
  435. package/types/maplestory/api/dto/character/characterAndroidEquipmentHairDto.d.ts +0 -24
  436. package/types/maplestory/api/dto/character/characterAndroidEquipmentPresetDto.d.ts +0 -59
  437. package/types/maplestory/api/dto/character/characterAndroidEquipmentSkinDto.d.ts +0 -28
  438. package/types/maplestory/api/dto/character/characterBeautyEquipmentDto.d.ts +0 -50
  439. package/types/maplestory/api/dto/character/characterBeautyEquipmentFaceDto.d.ts +0 -24
  440. package/types/maplestory/api/dto/character/characterBeautyEquipmentHairDto.d.ts +0 -24
  441. package/types/maplestory/api/dto/character/characterBeautyEquipmentSkinDto.d.ts +0 -28
  442. package/types/maplestory/api/dto/character/characterCashItemEquipmentColoringPrismDto.d.ts +0 -24
  443. package/types/maplestory/api/dto/character/characterCashItemEquipmentDto.d.ts +0 -61
  444. package/types/maplestory/api/dto/character/characterCashItemEquipmentOptionDto.d.ts +0 -16
  445. package/types/maplestory/api/dto/character/characterCashItemEquipmentPresetDto.d.ts +0 -66
  446. package/types/maplestory/api/dto/character/characterDojangDto.d.ts +0 -32
  447. package/types/maplestory/api/dto/character/characterDto.d.ts +0 -12
  448. package/types/maplestory/api/dto/character/characterHexaMatrixDto.d.ts +0 -17
  449. package/types/maplestory/api/dto/character/characterHexaMatrixEquipmentDto.d.ts +0 -25
  450. package/types/maplestory/api/dto/character/characterHexaMatrixEquipmentLinkedSkillDto.d.ts +0 -12
  451. package/types/maplestory/api/dto/character/characterHexaMatrixStatCoreDto.d.ts +0 -40
  452. package/types/maplestory/api/dto/character/characterHexaMatrixStatDto.d.ts +0 -41
  453. package/types/maplestory/api/dto/character/characterHyperStatDto.d.ts +0 -49
  454. package/types/maplestory/api/dto/character/characterHyperStatPresetDto.d.ts +0 -24
  455. package/types/maplestory/api/dto/character/characterImageDto.d.ts +0 -160
  456. package/types/maplestory/api/dto/character/characterItemEquipmentAddOptionDto.d.ts +0 -68
  457. package/types/maplestory/api/dto/character/characterItemEquipmentBaseOptionDto.d.ts +0 -76
  458. package/types/maplestory/api/dto/character/characterItemEquipmentDragonInfoDto.d.ts +0 -130
  459. package/types/maplestory/api/dto/character/characterItemEquipmentDto.d.ts +0 -61
  460. package/types/maplestory/api/dto/character/characterItemEquipmentEtcOptionDto.d.ts +0 -52
  461. package/types/maplestory/api/dto/character/characterItemEquipmentExceptionalOptionDto.d.ts +0 -44
  462. package/types/maplestory/api/dto/character/characterItemEquipmentInfoDto.d.ts +0 -162
  463. package/types/maplestory/api/dto/character/characterItemEquipmentMechanicInfoDto.d.ts +0 -130
  464. package/types/maplestory/api/dto/character/characterItemEquipmentMedalShapeDto.d.ts +0 -32
  465. package/types/maplestory/api/dto/character/characterItemEquipmentStarforceOptionDto.d.ts +0 -52
  466. package/types/maplestory/api/dto/character/characterItemEquipmentTitleDto.d.ts +0 -48
  467. package/types/maplestory/api/dto/character/characterItemEquipmentTotalOptionDto.d.ts +0 -80
  468. package/types/maplestory/api/dto/character/characterLinkSkillDto.d.ts +0 -49
  469. package/types/maplestory/api/dto/character/characterLinkSkillInfoDto.d.ts +0 -32
  470. package/types/maplestory/api/dto/character/characterListAccountCharacterDto.d.ts +0 -28
  471. package/types/maplestory/api/dto/character/characterListAccountDto.d.ts +0 -17
  472. package/types/maplestory/api/dto/character/characterListDto.d.ts +0 -13
  473. package/types/maplestory/api/dto/character/characterPetEquipmentAutoSkillDto.d.ts +0 -24
  474. package/types/maplestory/api/dto/character/characterPetEquipmentItemDto.d.ts +0 -41
  475. package/types/maplestory/api/dto/character/characterPetEquipmentItemOptionDto.d.ts +0 -16
  476. package/types/maplestory/api/dto/character/characterPopularityDto.d.ts +0 -16
  477. package/types/maplestory/api/dto/character/characterPropensityDto.d.ts +0 -33
  478. package/types/maplestory/api/dto/character/characterSetEffectDto.d.ts +0 -17
  479. package/types/maplestory/api/dto/character/characterSetEffectInfoDto.d.ts +0 -16
  480. package/types/maplestory/api/dto/character/characterSetEffectOptionFullDto.d.ts +0 -16
  481. package/types/maplestory/api/dto/character/characterSetEffectSetDto.d.ts +0 -26
  482. package/types/maplestory/api/dto/character/characterSkillDto.d.ts +0 -25
  483. package/types/maplestory/api/dto/character/characterSkillInfoDto.d.ts +0 -32
  484. package/types/maplestory/api/dto/character/characterStatDto.d.ts +0 -27
  485. package/types/maplestory/api/dto/character/characterSymbolEquipmentDto.d.ts +0 -21
  486. package/types/maplestory/api/dto/character/characterVMatrixCoreEquipmentDto.d.ts +0 -40
  487. package/types/maplestory/api/dto/character/characterVMatrixDto.d.ts +0 -25
  488. package/types/maplestory/api/dto/guild/guildBasicDto.d.ts +0 -53
  489. package/types/maplestory/api/dto/guild/guildDto.d.ts +0 -12
  490. package/types/maplestory/api/dto/guild/guildSkillDto.d.ts +0 -28
  491. package/types/maplestory/api/dto/history/cubeHistoryResponseDto.d.ts +0 -21
  492. package/types/maplestory/api/dto/history/cubeResultOptionDto.d.ts +0 -18
  493. package/types/maplestory/api/dto/history/potentialHistoryResponseDto.d.ts +0 -21
  494. package/types/maplestory/api/dto/history/potentialResultOptionDto.d.ts +0 -18
  495. package/types/maplestory/api/dto/history/starforceEventDto.d.ts +0 -28
  496. package/types/maplestory/api/dto/history/starforceHistoryResponseDto.d.ts +0 -21
  497. package/types/maplestory/api/dto/notice/cashshopNoticeListDto.d.ts +0 -13
  498. package/types/maplestory/api/dto/notice/eventNoticeListDto.d.ts +0 -13
  499. package/types/maplestory/api/dto/notice/eventNoticeListItemDto.d.ts +0 -32
  500. package/types/maplestory/api/dto/notice/noticeListDto.d.ts +0 -13
  501. package/types/maplestory/api/dto/notice/noticeListItemDto.d.ts +0 -24
  502. package/types/maplestory/api/dto/notice/updateNoticeListDto.d.ts +0 -13
  503. package/types/maplestory/api/dto/notice/updateNoticeListItemDto.d.ts +0 -24
  504. package/types/maplestory/api/dto/potentialOptionGrade.d.ts +0 -13
  505. package/types/maplestory/api/dto/ranking/achievementRankingResponseDto.d.ts +0 -13
  506. package/types/maplestory/api/dto/ranking/dojangRankingResponseDto.d.ts +0 -13
  507. package/types/maplestory/api/dto/ranking/guildRankingResponseDto.d.ts +0 -13
  508. package/types/maplestory/api/dto/ranking/overallRankingResponseDto.d.ts +0 -13
  509. package/types/maplestory/api/dto/ranking/theSeedRankingResponseDto.d.ts +0 -13
  510. package/types/maplestory/api/dto/ranking/unionRankingResponseDto.d.ts +0 -13
  511. package/types/maplestory/api/dto/union/unionArtifactCrystalDto.d.ts +0 -40
  512. package/types/maplestory/api/dto/union/unionArtifactDto.d.ts +0 -26
  513. package/types/maplestory/api/dto/union/unionArtifactEffectDto.d.ts +0 -16
  514. package/types/maplestory/api/dto/union/unionChampionBadgeInfoDto.d.ts +0 -12
  515. package/types/maplestory/api/dto/union/unionChampionDto.d.ts +0 -22
  516. package/types/maplestory/api/dto/union/unionChampionInfoDto.d.ts +0 -29
  517. package/types/maplestory/api/dto/union/unionRaiderBlockDto.d.ts +0 -30
  518. package/types/maplestory/api/dto/union/unionRaiderBlockPositionDto.d.ts +0 -16
  519. package/types/maplestory/api/dto/union/unionRaiderControlPointDto.d.ts +0 -16
  520. package/types/maplestory/api/dto/union/unionRaiderDto.d.ts +0 -52
  521. package/types/maplestory/api/dto/union/unionRaiderInnerStatDto.d.ts +0 -16
  522. package/types/maplestory/api/dto/union/unionRaiderPresetDto.d.ts +0 -26
  523. package/types/maplestory/api/response/character/characterAbilityDtoBody.d.ts +0 -20
  524. package/types/maplestory/api/response/character/characterBeautyEquipmentDtoBody.d.ts +0 -31
  525. package/types/maplestory/api/response/character/characterDojangDtoBody.d.ts +0 -9
  526. package/types/maplestory/api/response/character/characterDtoBody.d.ts +0 -4
  527. package/types/maplestory/api/response/character/characterHexaMatrixDtoBody.d.ts +0 -14
  528. package/types/maplestory/api/response/character/characterHexaMatrixStatDtoBody.d.ts +0 -21
  529. package/types/maplestory/api/response/character/characterHyperStatDtoBody.d.ts +0 -19
  530. package/types/maplestory/api/response/character/characterLinkSkillDtoBody.d.ts +0 -21
  531. package/types/maplestory/api/response/character/characterListDtoBody.d.ts +0 -15
  532. package/types/maplestory/api/response/character/characterPopularityDtoBody.d.ts +0 -5
  533. package/types/maplestory/api/response/character/characterPropensityDtoBody.d.ts +0 -10
  534. package/types/maplestory/api/response/character/characterSetEffectDtoBody.d.ts +0 -19
  535. package/types/maplestory/api/response/character/characterSkillDtoBody.d.ts +0 -15
  536. package/types/maplestory/api/response/character/characterStatDtoBody.d.ts +0 -10
  537. package/types/maplestory/api/response/guild/guildDtoBody.d.ts +0 -4
  538. package/types/maplestory/api/response/history/cubeHistoryDtoBody.d.ts +0 -22
  539. package/types/maplestory/api/response/history/cubeHistoryResponseDtoBody.d.ts +0 -7
  540. package/types/maplestory/api/response/history/cubeResultOptionDtoBody.d.ts +0 -5
  541. package/types/maplestory/api/response/history/potentialHistoryResponseDtoBody.d.ts +0 -29
  542. package/types/maplestory/api/response/history/starforceEventDtoBody.d.ts +0 -8
  543. package/types/maplestory/api/response/history/starforceHistoryResponseDtoBody.d.ts +0 -7
  544. package/types/maplestory/api/response/notice/cashshopNoticeListDtoBody.d.ts +0 -13
  545. package/types/maplestory/api/response/notice/eventNoticeListDtoBody.d.ts +0 -12
  546. package/types/maplestory/api/response/notice/noticeListDtoBody.d.ts +0 -10
  547. package/types/maplestory/api/response/notice/updateNoticeListDtoBody.d.ts +0 -10
  548. package/types/maplestory/api/response/ranking/achievementRankingResponseDtoBody.d.ts +0 -13
  549. package/types/maplestory/api/response/ranking/dojangRankingResponseDtoBody.d.ts +0 -14
  550. package/types/maplestory/api/response/ranking/guildRankingResponseDtoBody.d.ts +0 -13
  551. package/types/maplestory/api/response/ranking/rankingResponseDtoBody.d.ts +0 -7
  552. package/types/maplestory/api/response/ranking/theSeedRankingResponseDtoBody.d.ts +0 -14
  553. package/types/maplestory/api/response/ranking/unionRankingResponseDtoBody.d.ts +0 -13
  554. package/types/maplestory/api/response/union/unionArtifactDtoBody.d.ts +0 -20
  555. package/types/maplestory/api/response/union/unionChampionDtoBody.d.ts +0 -16
  556. package/types/maplestory/api/response/union/unionRaiderDtoBody.d.ts +0 -39
@@ -1,40 +1,39 @@
1
- type CharacterCashItemEquipmentDtoBody = {
1
+ export type CharacterCashItemEquipmentBody = {
2
2
  date: string | null;
3
- character_gender: string;
4
- character_class: string;
3
+ character_gender: string | null;
4
+ character_class: string | null;
5
5
  character_look_mode: string | null;
6
- preset_no: number;
7
- cash_item_equipment_base: CharacterCashItemEquipmentPresetDtoBody[];
8
- cash_item_equipment_preset_1: CharacterCashItemEquipmentPresetDtoBody[];
9
- cash_item_equipment_preset_2: CharacterCashItemEquipmentPresetDtoBody[];
10
- cash_item_equipment_preset_3: CharacterCashItemEquipmentPresetDtoBody[];
11
- additional_cash_item_equipment_base: CharacterCashItemEquipmentPresetDtoBody[];
12
- additional_cash_item_equipment_preset_1: CharacterCashItemEquipmentPresetDtoBody[];
13
- additional_cash_item_equipment_preset_2: CharacterCashItemEquipmentPresetDtoBody[];
14
- additional_cash_item_equipment_preset_3: CharacterCashItemEquipmentPresetDtoBody[];
6
+ preset_no: number | null;
7
+ cash_item_equipment_base: CharacterCashItemEquipmentPresetBody[];
8
+ cash_item_equipment_preset_1: CharacterCashItemEquipmentPresetBody[];
9
+ cash_item_equipment_preset_2: CharacterCashItemEquipmentPresetBody[];
10
+ cash_item_equipment_preset_3: CharacterCashItemEquipmentPresetBody[];
11
+ additional_cash_item_equipment_base: CharacterCashItemEquipmentPresetBody[];
12
+ additional_cash_item_equipment_preset_1: CharacterCashItemEquipmentPresetBody[];
13
+ additional_cash_item_equipment_preset_2: CharacterCashItemEquipmentPresetBody[];
14
+ additional_cash_item_equipment_preset_3: CharacterCashItemEquipmentPresetBody[];
15
15
  };
16
- type CharacterCashItemEquipmentPresetDtoBody = {
16
+ export type CharacterCashItemEquipmentPresetBody = {
17
17
  cash_item_equipment_part: string;
18
18
  cash_item_equipment_slot: string;
19
19
  cash_item_name: string;
20
20
  cash_item_icon: string;
21
21
  cash_item_description: string | null;
22
- cash_item_option: CharacterCashItemEquipmentOptionDtoBody[];
22
+ cash_item_option: CharacterCashItemEquipmentOptionBody[];
23
23
  date_expire: string | null;
24
24
  date_option_expire: string | null;
25
25
  cash_item_label: string | null;
26
- cash_item_coloring_prism: CharacterCashItemEquipmentColoringPrismDtoBody | null;
26
+ cash_item_coloring_prism: CharacterCashItemEquipmentColoringPrismBody | null;
27
27
  item_gender: string | null;
28
28
  skills: string[];
29
29
  };
30
- type CharacterCashItemEquipmentOptionDtoBody = {
30
+ export type CharacterCashItemEquipmentOptionBody = {
31
31
  option_type: string;
32
32
  option_value: string;
33
33
  };
34
- type CharacterCashItemEquipmentColoringPrismDtoBody = {
34
+ export type CharacterCashItemEquipmentColoringPrismBody = {
35
35
  color_range: string;
36
36
  hue: number;
37
37
  saturation: number;
38
38
  value: number;
39
39
  };
40
- export type { CharacterCashItemEquipmentDtoBody, CharacterCashItemEquipmentPresetDtoBody, CharacterCashItemEquipmentOptionDtoBody, CharacterCashItemEquipmentColoringPrismDtoBody, };
@@ -0,0 +1,8 @@
1
+ export type CharacterDojangBody = {
2
+ date: string | null;
3
+ character_class: string | null;
4
+ world_name: string | null;
5
+ dojang_best_floor: number | null;
6
+ date_dojang_record: string | null;
7
+ dojang_best_time: number | null;
8
+ };
@@ -0,0 +1,13 @@
1
+ export type CharacterHexaMatrixBody = {
2
+ date: string | null;
3
+ character_hexa_core_equipment: CharacterHexaMatrixEquipmentBody[] | null;
4
+ };
5
+ export type CharacterHexaMatrixEquipmentBody = {
6
+ hexa_core_name: string;
7
+ hexa_core_level: number;
8
+ hexa_core_type: string;
9
+ linked_skill: CharacterHexaMatrixEquipmentLinkedSkillBody[];
10
+ };
11
+ export type CharacterHexaMatrixEquipmentLinkedSkillBody = {
12
+ hexa_skill_id: string;
13
+ };
@@ -0,0 +1,20 @@
1
+ export type CharacterHexaMatrixStatBody = {
2
+ date: string | null;
3
+ character_class: string | null;
4
+ character_hexa_stat_core: CharacterHexaMatrixStatCoreBody[] | null;
5
+ character_hexa_stat_core_2: CharacterHexaMatrixStatCoreBody[] | null;
6
+ character_hexa_stat_core_3: CharacterHexaMatrixStatCoreBody[] | null;
7
+ preset_hexa_stat_core: CharacterHexaMatrixStatCoreBody[] | null;
8
+ preset_hexa_stat_core_2: CharacterHexaMatrixStatCoreBody[] | null;
9
+ preset_hexa_stat_core_3: CharacterHexaMatrixStatCoreBody[] | null;
10
+ };
11
+ export type CharacterHexaMatrixStatCoreBody = {
12
+ slot_id: string;
13
+ main_stat_name: string;
14
+ sub_stat_name_1: string;
15
+ sub_stat_name_2: string;
16
+ main_stat_level: number;
17
+ sub_stat_level_1: number;
18
+ sub_stat_level_2: number;
19
+ stat_grade: number;
20
+ };
@@ -0,0 +1,18 @@
1
+ export type CharacterHyperStatBody = {
2
+ date: string | null;
3
+ character_class: string | null;
4
+ use_preset_no: string | null;
5
+ use_available_hyper_stat: number | null;
6
+ hyper_stat_preset_1: CharacterHyperStatPresetBody[];
7
+ hyper_stat_preset_1_remain_point: number | null;
8
+ hyper_stat_preset_2: CharacterHyperStatPresetBody[];
9
+ hyper_stat_preset_2_remain_point: number | null;
10
+ hyper_stat_preset_3: CharacterHyperStatPresetBody[];
11
+ hyper_stat_preset_3_remain_point: number | null;
12
+ };
13
+ export type CharacterHyperStatPresetBody = {
14
+ stat_type: string;
15
+ stat_point: number | null;
16
+ stat_level: number;
17
+ stat_increase: string | null;
18
+ };
@@ -1,18 +1,18 @@
1
- type CharacterItemEquipmentDtoBody = {
1
+ export type CharacterItemEquipmentBody = {
2
2
  date: string | null;
3
- character_gender: string;
4
- character_class: string;
3
+ character_gender: string | null;
4
+ character_class: string | null;
5
5
  preset_no: number | null;
6
- item_equipment: CharacterItemEquipmentInfoDtoBody[];
7
- item_equipment_preset_1: CharacterItemEquipmentInfoDtoBody[] | null;
8
- item_equipment_preset_2: CharacterItemEquipmentInfoDtoBody[] | null;
9
- item_equipment_preset_3: CharacterItemEquipmentInfoDtoBody[] | null;
10
- title: CharacterItemEquipmentTitleDtoBody | null;
11
- medal_shape: CharacterItemEquipmentMedalShapeDtoBody | null;
12
- dragon_equipment: CharacterItemEquipmentInfoDtoBody[];
13
- mechanic_equipment: CharacterItemEquipmentInfoDtoBody[];
6
+ item_equipment: CharacterItemEquipmentInfoBody[];
7
+ item_equipment_preset_1: CharacterItemEquipmentInfoBody[] | null;
8
+ item_equipment_preset_2: CharacterItemEquipmentInfoBody[] | null;
9
+ item_equipment_preset_3: CharacterItemEquipmentInfoBody[] | null;
10
+ title: CharacterItemEquipmentTitleBody | null;
11
+ medal_shape: CharacterItemEquipmentMedalShapeBody | null;
12
+ dragon_equipment: CharacterItemEquipmentDragonInfoBody[];
13
+ mechanic_equipment: CharacterItemEquipmentMechanicInfoBody[];
14
14
  };
15
- type CharacterItemEquipmentInfoDtoBody = {
15
+ export type CharacterItemEquipmentInfoBody = {
16
16
  item_equipment_part: string;
17
17
  item_equipment_slot: string;
18
18
  item_name: string;
@@ -21,8 +21,8 @@ type CharacterItemEquipmentInfoDtoBody = {
21
21
  item_shape_name: string;
22
22
  item_shape_icon: string;
23
23
  item_gender: string | null;
24
- item_total_option: CharacterItemEquipmentOptionDtoBody;
25
- item_base_option: CharacterItemEquipmentBaseOptionDtoBody;
24
+ item_total_option: CharacterItemEquipmentTotalOptionBody;
25
+ item_base_option: CharacterItemEquipmentBaseOptionBody;
26
26
  potential_option_grade: string | null;
27
27
  additional_potential_option_grade: string | null;
28
28
  potential_option_1: string | null;
@@ -32,8 +32,8 @@ type CharacterItemEquipmentInfoDtoBody = {
32
32
  additional_potential_option_2: string | null;
33
33
  additional_potential_option_3: string | null;
34
34
  equipment_level_increase: number;
35
- item_exceptional_option: CharacterItemEquipmentExceptionalOptionDtoBody;
36
- item_add_option: CharacterItemEquipmentAddOptionDtoBody;
35
+ item_exceptional_option: CharacterItemEquipmentExceptionalOptionBody;
36
+ item_add_option: CharacterItemEquipmentAddOptionBody;
37
37
  growth_exp: number;
38
38
  growth_level: number;
39
39
  scroll_upgrade: string;
@@ -43,14 +43,14 @@ type CharacterItemEquipmentInfoDtoBody = {
43
43
  scroll_upgradeable_count: string;
44
44
  soul_name: string | null;
45
45
  soul_option: string | null;
46
- item_etc_option: CharacterItemEquipmentOptionDtoBody;
46
+ item_etc_option: CharacterItemEquipmentEtcOptionBody;
47
47
  starforce: string;
48
48
  starforce_scroll_flag: string;
49
- item_starforce_option: CharacterItemEquipmentOptionDtoBody;
49
+ item_starforce_option: CharacterItemEquipmentStarforceOptionBody;
50
50
  special_ring_level: number;
51
51
  date_expire: string | null;
52
52
  };
53
- type CharacterItemEquipmentMechanicInfoDtoBody = {
53
+ export type CharacterItemEquipmentMechanicInfoBody = {
54
54
  item_equipment_part: string;
55
55
  item_equipment_slot: string;
56
56
  item_name: string;
@@ -59,11 +59,11 @@ type CharacterItemEquipmentMechanicInfoDtoBody = {
59
59
  item_shape_name: string;
60
60
  item_shape_icon: string;
61
61
  item_gender: string | null;
62
- item_total_option: CharacterItemEquipmentOptionDtoBody;
63
- item_base_option: CharacterItemEquipmentBaseOptionDtoBody;
62
+ item_total_option: CharacterItemEquipmentOptionBody;
63
+ item_base_option: CharacterItemEquipmentBaseOptionBody;
64
64
  equipment_level_increase: number;
65
- item_exceptional_option: CharacterItemEquipmentOptionDtoBody;
66
- item_add_option: CharacterItemEquipmentAddOptionDtoBody;
65
+ item_exceptional_option: CharacterItemEquipmentExceptionalOptionBody;
66
+ item_add_option: CharacterItemEquipmentAddOptionBody;
67
67
  growth_exp: number;
68
68
  growth_level: number;
69
69
  scroll_upgrade: string;
@@ -73,15 +73,15 @@ type CharacterItemEquipmentMechanicInfoDtoBody = {
73
73
  scroll_upgradeable_count: string;
74
74
  soul_name: string | null;
75
75
  soul_option: string | null;
76
- item_etc_option: CharacterItemEquipmentOptionDtoBody;
76
+ item_etc_option: CharacterItemEquipmentOptionBody;
77
77
  starforce: string;
78
78
  starforce_scroll_flag: string;
79
- item_starforce_option: CharacterItemEquipmentOptionDtoBody;
79
+ item_starforce_option: CharacterItemEquipmentOptionBody;
80
80
  special_ring_level: number;
81
81
  date_expire: string | null;
82
82
  };
83
- type CharacterItemEquipmentDragonInfoDtoBody = CharacterItemEquipmentMechanicInfoDtoBody;
84
- type CharacterItemEquipmentOptionDtoBody = {
83
+ export type CharacterItemEquipmentDragonInfoBody = CharacterItemEquipmentMechanicInfoBody;
84
+ export type CharacterItemEquipmentOptionBody = {
85
85
  str: string;
86
86
  dex: string;
87
87
  int: string;
@@ -101,7 +101,7 @@ type CharacterItemEquipmentOptionDtoBody = {
101
101
  max_hp_rate: string;
102
102
  max_mp_rate: string;
103
103
  };
104
- type CharacterItemEquipmentExceptionalOptionDtoBody = {
104
+ export type CharacterItemEquipmentExceptionalOptionBody = {
105
105
  str: string;
106
106
  dex: string;
107
107
  int: string;
@@ -112,7 +112,7 @@ type CharacterItemEquipmentExceptionalOptionDtoBody = {
112
112
  magic_power: string;
113
113
  exceptional_upgrade: number | null;
114
114
  };
115
- type CharacterItemEquipmentTotalOptionDtoBody = {
115
+ export type CharacterItemEquipmentTotalOptionBody = {
116
116
  str: string;
117
117
  dex: string;
118
118
  int: string;
@@ -132,7 +132,7 @@ type CharacterItemEquipmentTotalOptionDtoBody = {
132
132
  max_hp_rate: string;
133
133
  max_mp_rate: string;
134
134
  };
135
- type CharacterItemEquipmentBaseOptionDtoBody = {
135
+ export type CharacterItemEquipmentBaseOptionBody = {
136
136
  str: string;
137
137
  dex: string;
138
138
  int: string;
@@ -151,7 +151,7 @@ type CharacterItemEquipmentBaseOptionDtoBody = {
151
151
  max_mp_rate: string;
152
152
  base_equipment_level: number;
153
153
  };
154
- type CharacterItemEquipmentAddOptionDtoBody = {
154
+ export type CharacterItemEquipmentAddOptionBody = {
155
155
  str: string;
156
156
  dex: string;
157
157
  int: string;
@@ -168,7 +168,7 @@ type CharacterItemEquipmentAddOptionDtoBody = {
168
168
  all_stat: string;
169
169
  equipment_level_decrease: number;
170
170
  };
171
- type CharacterItemEquipmentEtcOptionDtoBody = {
171
+ export type CharacterItemEquipmentEtcOptionBody = {
172
172
  str: string;
173
173
  dex: string;
174
174
  int: string;
@@ -181,8 +181,8 @@ type CharacterItemEquipmentEtcOptionDtoBody = {
181
181
  speed: string;
182
182
  jump: string;
183
183
  };
184
- type CharacterItemEquipmentStarforceOptionDtoBody = CharacterItemEquipmentEtcOptionDtoBody;
185
- type CharacterItemEquipmentTitleDtoBody = {
184
+ export type CharacterItemEquipmentStarforceOptionBody = CharacterItemEquipmentEtcOptionBody;
185
+ export type CharacterItemEquipmentTitleBody = {
186
186
  title_name: string | null;
187
187
  title_icon: string | null;
188
188
  title_description: string | null;
@@ -192,7 +192,7 @@ type CharacterItemEquipmentTitleDtoBody = {
192
192
  title_shape_icon: string | null;
193
193
  title_shape_description: string | null;
194
194
  };
195
- type CharacterItemEquipmentMedalShapeDtoBody = {
195
+ export type CharacterItemEquipmentMedalShapeBody = {
196
196
  medal_shape_name: string;
197
197
  medal_shape_icon: string;
198
198
  medal_shape_description: string;
@@ -200,4 +200,3 @@ type CharacterItemEquipmentMedalShapeDtoBody = {
200
200
  medal_shape_changed_icon: string;
201
201
  medal_shape_changed_description: string;
202
202
  };
203
- export type { CharacterItemEquipmentDtoBody, CharacterItemEquipmentInfoDtoBody, CharacterItemEquipmentTitleDtoBody, CharacterItemEquipmentOptionDtoBody, CharacterItemEquipmentExceptionalOptionDtoBody, CharacterItemEquipmentTotalOptionDtoBody, CharacterItemEquipmentMedalShapeDtoBody, CharacterItemEquipmentBaseOptionDtoBody, CharacterItemEquipmentAddOptionDtoBody, CharacterItemEquipmentEtcOptionDtoBody, CharacterItemEquipmentStarforceOptionDtoBody, CharacterItemEquipmentDragonInfoDtoBody, CharacterItemEquipmentMechanicInfoDtoBody, };
@@ -0,0 +1,20 @@
1
+ export type CharacterLinkSkillBody = {
2
+ date: string | null;
3
+ character_class: string | null;
4
+ character_link_skill: CharacterLinkSkillInfoBody[];
5
+ character_link_skill_preset_1: CharacterLinkSkillInfoBody[];
6
+ character_link_skill_preset_2: CharacterLinkSkillInfoBody[];
7
+ character_link_skill_preset_3: CharacterLinkSkillInfoBody[];
8
+ character_owned_link_skill: CharacterLinkSkillInfoBody | null;
9
+ character_owned_link_skill_preset_1: CharacterLinkSkillInfoBody | null;
10
+ character_owned_link_skill_preset_2: CharacterLinkSkillInfoBody | null;
11
+ character_owned_link_skill_preset_3: CharacterLinkSkillInfoBody | null;
12
+ };
13
+ export type CharacterLinkSkillInfoBody = {
14
+ skill_name: string;
15
+ skill_description: string;
16
+ skill_level: number;
17
+ skill_effect: string;
18
+ skill_effect_next: string | null;
19
+ skill_icon: string;
20
+ };
@@ -0,0 +1,14 @@
1
+ export type CharacterListBody = {
2
+ account_list: CharacterListAccountBody[];
3
+ };
4
+ export type CharacterListAccountBody = {
5
+ account_id: string;
6
+ character_list: CharacterListAccountCharacterBody[];
7
+ };
8
+ export type CharacterListAccountCharacterBody = {
9
+ ocid: string;
10
+ character_name: string;
11
+ world_name: string;
12
+ character_class: string;
13
+ character_level: number;
14
+ };
@@ -1,11 +1,11 @@
1
- type CharacterPetEquipmentDtoBody = {
1
+ export type CharacterPetEquipmentBody = {
2
2
  date: string | null;
3
3
  pet_1_name: string | null;
4
4
  pet_1_nickname: string | null;
5
5
  pet_1_icon: string | null;
6
6
  pet_1_description: string | null;
7
- pet_1_equipment: CharacterPetEquipmentItemDtoBody | null;
8
- pet_1_auto_skill: CharacterPetEquipmentAutoSkillDtoBody | null;
7
+ pet_1_equipment: CharacterPetEquipmentItemBody | null;
8
+ pet_1_auto_skill: CharacterPetEquipmentAutoSkillBody | null;
9
9
  pet_1_pet_type: string | null;
10
10
  pet_1_skill: string[];
11
11
  pet_1_date_expire: string | null;
@@ -15,8 +15,8 @@ type CharacterPetEquipmentDtoBody = {
15
15
  pet_2_nickname: string | null;
16
16
  pet_2_icon: string | null;
17
17
  pet_2_description: string | null;
18
- pet_2_equipment: CharacterPetEquipmentItemDtoBody | null;
19
- pet_2_auto_skill: CharacterPetEquipmentAutoSkillDtoBody | null;
18
+ pet_2_equipment: CharacterPetEquipmentItemBody | null;
19
+ pet_2_auto_skill: CharacterPetEquipmentAutoSkillBody | null;
20
20
  pet_2_pet_type: string | null;
21
21
  pet_2_skill: string[];
22
22
  pet_2_date_expire: string | null;
@@ -26,32 +26,31 @@ type CharacterPetEquipmentDtoBody = {
26
26
  pet_3_nickname: string | null;
27
27
  pet_3_icon: string | null;
28
28
  pet_3_description: string | null;
29
- pet_3_equipment: CharacterPetEquipmentItemDtoBody | null;
30
- pet_3_auto_skill: CharacterPetEquipmentAutoSkillDtoBody | null;
29
+ pet_3_equipment: CharacterPetEquipmentItemBody | null;
30
+ pet_3_auto_skill: CharacterPetEquipmentAutoSkillBody | null;
31
31
  pet_3_pet_type: string | null;
32
32
  pet_3_skill: string[];
33
33
  pet_3_date_expire: string | null;
34
34
  pet_3_appearance: string | null;
35
35
  pet_3_appearance_icon: string | null;
36
36
  };
37
- type CharacterPetEquipmentItemDtoBody = {
37
+ export type CharacterPetEquipmentItemBody = {
38
38
  item_name: string | null;
39
39
  item_icon: string | null;
40
40
  item_description: string | null;
41
- item_option: CharacterPetEquipmentItemOptionDtoBody[];
41
+ item_option: CharacterPetEquipmentItemOptionBody[];
42
42
  scroll_upgrade: number;
43
43
  scroll_upgradable: number;
44
44
  item_shape: string | null;
45
45
  item_shape_icon: string | null;
46
46
  };
47
- type CharacterPetEquipmentItemOptionDtoBody = {
47
+ export type CharacterPetEquipmentItemOptionBody = {
48
48
  option_type: string;
49
49
  option_value: string;
50
50
  };
51
- type CharacterPetEquipmentAutoSkillDtoBody = {
51
+ export type CharacterPetEquipmentAutoSkillBody = {
52
52
  skill_1: string | null;
53
53
  skill_1_icon: string | null;
54
54
  skill_2: string | null;
55
55
  skill_2_icon: string | null;
56
56
  };
57
- export type { CharacterPetEquipmentDtoBody, CharacterPetEquipmentItemDtoBody, CharacterPetEquipmentItemOptionDtoBody, CharacterPetEquipmentAutoSkillDtoBody, };
@@ -0,0 +1,4 @@
1
+ export type CharacterPopularityBody = {
2
+ date: string | null;
3
+ popularity: number;
4
+ };
@@ -0,0 +1,9 @@
1
+ export type CharacterPropensityBody = {
2
+ date: string | null;
3
+ charisma_level: number | null;
4
+ sensibility_level: number | null;
5
+ insight_level: number | null;
6
+ willingness_level: number | null;
7
+ handicraft_level: number | null;
8
+ charm_level: number | null;
9
+ };
@@ -0,0 +1,18 @@
1
+ export type CharacterSetEffectBody = {
2
+ date: string | null;
3
+ set_effect: CharacterSetEffectSetBody[];
4
+ };
5
+ export type CharacterSetEffectSetBody = {
6
+ set_name: string;
7
+ total_set_count: number;
8
+ set_effect_info: CharacterSetEffectInfoBody[];
9
+ set_option_full: CharacterSetEffectOptionFullBody[];
10
+ };
11
+ export type CharacterSetEffectInfoBody = {
12
+ set_count: number;
13
+ set_option: string;
14
+ };
15
+ export type CharacterSetEffectOptionFullBody = {
16
+ set_count: number;
17
+ set_option: string;
18
+ };
@@ -0,0 +1,14 @@
1
+ export type CharacterSkillBody = {
2
+ date: string | null;
3
+ character_class: string | null;
4
+ character_skill_grade: string | null;
5
+ character_skill: CharacterSkillInfoBody[];
6
+ };
7
+ export type CharacterSkillInfoBody = {
8
+ skill_name: string;
9
+ skill_description: string;
10
+ skill_level: number;
11
+ skill_effect: string;
12
+ skill_effect_next: string | null;
13
+ skill_icon: string;
14
+ };
@@ -0,0 +1,10 @@
1
+ export type CharacterStatBody = {
2
+ date: string | null;
3
+ character_class: string | null;
4
+ final_stat: CharacterFinalStatBody[];
5
+ remain_ap: number | null;
6
+ };
7
+ export type CharacterFinalStatBody = {
8
+ stat_name: string;
9
+ stat_value: string;
10
+ };
@@ -1,9 +1,9 @@
1
- type CharacterSymbolEquipmentDtoBody = {
1
+ export type CharacterSymbolEquipmentBody = {
2
2
  date: string | null;
3
- character_class: string;
4
- symbol: CharacterSymbolEquipmentInfoDtoBody[];
3
+ character_class: string | null;
4
+ symbol: CharacterSymbolEquipmentInfoBody[];
5
5
  };
6
- type CharacterSymbolEquipmentInfoDtoBody = {
6
+ export type CharacterSymbolEquipmentInfoBody = {
7
7
  symbol_name: string;
8
8
  symbol_icon: string;
9
9
  symbol_description: string;
@@ -20,4 +20,3 @@ type CharacterSymbolEquipmentInfoDtoBody = {
20
20
  symbol_growth_count: number;
21
21
  symbol_require_growth_count: number;
22
22
  };
23
- export type { CharacterSymbolEquipmentDtoBody, CharacterSymbolEquipmentInfoDtoBody, };
@@ -1,10 +1,10 @@
1
- type CharacterVMatrixDtoBody = {
1
+ export type CharacterVMatrixBody = {
2
2
  date: string | null;
3
- character_class: string;
3
+ character_class: string | null;
4
4
  character_v_core_equipment: CharacterVMatrixCoreEquipmentDtoBody[];
5
- character_v_matrix_remain_slot_upgrade_point: number;
5
+ character_v_matrix_remain_slot_upgrade_point: number | null;
6
6
  };
7
- type CharacterVMatrixCoreEquipmentDtoBody = {
7
+ export type CharacterVMatrixCoreEquipmentDtoBody = {
8
8
  slot_id: string;
9
9
  slot_level: number;
10
10
  v_core_name: string | null;
@@ -14,4 +14,3 @@ type CharacterVMatrixCoreEquipmentDtoBody = {
14
14
  v_core_skill_2: string | null;
15
15
  v_core_skill_3: string | null;
16
16
  };
17
- export type { CharacterVMatrixDtoBody, CharacterVMatrixCoreEquipmentDtoBody };
@@ -1,4 +1,4 @@
1
- type GuildBasicDtoBody = {
1
+ export type GuildBasicBody = {
2
2
  date: string | null;
3
3
  world_name: string;
4
4
  guild_name: string;
@@ -8,14 +8,13 @@ type GuildBasicDtoBody = {
8
8
  guild_master_name: string;
9
9
  guild_member_count: number;
10
10
  guild_member: string[];
11
- guild_skill: GuildSkillDtoBody[];
12
- guild_noblesse_skill: GuildSkillDtoBody[];
11
+ guild_skill: GuildSkillBody[];
12
+ guild_noblesse_skill: GuildSkillBody[];
13
13
  };
14
- type GuildSkillDtoBody = {
14
+ export type GuildSkillBody = {
15
15
  skill_name: string;
16
16
  skill_description: string;
17
17
  skill_level: number;
18
18
  skill_effect: string;
19
19
  skill_icon: string;
20
20
  };
21
- export type { GuildBasicDtoBody, GuildSkillDtoBody };
@@ -0,0 +1,3 @@
1
+ export type GuildBody = {
2
+ oguild_id: string;
3
+ };
@@ -0,0 +1,29 @@
1
+ export type CubeResultOptionBody = {
2
+ value: string;
3
+ grade: string;
4
+ };
5
+ export type CubeHistoryBody = {
6
+ id: string;
7
+ character_name: string;
8
+ world_name: string;
9
+ date_create: string;
10
+ cube_type: string;
11
+ item_upgrade_result: string;
12
+ miracle_time_flag: string;
13
+ item_equipment_part: string;
14
+ item_level: number;
15
+ target_item: string;
16
+ potential_option_grade: string;
17
+ additional_potential_option_grade: string;
18
+ upgrade_guarantee: boolean;
19
+ upgrade_guarantee_count: number;
20
+ before_potential_option: CubeResultOptionBody[];
21
+ before_additional_potential_option: CubeResultOptionBody[];
22
+ after_potential_option: CubeResultOptionBody[];
23
+ after_additional_potential_option: CubeResultOptionBody[];
24
+ };
25
+ export type CubeHistoryResponseBody = {
26
+ count: number;
27
+ cube_history: CubeHistoryBody[];
28
+ next_cursor: string | null;
29
+ };
@@ -0,0 +1,28 @@
1
+ export type PotentialHistoryResponseBody = {
2
+ count: number;
3
+ potential_history: PotentialHistoryBody[];
4
+ next_cursor: string | null;
5
+ };
6
+ export type PotentialHistoryBody = {
7
+ id: string;
8
+ character_name: string;
9
+ date_create: string;
10
+ potential_type: string;
11
+ item_upgrade_result: string;
12
+ miracle_time_flag: string;
13
+ item_equipment_part: string;
14
+ item_level: number;
15
+ target_item: string;
16
+ potential_option_grade: string;
17
+ additional_potential_option_grade: string;
18
+ upgrade_guarantee: boolean;
19
+ upgrade_guarantee_count: number;
20
+ before_potential_option: PotentialResultOptionBody[];
21
+ before_additional_potential_option: PotentialResultOptionBody[];
22
+ after_potential_option: PotentialResultOptionBody[];
23
+ after_additional_potential_option: PotentialResultOptionBody[];
24
+ };
25
+ export type PotentialResultOptionBody = {
26
+ value: string;
27
+ grade: string;
28
+ };
@@ -1,5 +1,11 @@
1
- import { StarforceEventDtoBody } from '@src/maplestory/api/response/history/starforceEventDtoBody';
2
- type StarforceHistoryDtoBody = {
1
+ export type StarforceEventBody = {
2
+ success_rate: string;
3
+ destroy_decrease_rate: string | null;
4
+ cost_discount_rate: string;
5
+ plus_value: string;
6
+ starforce_event_range: string;
7
+ };
8
+ export type StarforceHistoryBody = {
3
9
  id: string;
4
10
  item_upgrade_result: string;
5
11
  before_starforce_count: number;
@@ -16,6 +22,10 @@ type StarforceHistoryDtoBody = {
16
22
  world_name: string;
17
23
  target_item: string;
18
24
  date_create: string;
19
- starforce_event_list: StarforceEventDtoBody[] | null;
25
+ starforce_event_list: StarforceEventBody[] | null;
26
+ };
27
+ export type StarforceHistoryResponseBody = {
28
+ count: number;
29
+ starforce_history: StarforceHistoryBody[];
30
+ next_cursor: string | null;
20
31
  };
21
- export type { StarforceHistoryDtoBody };
@@ -1,4 +1,4 @@
1
- type InspectionInfoSoapBody = {
1
+ export type InspectionInfoSoapBody = {
2
2
  'soap:Envelope': {
3
3
  $: {
4
4
  'xmlns:soap': 'http://schemas.xmlsoap.org/soap/envelope/';
@@ -126,4 +126,3 @@ type InspectionInfoSoapBody = {
126
126
  ];
127
127
  };
128
128
  };
129
- export type { InspectionInfoSoapBody };
@@ -1,4 +1,4 @@
1
- type CashshopNoticeDetailDtoBody = {
1
+ export type CashshopNoticeDetailBody = {
2
2
  title: string;
3
3
  url: string;
4
4
  contents: string;
@@ -7,4 +7,3 @@ type CashshopNoticeDetailDtoBody = {
7
7
  date_sale_end: string | null;
8
8
  ongoing_flag: string;
9
9
  };
10
- export type { CashshopNoticeDetailDtoBody };
@@ -0,0 +1,12 @@
1
+ export type CashshopNoticeListBody = {
2
+ cashshop_notice: CashshopNoticeListItemBody[];
3
+ };
4
+ export type CashshopNoticeListItemBody = {
5
+ title: string;
6
+ url: string;
7
+ notice_id: number;
8
+ date: string;
9
+ date_sale_start: string | null;
10
+ date_sale_end: string | null;
11
+ ongoing_flag: string;
12
+ };