maplestory-openapi 3.9.0 → 3.11.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 (77) hide show
  1. package/README.md +2 -0
  2. package/dist/cjs/_virtual/index.js_commonjs-exports2.js +2 -2
  3. package/dist/cjs/_virtual/index.js_commonjs-exports3.js +2 -2
  4. package/dist/cjs/maplestory/api/kms/dto/battlePractice/battlePracticeCharacterInfo.js +2566 -0
  5. package/dist/cjs/maplestory/api/kms/dto/battlePractice/battlePracticeReplayId.js +41 -0
  6. package/dist/cjs/maplestory/api/kms/dto/battlePractice/battlePracticeResult.js +101 -0
  7. package/dist/cjs/maplestory/api/kms/dto/battlePractice/battlePracticeSkillTimeline.js +61 -0
  8. package/dist/cjs/maplestory/api/kms/dto/character/characterHexaMatrix.js +6 -1
  9. package/dist/cjs/maplestory/api/kms/dto/character/characterItemEquipment.js +92 -1
  10. package/dist/cjs/maplestory/api/kms/dto/character/characterPetEquipment.js +223 -1
  11. package/dist/cjs/maplestory/api/kms/dto/character/characterVMatrix.js +50 -1
  12. package/dist/cjs/maplestory/api/kms/dto/scheduler/schedulerCharacterState.js +177 -0
  13. package/dist/cjs/maplestory/api/kms/dto/union/unionRaider.js +35 -1
  14. package/dist/cjs/maplestory/api/kms/kms.js +76 -0
  15. package/dist/cjs/maplestory/api/kms/mapleStoryApi.js +118 -14
  16. package/dist/cjs/maplestory/api/kms/mapleStoryFriendsApi.js +1 -1
  17. package/dist/cjs/maplestory/api/msea/mapleStoryApi.js +1 -1
  18. package/dist/cjs/maplestory/api/tms/dto/character/characterFamiliar.js +156 -0
  19. package/dist/cjs/maplestory/api/tms/dto/character/characterPetEquipment.js +45 -1
  20. package/dist/cjs/maplestory/api/tms/mapleStoryApi.js +33 -1
  21. package/dist/cjs/maplestory/api/tms/tms.js +6 -0
  22. package/dist/cjs/node_modules/base64-js/index.js +1 -1
  23. package/dist/cjs/node_modules/buffer/index.js +2 -2
  24. package/dist/cjs/node_modules/ieee754/index.js +1 -1
  25. package/dist/esm/_virtual/index.js_commonjs-exports2.js +2 -2
  26. package/dist/esm/_virtual/index.js_commonjs-exports3.js +2 -2
  27. package/dist/esm/maplestory/api/kms/dto/battlePractice/battlePracticeCharacterInfo.js +2506 -0
  28. package/dist/esm/maplestory/api/kms/dto/battlePractice/battlePracticeReplayId.js +36 -0
  29. package/dist/esm/maplestory/api/kms/dto/battlePractice/battlePracticeResult.js +96 -0
  30. package/dist/esm/maplestory/api/kms/dto/battlePractice/battlePracticeSkillTimeline.js +56 -0
  31. package/dist/esm/maplestory/api/kms/dto/character/characterHexaMatrix.js +6 -1
  32. package/dist/esm/maplestory/api/kms/dto/character/characterItemEquipment.js +92 -2
  33. package/dist/esm/maplestory/api/kms/dto/character/characterPetEquipment.js +223 -2
  34. package/dist/esm/maplestory/api/kms/dto/character/characterVMatrix.js +50 -2
  35. package/dist/esm/maplestory/api/kms/dto/scheduler/schedulerCharacterState.js +170 -0
  36. package/dist/esm/maplestory/api/kms/dto/union/unionRaider.js +35 -2
  37. package/dist/esm/maplestory/api/kms/kms.js +9 -4
  38. package/dist/esm/maplestory/api/kms/mapleStoryApi.js +118 -14
  39. package/dist/esm/maplestory/api/kms/mapleStoryFriendsApi.js +1 -1
  40. package/dist/esm/maplestory/api/msea/mapleStoryApi.js +1 -1
  41. package/dist/esm/maplestory/api/tms/dto/character/characterFamiliar.js +149 -0
  42. package/dist/esm/maplestory/api/tms/dto/character/characterPetEquipment.js +45 -2
  43. package/dist/esm/maplestory/api/tms/mapleStoryApi.js +33 -1
  44. package/dist/esm/maplestory/api/tms/tms.js +2 -1
  45. package/dist/esm/node_modules/base64-js/index.js +2 -2
  46. package/dist/esm/node_modules/buffer/index.js +2 -2
  47. package/dist/esm/node_modules/ieee754/index.js +2 -2
  48. package/package.json +6 -5
  49. package/types/maplestory/api/kms/dto/battlePractice/battlePracticeCharacterInfo.d.ts +1959 -0
  50. package/types/maplestory/api/kms/dto/battlePractice/battlePracticeReplayId.d.ts +29 -0
  51. package/types/maplestory/api/kms/dto/battlePractice/battlePracticeResult.d.ts +77 -0
  52. package/types/maplestory/api/kms/dto/battlePractice/battlePracticeSkillTimeline.d.ts +45 -0
  53. package/types/maplestory/api/kms/dto/character/characterHexaMatrix.d.ts +4 -0
  54. package/types/maplestory/api/kms/dto/character/characterItemEquipment.d.ts +63 -1
  55. package/types/maplestory/api/kms/dto/character/characterPetEquipment.d.ts +163 -1
  56. package/types/maplestory/api/kms/dto/character/characterVMatrix.d.ts +39 -1
  57. package/types/maplestory/api/kms/dto/scheduler/schedulerCharacterState.d.ts +137 -0
  58. package/types/maplestory/api/kms/dto/union/unionRaider.d.ts +27 -1
  59. package/types/maplestory/api/kms/index.d.ts +5 -0
  60. package/types/maplestory/api/kms/mapleStoryApi.d.ts +57 -8
  61. package/types/maplestory/api/kms/mapleStoryFriendsApi.d.ts +2 -2
  62. package/types/maplestory/api/kms/response/battlePractice/battlePracticeCharacterInfoBody.d.ts +518 -0
  63. package/types/maplestory/api/kms/response/battlePractice/battlePracticeReplayIdBody.d.ts +8 -0
  64. package/types/maplestory/api/kms/response/battlePractice/battlePracticeResultBody.d.ts +20 -0
  65. package/types/maplestory/api/kms/response/battlePractice/battlePracticeSkillTimelineBody.d.ts +12 -0
  66. package/types/maplestory/api/kms/response/character/characterHexaMatrixBody.d.ts +1 -0
  67. package/types/maplestory/api/kms/response/character/characterItemEquipmentBody.d.ts +15 -0
  68. package/types/maplestory/api/kms/response/character/characterPetEquipmentBody.d.ts +41 -0
  69. package/types/maplestory/api/kms/response/character/characterVMatrixBody.d.ts +11 -1
  70. package/types/maplestory/api/kms/response/scheduler/schedulerCharacterStateBody.d.ts +36 -0
  71. package/types/maplestory/api/kms/response/union/unionRaiderBody.d.ts +7 -0
  72. package/types/maplestory/api/tms/dto/character/characterFamiliar.d.ts +117 -0
  73. package/types/maplestory/api/tms/dto/character/characterPetEquipment.d.ts +35 -1
  74. package/types/maplestory/api/tms/index.d.ts +1 -0
  75. package/types/maplestory/api/tms/mapleStoryApi.d.ts +12 -0
  76. package/types/maplestory/api/tms/response/character/characterFamiliarBody.d.ts +31 -0
  77. package/types/maplestory/api/tms/response/character/characterPetEquipmentBody.d.ts +9 -0
