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.
- package/README.md +2 -0
- package/dist/cjs/_virtual/index.js_commonjs-exports2.js +2 -2
- package/dist/cjs/_virtual/index.js_commonjs-exports3.js +2 -2
- package/dist/cjs/maplestory/api/kms/dto/battlePractice/battlePracticeCharacterInfo.js +2566 -0
- package/dist/cjs/maplestory/api/kms/dto/battlePractice/battlePracticeReplayId.js +41 -0
- package/dist/cjs/maplestory/api/kms/dto/battlePractice/battlePracticeResult.js +101 -0
- package/dist/cjs/maplestory/api/kms/dto/battlePractice/battlePracticeSkillTimeline.js +61 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterHexaMatrix.js +6 -1
- package/dist/cjs/maplestory/api/kms/dto/character/characterItemEquipment.js +92 -1
- package/dist/cjs/maplestory/api/kms/dto/character/characterPetEquipment.js +223 -1
- package/dist/cjs/maplestory/api/kms/dto/character/characterVMatrix.js +50 -1
- package/dist/cjs/maplestory/api/kms/dto/scheduler/schedulerCharacterState.js +177 -0
- package/dist/cjs/maplestory/api/kms/dto/union/unionRaider.js +35 -1
- package/dist/cjs/maplestory/api/kms/kms.js +76 -0
- package/dist/cjs/maplestory/api/kms/mapleStoryApi.js +118 -14
- package/dist/cjs/maplestory/api/kms/mapleStoryFriendsApi.js +1 -1
- package/dist/cjs/maplestory/api/msea/mapleStoryApi.js +1 -1
- package/dist/cjs/maplestory/api/tms/dto/character/characterFamiliar.js +156 -0
- package/dist/cjs/maplestory/api/tms/dto/character/characterPetEquipment.js +45 -1
- package/dist/cjs/maplestory/api/tms/mapleStoryApi.js +33 -1
- package/dist/cjs/maplestory/api/tms/tms.js +6 -0
- package/dist/cjs/node_modules/base64-js/index.js +1 -1
- package/dist/cjs/node_modules/buffer/index.js +2 -2
- package/dist/cjs/node_modules/ieee754/index.js +1 -1
- package/dist/esm/_virtual/index.js_commonjs-exports2.js +2 -2
- package/dist/esm/_virtual/index.js_commonjs-exports3.js +2 -2
- package/dist/esm/maplestory/api/kms/dto/battlePractice/battlePracticeCharacterInfo.js +2506 -0
- package/dist/esm/maplestory/api/kms/dto/battlePractice/battlePracticeReplayId.js +36 -0
- package/dist/esm/maplestory/api/kms/dto/battlePractice/battlePracticeResult.js +96 -0
- package/dist/esm/maplestory/api/kms/dto/battlePractice/battlePracticeSkillTimeline.js +56 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterHexaMatrix.js +6 -1
- package/dist/esm/maplestory/api/kms/dto/character/characterItemEquipment.js +92 -2
- package/dist/esm/maplestory/api/kms/dto/character/characterPetEquipment.js +223 -2
- package/dist/esm/maplestory/api/kms/dto/character/characterVMatrix.js +50 -2
- package/dist/esm/maplestory/api/kms/dto/scheduler/schedulerCharacterState.js +170 -0
- package/dist/esm/maplestory/api/kms/dto/union/unionRaider.js +35 -2
- package/dist/esm/maplestory/api/kms/kms.js +9 -4
- package/dist/esm/maplestory/api/kms/mapleStoryApi.js +118 -14
- package/dist/esm/maplestory/api/kms/mapleStoryFriendsApi.js +1 -1
- package/dist/esm/maplestory/api/msea/mapleStoryApi.js +1 -1
- package/dist/esm/maplestory/api/tms/dto/character/characterFamiliar.js +149 -0
- package/dist/esm/maplestory/api/tms/dto/character/characterPetEquipment.js +45 -2
- package/dist/esm/maplestory/api/tms/mapleStoryApi.js +33 -1
- package/dist/esm/maplestory/api/tms/tms.js +2 -1
- package/dist/esm/node_modules/base64-js/index.js +2 -2
- package/dist/esm/node_modules/buffer/index.js +2 -2
- package/dist/esm/node_modules/ieee754/index.js +2 -2
- package/package.json +6 -5
- package/types/maplestory/api/kms/dto/battlePractice/battlePracticeCharacterInfo.d.ts +1959 -0
- package/types/maplestory/api/kms/dto/battlePractice/battlePracticeReplayId.d.ts +29 -0
- package/types/maplestory/api/kms/dto/battlePractice/battlePracticeResult.d.ts +77 -0
- package/types/maplestory/api/kms/dto/battlePractice/battlePracticeSkillTimeline.d.ts +45 -0
- package/types/maplestory/api/kms/dto/character/characterHexaMatrix.d.ts +4 -0
- package/types/maplestory/api/kms/dto/character/characterItemEquipment.d.ts +63 -1
- package/types/maplestory/api/kms/dto/character/characterPetEquipment.d.ts +163 -1
- package/types/maplestory/api/kms/dto/character/characterVMatrix.d.ts +39 -1
- package/types/maplestory/api/kms/dto/scheduler/schedulerCharacterState.d.ts +137 -0
- package/types/maplestory/api/kms/dto/union/unionRaider.d.ts +27 -1
- package/types/maplestory/api/kms/index.d.ts +5 -0
- package/types/maplestory/api/kms/mapleStoryApi.d.ts +57 -8
- package/types/maplestory/api/kms/mapleStoryFriendsApi.d.ts +2 -2
- package/types/maplestory/api/kms/response/battlePractice/battlePracticeCharacterInfoBody.d.ts +518 -0
- package/types/maplestory/api/kms/response/battlePractice/battlePracticeReplayIdBody.d.ts +8 -0
- package/types/maplestory/api/kms/response/battlePractice/battlePracticeResultBody.d.ts +20 -0
- package/types/maplestory/api/kms/response/battlePractice/battlePracticeSkillTimelineBody.d.ts +12 -0
- package/types/maplestory/api/kms/response/character/characterHexaMatrixBody.d.ts +1 -0
- package/types/maplestory/api/kms/response/character/characterItemEquipmentBody.d.ts +15 -0
- package/types/maplestory/api/kms/response/character/characterPetEquipmentBody.d.ts +41 -0
- package/types/maplestory/api/kms/response/character/characterVMatrixBody.d.ts +11 -1
- package/types/maplestory/api/kms/response/scheduler/schedulerCharacterStateBody.d.ts +36 -0
- package/types/maplestory/api/kms/response/union/unionRaiderBody.d.ts +7 -0
- package/types/maplestory/api/tms/dto/character/characterFamiliar.d.ts +117 -0
- package/types/maplestory/api/tms/dto/character/characterPetEquipment.d.ts +35 -1
- package/types/maplestory/api/tms/index.d.ts +1 -0
- package/types/maplestory/api/tms/mapleStoryApi.d.ts +12 -0
- package/types/maplestory/api/tms/response/character/characterFamiliarBody.d.ts +31 -0
- package/types/maplestory/api/tms/response/character/characterPetEquipmentBody.d.ts +9 -0
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 캐릭터 스케줄러 정보
|
|
3
|
+
*/
|
|
4
|
+
class SchedulerCharacterStateDto {
|
|
5
|
+
/**
|
|
6
|
+
* 조회 기준일 (YYYY-MM-DD)
|
|
7
|
+
*/
|
|
8
|
+
date;
|
|
9
|
+
/**
|
|
10
|
+
* 캐릭터 명
|
|
11
|
+
*/
|
|
12
|
+
characterName;
|
|
13
|
+
/**
|
|
14
|
+
* 월드 명
|
|
15
|
+
*/
|
|
16
|
+
worldName;
|
|
17
|
+
/**
|
|
18
|
+
* 캐릭터 레벨
|
|
19
|
+
*/
|
|
20
|
+
characterLevel;
|
|
21
|
+
/**
|
|
22
|
+
* 캐릭터 직업
|
|
23
|
+
*/
|
|
24
|
+
characterClass;
|
|
25
|
+
/**
|
|
26
|
+
* 일일 콘텐츠 정보
|
|
27
|
+
*/
|
|
28
|
+
dailyContents;
|
|
29
|
+
/**
|
|
30
|
+
* 주간 콘텐츠 정보
|
|
31
|
+
*/
|
|
32
|
+
weeklyContents;
|
|
33
|
+
/**
|
|
34
|
+
* 보스 콘텐츠 정보
|
|
35
|
+
*/
|
|
36
|
+
bossContents;
|
|
37
|
+
/**
|
|
38
|
+
* 주간 보스 처치 완료 횟수
|
|
39
|
+
*/
|
|
40
|
+
weeklyBossClearCount;
|
|
41
|
+
/**
|
|
42
|
+
* 주간 보스 처치 제한 횟수
|
|
43
|
+
*/
|
|
44
|
+
weeklyBossClearLimitCount;
|
|
45
|
+
constructor(obj) {
|
|
46
|
+
this.date = obj.date ? new Date(obj.date) : null;
|
|
47
|
+
this.characterName = obj.character_name;
|
|
48
|
+
this.worldName = obj.world_name;
|
|
49
|
+
this.characterLevel = obj.character_level;
|
|
50
|
+
this.characterClass = obj.character_class;
|
|
51
|
+
this.dailyContents = (obj.daily_contents ?? []).map((item) => new SchedulerDailyContentDto(item));
|
|
52
|
+
this.weeklyContents = (obj.weekly_contents ?? []).map((item) => new SchedulerWeeklyContentDto(item));
|
|
53
|
+
this.bossContents = (obj.boss_contents ?? []).map((item) => new SchedulerBossContentDto(item));
|
|
54
|
+
this.weeklyBossClearCount = obj.weekly_boss_clear_count;
|
|
55
|
+
this.weeklyBossClearLimitCount = obj.weekly_boss_clear_limit_count;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* 스케줄러 일일 콘텐츠 정보
|
|
60
|
+
*/
|
|
61
|
+
class SchedulerDailyContentDto {
|
|
62
|
+
/**
|
|
63
|
+
* 콘텐츠/퀘스트 명
|
|
64
|
+
*/
|
|
65
|
+
contentName;
|
|
66
|
+
/**
|
|
67
|
+
* 타입 ('contents', 'quest')
|
|
68
|
+
*/
|
|
69
|
+
type;
|
|
70
|
+
/**
|
|
71
|
+
* 인게임 스케줄러 등록 여부 (true/false)
|
|
72
|
+
*/
|
|
73
|
+
registrationFlag;
|
|
74
|
+
/**
|
|
75
|
+
* 현재 완료 횟수/점수
|
|
76
|
+
*/
|
|
77
|
+
nowCount;
|
|
78
|
+
/**
|
|
79
|
+
* 최대 완료 가능 횟수/점수
|
|
80
|
+
*/
|
|
81
|
+
maxCount;
|
|
82
|
+
/**
|
|
83
|
+
* 퀘스트인 경우 진행 상태 ("0":기타, "1":진행 중, "2":완료)
|
|
84
|
+
*/
|
|
85
|
+
questState;
|
|
86
|
+
constructor(obj) {
|
|
87
|
+
this.contentName = obj.content_name;
|
|
88
|
+
this.type = obj.type;
|
|
89
|
+
this.registrationFlag = obj.registration_flag;
|
|
90
|
+
this.nowCount = obj.now_count;
|
|
91
|
+
this.maxCount = obj.max_count;
|
|
92
|
+
this.questState = obj.quest_state;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* 스케줄러 주간 콘텐츠 정보
|
|
97
|
+
*/
|
|
98
|
+
class SchedulerWeeklyContentDto {
|
|
99
|
+
/**
|
|
100
|
+
* 콘텐츠 명
|
|
101
|
+
*/
|
|
102
|
+
contentName;
|
|
103
|
+
/**
|
|
104
|
+
* 콘텐츠 종류 ('contents', 'quest')
|
|
105
|
+
*/
|
|
106
|
+
type;
|
|
107
|
+
/**
|
|
108
|
+
* 인게임 스케줄러 등록 여부 (true/false)
|
|
109
|
+
*/
|
|
110
|
+
registrationFlag;
|
|
111
|
+
/**
|
|
112
|
+
* 현재 완료 횟수/점수
|
|
113
|
+
*/
|
|
114
|
+
nowCount;
|
|
115
|
+
/**
|
|
116
|
+
* 최대 완료 가능 횟수/점수
|
|
117
|
+
*/
|
|
118
|
+
maxCount;
|
|
119
|
+
/**
|
|
120
|
+
* 퀘스트인 경우 진행 상태 ("0":기타, "1":진행 중, "2":완료)
|
|
121
|
+
*/
|
|
122
|
+
questState;
|
|
123
|
+
constructor(obj) {
|
|
124
|
+
this.contentName = obj.content_name;
|
|
125
|
+
this.type = obj.type;
|
|
126
|
+
this.registrationFlag = obj.registration_flag;
|
|
127
|
+
this.nowCount = obj.now_count;
|
|
128
|
+
this.maxCount = obj.max_count;
|
|
129
|
+
this.questState = obj.quest_state;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* 스케줄러 보스 콘텐츠 정보
|
|
134
|
+
*/
|
|
135
|
+
class SchedulerBossContentDto {
|
|
136
|
+
/**
|
|
137
|
+
* 보스 명
|
|
138
|
+
*/
|
|
139
|
+
contentName;
|
|
140
|
+
/**
|
|
141
|
+
* 보스 난이도
|
|
142
|
+
*/
|
|
143
|
+
difficulty;
|
|
144
|
+
/**
|
|
145
|
+
* 보스 초기화 주기
|
|
146
|
+
*/
|
|
147
|
+
cycle;
|
|
148
|
+
/**
|
|
149
|
+
* 리스트 순서
|
|
150
|
+
*/
|
|
151
|
+
listOrderNo;
|
|
152
|
+
/**
|
|
153
|
+
* 인게임 스케줄러 등록 여부 (true/false)
|
|
154
|
+
*/
|
|
155
|
+
registrationFlag;
|
|
156
|
+
/**
|
|
157
|
+
* 완료 여부 (true/false)
|
|
158
|
+
*/
|
|
159
|
+
completeFlag;
|
|
160
|
+
constructor(obj) {
|
|
161
|
+
this.contentName = obj.content_name;
|
|
162
|
+
this.difficulty = obj.difficulty;
|
|
163
|
+
this.cycle = obj.cycle;
|
|
164
|
+
this.listOrderNo = obj.list_order_no;
|
|
165
|
+
this.registrationFlag = obj.registration_flag;
|
|
166
|
+
this.completeFlag = obj.complete_flag;
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
export { SchedulerBossContentDto, SchedulerCharacterStateDto, SchedulerDailyContentDto, SchedulerWeeklyContentDto };
|
|
@@ -12,6 +12,18 @@ class UnionRaiderDto extends UnionRaiderDto$1 {
|
|
|
12
12
|
* 유니온 공격대원 효과
|
|
13
13
|
*/
|
|
14
14
|
unionRaiderStat;
|
|
15
|
+
/**
|
|
16
|
+
* 적용 중인 유니온 스탯 효과
|
|
17
|
+
*/
|
|
18
|
+
unionStateStat;
|
|
19
|
+
/**
|
|
20
|
+
* 프리셋 별 유니온 스탯 효과
|
|
21
|
+
*/
|
|
22
|
+
unionStateStatPreset;
|
|
23
|
+
/**
|
|
24
|
+
* 총 유니온 포인트
|
|
25
|
+
*/
|
|
26
|
+
unionMaxPoint;
|
|
15
27
|
/**
|
|
16
28
|
* 유니온 공격대 점령 효과
|
|
17
29
|
*/
|
|
@@ -50,9 +62,12 @@ class UnionRaiderDto extends UnionRaiderDto$1 {
|
|
|
50
62
|
unionRaiderPreset5;
|
|
51
63
|
constructor(obj) {
|
|
52
64
|
super();
|
|
53
|
-
const { date, union_raider_stat, union_occupied_stat, union_inner_stat, union_block, use_preset_no, union_raider_preset_1, union_raider_preset_2, union_raider_preset_3, union_raider_preset_4, union_raider_preset_5, } = obj;
|
|
65
|
+
const { date, union_raider_stat, union_occupied_stat, union_inner_stat, union_block, use_preset_no, union_raider_preset_1, union_raider_preset_2, union_raider_preset_3, union_raider_preset_4, union_raider_preset_5, union_state_stat, union_state_stat_preset, union_max_point, } = obj;
|
|
54
66
|
this.date = date ? new Date(date) : null;
|
|
55
67
|
this.unionRaiderStat = union_raider_stat;
|
|
68
|
+
this.unionStateStat = union_state_stat;
|
|
69
|
+
this.unionStateStatPreset = (union_state_stat_preset ?? []).map((preset) => new UnionRaiderStateStatPresetDto(preset));
|
|
70
|
+
this.unionMaxPoint = union_max_point;
|
|
56
71
|
this.unionOccupiedStat = union_occupied_stat;
|
|
57
72
|
this.unionInnerStat = union_inner_stat.map((stat) => new UnionRaiderInnerStatDto(stat));
|
|
58
73
|
this.unionBlock = union_block.map((block) => new UnionRaiderBlockDto(block));
|
|
@@ -167,6 +182,24 @@ class UnionRaiderBlockDto extends UnionRaiderBlockDto$1 {
|
|
|
167
182
|
: null;
|
|
168
183
|
}
|
|
169
184
|
}
|
|
185
|
+
/**
|
|
186
|
+
* 유니온 스탯 프리셋 정보
|
|
187
|
+
*/
|
|
188
|
+
class UnionRaiderStateStatPresetDto {
|
|
189
|
+
/**
|
|
190
|
+
* 프리셋 번호
|
|
191
|
+
*/
|
|
192
|
+
presetNo;
|
|
193
|
+
/**
|
|
194
|
+
* 유니온 스탯 효과
|
|
195
|
+
*/
|
|
196
|
+
unionStateStat;
|
|
197
|
+
constructor(obj) {
|
|
198
|
+
const { preset_no, union_state_stat } = obj;
|
|
199
|
+
this.presetNo = preset_no;
|
|
200
|
+
this.unionStateStat = union_state_stat;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
170
203
|
/**
|
|
171
204
|
* 유니온 프리셋 정보
|
|
172
205
|
*/
|
|
@@ -197,4 +230,4 @@ class UnionRaiderPresetDto extends UnionRaiderPresetDto$1 {
|
|
|
197
230
|
}
|
|
198
231
|
}
|
|
199
232
|
|
|
200
|
-
export { UnionRaiderBlockControlPointDto, UnionRaiderBlockDto, UnionRaiderBlockPositionDto, UnionRaiderDto, UnionRaiderInnerStatDto, UnionRaiderPresetDto };
|
|
233
|
+
export { UnionRaiderBlockControlPointDto, UnionRaiderBlockDto, UnionRaiderBlockPositionDto, UnionRaiderDto, UnionRaiderInnerStatDto, UnionRaiderPresetDto, UnionRaiderStateStatPresetDto };
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
export { MapleStoryApi } from './mapleStoryApi.js';
|
|
2
2
|
export { MapleStoryFriendsApi } from './mapleStoryFriendsApi.js';
|
|
3
|
+
export { BattlePracticeCharacterAbilityInfoDto, BattlePracticeCharacterAbilityObjectDto, BattlePracticeCharacterBasicDto, BattlePracticeCharacterBasicStatDto, BattlePracticeCharacterCashItemEquipmentDto, BattlePracticeCharacterCashItemObjectDto, BattlePracticeCharacterCashItemOptionDto, BattlePracticeCharacterFinalStatDto, BattlePracticeCharacterHexaCoreEquipmentDto, BattlePracticeCharacterHexaCoreObjectDto, BattlePracticeCharacterHexaLinkedSkillDto, BattlePracticeCharacterHexaMatrixObjectDto, BattlePracticeCharacterHexaMatrixStatObjectDto, BattlePracticeCharacterHexaStatCoreDto, BattlePracticeCharacterHyperStatDto, BattlePracticeCharacterHyperStatObjectDto, BattlePracticeCharacterInfoDto, BattlePracticeCharacterItemAddOptionDto, BattlePracticeCharacterItemBaseOptionDto, BattlePracticeCharacterItemDragonEquipmentDto, BattlePracticeCharacterItemEquipmentDto, BattlePracticeCharacterItemEquipmentObjectDto, BattlePracticeCharacterItemEtcOptionDto, BattlePracticeCharacterItemExceptionalOptionDto, BattlePracticeCharacterItemMechanicEquipmentDto, BattlePracticeCharacterItemObjectDto, BattlePracticeCharacterItemStarforceOptionDto, BattlePracticeCharacterItemTitleDto, BattlePracticeCharacterItemTotalOptionDto, BattlePracticeCharacterLinkSkillObjectDto, BattlePracticeCharacterOtherStatDetailDto, BattlePracticeCharacterOtherStatDto, BattlePracticeCharacterOtherStatInfoDto, BattlePracticeCharacterPetAutoSkillDto, BattlePracticeCharacterPetEquipmentDto, BattlePracticeCharacterPetEquipmentItemOptionDto, BattlePracticeCharacterPetObjectDto, BattlePracticeCharacterPetiteLunaPetSkillDto, BattlePracticeCharacterPropensityDto, BattlePracticeCharacterRingReserveSkillObjectDto, BattlePracticeCharacterSetEffectDto, BattlePracticeCharacterSetEffectInfoDto, BattlePracticeCharacterSetEffectObjectDto, BattlePracticeCharacterSkillInfoDto, BattlePracticeCharacterSkillObjectDto, BattlePracticeCharacterStatDto, BattlePracticeCharacterSymbolDto, BattlePracticeCharacterSymbolStatDto, BattlePracticeCharacterVCoreDto, BattlePracticeCharacterVMatrixObjectDto, BattlePracticeGuildObjectDto, BattlePracticeGuildSkillDto, BattlePracticeUnionArtifactEffectDto, BattlePracticeUnionArtifactObjectDto, BattlePracticeUnionChampionBadgeDto, BattlePracticeUnionChampionObjectDto, BattlePracticeUnionRaiderObjectDto } from './dto/battlePractice/battlePracticeCharacterInfo.js';
|
|
4
|
+
export { BattlePracticeReplayIdDto, BattlePracticeReplayIdInfoDto } from './dto/battlePractice/battlePracticeReplayId.js';
|
|
5
|
+
export { BattlePracticeResultDto, BattlePracticeSkillStatisticDto } from './dto/battlePractice/battlePracticeResult.js';
|
|
6
|
+
export { BattlePracticeSkillTimelineDto, BattlePracticeSkillTimelineEventDto } from './dto/battlePractice/battlePracticeSkillTimeline.js';
|
|
3
7
|
export { CharacterDto } from './dto/character/character.js';
|
|
4
8
|
export { CharacterAbilityDto, CharacterAbilityInfoDto, CharacterAbilityPresetDto } from './dto/character/characterAbility.js';
|
|
5
9
|
export { CharacterAndroidCashItemEquipmentColoringPrismDto, CharacterAndroidCashItemEquipmentDto, CharacterAndroidCashItemEquipmentOptionDto, CharacterAndroidEquipmentDto, CharacterAndroidEquipmentFaceDto, CharacterAndroidEquipmentHairDto, CharacterAndroidEquipmentPresetDto, CharacterAndroidEquipmentSkinDto } from './dto/character/characterAndroidEquipment.js';
|
|
@@ -11,10 +15,10 @@ export { CharacterHexaMatrixDto, CharacterHexaMatrixEquipmentDto, CharacterHexaM
|
|
|
11
15
|
export { CharacterHexaMatrixStatCoreDto, CharacterHexaMatrixStatDto } from './dto/character/characterHexaMatrixStat.js';
|
|
12
16
|
export { CharacterHyperStatDto, CharacterHyperStatPresetDto } from './dto/character/characterHyperStat.js';
|
|
13
17
|
export { CharacterImageDto } from './dto/character/characterImage.js';
|
|
14
|
-
export { CharacterItemEquipmentAddOptionDto, CharacterItemEquipmentBaseOptionDto, CharacterItemEquipmentDragonInfoDto, CharacterItemEquipmentDto, CharacterItemEquipmentEtcOptionDto, CharacterItemEquipmentExceptionalOptionDto, CharacterItemEquipmentInfoDto, CharacterItemEquipmentMechanicInfoDto, CharacterItemEquipmentMedalShapeDto, CharacterItemEquipmentStarforceOptionDto, CharacterItemEquipmentTitleDto, CharacterItemEquipmentTotalOptionDto } from './dto/character/characterItemEquipment.js';
|
|
18
|
+
export { CharacterItemEquipmentAddOptionDto, CharacterItemEquipmentBaseOptionDto, CharacterItemEquipmentDragonInfoDto, CharacterItemEquipmentDto, CharacterItemEquipmentEtcOptionDto, CharacterItemEquipmentExceptionalOptionDto, CharacterItemEquipmentInfoDto, CharacterItemEquipmentMechanicInfoDto, CharacterItemEquipmentMedalShapeDto, CharacterItemEquipmentStarforceOptionDto, CharacterItemEquipmentTitleDto, CharacterItemEquipmentTitlePresetDto, CharacterItemEquipmentTotalOptionDto } from './dto/character/characterItemEquipment.js';
|
|
15
19
|
export { CharacterLinkSkillDto, CharacterLinkSkillInfoDto } from './dto/character/characterLinkSkill.js';
|
|
16
20
|
export { CharacterOtherStatDetailDto, CharacterOtherStatDto, CharacterOtherStatInfoDto } from './dto/character/characterOtherStat.js';
|
|
17
|
-
export { CharacterPetEquipmentAutoSkillDto, CharacterPetEquipmentDto, CharacterPetEquipmentItemDto, CharacterPetEquipmentItemOptionDto } from './dto/character/characterPetEquipment.js';
|
|
21
|
+
export { CharacterPetEquipmentAutoSkillDto, CharacterPetEquipmentDto, CharacterPetEquipmentItemDto, CharacterPetEquipmentItemOptionDto, CharacterPetEquipmentPetiteLunaPetSkillDto } from './dto/character/characterPetEquipment.js';
|
|
18
22
|
export { CharacterPopularityDto } from './dto/character/characterPopularity.js';
|
|
19
23
|
export { CharacterPropensityDto } from './dto/character/characterPropensity.js';
|
|
20
24
|
export { CharacterSetEffectDto, CharacterSetEffectInfoDto, CharacterSetEffectOptionFullDto, CharacterSetEffectSetDto } from './dto/character/characterSetEffect.js';
|
|
@@ -23,7 +27,7 @@ export { CharacterFinalStatDto, CharacterStatDto } from './dto/character/charact
|
|
|
23
27
|
export { CharacterSymbolEquipmentDto, CharacterSymbolEquipmentInfoDto } from './dto/character/characterSymbolEquipment.js';
|
|
24
28
|
export { CharacterRingExchangeSkillEquipmentDto } from './dto/character/characterRingExchangeSkillEquipment.js';
|
|
25
29
|
export { CharacterRingReserveSkillEquipmentDto } from './dto/character/characterRingReserveSkillEquipment.js';
|
|
26
|
-
export { CharacterVMatrixCodeEquipmentDto, CharacterVMatrixDto } from './dto/character/characterVMatrix.js';
|
|
30
|
+
export { CharacterVMatrixCodeEquipmentDto, CharacterVMatrixCoreEquipmentPresetDto, CharacterVMatrixDto } from './dto/character/characterVMatrix.js';
|
|
27
31
|
export { GuildDto } from './dto/guild/guild.js';
|
|
28
32
|
export { GuildBasicDto, GuildSkillDto } from './dto/guild/guildBasic.js';
|
|
29
33
|
export { CubeHistoryDto, CubeHistoryResponseDto, CubeResultOptionDto } from './dto/history/cubeHistory.js';
|
|
@@ -43,10 +47,11 @@ export { GuildRankingDto, GuildRankingResponseDto } from './dto/ranking/guildRan
|
|
|
43
47
|
export { OverallRankingDto, OverallRankingResponseDto } from './dto/ranking/overallRanking.js';
|
|
44
48
|
export { TheSeedRankingDto, TheSeedRankingResponseDto } from './dto/ranking/theSeedRanking.js';
|
|
45
49
|
export { UnionRankingDto, UnionRankingResponseDto } from './dto/ranking/unionRanking.js';
|
|
50
|
+
export { SchedulerBossContentDto, SchedulerCharacterStateDto, SchedulerDailyContentDto, SchedulerWeeklyContentDto } from './dto/scheduler/schedulerCharacterState.js';
|
|
46
51
|
export { UnionDto } from './dto/union/union.js';
|
|
47
52
|
export { UnionArtifactCrystalDto, UnionArtifactDto, UnionArtifactEffectDto } from './dto/union/unionArtifact.js';
|
|
48
53
|
export { UnionChampionBadgeInfoDto, UnionChampionDto, UnionChampionInfoDto } from './dto/union/unionChampion.js';
|
|
49
|
-
export { UnionRaiderBlockControlPointDto, UnionRaiderBlockDto, UnionRaiderBlockPositionDto, UnionRaiderDto, UnionRaiderInnerStatDto, UnionRaiderPresetDto } from './dto/union/unionRaider.js';
|
|
54
|
+
export { UnionRaiderBlockControlPointDto, UnionRaiderBlockDto, UnionRaiderBlockPositionDto, UnionRaiderDto, UnionRaiderInnerStatDto, UnionRaiderPresetDto, UnionRaiderStateStatPresetDto } from './dto/union/unionRaider.js';
|
|
50
55
|
export { AchievementAccountListDto, AchievementAchieveDto, AchievementDto } from './dto/user/achievement.js';
|
|
51
56
|
export { CharacterListAccountCharacterDto, CharacterListAccountDto, CharacterListDto } from './dto/user/characterList.js';
|
|
52
57
|
export { InspectionInfoDto } from './dto/inspectionInfo.js';
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import axios from 'axios';
|
|
2
2
|
import '../../../node_modules/buffer/index.js';
|
|
3
3
|
import xml2js from 'xml2js';
|
|
4
|
+
import { BattlePracticeCharacterInfoDto } from './dto/battlePractice/battlePracticeCharacterInfo.js';
|
|
5
|
+
import { BattlePracticeReplayIdDto } from './dto/battlePractice/battlePracticeReplayId.js';
|
|
6
|
+
import { BattlePracticeResultDto } from './dto/battlePractice/battlePracticeResult.js';
|
|
7
|
+
import { BattlePracticeSkillTimelineDto } from './dto/battlePractice/battlePracticeSkillTimeline.js';
|
|
4
8
|
import { CharacterDto } from './dto/character/character.js';
|
|
5
9
|
import { CharacterAbilityDto } from './dto/character/characterAbility.js';
|
|
6
10
|
import { CharacterAndroidEquipmentDto } from './dto/character/characterAndroidEquipment.js';
|
|
@@ -31,6 +35,8 @@ import { CubeHistoryResponseDto } from './dto/history/cubeHistory.js';
|
|
|
31
35
|
import { PotentialHistoryResponseDto } from './dto/history/potentialHistory.js';
|
|
32
36
|
import { StarforceHistoryResponseDto } from './dto/history/starforceHistory.js';
|
|
33
37
|
import { InspectionInfoDto } from './dto/inspectionInfo.js';
|
|
38
|
+
import { removeQuery } from '../common/lib.js';
|
|
39
|
+
import { MapleStoryApi as MapleStoryApi$1 } from '../common/mapleStoryApi.js';
|
|
34
40
|
import { CashshopNoticeDetailDto } from './dto/notice/cashshopNoticeDetail.js';
|
|
35
41
|
import { CashshopNoticeListDto } from './dto/notice/cashshopNoticeList.js';
|
|
36
42
|
import { EventNoticeDetailDto } from './dto/notice/eventNoticeDetail.js';
|
|
@@ -45,6 +51,7 @@ import { GuildRankingResponseDto } from './dto/ranking/guildRanking.js';
|
|
|
45
51
|
import { OverallRankingResponseDto } from './dto/ranking/overallRanking.js';
|
|
46
52
|
import { TheSeedRankingResponseDto } from './dto/ranking/theSeedRanking.js';
|
|
47
53
|
import { UnionRankingResponseDto } from './dto/ranking/unionRanking.js';
|
|
54
|
+
import { SchedulerCharacterStateDto } from './dto/scheduler/schedulerCharacterState.js';
|
|
48
55
|
import { UnionDto } from './dto/union/union.js';
|
|
49
56
|
import { UnionArtifactDto } from './dto/union/unionArtifact.js';
|
|
50
57
|
import { UnionChampionDto } from './dto/union/unionChampion.js';
|
|
@@ -52,8 +59,6 @@ import { UnionRaiderDto } from './dto/union/unionRaider.js';
|
|
|
52
59
|
import { AchievementDto } from './dto/user/achievement.js';
|
|
53
60
|
import { CharacterListDto } from './dto/user/characterList.js';
|
|
54
61
|
import { CharacterImageAction, CharacterImageEmotion, CharacterImageWeaponMotion } from '../common/enum/characterImage.js';
|
|
55
|
-
import { removeQuery } from '../common/lib.js';
|
|
56
|
-
import { MapleStoryApi as MapleStoryApi$1 } from '../common/mapleStoryApi.js';
|
|
57
62
|
import { __exports as buffer } from '../../../_virtual/index.js_commonjs-exports.js';
|
|
58
63
|
|
|
59
64
|
/**
|
|
@@ -1070,6 +1075,105 @@ class MapleStoryApi extends MapleStoryApi$1 {
|
|
|
1070
1075
|
}
|
|
1071
1076
|
return new GuildBasicDto(data);
|
|
1072
1077
|
}
|
|
1078
|
+
//#endregion
|
|
1079
|
+
//#region 연무장 정보 조회
|
|
1080
|
+
/**
|
|
1081
|
+
* 캐릭터의 연무장 리플레이 식별자를 조회합니다. 리플레이를 등록한 캐릭터에 대해서만 조회가 가능합니다.
|
|
1082
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
1083
|
+
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
1084
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
1085
|
+
*
|
|
1086
|
+
* @param ocid 캐릭터 식별자
|
|
1087
|
+
*/
|
|
1088
|
+
async getBattlePracticeReplayId(ocid) {
|
|
1089
|
+
const path = `${this.subUrl}/v1/battle-practice/replay-id`;
|
|
1090
|
+
const query = {
|
|
1091
|
+
ocid: ocid,
|
|
1092
|
+
};
|
|
1093
|
+
const { data } = await this.client.get(path, {
|
|
1094
|
+
params: query,
|
|
1095
|
+
});
|
|
1096
|
+
return new BattlePracticeReplayIdDto(data);
|
|
1097
|
+
}
|
|
1098
|
+
/**
|
|
1099
|
+
* 연무장 측정 결과 정보를 조회합니다.
|
|
1100
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
1101
|
+
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
1102
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
1103
|
+
*
|
|
1104
|
+
* @param replayId 연무장 리플레이 고유 식별자
|
|
1105
|
+
*/
|
|
1106
|
+
async getBattlePracticeResult(replayId) {
|
|
1107
|
+
const path = `${this.subUrl}/v1/battle-practice/result`;
|
|
1108
|
+
const query = {
|
|
1109
|
+
replay_id: replayId,
|
|
1110
|
+
};
|
|
1111
|
+
const { data } = await this.client.get(path, {
|
|
1112
|
+
params: query,
|
|
1113
|
+
});
|
|
1114
|
+
return new BattlePracticeResultDto(data);
|
|
1115
|
+
}
|
|
1116
|
+
/**
|
|
1117
|
+
* 연무장 진행 간 스킬 사용 내역을 조회합니다.
|
|
1118
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
1119
|
+
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
1120
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
1121
|
+
*
|
|
1122
|
+
* @param replayId 연무장 리플레이 고유 식별자
|
|
1123
|
+
* @param pageNo 페이지 번호 (미입력 시 1페이지 조회)
|
|
1124
|
+
*/
|
|
1125
|
+
async getBattlePracticeSkillTimeline(replayId, pageNo) {
|
|
1126
|
+
const path = `${this.subUrl}/v1/battle-practice/skill-timeline`;
|
|
1127
|
+
const query = {
|
|
1128
|
+
replay_id: replayId,
|
|
1129
|
+
page_no: pageNo,
|
|
1130
|
+
};
|
|
1131
|
+
const { data } = await this.client.get(path, {
|
|
1132
|
+
params: query,
|
|
1133
|
+
});
|
|
1134
|
+
return new BattlePracticeSkillTimelineDto(data);
|
|
1135
|
+
}
|
|
1136
|
+
/**
|
|
1137
|
+
* 연무장 입장 시의 캐릭터 능력치 관련 정보를 조회합니다.
|
|
1138
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
1139
|
+
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
1140
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
1141
|
+
*
|
|
1142
|
+
* @param replayId 연무장 리플레이 고유 식별자
|
|
1143
|
+
*/
|
|
1144
|
+
async getBattlePracticeCharacterInfo(replayId) {
|
|
1145
|
+
const path = `${this.subUrl}/v1/battle-practice/character-info`;
|
|
1146
|
+
const query = {
|
|
1147
|
+
replay_id: replayId,
|
|
1148
|
+
};
|
|
1149
|
+
const { data } = await this.client.get(path, {
|
|
1150
|
+
params: query,
|
|
1151
|
+
});
|
|
1152
|
+
return new BattlePracticeCharacterInfoDto(data);
|
|
1153
|
+
}
|
|
1154
|
+
//#endregion
|
|
1155
|
+
//#region 스케줄러 정보 조회
|
|
1156
|
+
/**
|
|
1157
|
+
* 캐릭터에 대한 스케줄러의 수행 현황 정보를 조회하는 API입니다.
|
|
1158
|
+
*
|
|
1159
|
+
* @param ocid 캐릭터 식별자
|
|
1160
|
+
* @param dateOptions 조회 기준일 (KST)
|
|
1161
|
+
*/
|
|
1162
|
+
async getSchedulerCharacterState(ocid, dateOptions) {
|
|
1163
|
+
const path = `${this.subUrl}/v1/scheduler/character-state`;
|
|
1164
|
+
const date = dateOptions ? this.toDateString(dateOptions) : undefined;
|
|
1165
|
+
const query = {
|
|
1166
|
+
ocid: ocid,
|
|
1167
|
+
date: date,
|
|
1168
|
+
};
|
|
1169
|
+
const { data } = await this.client.get(path, {
|
|
1170
|
+
params: query,
|
|
1171
|
+
});
|
|
1172
|
+
if (this.isEmptyResponse(data)) {
|
|
1173
|
+
return null;
|
|
1174
|
+
}
|
|
1175
|
+
return new SchedulerCharacterStateDto(data);
|
|
1176
|
+
}
|
|
1073
1177
|
async getStarforceHistory(count, parameter) {
|
|
1074
1178
|
const path = `${this.subUrl}/v1/history/starforce`;
|
|
1075
1179
|
const query = {
|
|
@@ -1146,7 +1250,7 @@ class MapleStoryApi extends MapleStoryApi$1 {
|
|
|
1146
1250
|
/**
|
|
1147
1251
|
* 종합 랭킹 정보를 조회합니다.
|
|
1148
1252
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
1149
|
-
* - 오늘의 랭킹 정보는 오전 9시 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1253
|
+
* - 오늘의 랭킹 정보는 오전 9시 30분 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1150
1254
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
1151
1255
|
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
1152
1256
|
*
|
|
@@ -1156,7 +1260,7 @@ class MapleStoryApi extends MapleStoryApi$1 {
|
|
|
1156
1260
|
*/
|
|
1157
1261
|
async getOverallRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
|
|
1158
1262
|
hour: 9,
|
|
1159
|
-
minute:
|
|
1263
|
+
minute: 30,
|
|
1160
1264
|
dateOffset: 0,
|
|
1161
1265
|
})) {
|
|
1162
1266
|
const path = `${this.subUrl}/v1/ranking/overall`;
|
|
@@ -1183,7 +1287,7 @@ class MapleStoryApi extends MapleStoryApi$1 {
|
|
|
1183
1287
|
/**
|
|
1184
1288
|
* 유니온 랭킹 정보를 조회합니다.
|
|
1185
1289
|
* - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
|
|
1186
|
-
* - 오늘의 랭킹 정보는 오전 9시 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1290
|
+
* - 오늘의 랭킹 정보는 오전 9시 30분 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1187
1291
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
1188
1292
|
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
1189
1293
|
*
|
|
@@ -1192,7 +1296,7 @@ class MapleStoryApi extends MapleStoryApi$1 {
|
|
|
1192
1296
|
*/
|
|
1193
1297
|
async getUnionRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
|
|
1194
1298
|
hour: 9,
|
|
1195
|
-
minute:
|
|
1299
|
+
minute: 30,
|
|
1196
1300
|
dateOffset: 0,
|
|
1197
1301
|
})) {
|
|
1198
1302
|
const path = `${this.subUrl}/v1/ranking/union`;
|
|
@@ -1217,7 +1321,7 @@ class MapleStoryApi extends MapleStoryApi$1 {
|
|
|
1217
1321
|
/**
|
|
1218
1322
|
* 길드 랭킹 정보를 조회합니다.
|
|
1219
1323
|
* - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
|
|
1220
|
-
* - 오늘의 랭킹 정보는 오전 9시 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1324
|
+
* - 오늘의 랭킹 정보는 오전 9시 30분 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1221
1325
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
1222
1326
|
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
1223
1327
|
*
|
|
@@ -1226,7 +1330,7 @@ class MapleStoryApi extends MapleStoryApi$1 {
|
|
|
1226
1330
|
*/
|
|
1227
1331
|
async getGuildRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
|
|
1228
1332
|
hour: 9,
|
|
1229
|
-
minute:
|
|
1333
|
+
minute: 30,
|
|
1230
1334
|
dateOffset: 0,
|
|
1231
1335
|
})) {
|
|
1232
1336
|
const path = `${this.subUrl}/v1/ranking/guild`;
|
|
@@ -1253,7 +1357,7 @@ class MapleStoryApi extends MapleStoryApi$1 {
|
|
|
1253
1357
|
/**
|
|
1254
1358
|
* 무릉도장 랭킹 정보를 조회합니다.
|
|
1255
1359
|
* - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
|
|
1256
|
-
* - 오늘의 랭킹 정보는 오전 9시 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1360
|
+
* - 오늘의 랭킹 정보는 오전 9시 30분 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1257
1361
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
1258
1362
|
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
1259
1363
|
*
|
|
@@ -1262,7 +1366,7 @@ class MapleStoryApi extends MapleStoryApi$1 {
|
|
|
1262
1366
|
*/
|
|
1263
1367
|
async getDojangRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
|
|
1264
1368
|
hour: 9,
|
|
1265
|
-
minute:
|
|
1369
|
+
minute: 30,
|
|
1266
1370
|
dateOffset: 0,
|
|
1267
1371
|
})) {
|
|
1268
1372
|
const path = `${this.subUrl}/v1/ranking/dojang`;
|
|
@@ -1290,7 +1394,7 @@ class MapleStoryApi extends MapleStoryApi$1 {
|
|
|
1290
1394
|
/**
|
|
1291
1395
|
* 더 시드 랭킹 정보를 조회합니다.
|
|
1292
1396
|
* - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
|
|
1293
|
-
* - 오늘의 랭킹 정보는 오전 9시 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1397
|
+
* - 오늘의 랭킹 정보는 오전 9시 30분 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1294
1398
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
1295
1399
|
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
1296
1400
|
*
|
|
@@ -1299,7 +1403,7 @@ class MapleStoryApi extends MapleStoryApi$1 {
|
|
|
1299
1403
|
*/
|
|
1300
1404
|
async getSeedRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
|
|
1301
1405
|
hour: 9,
|
|
1302
|
-
minute:
|
|
1406
|
+
minute: 30,
|
|
1303
1407
|
dateOffset: 0,
|
|
1304
1408
|
})) {
|
|
1305
1409
|
const path = `${this.subUrl}/v1/ranking/theseed`;
|
|
@@ -1324,7 +1428,7 @@ class MapleStoryApi extends MapleStoryApi$1 {
|
|
|
1324
1428
|
/**
|
|
1325
1429
|
* 업적 랭킹 정보를 조회합니다.
|
|
1326
1430
|
* - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
|
|
1327
|
-
* - 오늘의 랭킹 정보는 오전 9시 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1431
|
+
* - 오늘의 랭킹 정보는 오전 9시 30분 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1328
1432
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
1329
1433
|
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
1330
1434
|
*
|
|
@@ -1333,7 +1437,7 @@ class MapleStoryApi extends MapleStoryApi$1 {
|
|
|
1333
1437
|
*/
|
|
1334
1438
|
async getAchievementRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
|
|
1335
1439
|
hour: 9,
|
|
1336
|
-
minute:
|
|
1440
|
+
minute: 30,
|
|
1337
1441
|
dateOffset: 0,
|
|
1338
1442
|
})) {
|
|
1339
1443
|
const path = `${this.subUrl}/v1/ranking/achievement`;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
+
import { MapleStoryFriendsApi as MapleStoryFriendsApi$1 } from '../common/mapleStoryFriendsApi.js';
|
|
1
2
|
import { CubeHistoryResponseDto } from './dto/history/cubeHistory.js';
|
|
2
3
|
import { PotentialHistoryResponseDto } from './dto/history/potentialHistory.js';
|
|
3
4
|
import { StarforceHistoryResponseDto } from './dto/history/starforceHistory.js';
|
|
4
5
|
import { AchievementDto } from './dto/user/achievement.js';
|
|
5
6
|
import { CharacterListDto } from './dto/user/characterList.js';
|
|
6
|
-
import { MapleStoryFriendsApi as MapleStoryFriendsApi$1 } from '../common/mapleStoryFriendsApi.js';
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* MapleStory Friends API client for KMS<br>
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import axios from 'axios';
|
|
2
2
|
import '../../../node_modules/buffer/index.js';
|
|
3
|
+
import { removeQuery } from '../common/lib.js';
|
|
3
4
|
import { CharacterDto } from './dto/character/character.js';
|
|
4
5
|
import { CharacterAbilityDto } from './dto/character/characterAbility.js';
|
|
5
6
|
import { CharacterAndroidEquipmentDto } from './dto/character/characterAndroidEquipment.js';
|
|
@@ -29,7 +30,6 @@ import { UnionChampionDto } from './dto/union/unionChampion.js';
|
|
|
29
30
|
import { UnionRaiderDto } from './dto/union/unionRaider.js';
|
|
30
31
|
import { CharacterImageAction, CharacterImageEmotion, CharacterImageWeaponMotion } from '../common/enum/characterImage.js';
|
|
31
32
|
import { MapleStoryApi as MapleStoryApi$1 } from '../common/mapleStoryApi.js';
|
|
32
|
-
import { removeQuery } from '../common/lib.js';
|
|
33
33
|
import { __exports as buffer } from '../../../_virtual/index.js_commonjs-exports.js';
|
|
34
34
|
|
|
35
35
|
/**
|