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
@@ -1,3 +1,7 @@
1
+ import { BattlePracticeCharacterInfoDto } from './dto/battlePractice/battlePracticeCharacterInfo';
2
+ import { BattlePracticeReplayIdDto } from './dto/battlePractice/battlePracticeReplayId';
3
+ import { BattlePracticeResultDto } from './dto/battlePractice/battlePracticeResult';
4
+ import { BattlePracticeSkillTimelineDto } from './dto/battlePractice/battlePracticeSkillTimeline';
1
5
  import { CharacterDto } from './dto/character/character';
2
6
  import { CharacterAbilityDto } from './dto/character/characterAbility';
3
7
  import { CharacterAndroidEquipmentDto } from './dto/character/characterAndroidEquipment';
@@ -28,6 +32,8 @@ import { CubeHistoryResponseDto } from './dto/history/cubeHistory';
28
32
  import { PotentialHistoryResponseDto } from './dto/history/potentialHistory';
29
33
  import { StarforceHistoryResponseDto } from './dto/history/starforceHistory';
30
34
  import { InspectionInfoDto } from './dto/inspectionInfo';
35
+ import { DateOptions } from '../common/mapleStoryApi';
36
+ import * as base from '../common/mapleStoryApi';
31
37
  import { CashshopNoticeDetailDto } from './dto/notice/cashshopNoticeDetail';
32
38
  import { CashshopNoticeListDto } from './dto/notice/cashshopNoticeList';
33
39
  import { EventNoticeDetailDto } from './dto/notice/eventNoticeDetail';
@@ -42,6 +48,7 @@ import { GuildRankingResponseDto } from './dto/ranking/guildRanking';
42
48
  import { OverallRankingResponseDto } from './dto/ranking/overallRanking';
43
49
  import { TheSeedRankingResponseDto } from './dto/ranking/theSeedRanking';
44
50
  import { UnionRankingResponseDto } from './dto/ranking/unionRanking';
51
+ import { SchedulerCharacterStateDto } from './dto/scheduler/schedulerCharacterState';
45
52
  import { UnionDto } from './dto/union/union';
46
53
  import { UnionArtifactDto } from './dto/union/unionArtifact';
47
54
  import { UnionChampionDto } from './dto/union/unionChampion';
@@ -49,8 +56,6 @@ import { UnionRaiderDto } from './dto/union/unionRaider';
49
56
  import { AchievementDto } from './dto/user/achievement';
50
57
  import { CharacterListDto } from './dto/user/characterList';
51
58
  import { CharacterImageAction, CharacterImageEmotion, CharacterImageWeaponMotion } from '../common/enum/characterImage';
52
- import { DateOptions } from '../common/mapleStoryApi';
53
- import * as base from '../common/mapleStoryApi';
54
59
  /**
55
60
  * MapleStory OpenAPI client for KMS.<br>
56
61
  * This is an implementation of <a href="https://openapi.nexon.com/game/maplestory">MapleStory API</a>
@@ -438,6 +443,50 @@ export declare class MapleStoryApi extends base.MapleStoryApi {
438
443
  * @param dateOptions 조회 기준일 (KST)
439
444
  */
440
445
  getGuildBasic(guildId: string, dateOptions?: DateOptions): Promise<GuildBasicDto | null>;