package/README.md CHANGED
@@ -103,7 +103,9 @@ You can find more examples in the test cases at the following link.
103
103
  - [Character Information Retrieval](https://github.com/SpiralMoon/maplestory.openapi/blob/master/js/test/kms/characterApi.test.ts)
104
104
  - [Union Information Retrieval](https://github.com/SpiralMoon/maplestory.openapi/blob/master/js/test/kms/unionApi.test.ts)
105
105
  - [Guild Information Retrieval](https://github.com/SpiralMoon/maplestory.openapi/blob/master/js/test/kms/guildApi.test.ts)
106
+ - [Battle Practice Information Retrieval](https://github.com/SpiralMoon/maplestory.openapi/blob/master/js/test/kms/battlePracticeApi.test.ts)
106
107
  - [History Information Retrieval](https://github.com/SpiralMoon/maplestory.openapi/blob/master/js/test/kms/historyApi.test.ts)
108
+ - [Scheduler Information Retrieval](https://github.com/SpiralMoon/maplestory.openapi/blob/master/js/test/kms/schedulerApi.test.ts)
107
109
  - [Ranking Information Retrieval](https://github.com/SpiralMoon/maplestory.openapi/blob/master/js/test/kms/rankingApi.test.ts)
108
110
  - [Notice Information Retrieval](https://github.com/SpiralMoon/maplestory.openapi/blob/master/js/test/kms/noticeApi.test.ts)
109
111
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var ieee754 = {};
5
+ var base64Js = {};
6
6
 
7
- exports.__exports = ieee754;
7
+ exports.__exports = base64Js;
@@ -2,6 +2,6 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var base64Js = {};
5
+ var ieee754 = {};
6
6
 
7
- exports.__exports = base64Js;
7
+ exports.__exports = ieee754;