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,177 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* 캐릭터 스케줄러 정보
|
|
7
|
+
*/
|
|
8
|
+
class SchedulerCharacterStateDto {
|
|
9
|
+
/**
|
|
10
|
+
* 조회 기준일 (YYYY-MM-DD)
|
|
11
|
+
*/
|
|
12
|
+
date;
|
|
13
|
+
/**
|
|
14
|
+
* 캐릭터 명
|
|
15
|
+
*/
|
|
16
|
+
characterName;
|
|
17
|
+
/**
|
|
18
|
+
* 월드 명
|
|
19
|
+
*/
|
|
20
|
+
worldName;
|
|
21
|
+
/**
|
|
22
|
+
* 캐릭터 레벨
|
|
23
|
+
*/
|
|
24
|
+
characterLevel;
|
|
25
|
+
/**
|
|
26
|
+
* 캐릭터 직업
|
|
27
|
+
*/
|
|
28
|
+
characterClass;
|
|
29
|
+
/**
|
|
30
|
+
* 일일 콘텐츠 정보
|
|
31
|
+
*/
|
|
32
|
+
dailyContents;
|
|
33
|
+
/**
|
|
34
|
+
* 주간 콘텐츠 정보
|
|
35
|
+
*/
|
|
36
|
+
weeklyContents;
|
|
37
|
+
/**
|
|
38
|
+
* 보스 콘텐츠 정보
|
|
39
|
+
*/
|
|
40
|
+
bossContents;
|
|
41
|
+
/**
|
|
42
|
+
* 주간 보스 처치 완료 횟수
|
|
43
|
+
*/
|
|
44
|
+
weeklyBossClearCount;
|
|
45
|
+
/**
|
|
46
|
+
* 주간 보스 처치 제한 횟수
|
|
47
|
+
*/
|
|
48
|
+
weeklyBossClearLimitCount;
|
|
49
|
+
constructor(obj) {
|
|
50
|
+
this.date = obj.date ? new Date(obj.date) : null;
|
|
51
|
+
this.characterName = obj.character_name;
|
|
52
|
+
this.worldName = obj.world_name;
|
|
53
|
+
this.characterLevel = obj.character_level;
|
|
54
|
+
this.characterClass = obj.character_class;
|
|
55
|
+
this.dailyContents = (obj.daily_contents ?? []).map((item) => new SchedulerDailyContentDto(item));
|
|
56
|
+
this.weeklyContents = (obj.weekly_contents ?? []).map((item) => new SchedulerWeeklyContentDto(item));
|
|
57
|
+
this.bossContents = (obj.boss_contents ?? []).map((item) => new SchedulerBossContentDto(item));
|
|
58
|
+
this.weeklyBossClearCount = obj.weekly_boss_clear_count;
|
|
59
|
+
this.weeklyBossClearLimitCount = obj.weekly_boss_clear_limit_count;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* 스케줄러 일일 콘텐츠 정보
|
|
64
|
+
*/
|
|
65
|
+
class SchedulerDailyContentDto {
|
|
66
|
+
/**
|
|
67
|
+
* 콘텐츠/퀘스트 명
|
|
68
|
+
*/
|
|
69
|
+
contentName;
|
|
70
|
+
/**
|
|
71
|
+
* 타입 ('contents', 'quest')
|
|
72
|
+
*/
|
|
73
|
+
type;
|
|
74
|
+
/**
|
|
75
|
+
* 인게임 스케줄러 등록 여부 (true/false)
|
|
76
|
+
*/
|
|
77
|
+
registrationFlag;
|
|
78
|
+
/**
|
|
79
|
+
* 현재 완료 횟수/점수
|
|
80
|
+
*/
|
|
81
|
+
nowCount;
|
|
82
|
+
/**
|
|
83
|
+
* 최대 완료 가능 횟수/점수
|
|
84
|
+
*/
|
|
85
|
+
maxCount;
|
|
86
|
+
/**
|
|
87
|
+
* 퀘스트인 경우 진행 상태 ("0":기타, "1":진행 중, "2":완료)
|
|
88
|
+
*/
|
|
89
|
+
questState;
|
|
90
|
+
constructor(obj) {
|
|
91
|
+
this.contentName = obj.content_name;
|
|
92
|
+
this.type = obj.type;
|
|
93
|
+
this.registrationFlag = obj.registration_flag;
|
|
94
|
+
this.nowCount = obj.now_count;
|
|
95
|
+
this.maxCount = obj.max_count;
|
|
96
|
+
this.questState = obj.quest_state;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* 스케줄러 주간 콘텐츠 정보
|
|
101
|
+
*/
|
|
102
|
+
class SchedulerWeeklyContentDto {
|
|
103
|
+
/**
|
|
104
|
+
* 콘텐츠 명
|
|
105
|
+
*/
|
|
106
|
+
contentName;
|
|
107
|
+
/**
|
|
108
|
+
* 콘텐츠 종류 ('contents', 'quest')
|
|
109
|
+
*/
|
|
110
|
+
type;
|
|
111
|
+
/**
|
|
112
|
+
* 인게임 스케줄러 등록 여부 (true/false)
|
|
113
|
+
*/
|
|
114
|
+
registrationFlag;
|
|
115
|
+
/**
|
|
116
|
+
* 현재 완료 횟수/점수
|
|
117
|
+
*/
|
|
118
|
+
nowCount;
|
|
119
|
+
/**
|
|
120
|
+
* 최대 완료 가능 횟수/점수
|
|
121
|
+
*/
|
|
122
|
+
maxCount;
|
|
123
|
+
/**
|
|
124
|
+
* 퀘스트인 경우 진행 상태 ("0":기타, "1":진행 중, "2":완료)
|
|
125
|
+
*/
|
|
126
|
+
questState;
|
|
127
|
+
constructor(obj) {
|
|
128
|
+
this.contentName = obj.content_name;
|
|
129
|
+
this.type = obj.type;
|
|
130
|
+
this.registrationFlag = obj.registration_flag;
|
|
131
|
+
this.nowCount = obj.now_count;
|
|
132
|
+
this.maxCount = obj.max_count;
|
|
133
|
+
this.questState = obj.quest_state;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* 스케줄러 보스 콘텐츠 정보
|
|
138
|
+
*/
|
|
139
|
+
class SchedulerBossContentDto {
|
|
140
|
+
/**
|
|
141
|
+
* 보스 명
|
|
142
|
+
*/
|
|
143
|
+
contentName;
|
|
144
|
+
/**
|
|
145
|
+
* 보스 난이도
|
|
146
|
+
*/
|
|
147
|
+
difficulty;
|
|
148
|
+
/**
|
|
149
|
+
* 보스 초기화 주기
|
|
150
|
+
*/
|
|
151
|
+
cycle;
|
|
152
|
+
/**
|
|
153
|
+
* 리스트 순서
|
|
154
|
+
*/
|
|
155
|
+
listOrderNo;
|
|
156
|
+
/**
|
|
157
|
+
* 인게임 스케줄러 등록 여부 (true/false)
|
|
158
|
+
*/
|
|
159
|
+
registrationFlag;
|
|
160
|
+
/**
|
|
161
|
+
* 완료 여부 (true/false)
|
|
162
|
+
*/
|
|
163
|
+
completeFlag;
|
|
164
|
+
constructor(obj) {
|
|
165
|
+
this.contentName = obj.content_name;
|
|
166
|
+
this.difficulty = obj.difficulty;
|
|
167
|
+
this.cycle = obj.cycle;
|
|
168
|
+
this.listOrderNo = obj.list_order_no;
|
|
169
|
+
this.registrationFlag = obj.registration_flag;
|
|
170
|
+
this.completeFlag = obj.complete_flag;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
exports.SchedulerBossContentDto = SchedulerBossContentDto;
|
|
175
|
+
exports.SchedulerCharacterStateDto = SchedulerCharacterStateDto;
|
|
176
|
+
exports.SchedulerDailyContentDto = SchedulerDailyContentDto;
|
|
177
|
+
exports.SchedulerWeeklyContentDto = SchedulerWeeklyContentDto;
|
|
@@ -16,6 +16,18 @@ class UnionRaiderDto extends unionRaider.UnionRaiderDto {
|
|
|
16
16
|
* 유니온 공격대원 효과
|
|
17
17
|
*/
|
|
18
18
|
unionRaiderStat;
|
|
19
|
+
/**
|
|
20
|
+
* 적용 중인 유니온 스탯 효과
|
|
21
|
+
*/
|
|
22
|
+
unionStateStat;
|
|
23
|
+
/**
|
|
24
|
+
* 프리셋 별 유니온 스탯 효과
|
|
25
|
+
*/
|
|
26
|
+
unionStateStatPreset;
|
|
27
|
+
/**
|
|
28
|
+
* 총 유니온 포인트
|
|
29
|
+
*/
|
|
30
|
+
unionMaxPoint;
|
|
19
31
|
/**
|
|
20
32
|
* 유니온 공격대 점령 효과
|
|
21
33
|
*/
|
|
@@ -54,9 +66,12 @@ class UnionRaiderDto extends unionRaider.UnionRaiderDto {
|
|
|
54
66
|
unionRaiderPreset5;
|
|
55
67
|
constructor(obj) {
|
|
56
68
|
super();
|
|
57
|
-
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;
|
|
69
|
+
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;
|
|
58
70
|
this.date = date ? new Date(date) : null;
|
|
59
71
|
this.unionRaiderStat = union_raider_stat;
|
|
72
|
+
this.unionStateStat = union_state_stat;
|
|
73
|
+
this.unionStateStatPreset = (union_state_stat_preset ?? []).map((preset) => new UnionRaiderStateStatPresetDto(preset));
|
|
74
|
+
this.unionMaxPoint = union_max_point;
|
|
60
75
|
this.unionOccupiedStat = union_occupied_stat;
|
|
61
76
|
this.unionInnerStat = union_inner_stat.map((stat) => new UnionRaiderInnerStatDto(stat));
|
|
62
77
|
this.unionBlock = union_block.map((block) => new UnionRaiderBlockDto(block));
|
|
@@ -171,6 +186,24 @@ class UnionRaiderBlockDto extends unionRaider.UnionRaiderBlockDto {
|
|
|
171
186
|
: null;
|
|
172
187
|
}
|
|
173
188
|
}
|
|
189
|
+
/**
|
|
190
|
+
* 유니온 스탯 프리셋 정보
|
|
191
|
+
*/
|
|
192
|
+
class UnionRaiderStateStatPresetDto {
|
|
193
|
+
/**
|
|
194
|
+
* 프리셋 번호
|
|
195
|
+
*/
|
|
196
|
+
presetNo;
|
|
197
|
+
/**
|
|
198
|
+
* 유니온 스탯 효과
|
|
199
|
+
*/
|
|
200
|
+
unionStateStat;
|
|
201
|
+
constructor(obj) {
|
|
202
|
+
const { preset_no, union_state_stat } = obj;
|
|
203
|
+
this.presetNo = preset_no;
|
|
204
|
+
this.unionStateStat = union_state_stat;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
174
207
|
/**
|
|
175
208
|
* 유니온 프리셋 정보
|
|
176
209
|
*/
|
|
@@ -207,3 +240,4 @@ exports.UnionRaiderBlockPositionDto = UnionRaiderBlockPositionDto;
|
|
|
207
240
|
exports.UnionRaiderDto = UnionRaiderDto;
|
|
208
241
|
exports.UnionRaiderInnerStatDto = UnionRaiderInnerStatDto;
|
|
209
242
|
exports.UnionRaiderPresetDto = UnionRaiderPresetDto;
|
|
243
|
+
exports.UnionRaiderStateStatPresetDto = UnionRaiderStateStatPresetDto;
|
|
@@ -4,6 +4,10 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var mapleStoryApi = require('./mapleStoryApi.js');
|
|
6
6
|
var mapleStoryFriendsApi = require('./mapleStoryFriendsApi.js');
|
|
7
|
+
var battlePracticeCharacterInfo = require('./dto/battlePractice/battlePracticeCharacterInfo.js');
|
|
8
|
+
var battlePracticeReplayId = require('./dto/battlePractice/battlePracticeReplayId.js');
|
|
9
|
+
var battlePracticeResult = require('./dto/battlePractice/battlePracticeResult.js');
|
|
10
|
+
var battlePracticeSkillTimeline = require('./dto/battlePractice/battlePracticeSkillTimeline.js');
|
|
7
11
|
var character = require('./dto/character/character.js');
|
|
8
12
|
var characterAbility = require('./dto/character/characterAbility.js');
|
|
9
13
|
var characterAndroidEquipment = require('./dto/character/characterAndroidEquipment.js');
|
|
@@ -47,6 +51,7 @@ var guildRanking = require('./dto/ranking/guildRanking.js');
|
|
|
47
51
|
var overallRanking = require('./dto/ranking/overallRanking.js');
|
|
48
52
|
var theSeedRanking = require('./dto/ranking/theSeedRanking.js');
|
|
49
53
|
var unionRanking = require('./dto/ranking/unionRanking.js');
|
|
54
|
+
var schedulerCharacterState = require('./dto/scheduler/schedulerCharacterState.js');
|
|
50
55
|
var union = require('./dto/union/union.js');
|
|
51
56
|
var unionArtifact = require('./dto/union/unionArtifact.js');
|
|
52
57
|
var unionChampion = require('./dto/union/unionChampion.js');
|
|
@@ -59,6 +64,69 @@ var inspectionInfo = require('./dto/inspectionInfo.js');
|
|
|
59
64
|
|
|
60
65
|
exports.MapleStoryApi = mapleStoryApi.MapleStoryApi;
|
|
61
66
|
exports.MapleStoryFriendsApi = mapleStoryFriendsApi.MapleStoryFriendsApi;
|
|
67
|
+
exports.BattlePracticeCharacterAbilityInfoDto = battlePracticeCharacterInfo.BattlePracticeCharacterAbilityInfoDto;
|
|
68
|
+
exports.BattlePracticeCharacterAbilityObjectDto = battlePracticeCharacterInfo.BattlePracticeCharacterAbilityObjectDto;
|
|
69
|
+
exports.BattlePracticeCharacterBasicDto = battlePracticeCharacterInfo.BattlePracticeCharacterBasicDto;
|
|
70
|
+
exports.BattlePracticeCharacterBasicStatDto = battlePracticeCharacterInfo.BattlePracticeCharacterBasicStatDto;
|
|
71
|
+
exports.BattlePracticeCharacterCashItemEquipmentDto = battlePracticeCharacterInfo.BattlePracticeCharacterCashItemEquipmentDto;
|
|
72
|
+
exports.BattlePracticeCharacterCashItemObjectDto = battlePracticeCharacterInfo.BattlePracticeCharacterCashItemObjectDto;
|
|
73
|
+
exports.BattlePracticeCharacterCashItemOptionDto = battlePracticeCharacterInfo.BattlePracticeCharacterCashItemOptionDto;
|
|
74
|
+
exports.BattlePracticeCharacterFinalStatDto = battlePracticeCharacterInfo.BattlePracticeCharacterFinalStatDto;
|
|
75
|
+
exports.BattlePracticeCharacterHexaCoreEquipmentDto = battlePracticeCharacterInfo.BattlePracticeCharacterHexaCoreEquipmentDto;
|
|
76
|
+
exports.BattlePracticeCharacterHexaCoreObjectDto = battlePracticeCharacterInfo.BattlePracticeCharacterHexaCoreObjectDto;
|
|
77
|
+
exports.BattlePracticeCharacterHexaLinkedSkillDto = battlePracticeCharacterInfo.BattlePracticeCharacterHexaLinkedSkillDto;
|
|
78
|
+
exports.BattlePracticeCharacterHexaMatrixObjectDto = battlePracticeCharacterInfo.BattlePracticeCharacterHexaMatrixObjectDto;
|
|
79
|
+
exports.BattlePracticeCharacterHexaMatrixStatObjectDto = battlePracticeCharacterInfo.BattlePracticeCharacterHexaMatrixStatObjectDto;
|
|
80
|
+
exports.BattlePracticeCharacterHexaStatCoreDto = battlePracticeCharacterInfo.BattlePracticeCharacterHexaStatCoreDto;
|
|
81
|
+
exports.BattlePracticeCharacterHyperStatDto = battlePracticeCharacterInfo.BattlePracticeCharacterHyperStatDto;
|
|
82
|
+
exports.BattlePracticeCharacterHyperStatObjectDto = battlePracticeCharacterInfo.BattlePracticeCharacterHyperStatObjectDto;
|
|
83
|
+
exports.BattlePracticeCharacterInfoDto = battlePracticeCharacterInfo.BattlePracticeCharacterInfoDto;
|
|
84
|
+
exports.BattlePracticeCharacterItemAddOptionDto = battlePracticeCharacterInfo.BattlePracticeCharacterItemAddOptionDto;
|
|
85
|
+
exports.BattlePracticeCharacterItemBaseOptionDto = battlePracticeCharacterInfo.BattlePracticeCharacterItemBaseOptionDto;
|
|
86
|
+
exports.BattlePracticeCharacterItemDragonEquipmentDto = battlePracticeCharacterInfo.BattlePracticeCharacterItemDragonEquipmentDto;
|
|
87
|
+
exports.BattlePracticeCharacterItemEquipmentDto = battlePracticeCharacterInfo.BattlePracticeCharacterItemEquipmentDto;
|
|
88
|
+
exports.BattlePracticeCharacterItemEquipmentObjectDto = battlePracticeCharacterInfo.BattlePracticeCharacterItemEquipmentObjectDto;
|
|
89
|
+
exports.BattlePracticeCharacterItemEtcOptionDto = battlePracticeCharacterInfo.BattlePracticeCharacterItemEtcOptionDto;
|
|
90
|
+
exports.BattlePracticeCharacterItemExceptionalOptionDto = battlePracticeCharacterInfo.BattlePracticeCharacterItemExceptionalOptionDto;
|
|
91
|
+
exports.BattlePracticeCharacterItemMechanicEquipmentDto = battlePracticeCharacterInfo.BattlePracticeCharacterItemMechanicEquipmentDto;
|
|
92
|
+
exports.BattlePracticeCharacterItemObjectDto = battlePracticeCharacterInfo.BattlePracticeCharacterItemObjectDto;
|
|
93
|
+
exports.BattlePracticeCharacterItemStarforceOptionDto = battlePracticeCharacterInfo.BattlePracticeCharacterItemStarforceOptionDto;
|
|
94
|
+
exports.BattlePracticeCharacterItemTitleDto = battlePracticeCharacterInfo.BattlePracticeCharacterItemTitleDto;
|
|
95
|
+
exports.BattlePracticeCharacterItemTotalOptionDto = battlePracticeCharacterInfo.BattlePracticeCharacterItemTotalOptionDto;
|
|
96
|
+
exports.BattlePracticeCharacterLinkSkillObjectDto = battlePracticeCharacterInfo.BattlePracticeCharacterLinkSkillObjectDto;
|
|
97
|
+
exports.BattlePracticeCharacterOtherStatDetailDto = battlePracticeCharacterInfo.BattlePracticeCharacterOtherStatDetailDto;
|
|
98
|
+
exports.BattlePracticeCharacterOtherStatDto = battlePracticeCharacterInfo.BattlePracticeCharacterOtherStatDto;
|
|
99
|
+
exports.BattlePracticeCharacterOtherStatInfoDto = battlePracticeCharacterInfo.BattlePracticeCharacterOtherStatInfoDto;
|
|
100
|
+
exports.BattlePracticeCharacterPetAutoSkillDto = battlePracticeCharacterInfo.BattlePracticeCharacterPetAutoSkillDto;
|
|
101
|
+
exports.BattlePracticeCharacterPetEquipmentDto = battlePracticeCharacterInfo.BattlePracticeCharacterPetEquipmentDto;
|
|
102
|
+
exports.BattlePracticeCharacterPetEquipmentItemOptionDto = battlePracticeCharacterInfo.BattlePracticeCharacterPetEquipmentItemOptionDto;
|
|
103
|
+
exports.BattlePracticeCharacterPetObjectDto = battlePracticeCharacterInfo.BattlePracticeCharacterPetObjectDto;
|
|
104
|
+
exports.BattlePracticeCharacterPetiteLunaPetSkillDto = battlePracticeCharacterInfo.BattlePracticeCharacterPetiteLunaPetSkillDto;
|
|
105
|
+
exports.BattlePracticeCharacterPropensityDto = battlePracticeCharacterInfo.BattlePracticeCharacterPropensityDto;
|
|
106
|
+
exports.BattlePracticeCharacterRingReserveSkillObjectDto = battlePracticeCharacterInfo.BattlePracticeCharacterRingReserveSkillObjectDto;
|
|
107
|
+
exports.BattlePracticeCharacterSetEffectDto = battlePracticeCharacterInfo.BattlePracticeCharacterSetEffectDto;
|
|
108
|
+
exports.BattlePracticeCharacterSetEffectInfoDto = battlePracticeCharacterInfo.BattlePracticeCharacterSetEffectInfoDto;
|
|
109
|
+
exports.BattlePracticeCharacterSetEffectObjectDto = battlePracticeCharacterInfo.BattlePracticeCharacterSetEffectObjectDto;
|
|
110
|
+
exports.BattlePracticeCharacterSkillInfoDto = battlePracticeCharacterInfo.BattlePracticeCharacterSkillInfoDto;
|
|
111
|
+
exports.BattlePracticeCharacterSkillObjectDto = battlePracticeCharacterInfo.BattlePracticeCharacterSkillObjectDto;
|
|
112
|
+
exports.BattlePracticeCharacterStatDto = battlePracticeCharacterInfo.BattlePracticeCharacterStatDto;
|
|
113
|
+
exports.BattlePracticeCharacterSymbolDto = battlePracticeCharacterInfo.BattlePracticeCharacterSymbolDto;
|
|
114
|
+
exports.BattlePracticeCharacterSymbolStatDto = battlePracticeCharacterInfo.BattlePracticeCharacterSymbolStatDto;
|
|
115
|
+
exports.BattlePracticeCharacterVCoreDto = battlePracticeCharacterInfo.BattlePracticeCharacterVCoreDto;
|
|
116
|
+
exports.BattlePracticeCharacterVMatrixObjectDto = battlePracticeCharacterInfo.BattlePracticeCharacterVMatrixObjectDto;
|
|
117
|
+
exports.BattlePracticeGuildObjectDto = battlePracticeCharacterInfo.BattlePracticeGuildObjectDto;
|
|
118
|
+
exports.BattlePracticeGuildSkillDto = battlePracticeCharacterInfo.BattlePracticeGuildSkillDto;
|
|
119
|
+
exports.BattlePracticeUnionArtifactEffectDto = battlePracticeCharacterInfo.BattlePracticeUnionArtifactEffectDto;
|
|
120
|
+
exports.BattlePracticeUnionArtifactObjectDto = battlePracticeCharacterInfo.BattlePracticeUnionArtifactObjectDto;
|
|
121
|
+
exports.BattlePracticeUnionChampionBadgeDto = battlePracticeCharacterInfo.BattlePracticeUnionChampionBadgeDto;
|
|
122
|
+
exports.BattlePracticeUnionChampionObjectDto = battlePracticeCharacterInfo.BattlePracticeUnionChampionObjectDto;
|
|
123
|
+
exports.BattlePracticeUnionRaiderObjectDto = battlePracticeCharacterInfo.BattlePracticeUnionRaiderObjectDto;
|
|
124
|
+
exports.BattlePracticeReplayIdDto = battlePracticeReplayId.BattlePracticeReplayIdDto;
|
|
125
|
+
exports.BattlePracticeReplayIdInfoDto = battlePracticeReplayId.BattlePracticeReplayIdInfoDto;
|
|
126
|
+
exports.BattlePracticeResultDto = battlePracticeResult.BattlePracticeResultDto;
|
|
127
|
+
exports.BattlePracticeSkillStatisticDto = battlePracticeResult.BattlePracticeSkillStatisticDto;
|
|
128
|
+
exports.BattlePracticeSkillTimelineDto = battlePracticeSkillTimeline.BattlePracticeSkillTimelineDto;
|
|
129
|
+
exports.BattlePracticeSkillTimelineEventDto = battlePracticeSkillTimeline.BattlePracticeSkillTimelineEventDto;
|
|
62
130
|
exports.CharacterDto = character.CharacterDto;
|
|
63
131
|
exports.CharacterAbilityDto = characterAbility.CharacterAbilityDto;
|
|
64
132
|
exports.CharacterAbilityInfoDto = characterAbility.CharacterAbilityInfoDto;
|
|
@@ -101,6 +169,7 @@ exports.CharacterItemEquipmentMechanicInfoDto = characterItemEquipment.Character
|
|
|
101
169
|
exports.CharacterItemEquipmentMedalShapeDto = characterItemEquipment.CharacterItemEquipmentMedalShapeDto;
|
|
102
170
|
exports.CharacterItemEquipmentStarforceOptionDto = characterItemEquipment.CharacterItemEquipmentStarforceOptionDto;
|
|
103
171
|
exports.CharacterItemEquipmentTitleDto = characterItemEquipment.CharacterItemEquipmentTitleDto;
|
|
172
|
+
exports.CharacterItemEquipmentTitlePresetDto = characterItemEquipment.CharacterItemEquipmentTitlePresetDto;
|
|
104
173
|
exports.CharacterItemEquipmentTotalOptionDto = characterItemEquipment.CharacterItemEquipmentTotalOptionDto;
|
|
105
174
|
exports.CharacterLinkSkillDto = characterLinkSkill.CharacterLinkSkillDto;
|
|
106
175
|
exports.CharacterLinkSkillInfoDto = characterLinkSkill.CharacterLinkSkillInfoDto;
|
|
@@ -111,6 +180,7 @@ exports.CharacterPetEquipmentAutoSkillDto = characterPetEquipment.CharacterPetEq
|
|
|
111
180
|
exports.CharacterPetEquipmentDto = characterPetEquipment.CharacterPetEquipmentDto;
|
|
112
181
|
exports.CharacterPetEquipmentItemDto = characterPetEquipment.CharacterPetEquipmentItemDto;
|
|
113
182
|
exports.CharacterPetEquipmentItemOptionDto = characterPetEquipment.CharacterPetEquipmentItemOptionDto;
|
|
183
|
+
exports.CharacterPetEquipmentPetiteLunaPetSkillDto = characterPetEquipment.CharacterPetEquipmentPetiteLunaPetSkillDto;
|
|
114
184
|
exports.CharacterPopularityDto = characterPopularity.CharacterPopularityDto;
|
|
115
185
|
exports.CharacterPropensityDto = characterPropensity.CharacterPropensityDto;
|
|
116
186
|
exports.CharacterSetEffectDto = characterSetEffect.CharacterSetEffectDto;
|
|
@@ -126,6 +196,7 @@ exports.CharacterSymbolEquipmentInfoDto = characterSymbolEquipment.CharacterSymb
|
|
|
126
196
|
exports.CharacterRingExchangeSkillEquipmentDto = characterRingExchangeSkillEquipment.CharacterRingExchangeSkillEquipmentDto;
|
|
127
197
|
exports.CharacterRingReserveSkillEquipmentDto = characterRingReserveSkillEquipment.CharacterRingReserveSkillEquipmentDto;
|
|
128
198
|
exports.CharacterVMatrixCodeEquipmentDto = characterVMatrix.CharacterVMatrixCodeEquipmentDto;
|
|
199
|
+
exports.CharacterVMatrixCoreEquipmentPresetDto = characterVMatrix.CharacterVMatrixCoreEquipmentPresetDto;
|
|
129
200
|
exports.CharacterVMatrixDto = characterVMatrix.CharacterVMatrixDto;
|
|
130
201
|
exports.GuildDto = guild.GuildDto;
|
|
131
202
|
exports.GuildBasicDto = guildBasic.GuildBasicDto;
|
|
@@ -163,6 +234,10 @@ exports.TheSeedRankingDto = theSeedRanking.TheSeedRankingDto;
|
|
|
163
234
|
exports.TheSeedRankingResponseDto = theSeedRanking.TheSeedRankingResponseDto;
|
|
164
235
|
exports.UnionRankingDto = unionRanking.UnionRankingDto;
|
|
165
236
|
exports.UnionRankingResponseDto = unionRanking.UnionRankingResponseDto;
|
|
237
|
+
exports.SchedulerBossContentDto = schedulerCharacterState.SchedulerBossContentDto;
|
|
238
|
+
exports.SchedulerCharacterStateDto = schedulerCharacterState.SchedulerCharacterStateDto;
|
|
239
|
+
exports.SchedulerDailyContentDto = schedulerCharacterState.SchedulerDailyContentDto;
|
|
240
|
+
exports.SchedulerWeeklyContentDto = schedulerCharacterState.SchedulerWeeklyContentDto;
|
|
166
241
|
exports.UnionDto = union.UnionDto;
|
|
167
242
|
exports.UnionArtifactCrystalDto = unionArtifact.UnionArtifactCrystalDto;
|
|
168
243
|
exports.UnionArtifactDto = unionArtifact.UnionArtifactDto;
|
|
@@ -176,6 +251,7 @@ exports.UnionRaiderBlockPositionDto = unionRaider.UnionRaiderBlockPositionDto;
|
|
|
176
251
|
exports.UnionRaiderDto = unionRaider.UnionRaiderDto;
|
|
177
252
|
exports.UnionRaiderInnerStatDto = unionRaider.UnionRaiderInnerStatDto;
|
|
178
253
|
exports.UnionRaiderPresetDto = unionRaider.UnionRaiderPresetDto;
|
|
254
|
+
exports.UnionRaiderStateStatPresetDto = unionRaider.UnionRaiderStateStatPresetDto;
|
|
179
255
|
exports.AchievementAccountListDto = achievement.AchievementAccountListDto;
|
|
180
256
|
exports.AchievementAchieveDto = achievement.AchievementAchieveDto;
|
|
181
257
|
exports.AchievementDto = achievement.AchievementDto;
|
|
@@ -5,6 +5,10 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var axios = require('axios');
|
|
6
6
|
require('../../../node_modules/buffer/index.js');
|
|
7
7
|
var xml2js = require('xml2js');
|
|
8
|
+
var battlePracticeCharacterInfo = require('./dto/battlePractice/battlePracticeCharacterInfo.js');
|
|
9
|
+
var battlePracticeReplayId = require('./dto/battlePractice/battlePracticeReplayId.js');
|
|
10
|
+
var battlePracticeResult = require('./dto/battlePractice/battlePracticeResult.js');
|
|
11
|
+
var battlePracticeSkillTimeline = require('./dto/battlePractice/battlePracticeSkillTimeline.js');
|
|
8
12
|
var character = require('./dto/character/character.js');
|
|
9
13
|
var characterAbility = require('./dto/character/characterAbility.js');
|
|
10
14
|
var characterAndroidEquipment = require('./dto/character/characterAndroidEquipment.js');
|
|
@@ -35,6 +39,8 @@ var cubeHistory = require('./dto/history/cubeHistory.js');
|
|
|
35
39
|
var potentialHistory = require('./dto/history/potentialHistory.js');
|
|
36
40
|
var starforceHistory = require('./dto/history/starforceHistory.js');
|
|
37
41
|
var inspectionInfo = require('./dto/inspectionInfo.js');
|
|
42
|
+
var lib = require('../common/lib.js');
|
|
43
|
+
var mapleStoryApi = require('../common/mapleStoryApi.js');
|
|
38
44
|
var cashshopNoticeDetail = require('./dto/notice/cashshopNoticeDetail.js');
|
|
39
45
|
var cashshopNoticeList = require('./dto/notice/cashshopNoticeList.js');
|
|
40
46
|
var eventNoticeDetail = require('./dto/notice/eventNoticeDetail.js');
|
|
@@ -49,6 +55,7 @@ var guildRanking = require('./dto/ranking/guildRanking.js');
|
|
|
49
55
|
var overallRanking = require('./dto/ranking/overallRanking.js');
|
|
50
56
|
var theSeedRanking = require('./dto/ranking/theSeedRanking.js');
|
|
51
57
|
var unionRanking = require('./dto/ranking/unionRanking.js');
|
|
58
|
+
var schedulerCharacterState = require('./dto/scheduler/schedulerCharacterState.js');
|
|
52
59
|
var union = require('./dto/union/union.js');
|
|
53
60
|
var unionArtifact = require('./dto/union/unionArtifact.js');
|
|
54
61
|
var unionChampion = require('./dto/union/unionChampion.js');
|
|
@@ -56,8 +63,6 @@ var unionRaider = require('./dto/union/unionRaider.js');
|
|
|
56
63
|
var achievement = require('./dto/user/achievement.js');
|
|
57
64
|
var characterList = require('./dto/user/characterList.js');
|
|
58
65
|
var characterImage = require('../common/enum/characterImage.js');
|
|
59
|
-
var lib = require('../common/lib.js');
|
|
60
|
-
var mapleStoryApi = require('../common/mapleStoryApi.js');
|
|
61
66
|
var index = require('../../../_virtual/index.js_commonjs-exports.js');
|
|
62
67
|
|
|
63
68
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
@@ -1079,6 +1084,105 @@ class MapleStoryApi extends mapleStoryApi.MapleStoryApi {
|
|
|
1079
1084
|
}
|
|
1080
1085
|
return new guildBasic.GuildBasicDto(data);
|
|
1081
1086
|
}
|
|
1087
|
+
//#endregion
|
|
1088
|
+
//#region 연무장 정보 조회
|
|
1089
|
+
/**
|
|
1090
|
+
* 캐릭터의 연무장 리플레이 식별자를 조회합니다. 리플레이를 등록한 캐릭터에 대해서만 조회가 가능합니다.
|
|
1091
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
1092
|
+
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
1093
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
1094
|
+
*
|
|
1095
|
+
* @param ocid 캐릭터 식별자
|
|
1096
|
+
*/
|
|
1097
|
+
async getBattlePracticeReplayId(ocid) {
|
|
1098
|
+
const path = `${this.subUrl}/v1/battle-practice/replay-id`;
|
|
1099
|
+
const query = {
|
|
1100
|
+
ocid: ocid,
|
|
1101
|
+
};
|
|
1102
|
+
const { data } = await this.client.get(path, {
|
|
1103
|
+
params: query,
|
|
1104
|
+
});
|
|
1105
|
+
return new battlePracticeReplayId.BattlePracticeReplayIdDto(data);
|
|
1106
|
+
}
|
|
1107
|
+
/**
|
|
1108
|
+
* 연무장 측정 결과 정보를 조회합니다.
|
|
1109
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
1110
|
+
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
1111
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
1112
|
+
*
|
|
1113
|
+
* @param replayId 연무장 리플레이 고유 식별자
|
|
1114
|
+
*/
|
|
1115
|
+
async getBattlePracticeResult(replayId) {
|
|
1116
|
+
const path = `${this.subUrl}/v1/battle-practice/result`;
|
|
1117
|
+
const query = {
|
|
1118
|
+
replay_id: replayId,
|
|
1119
|
+
};
|
|
1120
|
+
const { data } = await this.client.get(path, {
|
|
1121
|
+
params: query,
|
|
1122
|
+
});
|
|
1123
|
+
return new battlePracticeResult.BattlePracticeResultDto(data);
|
|
1124
|
+
}
|
|
1125
|
+
/**
|
|
1126
|
+
* 연무장 진행 간 스킬 사용 내역을 조회합니다.
|
|
1127
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
1128
|
+
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
1129
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
1130
|
+
*
|
|
1131
|
+
* @param replayId 연무장 리플레이 고유 식별자
|
|
1132
|
+
* @param pageNo 페이지 번호 (미입력 시 1페이지 조회)
|
|
1133
|
+
*/
|
|
1134
|
+
async getBattlePracticeSkillTimeline(replayId, pageNo) {
|
|
1135
|
+
const path = `${this.subUrl}/v1/battle-practice/skill-timeline`;
|
|
1136
|
+
const query = {
|
|
1137
|
+
replay_id: replayId,
|
|
1138
|
+
page_no: pageNo,
|
|
1139
|
+
};
|
|
1140
|
+
const { data } = await this.client.get(path, {
|
|
1141
|
+
params: query,
|
|
1142
|
+
});
|
|
1143
|
+
return new battlePracticeSkillTimeline.BattlePracticeSkillTimelineDto(data);
|
|
1144
|
+
}
|
|
1145
|
+
/**
|
|
1146
|
+
* 연무장 입장 시의 캐릭터 능력치 관련 정보를 조회합니다.
|
|
1147
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
1148
|
+
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
1149
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
1150
|
+
*
|
|
1151
|
+
* @param replayId 연무장 리플레이 고유 식별자
|
|
1152
|
+
*/
|
|
1153
|
+
async getBattlePracticeCharacterInfo(replayId) {
|
|
1154
|
+
const path = `${this.subUrl}/v1/battle-practice/character-info`;
|
|
1155
|
+
const query = {
|
|
1156
|
+
replay_id: replayId,
|
|
1157
|
+
};
|
|
1158
|
+
const { data } = await this.client.get(path, {
|
|
1159
|
+
params: query,
|
|
1160
|
+
});
|
|
1161
|
+
return new battlePracticeCharacterInfo.BattlePracticeCharacterInfoDto(data);
|
|
1162
|
+
}
|
|
1163
|
+
//#endregion
|
|
1164
|
+
//#region 스케줄러 정보 조회
|
|
1165
|
+
/**
|
|
1166
|
+
* 캐릭터에 대한 스케줄러의 수행 현황 정보를 조회하는 API입니다.
|
|
1167
|
+
*
|
|
1168
|
+
* @param ocid 캐릭터 식별자
|
|
1169
|
+
* @param dateOptions 조회 기준일 (KST)
|
|
1170
|
+
*/
|
|
1171
|
+
async getSchedulerCharacterState(ocid, dateOptions) {
|
|
1172
|
+
const path = `${this.subUrl}/v1/scheduler/character-state`;
|
|
1173
|
+
const date = dateOptions ? this.toDateString(dateOptions) : undefined;
|
|
1174
|
+
const query = {
|
|
1175
|
+
ocid: ocid,
|
|
1176
|
+
date: date,
|
|
1177
|
+
};
|
|
1178
|
+
const { data } = await this.client.get(path, {
|
|
1179
|
+
params: query,
|
|
1180
|
+
});
|
|
1181
|
+
if (this.isEmptyResponse(data)) {
|
|
1182
|
+
return null;
|
|
1183
|
+
}
|
|
1184
|
+
return new schedulerCharacterState.SchedulerCharacterStateDto(data);
|
|
1185
|
+
}
|
|
1082
1186
|
async getStarforceHistory(count, parameter) {
|
|
1083
1187
|
const path = `${this.subUrl}/v1/history/starforce`;
|
|
1084
1188
|
const query = {
|
|
@@ -1155,7 +1259,7 @@ class MapleStoryApi extends mapleStoryApi.MapleStoryApi {
|
|
|
1155
1259
|
/**
|
|
1156
1260
|
* 종합 랭킹 정보를 조회합니다.
|
|
1157
1261
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
1158
|
-
* - 오늘의 랭킹 정보는 오전 9시 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1262
|
+
* - 오늘의 랭킹 정보는 오전 9시 30분 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1159
1263
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
1160
1264
|
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
1161
1265
|
*
|
|
@@ -1165,7 +1269,7 @@ class MapleStoryApi extends mapleStoryApi.MapleStoryApi {
|
|
|
1165
1269
|
*/
|
|
1166
1270
|
async getOverallRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
|
|
1167
1271
|
hour: 9,
|
|
1168
|
-
minute:
|
|
1272
|
+
minute: 30,
|
|
1169
1273
|
dateOffset: 0,
|
|
1170
1274
|
})) {
|
|
1171
1275
|
const path = `${this.subUrl}/v1/ranking/overall`;
|
|
@@ -1192,7 +1296,7 @@ class MapleStoryApi extends mapleStoryApi.MapleStoryApi {
|
|
|
1192
1296
|
/**
|
|
1193
1297
|
* 유니온 랭킹 정보를 조회합니다.
|
|
1194
1298
|
* - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
|
|
1195
|
-
* - 오늘의 랭킹 정보는 오전 9시 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1299
|
+
* - 오늘의 랭킹 정보는 오전 9시 30분 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1196
1300
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
1197
1301
|
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
1198
1302
|
*
|
|
@@ -1201,7 +1305,7 @@ class MapleStoryApi extends mapleStoryApi.MapleStoryApi {
|
|
|
1201
1305
|
*/
|
|
1202
1306
|
async getUnionRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
|
|
1203
1307
|
hour: 9,
|
|
1204
|
-
minute:
|
|
1308
|
+
minute: 30,
|
|
1205
1309
|
dateOffset: 0,
|
|
1206
1310
|
})) {
|
|
1207
1311
|
const path = `${this.subUrl}/v1/ranking/union`;
|
|
@@ -1226,7 +1330,7 @@ class MapleStoryApi extends mapleStoryApi.MapleStoryApi {
|
|
|
1226
1330
|
/**
|
|
1227
1331
|
* 길드 랭킹 정보를 조회합니다.
|
|
1228
1332
|
* - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
|
|
1229
|
-
* - 오늘의 랭킹 정보는 오전 9시 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1333
|
+
* - 오늘의 랭킹 정보는 오전 9시 30분 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1230
1334
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
1231
1335
|
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
1232
1336
|
*
|
|
@@ -1235,7 +1339,7 @@ class MapleStoryApi extends mapleStoryApi.MapleStoryApi {
|
|
|
1235
1339
|
*/
|
|
1236
1340
|
async getGuildRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
|
|
1237
1341
|
hour: 9,
|
|
1238
|
-
minute:
|
|
1342
|
+
minute: 30,
|
|
1239
1343
|
dateOffset: 0,
|
|
1240
1344
|
})) {
|
|
1241
1345
|
const path = `${this.subUrl}/v1/ranking/guild`;
|
|
@@ -1262,7 +1366,7 @@ class MapleStoryApi extends mapleStoryApi.MapleStoryApi {
|
|
|
1262
1366
|
/**
|
|
1263
1367
|
* 무릉도장 랭킹 정보를 조회합니다.
|
|
1264
1368
|
* - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
|
|
1265
|
-
* - 오늘의 랭킹 정보는 오전 9시 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1369
|
+
* - 오늘의 랭킹 정보는 오전 9시 30분 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1266
1370
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
1267
1371
|
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
1268
1372
|
*
|
|
@@ -1271,7 +1375,7 @@ class MapleStoryApi extends mapleStoryApi.MapleStoryApi {
|
|
|
1271
1375
|
*/
|
|
1272
1376
|
async getDojangRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
|
|
1273
1377
|
hour: 9,
|
|
1274
|
-
minute:
|
|
1378
|
+
minute: 30,
|
|
1275
1379
|
dateOffset: 0,
|
|
1276
1380
|
})) {
|
|
1277
1381
|
const path = `${this.subUrl}/v1/ranking/dojang`;
|
|
@@ -1299,7 +1403,7 @@ class MapleStoryApi extends mapleStoryApi.MapleStoryApi {
|
|
|
1299
1403
|
/**
|
|
1300
1404
|
* 더 시드 랭킹 정보를 조회합니다.
|
|
1301
1405
|
* - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
|
|
1302
|
-
* - 오늘의 랭킹 정보는 오전 9시 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1406
|
+
* - 오늘의 랭킹 정보는 오전 9시 30분 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1303
1407
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
1304
1408
|
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
1305
1409
|
*
|
|
@@ -1308,7 +1412,7 @@ class MapleStoryApi extends mapleStoryApi.MapleStoryApi {
|
|
|
1308
1412
|
*/
|
|
1309
1413
|
async getSeedRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
|
|
1310
1414
|
hour: 9,
|
|
1311
|
-
minute:
|
|
1415
|
+
minute: 30,
|
|
1312
1416
|
dateOffset: 0,
|
|
1313
1417
|
})) {
|
|
1314
1418
|
const path = `${this.subUrl}/v1/ranking/theseed`;
|
|
@@ -1333,7 +1437,7 @@ class MapleStoryApi extends mapleStoryApi.MapleStoryApi {
|
|
|
1333
1437
|
/**
|
|
1334
1438
|
* 업적 랭킹 정보를 조회합니다.
|
|
1335
1439
|
* - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
|
|
1336
|
-
* - 오늘의 랭킹 정보는 오전 9시 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1440
|
+
* - 오늘의 랭킹 정보는 오전 9시 30분 경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
|
|
1337
1441
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
1338
1442
|
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
1339
1443
|
*
|
|
@@ -1342,7 +1446,7 @@ class MapleStoryApi extends mapleStoryApi.MapleStoryApi {
|
|
|
1342
1446
|
*/
|
|
1343
1447
|
async getAchievementRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
|
|
1344
1448
|
hour: 9,
|
|
1345
|
-
minute:
|
|
1449
|
+
minute: 30,
|
|
1346
1450
|
dateOffset: 0,
|
|
1347
1451
|
})) {
|
|
1348
1452
|
const path = `${this.subUrl}/v1/ranking/achievement`;
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
+
var mapleStoryFriendsApi = require('../common/mapleStoryFriendsApi.js');
|
|
5
6
|
var cubeHistory = require('./dto/history/cubeHistory.js');
|
|
6
7
|
var potentialHistory = require('./dto/history/potentialHistory.js');
|
|
7
8
|
var starforceHistory = require('./dto/history/starforceHistory.js');
|
|
8
9
|
var achievement = require('./dto/user/achievement.js');
|
|
9
10
|
var characterList = require('./dto/user/characterList.js');
|
|
10
|
-
var mapleStoryFriendsApi = require('../common/mapleStoryFriendsApi.js');
|
|
11
11
|
|
|
12
12
|
/**
|
|
13
13
|
* MapleStory Friends API client for KMS<br>
|
|
@@ -4,6 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var axios = require('axios');
|
|
6
6
|
require('../../../node_modules/buffer/index.js');
|
|
7
|
+
var lib = require('../common/lib.js');
|
|
7
8
|
var character = require('./dto/character/character.js');
|
|
8
9
|
var characterAbility = require('./dto/character/characterAbility.js');
|
|
9
10
|
var characterAndroidEquipment = require('./dto/character/characterAndroidEquipment.js');
|
|
@@ -33,7 +34,6 @@ var unionChampion = require('./dto/union/unionChampion.js');
|
|
|
33
34
|
var unionRaider = require('./dto/union/unionRaider.js');
|
|
34
35
|
var characterImage = require('../common/enum/characterImage.js');
|
|
35
36
|
var mapleStoryApi = require('../common/mapleStoryApi.js');
|
|
36
|
-
var lib = require('../common/lib.js');
|
|
37
37
|
var index = require('../../../_virtual/index.js_commonjs-exports.js');
|
|
38
38
|
|
|
39
39
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|