maplestory-openapi 3.9.0 → 3.10.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 (24) hide show
  1. package/README.md +1 -0
  2. package/dist/cjs/maplestory/api/kms/dto/battlePractice/battlePracticeCharacterInfo.js +2370 -0
  3. package/dist/cjs/maplestory/api/kms/dto/battlePractice/battlePracticeReplayId.js +41 -0
  4. package/dist/cjs/maplestory/api/kms/dto/battlePractice/battlePracticeResult.js +101 -0
  5. package/dist/cjs/maplestory/api/kms/dto/battlePractice/battlePracticeSkillTimeline.js +61 -0
  6. package/dist/cjs/maplestory/api/kms/kms.js +66 -0
  7. package/dist/cjs/maplestory/api/kms/mapleStoryApi.js +80 -0
  8. package/dist/esm/maplestory/api/kms/dto/battlePractice/battlePracticeCharacterInfo.js +2311 -0
  9. package/dist/esm/maplestory/api/kms/dto/battlePractice/battlePracticeReplayId.js +36 -0
  10. package/dist/esm/maplestory/api/kms/dto/battlePractice/battlePracticeResult.js +96 -0
  11. package/dist/esm/maplestory/api/kms/dto/battlePractice/battlePracticeSkillTimeline.js +56 -0
  12. package/dist/esm/maplestory/api/kms/kms.js +4 -0
  13. package/dist/esm/maplestory/api/kms/mapleStoryApi.js +80 -0
  14. package/package.json +4 -3
  15. package/types/maplestory/api/kms/dto/battlePractice/battlePracticeCharacterInfo.d.ts +1817 -0
  16. package/types/maplestory/api/kms/dto/battlePractice/battlePracticeReplayId.d.ts +29 -0
  17. package/types/maplestory/api/kms/dto/battlePractice/battlePracticeResult.d.ts +77 -0
  18. package/types/maplestory/api/kms/dto/battlePractice/battlePracticeSkillTimeline.d.ts +45 -0
  19. package/types/maplestory/api/kms/index.d.ts +4 -0
  20. package/types/maplestory/api/kms/mapleStoryApi.d.ts +41 -0
  21. package/types/maplestory/api/kms/response/battlePractice/battlePracticeCharacterInfoBody.d.ts +482 -0
  22. package/types/maplestory/api/kms/response/battlePractice/battlePracticeReplayIdBody.d.ts +8 -0
  23. package/types/maplestory/api/kms/response/battlePractice/battlePracticeResultBody.d.ts +20 -0
  24. package/types/maplestory/api/kms/response/battlePractice/battlePracticeSkillTimelineBody.d.ts +12 -0
package/README.md CHANGED
@@ -103,6 +103,7 @@ 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)
107
108
  - [Ranking Information Retrieval](https://github.com/SpiralMoon/maplestory.openapi/blob/master/js/test/kms/rankingApi.test.ts)
108
109
  - [Notice Information Retrieval](https://github.com/SpiralMoon/maplestory.openapi/blob/master/js/test/kms/noticeApi.test.ts)