446
+ /**
447
+ * 캐릭터의 연무장 리플레이 식별자를 조회합니다. 리플레이를 등록한 캐릭터에 대해서만 조회가 가능합니다.
448
+ * - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
449
+ * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
450
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
451
+ *
452
+ * @param ocid 캐릭터 식별자
453
+ */
454
+ getBattlePracticeReplayId(ocid: string): Promise<BattlePracticeReplayIdDto>;
455
+ /**
456
+ * 연무장 측정 결과 정보를 조회합니다.
457
+ * - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
458
+ * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
459
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
460
+ *
461
+ * @param replayId 연무장 리플레이 고유 식별자
462
+ */
463
+ getBattlePracticeResult(replayId: string): Promise<BattlePracticeResultDto>;
464
+ /**
465
+ * 연무장 진행 간 스킬 사용 내역을 조회합니다.
466
+ * - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
467
+ * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
468
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
469
+ *
470
+ * @param replayId 연무장 리플레이 고유 식별자
471
+ * @param pageNo 페이지 번호 (미입력 시 1페이지 조회)
472
+ */
473
+ getBattlePracticeSkillTimeline(replayId: string, pageNo?: number): Promise<BattlePracticeSkillTimelineDto>;
474
+ /**
475
+ * 연무장 입장 시의 캐릭터 능력치 관련 정보를 조회합니다.
476
+ * - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
477
+ * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
478
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
479
+ *
480
+ * @param replayId 연무장 리플레이 고유 식별자
481
+ */
482
+ getBattlePracticeCharacterInfo(replayId: string): Promise<BattlePracticeCharacterInfoDto>;
483
+ /**
484
+ * 캐릭터에 대한 스케줄러의 수행 현황 정보를 조회하는 API입니다.
485
+ *
486
+ * @param ocid 캐릭터 식별자
487
+ * @param dateOptions 조회 기준일 (KST)
488
+ */
489
+ getSchedulerCharacterState(ocid: string, dateOptions?: DateOptions): Promise<SchedulerCharacterStateDto | null>;
441
490
  /**
442
491
  * 스타포스 강화 결과를 조회합니다.
443
492
  * - 스타포스 확률 정보는 최대 5분 후 확인 가능합니다.
@@ -519,7 +568,7 @@ export declare class MapleStoryApi extends base.MapleStoryApi {
519
568
  /**
520
569
  * 종합 랭킹 정보를 조회합니다.
521
570
  * - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
522
- * - 오늘의 랭킹 정보는 오전 9시 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
571
+ * - 오늘의 랭킹 정보는 오전 9시 30분 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
523
572
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
524
573
  * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
525
574
  *
@@ -531,7 +580,7 @@ export declare class MapleStoryApi extends base.MapleStoryApi {
531
580
  /**
532
581
  * 유니온 랭킹 정보를 조회합니다.
533
582
  * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
534
- * - 오늘의 랭킹 정보는 오전 9시 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
583
+ * - 오늘의 랭킹 정보는 오전 9시 30분 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
535
584
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
536
585
  * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
537
586
  *
@@ -542,7 +591,7 @@ export declare class MapleStoryApi extends base.MapleStoryApi {
542
591
  /**
543
592
  * 길드 랭킹 정보를 조회합니다.
544
593
  * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
545
- * - 오늘의 랭킹 정보는 오전 9시 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
594
+ * - 오늘의 랭킹 정보는 오전 9시 30분 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
546
595
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
547
596
  * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
548
597
  *
@@ -553,7 +602,7 @@ export declare class MapleStoryApi extends base.MapleStoryApi {
553
602
  /**
554
603
  * 무릉도장 랭킹 정보를 조회합니다.
555
604
  * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
556
- * - 오늘의 랭킹 정보는 오전 9시 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
605
+ * - 오늘의 랭킹 정보는 오전 9시 30분 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
557
606
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
558
607
  * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
559
608
  *
@@ -564,7 +613,7 @@ export declare class MapleStoryApi extends base.MapleStoryApi {
564
613
  /**
565
614
  * 더 시드 랭킹 정보를 조회합니다.
566
615
  * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
567
- * - 오늘의 랭킹 정보는 오전 9시 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
616
+ * - 오늘의 랭킹 정보는 오전 9시 30분 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
568
617
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
569
618
  * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
570
619
  *
@@ -575,7 +624,7 @@ export declare class MapleStoryApi extends base.MapleStoryApi {
575
624
  /**
576
625
  * 업적 랭킹 정보를 조회합니다.
577
626
  * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
578
- * - 오늘의 랭킹 정보는 오전 9시 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
627
+ * - 오늘의 랭킹 정보는 오전 9시 30분 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
579
628
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
580
629
  * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
581
630
  *
@@ -1,10 +1,10 @@
1
+ import { DateOptions } from '../common/mapleStoryFriendsApi';
2
+ import * as base from '../common/mapleStoryFriendsApi';
1
3
  import { CubeHistoryResponseDto } from './dto/history/cubeHistory';
2
4
  import { PotentialHistoryResponseDto } from './dto/history/potentialHistory';
3
5
  import { StarforceHistoryResponseDto } from './dto/history/starforceHistory';
4
6
  import { AchievementDto } from './dto/user/achievement';
5
7
  import { CharacterListDto } from './dto/user/characterList';
6
- import { DateOptions } from '../common/mapleStoryFriendsApi';
7
- import * as base from '../common/mapleStoryFriendsApi';
8
8
  /**
9
9
  * MapleStory Friends API client for KMS<br>
10
10
  * This is an implementation of <a href="https://openapi.nexon.com/ko/friends/maplestory/?id=36">MapleStory Friends API</a>
@@ -0,0 +1,518 @@
1
+ export type BattlePracticeCharacterInfoBody = {
2
+ basic_object: BattlePracticeCharacterBasicBody | null;
3
+ stat_object: BattlePracticeCharacterStatBody | null;
4
+ hyper_stat_object: BattlePracticeCharacterHyperStatObjectBody | null;
5
+ propensity_object: BattlePracticeCharacterPropensityBody | null;
6
+ ability_object: BattlePracticeCharacterAbilityObjectBody | null;
7
+ item_object: BattlePracticeCharacterItemObjectBody | null;
8
+ cash_item_object: BattlePracticeCharacterCashItemObjectBody | null;
9
+ pet_object: BattlePracticeCharacterPetObjectBody | null;
10
+ skill_object: BattlePracticeCharacterSkillObjectBody | null;
11
+ link_skill_object: BattlePracticeCharacterLinkSkillObjectBody | null;
12
+ v_matrix_object: BattlePracticeCharacterVMatrixObjectBody | null;
13
+ hexa_matrix_object: BattlePracticeCharacterHexaMatrixObjectBody | null;
14
+ ring_reserve_skill_object: BattlePracticeCharacterRingReserveSkillObjectBody | null;
15
+ union_raider_object: BattlePracticeUnionRaiderObjectBody | null;
16
+ union_artifact_object: BattlePracticeUnionArtifactObjectBody | null;
17
+ union_champion_object: BattlePracticeUnionChampionObjectBody | null;
18
+ guild_object: BattlePracticeGuildObjectBody | null;
19
+ };
20
+ export type BattlePracticeCharacterBasicBody = {
21
+ character_name: string;
22
+ character_level: number;
23
+ character_class: string;
24
+ character_class_level: string;
25
+ character_image: string;
26
+ };
27
+ export type BattlePracticeCharacterStatBody = {
28
+ basic_stat_object: BattlePracticeCharacterBasicStatBody;
29
+ symbol_stat_object: BattlePracticeCharacterSymbolStatBody;
30
+ other_stat_object: BattlePracticeCharacterOtherStatBody;
31
+ };
32
+ export type BattlePracticeCharacterBasicStatBody = {
33
+ final_stat: BattlePracticeCharacterFinalStatBody[];
34
+ };
35
+ export type BattlePracticeCharacterFinalStatBody = {
36
+ stat_name: string;
37
+ stat_value: string;
38
+ };
39
+ export type BattlePracticeCharacterSymbolStatBody = {
40
+ symbol: BattlePracticeCharacterSymbolBody[];
41
+ };
42
+ export type BattlePracticeCharacterSymbolBody = {
43
+ symbol_name: string;
44
+ symbol_icon: string;
45
+ symbol_description: string;
46
+ symbol_other_effect_description: string | null;
47
+ symbol_force: string;
48
+ symbol_level: number;
49
+ symbol_str: string;
50
+ symbol_dex: string;
51
+ symbol_int: string;
52
+ symbol_luk: string;
53
+ symbol_hp: string;
54
+ symbol_drop_rate: string;
55
+ symbol_meso_rate: string;
56
+ symbol_exp_rate: string;
57
+ symbol_growth_count: number;
58
+ symbol_require_growth_count: number;
59
+ };
60
+ export type BattlePracticeCharacterOtherStatBody = {
61
+ other_stat: BattlePracticeCharacterOtherStatDetailBody[];
62
+ };
63
+ export type BattlePracticeCharacterOtherStatDetailBody = {
64
+ other_stat_type: string;
65
+ stat_info: BattlePracticeCharacterOtherStatInfoBody[];
66
+ };
67
+ export type BattlePracticeCharacterOtherStatInfoBody = {
68
+ stat_name: string;
69
+ stat_value: string;
70
+ };
71
+ export type BattlePracticeCharacterHyperStatObjectBody = {
72
+ hyper_stat: BattlePracticeCharacterHyperStatBody[];
73
+ };
74
+ export type BattlePracticeCharacterHyperStatBody = {
75
+ stat_type: string;
76
+ stat_level: number;
77
+ stat_increase: string;
78
+ };
79
+ export type BattlePracticeCharacterPropensityBody = {
80
+ charisma_level: number;
81
+ sensibility_level: number;
82
+ insight_level: number;
83
+ willingness_level: number;
84
+ handicraft_level: number;
85
+ charm_level: number;
86
+ };
87
+ export type BattlePracticeCharacterAbilityObjectBody = {
88
+ ability_info: BattlePracticeCharacterAbilityInfoBody[];
89
+ };
90
+ export type BattlePracticeCharacterAbilityInfoBody = {
91
+ ability_no: string;
92
+ ability_grade: string;
93
+ ability_value: string;
94
+ };
95
+ export type BattlePracticeCharacterItemObjectBody = {
96
+ item_equipment_object: BattlePracticeCharacterItemEquipmentObjectBody;
97
+ set_effect_object: BattlePracticeCharacterSetEffectObjectBody;
98
+ };
99
+ export type BattlePracticeCharacterItemEquipmentObjectBody = {
100
+ item_equipment: BattlePracticeCharacterItemEquipmentBody[];
101
+ title: BattlePracticeCharacterItemTitleBody | null;
102
+ dragon_equipment: BattlePracticeCharacterItemDragonEquipmentBody[];
103
+ mechanic_equipment: BattlePracticeCharacterItemMechanicEquipmentBody[];
104
+ };
105
+ export type BattlePracticeCharacterItemEquipmentBody = {
106
+ item_equipment_part: string;
107
+ item_equipment_slot: string;
108
+ item_name: string;
109
+ item_icon: string;
110
+ item_description: string | null;
111
+ item_shape_name: string;
112
+ item_shape_icon: string;
113
+ item_gender: string | null;
114
+ item_total_option: BattlePracticeCharacterItemTotalOptionBody;
115
+ item_base_option: BattlePracticeCharacterItemBaseOptionBody;
116
+ potential_option_flag: string | null;
117
+ additional_potential_option_flag: string | null;
118
+ potential_option_grade: string | null;
119
+ additional_potential_option_grade: string | null;
120
+ potential_option_1: string | null;
121
+ potential_option_2: string | null;
122
+ potential_option_3: string | null;
123
+ additional_potential_option_1: string | null;
124
+ additional_potential_option_2: string | null;
125
+ additional_potential_option_3: string | null;
126
+ equipment_level_increase: number;
127
+ item_exceptional_option: BattlePracticeCharacterItemExceptionalOptionBody;
128
+ item_add_option: BattlePracticeCharacterItemAddOptionBody;
129
+ growth_exp: number;
130
+ growth_level: number;
131
+ scroll_upgrade: string;
132
+ cuttable_count: string;
133
+ golden_hammer_flag: string;
134
+ scroll_resilience_count: string;
135
+ scroll_upgrade_able_count: string;
136
+ soul_name: string | null;
137
+ soul_option: string | null;
138
+ item_etc_option: BattlePracticeCharacterItemEtcOptionBody;
139
+ starforce: string;
140
+ starforce_scroll_flag: string;
141
+ item_starforce_option: BattlePracticeCharacterItemStarforceOptionBody;
142
+ special_ring_level: number;
143
+ date_expire: string | null;
144
+ freestyle_flag: string | null;
145
+ };
146
+ export type BattlePracticeCharacterItemDragonEquipmentBody = {
147
+ item_equipment_part: string;
148
+ item_equipment_slot: string;
149
+ item_name: string;
150
+ item_icon: string;
151
+ item_description: string | null;
152
+ item_shape_name: string;
153
+ item_shape_icon: string;
154
+ item_gender: string | null;
155
+ item_total_option: BattlePracticeCharacterItemTotalOptionBody;
156
+ item_base_option: BattlePracticeCharacterItemBaseOptionBody;
157
+ equipment_level_increase: number;
158
+ item_exceptional_option: BattlePracticeCharacterItemExceptionalOptionBody;
159
+ item_add_option: BattlePracticeCharacterItemAddOptionBody;
160
+ growth_exp: number;
161
+ growth_level: number;
162
+ scroll_upgrade: string;
163
+ cuttable_count: string;
164
+ golden_hammer_flag: string;
165
+ scroll_resilience_count: string;
166
+ scroll_upgrade_able_count: string;
167
+ soul_name: string | null;
168
+ soul_option: string | null;
169
+ item_etc_option: BattlePracticeCharacterItemEtcOptionBody;
170
+ starforce: string;
171
+ starforce_scroll_flag: string;
172
+ item_starforce_option: BattlePracticeCharacterItemStarforceOptionBody;
173
+ special_ring_level: number;
174
+ date_expire: string | null;
175
+ freestyle_flag: string | null;
176
+ };
177
+ export type BattlePracticeCharacterItemMechanicEquipmentBody = {
178
+ item_equipment_part: string;
179
+ item_equipment_slot: string;
180
+ item_name: string;
181
+ item_icon: string;
182
+ item_description: string | null;
183
+ item_shape_name: string;
184
+ item_shape_icon: string;
185
+ item_gender: string | null;
186
+ item_total_option: BattlePracticeCharacterItemTotalOptionBody;
187
+ item_base_option: BattlePracticeCharacterItemBaseOptionBody;
188
+ equipment_level_increase: number;
189
+ item_exceptional_option: BattlePracticeCharacterItemExceptionalOptionBody;
190
+ item_add_option: BattlePracticeCharacterItemAddOptionBody;
191
+ growth_exp: number;
192
+ growth_level: number;
193
+ scroll_upgrade: string;
194
+ cuttable_count: string;
195
+ golden_hammer_flag: string;
196
+ scroll_resilience_count: string;
197
+ scroll_upgrade_able_count: string;
198
+ soul_name: string | null;
199
+ soul_option: string | null;
200
+ item_etc_option: BattlePracticeCharacterItemEtcOptionBody;
201
+ starforce: string;
202
+ starforce_scroll_flag: string;
203
+ item_starforce_option: BattlePracticeCharacterItemStarforceOptionBody;
204
+ special_ring_level: number;
205
+ date_expire: string | null;
206
+ freestyle_flag: string | null;
207
+ };
208
+ export type BattlePracticeCharacterItemTotalOptionBody = {
209
+ str: string;
210
+ dex: string;
211
+ int: string;
212
+ luk: string;
213
+ max_hp: string;
214
+ max_mp: string;
215
+ attack_power: string;
216
+ magic_power: string;
217
+ armor: string;
218
+ speed: string;
219
+ jump: string;
220
+ boss_damage: string;
221
+ ignore_monster_armor: string;
222
+ all_stat: string;
223
+ damage: string;
224
+ equipment_level_decrease: number;
225
+ max_hp_rate: string;
226
+ max_mp_rate: string;
227
+ };
228
+ export type BattlePracticeCharacterItemBaseOptionBody = {
229
+ str: string;
230
+ dex: string;
231
+ int: string;
232
+ luk: string;
233
+ max_hp: string;
234
+ max_mp: string;
235
+ attack_power: string;
236
+ magic_power: string;
237
+ armor: string;
238
+ speed: string;
239
+ jump: string;
240
+ boss_damage: string;
241
+ ignore_monster_armor: string;
242
+ all_stat: string;
243
+ max_hp_rate: string;
244
+ max_mp_rate: string;
245
+ base_equipment_level: number;
246
+ };
247
+ export type BattlePracticeCharacterItemExceptionalOptionBody = {
248
+ str: string;
249
+ dex: string;
250
+ int: string;
251
+ luk: string;
252
+ max_hp: string;
253
+ max_mp: string;
254
+ attack_power: string;
255
+ magic_power: string;
256
+ exceptional_upgrade: number;
257
+ };
258
+ export type BattlePracticeCharacterItemAddOptionBody = {
259
+ str: string;
260
+ dex: string;
261
+ int: string;
262
+ luk: string;
263
+ max_hp: string;
264
+ max_mp: string;
265
+ attack_power: string;
266
+ magic_power: string;
267
+ armor: string;
268
+ speed: string;
269
+ jump: string;
270
+ boss_damage: string;
271
+ damage: string;
272
+ all_stat: string;
273
+ equipment_level_decrease: number;
274
+ };
275
+ export type BattlePracticeCharacterItemEtcOptionBody = {
276
+ str: string;
277
+ dex: string;
278
+ int: string;
279
+ luk: string;
280
+ max_hp: string;
281
+ max_mp: string;
282
+ attack_power: string;
283
+ magic_power: string;
284
+ armor: string;
285
+ speed: string;
286
+ jump: string;
287
+ };
288
+ export type BattlePracticeCharacterItemStarforceOptionBody = {
289
+ str: string;
290
+ dex: string;
291
+ int: string;
292
+ luk: string;
293
+ max_hp: string;
294
+ max_mp: string;
295
+ attack_power: string;
296
+ magic_power: string;
297
+ armor: string;
298
+ speed: string;
299
+ jump: string;
300
+ };
301
+ export type BattlePracticeCharacterItemTitleBody = {
302
+ title_name: string;
303
+ title_icon: string;
304
+ title_description: string;
305
+ date_expire: string | null;
306
+ date_option_expire: string | null;
307
+ title_shape_name: string | null;
308
+ title_shape_icon: string | null;
309
+ title_shape_description: string | null;
310
+ };
311
+ export type BattlePracticeCharacterSetEffectObjectBody = {
312
+ set_effect: BattlePracticeCharacterSetEffectBody[];
313
+ };
314
+ export type BattlePracticeCharacterSetEffectBody = {
315
+ set_name: string;
316
+ total_set_count: number;
317
+ set_effect_info: BattlePracticeCharacterSetEffectInfoBody[];
318
+ };
319
+ export type BattlePracticeCharacterSetEffectInfoBody = {
320
+ set_count: number;
321
+ set_option: string;
322
+ };
323
+ export type BattlePracticeCharacterCashItemObjectBody = {
324
+ cash_item_equipment_base: BattlePracticeCharacterCashItemEquipmentBody[];
325
+ additional_cash_item_equipment_base: BattlePracticeCharacterCashItemEquipmentBody[];
326
+ };
327
+ export type BattlePracticeCharacterCashItemEquipmentBody = {
328
+ cash_item_equipment_part: string;
329
+ cash_item_equipment_slot: string;
330
+ cash_item_name: string;
331
+ cash_item_icon: string;
332
+ cash_item_description: string | null;
333
+ cash_item_option: BattlePracticeCharacterCashItemOptionBody[];
334
+ date_expire: string | null;
335
+ date_option_expire: string | null;
336
+ };
337
+ export type BattlePracticeCharacterCashItemOptionBody = {
338
+ option_type: string;
339
+ option_value: string;
340
+ };
341
+ export type BattlePracticeCharacterPetObjectBody = {
342
+ pet_activate_flag: string | null;
343
+ pet_1_name: string | null;
344
+ pet_1_nickname: string | null;
345
+ pet_1_icon: string | null;
346
+ pet_1_description: string | null;
347
+ pet_1_equipment: BattlePracticeCharacterPetEquipmentBody | null;
348
+ pet_1_auto_skill: BattlePracticeCharacterPetAutoSkillBody | null;
349
+ pet_1_pet_type: string | null;
350
+ pet_1_skill: string[];
351
+ pet_1_date_expire: string | null;
352
+ pet_2_name: string | null;
353
+ pet_2_nickname: string | null;
354
+ pet_2_icon: string | null;
355
+ pet_2_description: string | null;
356
+ pet_2_equipment: BattlePracticeCharacterPetEquipmentBody | null;
357
+ pet_2_auto_skill: BattlePracticeCharacterPetAutoSkillBody | null;
358
+ pet_2_pet_type: string | null;
359
+ pet_2_skill: string[];
360
+ pet_2_date_expire: string | null;
361
+ pet_3_name: string | null;
362
+ pet_3_nickname: string | null;
363
+ pet_3_icon: string | null;
364
+ pet_3_description: string | null;
365
+ pet_3_equipment: BattlePracticeCharacterPetEquipmentBody | null;
366
+ pet_3_auto_skill: BattlePracticeCharacterPetAutoSkillBody | null;
367
+ pet_3_pet_type: string | null;
368
+ pet_3_skill: string[];
369
+ pet_3_date_expire: string | null;
370
+ world_share_pet_1_name: string | null;
371
+ world_share_pet_1_nickname: string | null;
372
+ world_share_pet_1_icon: string | null;
373
+ world_share_pet_1_description: string | null;
374
+ world_share_pet_1_pet_type: string | null;
375
+ world_share_pet_1_equipment: BattlePracticeCharacterPetEquipmentBody | null;
376
+ world_share_pet_1_auto_skill: BattlePracticeCharacterPetAutoSkillBody | null;
377
+ world_share_pet_1_skill: string[];
378
+ world_share_pet_1_date_expire: string | null;
379
+ world_share_pet_2_name: string | null;
380
+ world_share_pet_2_nickname: string | null;
381
+ world_share_pet_2_icon: string | null;
382
+ world_share_pet_2_description: string | null;
383
+ world_share_pet_2_pet_type: string | null;
384
+ world_share_pet_2_equipment: BattlePracticeCharacterPetEquipmentBody | null;
385
+ world_share_pet_2_auto_skill: BattlePracticeCharacterPetAutoSkillBody | null;
386
+ world_share_pet_2_skill: string[];
387
+ world_share_pet_2_date_expire: string | null;
388
+ world_share_pet_3_name: string | null;
389
+ world_share_pet_3_nickname: string | null;
390
+ world_share_pet_3_icon: string | null;
391
+ world_share_pet_3_description: string | null;
392
+ world_share_pet_3_pet_type: string | null;
393
+ world_share_pet_3_equipment: BattlePracticeCharacterPetEquipmentBody | null;
394
+ world_share_pet_3_auto_skill: BattlePracticeCharacterPetAutoSkillBody | null;
395
+ world_share_pet_3_skill: string[];
396
+ world_share_pet_3_date_expire: string | null;
397
+ petite_luna_pet_skill: BattlePracticeCharacterPetiteLunaPetSkillBody[];
398
+ };
399
+ export type BattlePracticeCharacterPetiteLunaPetSkillBody = {
400
+ skill_name: string | null;
401
+ skill_description: string | null;
402
+ skill_effect: string | null;
403
+ skill_icon: string | null;
404
+ };
405
+ export type BattlePracticeCharacterPetEquipmentBody = {
406
+ item_name: string;
407
+ item_icon: string;
408
+ item_description: string | null;
409
+ item_option: BattlePracticeCharacterPetEquipmentOptionBody[];
410
+ scroll_upgrade: number;
411
+ scroll_upgradable: number;
412
+ item_shape: string | null;
413
+ item_shape_icon: string | null;
414
+ item_date_expire: string | null;
415
+ };
416
+ export type BattlePracticeCharacterPetEquipmentOptionBody = {
417
+ option_type: string;
418
+ option_value: string;
419
+ };
420
+ export type BattlePracticeCharacterPetAutoSkillBody = {
421
+ skill_1: string | null;
422
+ skill_1_icon: string | null;
423
+ skill_2: string | null;
424
+ skill_2_icon: string | null;
425
+ };
426
+ export type BattlePracticeCharacterSkillObjectBody = {
427
+ character_skill: BattlePracticeCharacterSkillInfoBody[];
428
+ };
429
+ export type BattlePracticeCharacterSkillInfoBody = {
430
+ skill_name: string;
431
+ skill_description: string;
432
+ skill_level: number;
433
+ skill_effect: string | null;
434
+ skill_icon: string;
435
+ };
436
+ export type BattlePracticeCharacterLinkSkillObjectBody = {
437
+ character_link_skill: BattlePracticeCharacterSkillInfoBody[];
438
+ character_owned_link_skill: BattlePracticeCharacterSkillInfoBody | null;
439
+ };
440
+ export type BattlePracticeCharacterVMatrixObjectBody = {
441
+ character_v_core_equipment: BattlePracticeCharacterVCoreBody[];
442
+ };
443
+ export type BattlePracticeCharacterVCoreBody = {
444
+ slot_id: string;
445
+ slot_level: number;
446
+ v_core_name: string;
447
+ v_core_type: string;
448
+ v_core_level: number;
449
+ v_core_skill_1: string | null;
450
+ v_core_skill_2: string | null;
451
+ v_core_skill_3: string | null;
452
+ };
453
+ export type BattlePracticeCharacterHexaMatrixObjectBody = {
454
+ hexa_core_object: BattlePracticeCharacterHexaCoreObjectBody;
455
+ hexa_matrix_stat_object: BattlePracticeCharacterHexaMatrixStatObjectBody;
456
+ };
457
+ export type BattlePracticeCharacterHexaCoreObjectBody = {
458
+ character_hexa_core_equipment: BattlePracticeCharacterHexaCoreEquipmentBody[];
459
+ };
460
+ export type BattlePracticeCharacterHexaCoreEquipmentBody = {
461
+ hexa_core_name: string;
462
+ hexa_core_level: number;
463
+ hexa_core_type: string;
464
+ linked_skill: BattlePracticeCharacterHexaLinkedSkillBody[];
465
+ };
466
+ export type BattlePracticeCharacterHexaLinkedSkillBody = {
467
+ hexa_skill_id: string;
468
+ };
469
+ export type BattlePracticeCharacterHexaMatrixStatObjectBody = {
470
+ character_hexa_stat_core: BattlePracticeCharacterHexaStatCoreBody[];
471
+ character_hexa_stat_core_2: BattlePracticeCharacterHexaStatCoreBody[];
472
+ character_hexa_stat_core_3: BattlePracticeCharacterHexaStatCoreBody[];
473
+ };
474
+ export type BattlePracticeCharacterHexaStatCoreBody = {
475
+ slot_id: string;
476
+ main_stat_name: string;
477
+ sub_stat_name_1: string;
478
+ sub_stat_name_2: string;
479
+ main_stat_level: number;
480
+ sub_stat_level_1: number;
481
+ sub_stat_level_2: number;
482
+ stat_grade: number;
483
+ };
484
+ export type BattlePracticeCharacterRingReserveSkillObjectBody = {
485
+ special_ring_reserve_name: string | null;
486
+ special_ring_reserve_level: number | null;
487
+ special_ring_reserve_icon: string | null;
488
+ special_ring_reserve_description: string | null;
489
+ };
490
+ export type BattlePracticeUnionRaiderObjectBody = {
491
+ union_raider_stat: string[];
492
+ union_occupied_stat: string[];
493
+ union_state_stat: string[];
494
+ };
495
+ export type BattlePracticeUnionArtifactObjectBody = {
496
+ union_artifact_effect: BattlePracticeUnionArtifactEffectBody[];
497
+ };
498
+ export type BattlePracticeUnionArtifactEffectBody = {
499
+ name: string;
500
+ level: number;
501
+ };
502
+ export type BattlePracticeUnionChampionObjectBody = {
503
+ champion_badge_total_info: BattlePracticeUnionChampionBadgeBody[];
504
+ };
505
+ export type BattlePracticeUnionChampionBadgeBody = {
506
+ stat: string;
507
+ };
508
+ export type BattlePracticeGuildObjectBody = {
509
+ guild_skill: BattlePracticeGuildSkillBody[];
510
+ guild_noblesse_skill: BattlePracticeGuildSkillBody[];
511
+ };
512
+ export type BattlePracticeGuildSkillBody = {
513
+ skill_name: string;
514
+ skill_description: string;
515
+ skill_level: number;
516
+ skill_effect: string;
517
+ skill_icon: string;
518
+ };
@@ -0,0 +1,8 @@
1
+ export type BattlePracticeReplayIdBody = {
2
+ replay_list: BattlePracticeReplayBody[];
3
+ };
4
+ export type BattlePracticeReplayBody = {
5
+ period_no: number;
6
+ register_date: string;
7
+ replay_id: string;
8
+ };