maplestory-openapi 2.13.1 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (548) 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/{dto/character/characterDojangDto.d.ts → kms/dto/character/characterDojang.d.ts} +6 -6
  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/{dto/character/characterHyperStatDto.d.ts → kms/dto/character/characterHyperStat.d.ts} +27 -6
  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/{dto/character/characterLinkSkillDto.d.ts → kms/dto/character/characterLinkSkill.d.ts} +35 -6
  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/{dto/character/characterPropensityDto.d.ts → kms/dto/character/characterPropensity.d.ts} +7 -4
  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} +5 -5
  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} +83 -78
  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} +14 -15
  332. package/types/maplestory/api/{response/character/characterDojangDtoBody.d.ts → kms/response/character/characterDojangBody.d.ts} +1 -2
  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/{response/character/characterHyperStatDtoBody.d.ts → kms/response/character/characterHyperStatBody.d.ts} +5 -6
  336. package/types/maplestory/api/{response/character/characterItemEquipmentDtoBody.d.ts → kms/response/character/characterItemEquipmentBody.d.ts} +33 -34
  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/{response/character/characterPropensityDtoBody.d.ts → kms/response/character/characterPropensityBody.d.ts} +1 -2
  342. package/types/maplestory/api/kms/response/character/characterSetEffectBody.d.ts +18 -0
  343. package/types/maplestory/api/{response/character/characterSkillDtoBody.d.ts → kms/response/character/characterSkillBody.d.ts} +3 -4
  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} +3 -4
  346. package/types/maplestory/api/{response/character/characterVMatrixDtoBody.d.ts → kms/response/character/characterVMatrixBody.d.ts} +2 -3
  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} +1 -2
  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/characterDto.d.ts +0 -12
  447. package/types/maplestory/api/dto/character/characterHexaMatrixDto.d.ts +0 -17
  448. package/types/maplestory/api/dto/character/characterHexaMatrixEquipmentDto.d.ts +0 -25
  449. package/types/maplestory/api/dto/character/characterHexaMatrixEquipmentLinkedSkillDto.d.ts +0 -12
  450. package/types/maplestory/api/dto/character/characterHexaMatrixStatCoreDto.d.ts +0 -40
  451. package/types/maplestory/api/dto/character/characterHexaMatrixStatDto.d.ts +0 -41
  452. package/types/maplestory/api/dto/character/characterHyperStatPresetDto.d.ts +0 -24
  453. package/types/maplestory/api/dto/character/characterImageDto.d.ts +0 -160
  454. package/types/maplestory/api/dto/character/characterItemEquipmentAddOptionDto.d.ts +0 -68
  455. package/types/maplestory/api/dto/character/characterItemEquipmentBaseOptionDto.d.ts +0 -76
  456. package/types/maplestory/api/dto/character/characterItemEquipmentDragonInfoDto.d.ts +0 -130
  457. package/types/maplestory/api/dto/character/characterItemEquipmentDto.d.ts +0 -61
  458. package/types/maplestory/api/dto/character/characterItemEquipmentEtcOptionDto.d.ts +0 -52
  459. package/types/maplestory/api/dto/character/characterItemEquipmentExceptionalOptionDto.d.ts +0 -44
  460. package/types/maplestory/api/dto/character/characterItemEquipmentInfoDto.d.ts +0 -162
  461. package/types/maplestory/api/dto/character/characterItemEquipmentMechanicInfoDto.d.ts +0 -130
  462. package/types/maplestory/api/dto/character/characterItemEquipmentMedalShapeDto.d.ts +0 -32
  463. package/types/maplestory/api/dto/character/characterItemEquipmentStarforceOptionDto.d.ts +0 -52
  464. package/types/maplestory/api/dto/character/characterItemEquipmentTitleDto.d.ts +0 -48
  465. package/types/maplestory/api/dto/character/characterItemEquipmentTotalOptionDto.d.ts +0 -80
  466. package/types/maplestory/api/dto/character/characterLinkSkillInfoDto.d.ts +0 -32
  467. package/types/maplestory/api/dto/character/characterListAccountCharacterDto.d.ts +0 -28
  468. package/types/maplestory/api/dto/character/characterListAccountDto.d.ts +0 -17
  469. package/types/maplestory/api/dto/character/characterListDto.d.ts +0 -13
  470. package/types/maplestory/api/dto/character/characterPetEquipmentAutoSkillDto.d.ts +0 -24
  471. package/types/maplestory/api/dto/character/characterPetEquipmentItemDto.d.ts +0 -41
  472. package/types/maplestory/api/dto/character/characterPetEquipmentItemOptionDto.d.ts +0 -16
  473. package/types/maplestory/api/dto/character/characterPopularityDto.d.ts +0 -16
  474. package/types/maplestory/api/dto/character/characterSetEffectDto.d.ts +0 -17
  475. package/types/maplestory/api/dto/character/characterSetEffectInfoDto.d.ts +0 -16
  476. package/types/maplestory/api/dto/character/characterSetEffectOptionFullDto.d.ts +0 -16
  477. package/types/maplestory/api/dto/character/characterSetEffectSetDto.d.ts +0 -26
  478. package/types/maplestory/api/dto/character/characterSkillDto.d.ts +0 -25
  479. package/types/maplestory/api/dto/character/characterSkillInfoDto.d.ts +0 -32
  480. package/types/maplestory/api/dto/character/characterStatDto.d.ts +0 -27
  481. package/types/maplestory/api/dto/character/characterSymbolEquipmentDto.d.ts +0 -21
  482. package/types/maplestory/api/dto/character/characterVMatrixCoreEquipmentDto.d.ts +0 -40
  483. package/types/maplestory/api/dto/character/characterVMatrixDto.d.ts +0 -25
  484. package/types/maplestory/api/dto/guild/guildBasicDto.d.ts +0 -53
  485. package/types/maplestory/api/dto/guild/guildDto.d.ts +0 -12
  486. package/types/maplestory/api/dto/guild/guildSkillDto.d.ts +0 -28
  487. package/types/maplestory/api/dto/history/cubeHistoryResponseDto.d.ts +0 -21
  488. package/types/maplestory/api/dto/history/cubeResultOptionDto.d.ts +0 -18
  489. package/types/maplestory/api/dto/history/potentialHistoryResponseDto.d.ts +0 -21
  490. package/types/maplestory/api/dto/history/potentialResultOptionDto.d.ts +0 -18
  491. package/types/maplestory/api/dto/history/starforceEventDto.d.ts +0 -28
  492. package/types/maplestory/api/dto/history/starforceHistoryResponseDto.d.ts +0 -21
  493. package/types/maplestory/api/dto/notice/cashshopNoticeListDto.d.ts +0 -13
  494. package/types/maplestory/api/dto/notice/eventNoticeListDto.d.ts +0 -13
  495. package/types/maplestory/api/dto/notice/eventNoticeListItemDto.d.ts +0 -32
  496. package/types/maplestory/api/dto/notice/noticeListDto.d.ts +0 -13
  497. package/types/maplestory/api/dto/notice/noticeListItemDto.d.ts +0 -24
  498. package/types/maplestory/api/dto/notice/updateNoticeListDto.d.ts +0 -13
  499. package/types/maplestory/api/dto/notice/updateNoticeListItemDto.d.ts +0 -24
  500. package/types/maplestory/api/dto/potentialOptionGrade.d.ts +0 -13
  501. package/types/maplestory/api/dto/ranking/achievementRankingResponseDto.d.ts +0 -13
  502. package/types/maplestory/api/dto/ranking/dojangRankingResponseDto.d.ts +0 -13
  503. package/types/maplestory/api/dto/ranking/guildRankingResponseDto.d.ts +0 -13
  504. package/types/maplestory/api/dto/ranking/overallRankingResponseDto.d.ts +0 -13
  505. package/types/maplestory/api/dto/ranking/theSeedRankingResponseDto.d.ts +0 -13
  506. package/types/maplestory/api/dto/ranking/unionRankingResponseDto.d.ts +0 -13
  507. package/types/maplestory/api/dto/union/unionArtifactCrystalDto.d.ts +0 -40
  508. package/types/maplestory/api/dto/union/unionArtifactDto.d.ts +0 -26
  509. package/types/maplestory/api/dto/union/unionArtifactEffectDto.d.ts +0 -16
  510. package/types/maplestory/api/dto/union/unionChampionBadgeInfoDto.d.ts +0 -12
  511. package/types/maplestory/api/dto/union/unionChampionDto.d.ts +0 -22
  512. package/types/maplestory/api/dto/union/unionChampionInfoDto.d.ts +0 -29
  513. package/types/maplestory/api/dto/union/unionRaiderBlockDto.d.ts +0 -30
  514. package/types/maplestory/api/dto/union/unionRaiderBlockPositionDto.d.ts +0 -16
  515. package/types/maplestory/api/dto/union/unionRaiderControlPointDto.d.ts +0 -16
  516. package/types/maplestory/api/dto/union/unionRaiderDto.d.ts +0 -52
  517. package/types/maplestory/api/dto/union/unionRaiderInnerStatDto.d.ts +0 -16
  518. package/types/maplestory/api/dto/union/unionRaiderPresetDto.d.ts +0 -26
  519. package/types/maplestory/api/response/character/characterAbilityDtoBody.d.ts +0 -20
  520. package/types/maplestory/api/response/character/characterBeautyEquipmentDtoBody.d.ts +0 -31
  521. package/types/maplestory/api/response/character/characterDtoBody.d.ts +0 -4
  522. package/types/maplestory/api/response/character/characterHexaMatrixDtoBody.d.ts +0 -14
  523. package/types/maplestory/api/response/character/characterHexaMatrixStatDtoBody.d.ts +0 -21
  524. package/types/maplestory/api/response/character/characterLinkSkillDtoBody.d.ts +0 -21
  525. package/types/maplestory/api/response/character/characterListDtoBody.d.ts +0 -15
  526. package/types/maplestory/api/response/character/characterPopularityDtoBody.d.ts +0 -5
  527. package/types/maplestory/api/response/character/characterSetEffectDtoBody.d.ts +0 -19
  528. package/types/maplestory/api/response/character/characterStatDtoBody.d.ts +0 -10
  529. package/types/maplestory/api/response/guild/guildDtoBody.d.ts +0 -4
  530. package/types/maplestory/api/response/history/cubeHistoryDtoBody.d.ts +0 -22
  531. package/types/maplestory/api/response/history/cubeHistoryResponseDtoBody.d.ts +0 -7
  532. package/types/maplestory/api/response/history/cubeResultOptionDtoBody.d.ts +0 -5
  533. package/types/maplestory/api/response/history/potentialHistoryResponseDtoBody.d.ts +0 -29
  534. package/types/maplestory/api/response/history/starforceEventDtoBody.d.ts +0 -8
  535. package/types/maplestory/api/response/history/starforceHistoryResponseDtoBody.d.ts +0 -7
  536. package/types/maplestory/api/response/notice/cashshopNoticeListDtoBody.d.ts +0 -13
  537. package/types/maplestory/api/response/notice/eventNoticeListDtoBody.d.ts +0 -12
  538. package/types/maplestory/api/response/notice/noticeListDtoBody.d.ts +0 -10
  539. package/types/maplestory/api/response/notice/updateNoticeListDtoBody.d.ts +0 -10
  540. package/types/maplestory/api/response/ranking/achievementRankingResponseDtoBody.d.ts +0 -13
  541. package/types/maplestory/api/response/ranking/dojangRankingResponseDtoBody.d.ts +0 -14
  542. package/types/maplestory/api/response/ranking/guildRankingResponseDtoBody.d.ts +0 -13
  543. package/types/maplestory/api/response/ranking/rankingResponseDtoBody.d.ts +0 -7
  544. package/types/maplestory/api/response/ranking/theSeedRankingResponseDtoBody.d.ts +0 -14
  545. package/types/maplestory/api/response/ranking/unionRankingResponseDtoBody.d.ts +0 -13
  546. package/types/maplestory/api/response/union/unionArtifactDtoBody.d.ts +0 -20
  547. package/types/maplestory/api/response/union/unionChampionDtoBody.d.ts +0 -16
  548. package/types/maplestory/api/response/union/unionRaiderDtoBody.d.ts +0 -39
@@ -0,0 +1,1112 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var characterItemEquipment = require('../../../common/dto/character/characterItemEquipment.js');
6
+
7
+ /**
8
+ * Character equipped equipment information
9
+ */
10
+ class CharacterItemEquipmentDto extends characterItemEquipment.CharacterItemEquipmentDto {
11
+ /**
12
+ * Reference date for query (SGT, daily data with hours and minutes set to 0)
13
+ */
14
+ date;
15
+ /**
16
+ * Character gender
17
+ */
18
+ characterGender;
19
+ /**
20
+ * Character job
21
+ */
22
+ characterClass;
23
+ /**
24
+ * Active equipment preset number
25
+ */
26
+ presetNo;
27
+ /**
28
+ * Equipment information
29
+ */
30
+ itemEquipment;
31
+ /**
32
+ * Equipment information for Preset 1
33
+ */
34
+ itemEquipmentPreset1;
35
+ /**
36
+ * Equipment information for Preset 2
37
+ */
38
+ itemEquipmentPreset2;
39
+ /**
40
+ * Equipment information for Preset 3
41
+ */
42
+ itemEquipmentPreset3;
43
+ /**
44
+ * Title information
45
+ */
46
+ title;
47
+ /**
48
+ * Evan Dragon equipment information (response provided if the character is Evan)
49
+ */
50
+ dragonEquipment;
51
+ /**
52
+ * Mechanic equipment information (response provided if the character is a Mechanic)
53
+ */
54
+ mechanicEquipment;
55
+ constructor(obj) {
56
+ super();
57
+ const { date, character_gender, character_class, preset_no, item_equipment, item_equipment_preset_1, item_equipment_preset_2, item_equipment_preset_3, title, dragon_equipment, mechanic_equipment, } = obj;
58
+ this.date = date ? new Date(date) : null;
59
+ this.characterGender = character_gender;
60
+ this.characterClass = character_class;
61
+ this.presetNo = preset_no;
62
+ this.itemEquipment = item_equipment.map((equipment) => new CharacterItemEquipmentInfoDto(equipment));
63
+ this.itemEquipmentPreset1 =
64
+ item_equipment_preset_1?.map((equipment) => new CharacterItemEquipmentInfoDto(equipment)) ?? [];
65
+ this.itemEquipmentPreset2 =
66
+ item_equipment_preset_2?.map((equipment) => new CharacterItemEquipmentInfoDto(equipment)) ?? [];
67
+ this.itemEquipmentPreset3 =
68
+ item_equipment_preset_3?.map((equipment) => new CharacterItemEquipmentInfoDto(equipment)) ?? [];
69
+ this.title = title ? new CharacterItemEquipmentTitleDto(title) : null;
70
+ this.dragonEquipment = dragon_equipment.map((equipment) => new CharacterItemEquipmentDragonInfoDto(equipment));
71
+ this.mechanicEquipment = mechanic_equipment.map((equipment) => new CharacterItemEquipmentMechanicInfoDto(equipment));
72
+ }
73
+ }
74
+ /**
75
+ * Title information
76
+ */
77
+ class CharacterItemEquipmentTitleDto extends characterItemEquipment.CharacterItemEquipmentTitleDto {
78
+ /**
79
+ * Title name
80
+ */
81
+ titleName;
82
+ /**
83
+ * Title icon
84
+ */
85
+ titleIcon;
86
+ /**
87
+ * Title description
88
+ */
89
+ titleDescription;
90
+ /**
91
+ * Title validity period (SGT)
92
+ */
93
+ dateExpire = null;
94
+ /**
95
+ * Whether the title is expired
96
+ */
97
+ isExpired = null;
98
+ /**
99
+ * Title option validity period (expired:expired, null unlimited) (SGT)
100
+ */
101
+ dateOptionExpire = null;
102
+ /**
103
+ * Whether the title option is expired
104
+ */
105
+ isOptionExpired = null;
106
+ constructor(obj) {
107
+ super();
108
+ const { title_name, title_icon, title_description, date_expire, date_option_expire, } = obj;
109
+ this.titleName = title_name;
110
+ this.titleIcon = title_icon;
111
+ this.titleDescription = title_description;
112
+ if (date_expire === 'expired') {
113
+ this.isExpired = true;
114
+ }
115
+ else if (typeof date_expire === 'string') {
116
+ this.dateExpire = date_expire ? new Date(date_expire) : null;
117
+ }
118
+ if (date_option_expire === 'expired') {
119
+ this.isOptionExpired = true;
120
+ }
121
+ else if (typeof date_option_expire === 'string') {
122
+ this.dateOptionExpire = date_option_expire
123
+ ? new Date(date_option_expire)
124
+ : null;
125
+ }
126
+ }
127
+ }
128
+ /**
129
+ * Additional equipment options
130
+ */
131
+ class CharacterItemEquipmentAddOptionDto extends characterItemEquipment.CharacterItemEquipmentAddOptionDto {
132
+ /**
133
+ * STR
134
+ */
135
+ str;
136
+ /**
137
+ * DEX
138
+ */
139
+ dex;
140
+ /**
141
+ * INT
142
+ */
143
+ int;
144
+ /**
145
+ * LUK
146
+ */
147
+ luk;
148
+ /**
149
+ * Max HP
150
+ */
151
+ maxHp;
152
+ /**
153
+ * Max MP
154
+ */
155
+ maxMp;
156
+ /**
157
+ * Attack Power
158
+ */
159
+ attackPower;
160
+ /**
161
+ * Magic ATT
162
+ */
163
+ magicPower;
164
+ /**
165
+ * Defense
166
+ */
167
+ armor;
168
+ /**
169
+ * Speed
170
+ */
171
+ speed;
172
+ /**
173
+ * Jump
174
+ */
175
+ jump;
176
+ /**
177
+ * Boss Damage (%)
178
+ */
179
+ bossDamage;
180
+ /**
181
+ * Damage (%)
182
+ */
183
+ damage;
184
+ /**
185
+ * All Stats (%)
186
+ */
187
+ allStat;
188
+ /**
189
+ * Equipment level decrease
190
+ */
191
+ equipmentLevelDecrease;
192
+ constructor(obj) {
193
+ super();
194
+ const { str, dex, int, luk, max_hp, max_mp, attack_power, magic_power, armor, speed, jump, boss_damage, damage, all_stat, equipment_level_decrease, } = obj;
195
+ this.str = str;
196
+ this.dex = dex;
197
+ this.int = int;
198
+ this.luk = luk;
199
+ this.maxHp = max_hp;
200
+ this.maxMp = max_mp;
201
+ this.attackPower = attack_power;
202
+ this.magicPower = magic_power;
203
+ this.armor = armor;
204
+ this.speed = speed;
205
+ this.jump = jump;
206
+ this.bossDamage = boss_damage;
207
+ this.damage = damage;
208
+ this.allStat = all_stat;
209
+ this.equipmentLevelDecrease = equipment_level_decrease;
210
+ }
211
+ }
212
+ /**
213
+ * Basic equipment option information
214
+ */
215
+ class CharacterItemEquipmentBaseOptionDto extends characterItemEquipment.CharacterItemEquipmentBaseOptionDto {
216
+ /**
217
+ * STR
218
+ */
219
+ str;
220
+ /**
221
+ * DEX
222
+ */
223
+ dex;
224
+ /**
225
+ * INT
226
+ */
227
+ int;
228
+ /**
229
+ * LUK
230
+ */
231
+ luk;
232
+ /**
233
+ * Max HP
234
+ */
235
+ maxHp;
236
+ /**
237
+ * Max MP
238
+ */
239
+ maxMp;
240
+ /**
241
+ * Attack Power
242
+ */
243
+ attackPower;
244
+ /**
245
+ * Magic ATT
246
+ */
247
+ magicPower;
248
+ /**
249
+ * Defense
250
+ */
251
+ armor;
252
+ /**
253
+ * Speed
254
+ */
255
+ speed;
256
+ /**
257
+ * Jump
258
+ */
259
+ jump;
260
+ /**
261
+ * Boss Damage (%)
262
+ */
263
+ bossDamage;
264
+ /**
265
+ * Ignore Enemy Defense (%)
266
+ */
267
+ ignoreMonsterArmor;
268
+ /**
269
+ * All Stats (%)
270
+ */
271
+ allStat;
272
+ /**
273
+ * Max HP (%)
274
+ */
275
+ maxHpRate;
276
+ /**
277
+ * Max MP (%)
278
+ */
279
+ maxMpRate;
280
+ /**
281
+ * Basic equipment level
282
+ */
283
+ baseEquipmentLevel;
284
+ constructor(obj) {
285
+ super();
286
+ const { str, dex, int, luk, max_hp, max_mp, attack_power, magic_power, armor, speed, jump, boss_damage, ignore_monster_armor, all_stat, max_hp_rate, max_mp_rate, base_equipment_level, } = obj;
287
+ this.str = str;
288
+ this.dex = dex;
289
+ this.int = int;
290
+ this.luk = luk;
291
+ this.maxHp = max_hp;
292
+ this.maxMp = max_mp;
293
+ this.attackPower = attack_power;
294
+ this.magicPower = magic_power;
295
+ this.armor = armor;
296
+ this.speed = speed;
297
+ this.jump = jump;
298
+ this.bossDamage = boss_damage;
299
+ this.ignoreMonsterArmor = ignore_monster_armor;
300
+ this.allStat = all_stat;
301
+ this.maxHpRate = max_hp_rate;
302
+ this.maxMpRate = max_mp_rate;
303
+ this.baseEquipmentLevel = base_equipment_level;
304
+ }
305
+ }
306
+ /**
307
+ * Miscellaneous equipment option information
308
+ */
309
+ class CharacterItemEquipmentEtcOptionDto extends characterItemEquipment.CharacterItemEquipmentEtcOptionDto {
310
+ /**
311
+ * STR
312
+ */
313
+ str;
314
+ /**
315
+ * DEX
316
+ */
317
+ dex;
318
+ /**
319
+ * INT
320
+ */
321
+ int;
322
+ /**
323
+ * LUK
324
+ */
325
+ luk;
326
+ /**
327
+ * Max HP
328
+ */
329
+ maxHp;
330
+ /**
331
+ * Max MP
332
+ */
333
+ maxMp;
334
+ /**
335
+ * Attack Power
336
+ */
337
+ attackPower;
338
+ /**
339
+ * Magic ATT
340
+ */
341
+ magicPower;
342
+ /**
343
+ * Defense
344
+ */
345
+ armor;
346
+ /**
347
+ * Speed
348
+ */
349
+ speed;
350
+ /**
351
+ * Jump
352
+ */
353
+ jump;
354
+ constructor(obj) {
355
+ super();
356
+ const { str, dex, int, luk, max_hp, max_mp, attack_power, magic_power, armor, speed, jump, } = obj;
357
+ this.str = str;
358
+ this.dex = dex;
359
+ this.int = int;
360
+ this.luk = luk;
361
+ this.maxHp = max_hp;
362
+ this.maxMp = max_mp;
363
+ this.attackPower = attack_power;
364
+ this.magicPower = magic_power;
365
+ this.armor = armor;
366
+ this.speed = speed;
367
+ this.jump = jump;
368
+ }
369
+ }
370
+ /**
371
+ * Exceptional equipment option information
372
+ */
373
+ class CharacterItemEquipmentExceptionalOptionDto extends characterItemEquipment.CharacterItemEquipmentExceptionalOptionDto {
374
+ /**
375
+ * STR
376
+ */
377
+ str;
378
+ /**
379
+ * DEX
380
+ */
381
+ dex;
382
+ /**
383
+ * INT
384
+ */
385
+ int;
386
+ /**
387
+ * LUK
388
+ */
389
+ luk;
390
+ /**
391
+ * Max HP
392
+ */
393
+ maxHp;
394
+ /**
395
+ * Max MP
396
+ */
397
+ maxMp;
398
+ /**
399
+ * Attack Power
400
+ */
401
+ attackPower;
402
+ /**
403
+ * Magic ATT
404
+ */
405
+ magicPower;
406
+ /**
407
+ * Number of exceptional boost applications
408
+ */
409
+ exceptionalUpgrade;
410
+ constructor(obj) {
411
+ super();
412
+ const { str, dex, int, luk, max_hp, max_mp, attack_power, magic_power, exceptional_upgrade, } = obj;
413
+ this.str = str;
414
+ this.dex = dex;
415
+ this.int = int;
416
+ this.luk = luk;
417
+ this.maxHp = max_hp;
418
+ this.maxMp = max_mp;
419
+ this.attackPower = attack_power;
420
+ this.magicPower = magic_power;
421
+ this.exceptionalUpgrade = exceptional_upgrade ?? 0;
422
+ }
423
+ }
424
+ /**
425
+ * Equipment Star Force option information
426
+ */
427
+ class CharacterItemEquipmentStarforceOptionDto extends characterItemEquipment.CharacterItemEquipmentStarforceOptionDto {
428
+ /**
429
+ * STR
430
+ */
431
+ str;
432
+ /**
433
+ * DEX
434
+ */
435
+ dex;
436
+ /**
437
+ * INT
438
+ */
439
+ int;
440
+ /**
441
+ * LUK
442
+ */
443
+ luk;
444
+ /**
445
+ * Max HP
446
+ */
447
+ maxHp;
448
+ /**
449
+ * Max MP
450
+ */
451
+ maxMp;
452
+ /**
453
+ * Attack Power
454
+ */
455
+ attackPower;
456
+ /**
457
+ * Magic ATT
458
+ */
459
+ magicPower;
460
+ /**
461
+ * Defense
462
+ */
463
+ armor;
464
+ /**
465
+ * Speed
466
+ */
467
+ speed;
468
+ /**
469
+ * Jump
470
+ */
471
+ jump;
472
+ constructor(obj) {
473
+ super();
474
+ const { str, dex, int, luk, max_hp, max_mp, attack_power, magic_power, armor, speed, jump, } = obj;
475
+ this.str = str;
476
+ this.dex = dex;
477
+ this.int = int;
478
+ this.luk = luk;
479
+ this.maxHp = max_hp;
480
+ this.maxMp = max_mp;
481
+ this.attackPower = attack_power;
482
+ this.magicPower = magic_power;
483
+ this.armor = armor;
484
+ this.speed = speed;
485
+ this.jump = jump;
486
+ }
487
+ }
488
+ /**
489
+ * Final equipment option information
490
+ */
491
+ class CharacterItemEquipmentTotalOptionDto extends characterItemEquipment.CharacterItemEquipmentTotalOptionDto {
492
+ /**
493
+ * STR
494
+ */
495
+ str;
496
+ /**
497
+ * DEX
498
+ */
499
+ dex;
500
+ /**
501
+ * INT
502
+ */
503
+ int;
504
+ /**
505
+ * LUK
506
+ */
507
+ luk;
508
+ /**
509
+ * Max HP
510
+ */
511
+ maxHp;
512
+ /**
513
+ * Max MP
514
+ */
515
+ maxMp;
516
+ /**
517
+ * Attack Power
518
+ */
519
+ attackPower;
520
+ /**
521
+ * Magic ATT
522
+ */
523
+ magicPower;
524
+ /**
525
+ * Defense
526
+ */
527
+ armor;
528
+ /**
529
+ * Speed
530
+ */
531
+ speed;
532
+ /**
533
+ * Jump
534
+ */
535
+ jump;
536
+ /**
537
+ * Boss Damage (%)
538
+ */
539
+ bossDamage;
540
+ /**
541
+ * Ignore Enemy Defense (%)
542
+ */
543
+ ignoreMonsterArmor;
544
+ /**
545
+ * All Stats (%)
546
+ */
547
+ allStat;
548
+ /**
549
+ * Damage (%)
550
+ */
551
+ damage;
552
+ /**
553
+ * Equipment level decreases
554
+ */
555
+ equipmentLevelDecrease;
556
+ /**
557
+ * Max HP (%)
558
+ */
559
+ maxHpRate;
560
+ /**
561
+ * Max MP (%)
562
+ */
563
+ maxMpRate;
564
+ constructor(obj) {
565
+ super();
566
+ const { str, dex, int, luk, max_hp, max_mp, attack_power, magic_power, armor, speed, jump, boss_damage, ignore_monster_armor, all_stat, damage, equipment_level_decrease, max_hp_rate, max_mp_rate, } = obj;
567
+ this.str = str;
568
+ this.dex = dex;
569
+ this.int = int;
570
+ this.luk = luk;
571
+ this.maxHp = max_hp;
572
+ this.maxMp = max_mp;
573
+ this.attackPower = attack_power;
574
+ this.magicPower = magic_power;
575
+ this.armor = armor;
576
+ this.speed = speed;
577
+ this.jump = jump;
578
+ this.bossDamage = boss_damage;
579
+ this.ignoreMonsterArmor = ignore_monster_armor;
580
+ this.allStat = all_stat;
581
+ this.damage = damage;
582
+ this.equipmentLevelDecrease = equipment_level_decrease;
583
+ this.maxHpRate = max_hp_rate;
584
+ this.maxMpRate = max_mp_rate;
585
+ }
586
+ }
587
+ /**
588
+ * Evan Dragon equipment information
589
+ */
590
+ class CharacterItemEquipmentDragonInfoDto extends characterItemEquipment.CharacterItemEquipmentDragonInfoDto {
591
+ /**
592
+ * Equipment part name
593
+ */
594
+ itemEquipmentPart;
595
+ /**
596
+ * Equipment slot position
597
+ */
598
+ itemEquipmentSlot;
599
+ /**
600
+ * Equipment name
601
+ */
602
+ itemName;
603
+ /**
604
+ * Equipment icon
605
+ */
606
+ itemIcon;
607
+ /**
608
+ * Equipment description
609
+ */
610
+ itemDescription;
611
+ /**
612
+ * Equipment type
613
+ */
614
+ itemShapeName;
615
+ /**
616
+ * Equipment type icon
617
+ */
618
+ itemShapeIcon;
619
+ /**
620
+ * Gender-specific equipment
621
+ */
622
+ itemGender;
623
+ /**
624
+ * Final equipment option information
625
+ */
626
+ itemTotalOption;
627
+ /**
628
+ * Basic equipment option information
629
+ */
630
+ itemBaseOption;
631
+ /**
632
+ * Equipment level increases
633
+ */
634
+ equipmentLevelIncrease;
635
+ /**
636
+ * Exceptional equipment option information
637
+ */
638
+ itemExceptionalOption;
639
+ /**
640
+ * Additional equipment options
641
+ */
642
+ itemAddOption;
643
+ /**
644
+ * Growth EXP
645
+ */
646
+ growthExp;
647
+ /**
648
+ * Growth level
649
+ */
650
+ growthLevel;
651
+ /**
652
+ * Number of upgrades
653
+ */
654
+ scrollUpgrade;
655
+ /**
656
+ * Number of scissors usage available (Untradable, 255 for equipment without scissors usage count)
657
+ */
658
+ cuttableCount;
659
+ /**
660
+ * Golden Hammer refinement applied (true:applied, false:not applied)
661
+ */
662
+ goldenHammerFlag;
663
+ /**
664
+ * Number of restoration attempts available
665
+ */
666
+ scrollResilienceCount;
667
+ /**
668
+ * Number of upgrades available
669
+ */
670
+ scrollUpgradeableCount;
671
+ /**
672
+ * Soul name
673
+ */
674
+ soulName;
675
+ /**
676
+ * Soul option
677
+ */
678
+ soulOption;
679
+ /**
680
+ * Miscellaneous equipment option information
681
+ */
682
+ itemEtcOption;
683
+ /**
684
+ * Enhancement level
685
+ */
686
+ starforce;
687
+ /**
688
+ * Usage status of Miraculous Equip Enhancement Scroll (true:used, false:not used)
689
+ */
690
+ starforceScrollFlag;
691
+ /**
692
+ * Equipment Star Force option information
693
+ */
694
+ itemStarforceOption;
695
+ /**
696
+ * Special Skill Ring
697
+ */
698
+ specialRingLevel;
699
+ /**
700
+ * Equipment expiration date (SGT)
701
+ */
702
+ dateExpire = null;
703
+ /**
704
+ * Whether the equipment is expired
705
+ */
706
+ isExpired = null;
707
+ constructor(obj) {
708
+ super();
709
+ const { item_equipment_part, item_equipment_slot, item_name, item_icon, item_description, item_shape_name, item_shape_icon, item_gender, item_total_option, item_base_option, equipment_level_increase, item_exceptional_option, item_add_option, growth_exp, growth_level, scroll_upgrade, cuttable_count, golden_hammer_flag, scroll_resilience_count, scroll_upgradeable_count, soul_name, soul_option, item_etc_option, starforce, starforce_scroll_flag, item_starforce_option, special_ring_level, date_expire, } = obj;
710
+ this.itemEquipmentPart = item_equipment_part;
711
+ this.itemEquipmentSlot = item_equipment_slot;
712
+ this.itemName = item_name;
713
+ this.itemIcon = item_icon;
714
+ this.itemDescription = item_description;
715
+ this.itemShapeName = item_shape_name;
716
+ this.itemShapeIcon = item_shape_icon;
717
+ this.itemGender = item_gender;
718
+ this.itemTotalOption = new CharacterItemEquipmentTotalOptionDto(item_total_option);
719
+ this.itemBaseOption = new CharacterItemEquipmentBaseOptionDto(item_base_option);
720
+ this.equipmentLevelIncrease = equipment_level_increase;
721
+ this.itemExceptionalOption = new CharacterItemEquipmentExceptionalOptionDto(item_exceptional_option);
722
+ this.itemAddOption = new CharacterItemEquipmentAddOptionDto(item_add_option);
723
+ this.growthExp = growth_exp;
724
+ this.growthLevel = growth_level;
725
+ this.scrollUpgrade = scroll_upgrade;
726
+ this.cuttableCount = cuttable_count;
727
+ this.goldenHammerFlag = golden_hammer_flag;
728
+ this.scrollResilienceCount = scroll_resilience_count;
729
+ this.scrollUpgradeableCount = scroll_upgradeable_count;
730
+ this.soulName = soul_name;
731
+ this.soulOption = soul_option;
732
+ this.itemEtcOption = new CharacterItemEquipmentEtcOptionDto(item_etc_option);
733
+ this.starforce = starforce;
734
+ this.starforceScrollFlag = starforce_scroll_flag;
735
+ this.itemStarforceOption = new CharacterItemEquipmentStarforceOptionDto(item_starforce_option);
736
+ this.specialRingLevel = special_ring_level;
737
+ if (date_expire === 'expired') {
738
+ this.isExpired = true;
739
+ }
740
+ else if (typeof date_expire === 'string') {
741
+ this.dateExpire = date_expire ? new Date(date_expire) : null;
742
+ }
743
+ }
744
+ }
745
+ /**
746
+ * Mechanic equipment information
747
+ */
748
+ class CharacterItemEquipmentMechanicInfoDto extends characterItemEquipment.CharacterItemEquipmentMechanicInfoDto {
749
+ /**
750
+ * Equipment part name
751
+ */
752
+ itemEquipmentPart;
753
+ /**
754
+ * Equipment slot position
755
+ */
756
+ itemEquipmentSlot;
757
+ /**
758
+ * Equipment name
759
+ */
760
+ itemName;
761
+ /**
762
+ * Equipment icon
763
+ */
764
+ itemIcon;
765
+ /**
766
+ * Equipment description
767
+ */
768
+ itemDescription;
769
+ /**
770
+ * Equipment type
771
+ */
772
+ itemShapeName;
773
+ /**
774
+ * Equipment type icon
775
+ */
776
+ itemShapeIcon;
777
+ /**
778
+ * Gender-specific equipment
779
+ */
780
+ itemGender;
781
+ /**
782
+ * Final equipment option information
783
+ */
784
+ itemTotalOption;
785
+ /**
786
+ * Basic equipment option information
787
+ */
788
+ itemBaseOption;
789
+ /**
790
+ * Equipment level increases
791
+ */
792
+ equipmentLevelIncrease;
793
+ /**
794
+ * Exceptional equipment option information
795
+ */
796
+ itemExceptionalOption;
797
+ /**
798
+ * Additional equipment options
799
+ */
800
+ itemAddOption;
801
+ /**
802
+ * Growth EXP
803
+ */
804
+ growthExp;
805
+ /**
806
+ * Growth level
807
+ */
808
+ growthLevel;
809
+ /**
810
+ * Number of upgrades
811
+ */
812
+ scrollUpgrade;
813
+ /**
814
+ * Number of scissors usage available (Untradable, 255 for equipment without scissors usage count)
815
+ */
816
+ cuttableCount;
817
+ /**
818
+ * Golden Hammer refinement applied (true:applied, false:not applied)
819
+ */
820
+ goldenHammerFlag;
821
+ /**
822
+ * Number of restoration attempts available
823
+ */
824
+ scrollResilienceCount;
825
+ /**
826
+ * Number of upgrades available
827
+ */
828
+ scrollUpgradeableCount;
829
+ /**
830
+ * Soul name
831
+ */
832
+ soulName;
833
+ /**
834
+ * Soul option
835
+ */
836
+ soulOption;
837
+ /**
838
+ * Miscellaneous equipment option information
839
+ */
840
+ itemEtcOption;
841
+ /**
842
+ * Enhancement level
843
+ */
844
+ starforce;
845
+ /**
846
+ * Usage status of Miraculous Equip Enhancement Scroll (true:used, false:not used)
847
+ */
848
+ starforceScrollFlag;
849
+ /**
850
+ * Equipment Star Force option information
851
+ */
852
+ itemStarforceOption;
853
+ /**
854
+ * Special Skill Ring
855
+ */
856
+ specialRingLevel;
857
+ /**
858
+ * Equipment expiration date (SGT)
859
+ */
860
+ dateExpire = null;
861
+ /**
862
+ * Whether the equipment is expired
863
+ */
864
+ isExpired = null;
865
+ constructor(obj) {
866
+ super();
867
+ const { item_equipment_part, item_equipment_slot, item_name, item_icon, item_description, item_shape_name, item_shape_icon, item_gender, item_total_option, item_base_option, equipment_level_increase, item_exceptional_option, item_add_option, growth_exp, growth_level, scroll_upgrade, cuttable_count, golden_hammer_flag, scroll_resilience_count, scroll_upgradeable_count, soul_name, soul_option, item_etc_option, starforce, starforce_scroll_flag, item_starforce_option, special_ring_level, date_expire, } = obj;
868
+ this.itemEquipmentPart = item_equipment_part;
869
+ this.itemEquipmentSlot = item_equipment_slot;
870
+ this.itemName = item_name;
871
+ this.itemIcon = item_icon;
872
+ this.itemDescription = item_description;
873
+ this.itemShapeName = item_shape_name;
874
+ this.itemShapeIcon = item_shape_icon;
875
+ this.itemGender = item_gender;
876
+ this.itemTotalOption = new CharacterItemEquipmentTotalOptionDto(item_total_option);
877
+ this.itemBaseOption = new CharacterItemEquipmentBaseOptionDto(item_base_option);
878
+ this.equipmentLevelIncrease = equipment_level_increase;
879
+ this.itemExceptionalOption = new CharacterItemEquipmentExceptionalOptionDto(item_exceptional_option);
880
+ this.itemAddOption = new CharacterItemEquipmentAddOptionDto(item_add_option);
881
+ this.growthExp = growth_exp;
882
+ this.growthLevel = growth_level;
883
+ this.scrollUpgrade = scroll_upgrade;
884
+ this.cuttableCount = cuttable_count;
885
+ this.goldenHammerFlag = golden_hammer_flag;
886
+ this.scrollResilienceCount = scroll_resilience_count;
887
+ this.scrollUpgradeableCount = scroll_upgradeable_count;
888
+ this.soulName = soul_name;
889
+ this.soulOption = soul_option;
890
+ this.itemEtcOption = new CharacterItemEquipmentEtcOptionDto(item_etc_option);
891
+ this.starforce = starforce;
892
+ this.starforceScrollFlag = starforce_scroll_flag;
893
+ this.itemStarforceOption = new CharacterItemEquipmentStarforceOptionDto(item_starforce_option);
894
+ this.specialRingLevel = special_ring_level;
895
+ if (date_expire === 'expired') {
896
+ this.isExpired = true;
897
+ }
898
+ else if (typeof date_expire === 'string') {
899
+ this.dateExpire = date_expire ? new Date(date_expire) : null;
900
+ }
901
+ }
902
+ }
903
+ /**
904
+ * Equipment information
905
+ */
906
+ class CharacterItemEquipmentInfoDto extends characterItemEquipment.CharacterItemEquipmentInfoDto {
907
+ /**
908
+ * Equipment part name
909
+ */
910
+ itemEquipmentPart;
911
+ /**
912
+ * Equipment slot position
913
+ */
914
+ itemEquipmentSlot;
915
+ /**
916
+ * Equipment name
917
+ */
918
+ itemName;
919
+ /**
920
+ * Equipment icon
921
+ */
922
+ itemIcon;
923
+ /**
924
+ * Equipment description
925
+ */
926
+ itemDescription;
927
+ /**
928
+ * Equipment type
929
+ */
930
+ itemShapeName;
931
+ /**
932
+ * Equipment type icon
933
+ */
934
+ itemShapeIcon;
935
+ /**
936
+ * Gender-specific equipment
937
+ */
938
+ itemGender;
939
+ /**
940
+ * Final equipment option information
941
+ */
942
+ itemTotalOption;
943
+ /**
944
+ * Basic equipment option information
945
+ */
946
+ itemBaseOption;
947
+ /**
948
+ * Potential grade
949
+ */
950
+ potentialOptionGrade;
951
+ /**
952
+ * Additional potential grade
953
+ */
954
+ additionalPotentialOptionGrade;
955
+ /**
956
+ * First Potential option
957
+ */
958
+ potentialOption1;
959
+ /**
960
+ * Second Potential option
961
+ */
962
+ potentialOption2;
963
+ /**
964
+ * Third Potential option
965
+ */
966
+ potentialOption3;
967
+ /**
968
+ * First additional Potential option
969
+ */
970
+ additionalPotentialOption1;
971
+ /**
972
+ * Second additional Potential option
973
+ */
974
+ additionalPotentialOption2;
975
+ /**
976
+ * Third additional Potential option
977
+ */
978
+ additionalPotentialOption3;
979
+ /**
980
+ * Equipment level increase
981
+ */
982
+ equipmentLevelIncrease;
983
+ /**
984
+ * Exceptional equipment option information
985
+ */
986
+ itemExceptionalOption;
987
+ /**
988
+ * Additional equipment options
989
+ */
990
+ itemAddOption;
991
+ /**
992
+ * Growth EXP
993
+ */
994
+ growthExp;
995
+ /**
996
+ * Growth level
997
+ */
998
+ growthLevel;
999
+ /**
1000
+ * Number of upgrade attempts
1001
+ */
1002
+ scrollUpgrade;
1003
+ /**
1004
+ * Number of scissors usage available (Untradable, 255 for equipment without scissors usage count)
1005
+ */
1006
+ cuttableCount;
1007
+ /**
1008
+ * Golden Hammer refinement applied (true:applied, false:not applied)
1009
+ */
1010
+ goldenHammerFlag;
1011
+ /**
1012
+ * Number of restoration attempts available
1013
+ */
1014
+ scrollResilienceCount;
1015
+ /**
1016
+ * Number of upgrades available
1017
+ */
1018
+ scrollUpgradeableCount;
1019
+ /**
1020
+ * Soul name
1021
+ */
1022
+ soulName;
1023
+ /**
1024
+ * Soul option
1025
+ */
1026
+ soulOption;
1027
+ /**
1028
+ * Miscellaneous equipment option information
1029
+ */
1030
+ itemEtcOption;
1031
+ /**
1032
+ * Enhancement level
1033
+ */
1034
+ starforce;
1035
+ /**
1036
+ * Usage status of Miraculous Equip Enhancement Scroll (true:used, false:not used)
1037
+ */
1038
+ starforceScrollFlag;
1039
+ /**
1040
+ * Equipment Star Force option information
1041
+ */
1042
+ itemStarforceOption;
1043
+ /**
1044
+ * Special Skill Ring
1045
+ */
1046
+ specialRingLevel;
1047
+ /**
1048
+ * Equipment expiration date (SGT)
1049
+ */
1050
+ dateExpire = null;
1051
+ /**
1052
+ * Whether the equipment is expired
1053
+ */
1054
+ isExpired = null;
1055
+ constructor(obj) {
1056
+ super();
1057
+ const { item_equipment_part, item_equipment_slot, item_name, item_icon, item_description, item_shape_name, item_shape_icon, item_gender, item_total_option, item_base_option, potential_option_grade, additional_potential_option_grade, potential_option_1, potential_option_2, potential_option_3, additional_potential_option_1, additional_potential_option_2, additional_potential_option_3, equipment_level_increase, item_exceptional_option, item_add_option, growth_exp, growth_level, scroll_upgrade, cuttable_count, golden_hammer_flag, scroll_resilience_count, scroll_upgradeable_count, soul_name, soul_option, item_etc_option, starforce, starforce_scroll_flag, item_starforce_option, special_ring_level, date_expire, } = obj;
1058
+ this.itemEquipmentPart = item_equipment_part;
1059
+ this.itemEquipmentSlot = item_equipment_slot;
1060
+ this.itemName = item_name;
1061
+ this.itemIcon = item_icon;
1062
+ this.itemDescription = item_description;
1063
+ this.itemShapeName = item_shape_name;
1064
+ this.itemShapeIcon = item_shape_icon;
1065
+ this.itemGender = item_gender;
1066
+ this.itemTotalOption = new CharacterItemEquipmentTotalOptionDto(item_total_option);
1067
+ this.itemBaseOption = new CharacterItemEquipmentBaseOptionDto(item_base_option);
1068
+ this.potentialOptionGrade = potential_option_grade;
1069
+ this.additionalPotentialOptionGrade = additional_potential_option_grade;
1070
+ this.potentialOption1 = potential_option_1;
1071
+ this.potentialOption2 = potential_option_2;
1072
+ this.potentialOption3 = potential_option_3;
1073
+ this.additionalPotentialOption1 = additional_potential_option_1;
1074
+ this.additionalPotentialOption2 = additional_potential_option_2;
1075
+ this.additionalPotentialOption3 = additional_potential_option_3;
1076
+ this.equipmentLevelIncrease = equipment_level_increase;
1077
+ this.itemExceptionalOption = new CharacterItemEquipmentExceptionalOptionDto(item_exceptional_option);
1078
+ this.itemAddOption = new CharacterItemEquipmentAddOptionDto(item_add_option);
1079
+ this.growthExp = growth_exp;
1080
+ this.growthLevel = growth_level;
1081
+ this.scrollUpgrade = scroll_upgrade;
1082
+ this.cuttableCount = cuttable_count;
1083
+ this.goldenHammerFlag = golden_hammer_flag;
1084
+ this.scrollResilienceCount = scroll_resilience_count;
1085
+ this.scrollUpgradeableCount = scroll_upgradeable_count;
1086
+ this.soulName = soul_name;
1087
+ this.soulOption = soul_option;
1088
+ this.itemEtcOption = new CharacterItemEquipmentEtcOptionDto(item_etc_option);
1089
+ this.starforce = starforce;
1090
+ this.starforceScrollFlag = starforce_scroll_flag;
1091
+ this.itemStarforceOption = new CharacterItemEquipmentStarforceOptionDto(item_starforce_option);
1092
+ this.specialRingLevel = special_ring_level;
1093
+ if (date_expire === 'expired') {
1094
+ this.isExpired = true;
1095
+ }
1096
+ else if (typeof date_expire === 'string') {
1097
+ this.dateExpire = date_expire ? new Date(date_expire) : null;
1098
+ }
1099
+ }
1100
+ }
1101
+
1102
+ exports.CharacterItemEquipmentAddOptionDto = CharacterItemEquipmentAddOptionDto;
1103
+ exports.CharacterItemEquipmentBaseOptionDto = CharacterItemEquipmentBaseOptionDto;
1104
+ exports.CharacterItemEquipmentDragonInfoDto = CharacterItemEquipmentDragonInfoDto;
1105
+ exports.CharacterItemEquipmentDto = CharacterItemEquipmentDto;
1106
+ exports.CharacterItemEquipmentEtcOptionDto = CharacterItemEquipmentEtcOptionDto;
1107
+ exports.CharacterItemEquipmentExceptionalOptionDto = CharacterItemEquipmentExceptionalOptionDto;
1108
+ exports.CharacterItemEquipmentInfoDto = CharacterItemEquipmentInfoDto;
1109
+ exports.CharacterItemEquipmentMechanicInfoDto = CharacterItemEquipmentMechanicInfoDto;
1110
+ exports.CharacterItemEquipmentStarforceOptionDto = CharacterItemEquipmentStarforceOptionDto;
1111
+ exports.CharacterItemEquipmentTitleDto = CharacterItemEquipmentTitleDto;
1112
+ exports.CharacterItemEquipmentTotalOptionDto = CharacterItemEquipmentTotalOptionDto;