kms-open-api 1.0.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 +147 -0
- package/dist/index.d.mts +2874 -0
- package/dist/index.d.ts +2874 -0
- package/dist/index.js +811 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +765 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +57 -0
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,2874 @@
|
|
|
1
|
+
import { KyInstance } from 'ky';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Common types for MapleStory Open API Client
|
|
5
|
+
*/
|
|
6
|
+
/**
|
|
7
|
+
* Date input type - accepts both Date objects and YYYY-MM-DD format strings
|
|
8
|
+
*/
|
|
9
|
+
type DateInput = Date | string;
|
|
10
|
+
/**
|
|
11
|
+
* API call options for extensibility
|
|
12
|
+
*/
|
|
13
|
+
interface ApiOptions {
|
|
14
|
+
/** AbortSignal for request cancellation */
|
|
15
|
+
signal?: AbortSignal;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* API error response structure from Nexon API
|
|
19
|
+
*/
|
|
20
|
+
interface ApiErrorResponse {
|
|
21
|
+
error: {
|
|
22
|
+
name: string;
|
|
23
|
+
message: string;
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Formats a DateInput to YYYY-MM-DD string format
|
|
28
|
+
*/
|
|
29
|
+
declare function formatDate(input: DateInput): string;
|
|
30
|
+
/**
|
|
31
|
+
* Gets yesterday's date in YYYY-MM-DD format
|
|
32
|
+
* Most MapleStory API endpoints use yesterday's date as default
|
|
33
|
+
*/
|
|
34
|
+
declare function getYesterdayDate(): string;
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* 캐릭터 정보 조회 API Types
|
|
38
|
+
* Auto-generated from JSON schema - DO NOT EDIT
|
|
39
|
+
* Generated at: 2025-12-24T23:59:23.301Z
|
|
40
|
+
*/
|
|
41
|
+
|
|
42
|
+
interface CharacterAccountListCharacterList {
|
|
43
|
+
ocid: string;
|
|
44
|
+
character_name: string;
|
|
45
|
+
world_name: string;
|
|
46
|
+
character_class: string;
|
|
47
|
+
character_level: number;
|
|
48
|
+
}
|
|
49
|
+
interface CharacterAccountList {
|
|
50
|
+
account_id: string;
|
|
51
|
+
character_list: CharacterAccountListCharacterList[];
|
|
52
|
+
}
|
|
53
|
+
interface CharacterListResponse {
|
|
54
|
+
account_list: CharacterAccountList[];
|
|
55
|
+
}
|
|
56
|
+
interface CharacterAccountListAchievementAchieve {
|
|
57
|
+
achievement_name: string;
|
|
58
|
+
achievement_description: string;
|
|
59
|
+
}
|
|
60
|
+
interface CharacterAchievementResponse {
|
|
61
|
+
account_list: CharacterAccountList[];
|
|
62
|
+
}
|
|
63
|
+
interface CharacterIdResponse {
|
|
64
|
+
ocid: string;
|
|
65
|
+
}
|
|
66
|
+
interface GetCharacterIdParams {
|
|
67
|
+
characterName: string;
|
|
68
|
+
}
|
|
69
|
+
interface CharacterBasicResponse {
|
|
70
|
+
date: string;
|
|
71
|
+
character_name: string;
|
|
72
|
+
world_name: string;
|
|
73
|
+
character_gender: string;
|
|
74
|
+
character_class: string;
|
|
75
|
+
character_class_level: string;
|
|
76
|
+
character_level: number;
|
|
77
|
+
character_exp: number;
|
|
78
|
+
character_exp_rate: string;
|
|
79
|
+
character_guild_name: string;
|
|
80
|
+
character_image: string;
|
|
81
|
+
character_date_create: string;
|
|
82
|
+
access_flag: string;
|
|
83
|
+
liberation_quest_clear: string;
|
|
84
|
+
}
|
|
85
|
+
interface GetCharacterBasicParams {
|
|
86
|
+
ocid: string;
|
|
87
|
+
date?: DateInput;
|
|
88
|
+
}
|
|
89
|
+
interface CharacterPopularityResponse {
|
|
90
|
+
date: string;
|
|
91
|
+
popularity: number;
|
|
92
|
+
}
|
|
93
|
+
interface GetCharacterPopularityParams {
|
|
94
|
+
ocid: string;
|
|
95
|
+
date?: DateInput;
|
|
96
|
+
}
|
|
97
|
+
interface CharacterFinalStat {
|
|
98
|
+
stat_name: string;
|
|
99
|
+
stat_value: string;
|
|
100
|
+
}
|
|
101
|
+
interface CharacterStatResponse {
|
|
102
|
+
date: string;
|
|
103
|
+
character_class: string;
|
|
104
|
+
final_stat: CharacterFinalStat[];
|
|
105
|
+
remain_ap: number;
|
|
106
|
+
}
|
|
107
|
+
interface GetCharacterStatParams {
|
|
108
|
+
ocid: string;
|
|
109
|
+
date?: DateInput;
|
|
110
|
+
}
|
|
111
|
+
interface CharacterHyperStatPreset1 {
|
|
112
|
+
stat_type: string;
|
|
113
|
+
stat_point: number;
|
|
114
|
+
stat_level: number;
|
|
115
|
+
stat_increase: string;
|
|
116
|
+
}
|
|
117
|
+
interface CharacterHyperStatPreset2 {
|
|
118
|
+
stat_type: string;
|
|
119
|
+
stat_point: number;
|
|
120
|
+
stat_level: number;
|
|
121
|
+
stat_increase: string;
|
|
122
|
+
}
|
|
123
|
+
interface CharacterHyperStatPreset3 {
|
|
124
|
+
stat_type: string;
|
|
125
|
+
stat_point: number;
|
|
126
|
+
stat_level: number;
|
|
127
|
+
stat_increase: string;
|
|
128
|
+
}
|
|
129
|
+
interface CharacterHyperStatResponse {
|
|
130
|
+
date: string;
|
|
131
|
+
character_class: string;
|
|
132
|
+
use_preset_no: string;
|
|
133
|
+
use_available_hyper_stat: number;
|
|
134
|
+
hyper_stat_preset_1: CharacterHyperStatPreset1[];
|
|
135
|
+
hyper_stat_preset_1_remain_point: number;
|
|
136
|
+
hyper_stat_preset_2: CharacterHyperStatPreset2[];
|
|
137
|
+
hyper_stat_preset_2_remain_point: number;
|
|
138
|
+
hyper_stat_preset_3: CharacterHyperStatPreset3[];
|
|
139
|
+
hyper_stat_preset_3_remain_point: number;
|
|
140
|
+
}
|
|
141
|
+
interface GetCharacterHyperStatParams {
|
|
142
|
+
ocid: string;
|
|
143
|
+
date?: DateInput;
|
|
144
|
+
}
|
|
145
|
+
interface CharacterPropensityResponse {
|
|
146
|
+
date: string;
|
|
147
|
+
charisma_level: number;
|
|
148
|
+
sensibility_level: number;
|
|
149
|
+
insight_level: number;
|
|
150
|
+
willingness_level: number;
|
|
151
|
+
handicraft_level: number;
|
|
152
|
+
charm_level: number;
|
|
153
|
+
}
|
|
154
|
+
interface GetCharacterPropensityParams {
|
|
155
|
+
ocid: string;
|
|
156
|
+
date?: DateInput;
|
|
157
|
+
}
|
|
158
|
+
interface CharacterAbilityInfo {
|
|
159
|
+
ability_no: string;
|
|
160
|
+
ability_grade: string;
|
|
161
|
+
ability_value: string;
|
|
162
|
+
}
|
|
163
|
+
interface CharacterAbilityPreset1AbilityInfo {
|
|
164
|
+
ability_no: string;
|
|
165
|
+
ability_grade: string;
|
|
166
|
+
ability_value: string;
|
|
167
|
+
}
|
|
168
|
+
interface CharacterAbilityPreset1 {
|
|
169
|
+
ability_preset_grade: string;
|
|
170
|
+
ability_info: CharacterAbilityPreset1AbilityInfo[];
|
|
171
|
+
}
|
|
172
|
+
interface CharacterAbilityPreset2AbilityInfo {
|
|
173
|
+
ability_no: string;
|
|
174
|
+
ability_grade: string;
|
|
175
|
+
ability_value: string;
|
|
176
|
+
}
|
|
177
|
+
interface CharacterAbilityPreset2 {
|
|
178
|
+
ability_preset_grade: string;
|
|
179
|
+
ability_info: CharacterAbilityPreset2AbilityInfo[];
|
|
180
|
+
}
|
|
181
|
+
interface CharacterAbilityPreset3AbilityInfo {
|
|
182
|
+
ability_no: string;
|
|
183
|
+
ability_grade: string;
|
|
184
|
+
ability_value: string;
|
|
185
|
+
}
|
|
186
|
+
interface CharacterAbilityPreset3 {
|
|
187
|
+
ability_preset_grade: string;
|
|
188
|
+
ability_info: CharacterAbilityPreset3AbilityInfo[];
|
|
189
|
+
}
|
|
190
|
+
interface CharacterAbilityResponse {
|
|
191
|
+
date: string;
|
|
192
|
+
ability_grade: string;
|
|
193
|
+
ability_info: CharacterAbilityInfo[];
|
|
194
|
+
remain_fame: number;
|
|
195
|
+
preset_no: number;
|
|
196
|
+
ability_preset_1: CharacterAbilityPreset1;
|
|
197
|
+
ability_preset_2: CharacterAbilityPreset2;
|
|
198
|
+
ability_preset_3: CharacterAbilityPreset3;
|
|
199
|
+
}
|
|
200
|
+
interface GetCharacterAbilityParams {
|
|
201
|
+
ocid: string;
|
|
202
|
+
date?: DateInput;
|
|
203
|
+
}
|
|
204
|
+
interface CharacterItemEquipmentItemTotalOption {
|
|
205
|
+
str: string;
|
|
206
|
+
dex: string;
|
|
207
|
+
int: string;
|
|
208
|
+
luk: string;
|
|
209
|
+
max_hp: string;
|
|
210
|
+
max_mp: string;
|
|
211
|
+
attack_power: string;
|
|
212
|
+
magic_power: string;
|
|
213
|
+
armor: string;
|
|
214
|
+
speed: string;
|
|
215
|
+
jump: string;
|
|
216
|
+
boss_damage: string;
|
|
217
|
+
ignore_monster_armor: string;
|
|
218
|
+
all_stat: string;
|
|
219
|
+
damage: string;
|
|
220
|
+
equipment_level_decrease: number;
|
|
221
|
+
max_hp_rate: string;
|
|
222
|
+
max_mp_rate: string;
|
|
223
|
+
}
|
|
224
|
+
interface CharacterItemEquipmentItemBaseOption {
|
|
225
|
+
str: string;
|
|
226
|
+
dex: string;
|
|
227
|
+
int: string;
|
|
228
|
+
luk: string;
|
|
229
|
+
max_hp: string;
|
|
230
|
+
max_mp: string;
|
|
231
|
+
attack_power: string;
|
|
232
|
+
magic_power: string;
|
|
233
|
+
armor: string;
|
|
234
|
+
speed: string;
|
|
235
|
+
jump: string;
|
|
236
|
+
boss_damage: string;
|
|
237
|
+
ignore_monster_armor: string;
|
|
238
|
+
all_stat: string;
|
|
239
|
+
max_hp_rate: string;
|
|
240
|
+
max_mp_rate: string;
|
|
241
|
+
base_equipment_level: number;
|
|
242
|
+
}
|
|
243
|
+
interface CharacterItemEquipmentItemExceptionalOption {
|
|
244
|
+
str: string;
|
|
245
|
+
dex: string;
|
|
246
|
+
int: string;
|
|
247
|
+
luk: string;
|
|
248
|
+
max_hp: string;
|
|
249
|
+
max_mp: string;
|
|
250
|
+
attack_power: string;
|
|
251
|
+
magic_power: string;
|
|
252
|
+
exceptional_upgrade: number;
|
|
253
|
+
}
|
|
254
|
+
interface CharacterItemEquipmentItemAddOption {
|
|
255
|
+
str: string;
|
|
256
|
+
dex: string;
|
|
257
|
+
int: string;
|
|
258
|
+
luk: string;
|
|
259
|
+
max_hp: string;
|
|
260
|
+
max_mp: string;
|
|
261
|
+
attack_power: string;
|
|
262
|
+
magic_power: string;
|
|
263
|
+
armor: string;
|
|
264
|
+
speed: string;
|
|
265
|
+
jump: string;
|
|
266
|
+
boss_damage: string;
|
|
267
|
+
damage: string;
|
|
268
|
+
all_stat: string;
|
|
269
|
+
equipment_level_decrease: number;
|
|
270
|
+
}
|
|
271
|
+
interface CharacterItemEquipmentItemEtcOption {
|
|
272
|
+
str: string;
|
|
273
|
+
dex: string;
|
|
274
|
+
int: string;
|
|
275
|
+
luk: string;
|
|
276
|
+
max_hp: string;
|
|
277
|
+
max_mp: string;
|
|
278
|
+
attack_power: string;
|
|
279
|
+
magic_power: string;
|
|
280
|
+
armor: string;
|
|
281
|
+
speed: string;
|
|
282
|
+
jump: string;
|
|
283
|
+
}
|
|
284
|
+
interface CharacterItemEquipmentItemStarforceOption {
|
|
285
|
+
str: string;
|
|
286
|
+
dex: string;
|
|
287
|
+
int: string;
|
|
288
|
+
luk: string;
|
|
289
|
+
max_hp: string;
|
|
290
|
+
max_mp: string;
|
|
291
|
+
attack_power: string;
|
|
292
|
+
magic_power: string;
|
|
293
|
+
armor: string;
|
|
294
|
+
speed: string;
|
|
295
|
+
jump: string;
|
|
296
|
+
}
|
|
297
|
+
interface CharacterItemEquipment {
|
|
298
|
+
item_equipment_part: string;
|
|
299
|
+
item_equipment_slot: string;
|
|
300
|
+
item_name: string;
|
|
301
|
+
item_icon: string;
|
|
302
|
+
item_description: string;
|
|
303
|
+
item_shape_name: string;
|
|
304
|
+
item_shape_icon: string;
|
|
305
|
+
item_gender: string;
|
|
306
|
+
item_total_option: CharacterItemEquipmentItemTotalOption;
|
|
307
|
+
item_base_option: CharacterItemEquipmentItemBaseOption;
|
|
308
|
+
potential_option_flag: string;
|
|
309
|
+
additional_potential_option_flag: string;
|
|
310
|
+
potential_option_grade: string;
|
|
311
|
+
additional_potential_option_grade: string;
|
|
312
|
+
potential_option_1: string;
|
|
313
|
+
potential_option_2: string;
|
|
314
|
+
potential_option_3: string;
|
|
315
|
+
additional_potential_option_1: string;
|
|
316
|
+
additional_potential_option_2: string;
|
|
317
|
+
additional_potential_option_3: string;
|
|
318
|
+
equipment_level_increase: number;
|
|
319
|
+
item_exceptional_option: CharacterItemEquipmentItemExceptionalOption;
|
|
320
|
+
item_add_option: CharacterItemEquipmentItemAddOption;
|
|
321
|
+
growth_exp: number;
|
|
322
|
+
growth_level: number;
|
|
323
|
+
scroll_upgrade: string;
|
|
324
|
+
cuttable_count: string;
|
|
325
|
+
golden_hammer_flag: string;
|
|
326
|
+
scroll_resilience_count: string;
|
|
327
|
+
scroll_upgradable_count: string;
|
|
328
|
+
soul_name: string;
|
|
329
|
+
soul_option: string;
|
|
330
|
+
item_etc_option: CharacterItemEquipmentItemEtcOption;
|
|
331
|
+
starforce: string;
|
|
332
|
+
starforce_scroll_flag: string;
|
|
333
|
+
item_starforce_option: CharacterItemEquipmentItemStarforceOption;
|
|
334
|
+
special_ring_level: number;
|
|
335
|
+
date_expire: string;
|
|
336
|
+
freestyle_flag: string;
|
|
337
|
+
}
|
|
338
|
+
interface CharacterItemEquipmentPreset1ItemTotalOption {
|
|
339
|
+
str: string;
|
|
340
|
+
dex: string;
|
|
341
|
+
int: string;
|
|
342
|
+
luk: string;
|
|
343
|
+
max_hp: string;
|
|
344
|
+
max_mp: string;
|
|
345
|
+
attack_power: string;
|
|
346
|
+
magic_power: string;
|
|
347
|
+
armor: string;
|
|
348
|
+
speed: string;
|
|
349
|
+
jump: string;
|
|
350
|
+
boss_damage: string;
|
|
351
|
+
ignore_monster_armor: string;
|
|
352
|
+
all_stat: string;
|
|
353
|
+
damage: string;
|
|
354
|
+
equipment_level_decrease: number;
|
|
355
|
+
max_hp_rate: string;
|
|
356
|
+
max_mp_rate: string;
|
|
357
|
+
}
|
|
358
|
+
interface CharacterItemEquipmentPreset1ItemBaseOption {
|
|
359
|
+
str: string;
|
|
360
|
+
dex: string;
|
|
361
|
+
int: string;
|
|
362
|
+
luk: string;
|
|
363
|
+
max_hp: string;
|
|
364
|
+
max_mp: string;
|
|
365
|
+
attack_power: string;
|
|
366
|
+
magic_power: string;
|
|
367
|
+
armor: string;
|
|
368
|
+
speed: string;
|
|
369
|
+
jump: string;
|
|
370
|
+
boss_damage: string;
|
|
371
|
+
ignore_monster_armor: string;
|
|
372
|
+
all_stat: string;
|
|
373
|
+
max_hp_rate: string;
|
|
374
|
+
max_mp_rate: string;
|
|
375
|
+
base_equipment_level: number;
|
|
376
|
+
}
|
|
377
|
+
interface CharacterItemEquipmentPreset1ItemExceptionalOption {
|
|
378
|
+
str: string;
|
|
379
|
+
dex: string;
|
|
380
|
+
int: string;
|
|
381
|
+
luk: string;
|
|
382
|
+
max_hp: string;
|
|
383
|
+
max_mp: string;
|
|
384
|
+
attack_power: string;
|
|
385
|
+
magic_power: string;
|
|
386
|
+
exceptional_upgrade: number;
|
|
387
|
+
}
|
|
388
|
+
interface CharacterItemEquipmentPreset1ItemAddOption {
|
|
389
|
+
str: string;
|
|
390
|
+
dex: string;
|
|
391
|
+
int: string;
|
|
392
|
+
luk: string;
|
|
393
|
+
max_hp: string;
|
|
394
|
+
max_mp: string;
|
|
395
|
+
attack_power: string;
|
|
396
|
+
magic_power: string;
|
|
397
|
+
armor: string;
|
|
398
|
+
speed: string;
|
|
399
|
+
jump: string;
|
|
400
|
+
boss_damage: string;
|
|
401
|
+
damage: string;
|
|
402
|
+
all_stat: string;
|
|
403
|
+
equipment_level_decrease: number;
|
|
404
|
+
}
|
|
405
|
+
interface CharacterItemEquipmentPreset1ItemEtcOption {
|
|
406
|
+
str: string;
|
|
407
|
+
dex: string;
|
|
408
|
+
int: string;
|
|
409
|
+
luk: string;
|
|
410
|
+
max_hp: string;
|
|
411
|
+
max_mp: string;
|
|
412
|
+
attack_power: string;
|
|
413
|
+
magic_power: string;
|
|
414
|
+
armor: string;
|
|
415
|
+
speed: string;
|
|
416
|
+
jump: string;
|
|
417
|
+
}
|
|
418
|
+
interface CharacterItemEquipmentPreset1ItemStarforceOption {
|
|
419
|
+
str: string;
|
|
420
|
+
dex: string;
|
|
421
|
+
int: string;
|
|
422
|
+
luk: string;
|
|
423
|
+
max_hp: string;
|
|
424
|
+
max_mp: string;
|
|
425
|
+
attack_power: string;
|
|
426
|
+
magic_power: string;
|
|
427
|
+
armor: string;
|
|
428
|
+
speed: string;
|
|
429
|
+
jump: string;
|
|
430
|
+
}
|
|
431
|
+
interface CharacterItemEquipmentPreset1 {
|
|
432
|
+
item_equipment_part: string;
|
|
433
|
+
equipment_slot: string;
|
|
434
|
+
item_name: string;
|
|
435
|
+
item_icon: string;
|
|
436
|
+
item_description: string;
|
|
437
|
+
item_shape_name: string;
|
|
438
|
+
item_shape_icon: string;
|
|
439
|
+
item_gender: string;
|
|
440
|
+
item_total_option: CharacterItemEquipmentPreset1ItemTotalOption;
|
|
441
|
+
item_base_option: CharacterItemEquipmentPreset1ItemBaseOption;
|
|
442
|
+
potential_option_grade: string;
|
|
443
|
+
additional_potential_option_grade: string;
|
|
444
|
+
potential_option_1: string;
|
|
445
|
+
potential_option_2: string;
|
|
446
|
+
potential_option_3: string;
|
|
447
|
+
additional_potential_option_1: string;
|
|
448
|
+
additional_potential_option_2: string;
|
|
449
|
+
additional_potential_option_3: string;
|
|
450
|
+
equipment_level_increase: number;
|
|
451
|
+
item_exceptional_option: CharacterItemEquipmentPreset1ItemExceptionalOption;
|
|
452
|
+
item_add_option: CharacterItemEquipmentPreset1ItemAddOption;
|
|
453
|
+
growth_exp: number;
|
|
454
|
+
growth_level: number;
|
|
455
|
+
scroll_upgrade: string;
|
|
456
|
+
cuttable_count: string;
|
|
457
|
+
golden_hammer_flag: string;
|
|
458
|
+
scroll_resilience_count: string;
|
|
459
|
+
scroll_upgradable_count: string;
|
|
460
|
+
soul_name: string;
|
|
461
|
+
soul_option: string;
|
|
462
|
+
item_etc_option: CharacterItemEquipmentPreset1ItemEtcOption;
|
|
463
|
+
starforce: string;
|
|
464
|
+
starforce_scroll_flag: string;
|
|
465
|
+
item_starforce_option: CharacterItemEquipmentPreset1ItemStarforceOption;
|
|
466
|
+
special_ring_level: number;
|
|
467
|
+
date_expire: string;
|
|
468
|
+
freestyle_flag: string;
|
|
469
|
+
}
|
|
470
|
+
interface CharacterItemEquipmentPreset2ItemTotalOption {
|
|
471
|
+
str: string;
|
|
472
|
+
dex: string;
|
|
473
|
+
int: string;
|
|
474
|
+
luk: string;
|
|
475
|
+
max_hp: string;
|
|
476
|
+
max_mp: string;
|
|
477
|
+
attack_power: string;
|
|
478
|
+
magic_power: string;
|
|
479
|
+
armor: string;
|
|
480
|
+
speed: string;
|
|
481
|
+
jump: string;
|
|
482
|
+
boss_damage: string;
|
|
483
|
+
ignore_monster_armor: string;
|
|
484
|
+
all_stat: string;
|
|
485
|
+
damage: string;
|
|
486
|
+
equipment_level_decrease: number;
|
|
487
|
+
max_hp_rate: string;
|
|
488
|
+
max_mp_rate: string;
|
|
489
|
+
}
|
|
490
|
+
interface CharacterItemEquipmentPreset2ItemBaseOption {
|
|
491
|
+
str: string;
|
|
492
|
+
dex: string;
|
|
493
|
+
int: string;
|
|
494
|
+
luk: string;
|
|
495
|
+
max_hp: string;
|
|
496
|
+
max_mp: string;
|
|
497
|
+
attack_power: string;
|
|
498
|
+
magic_power: string;
|
|
499
|
+
armor: string;
|
|
500
|
+
speed: string;
|
|
501
|
+
jump: string;
|
|
502
|
+
boss_damage: string;
|
|
503
|
+
ignore_monster_armor: string;
|
|
504
|
+
all_stat: string;
|
|
505
|
+
max_hp_rate: string;
|
|
506
|
+
max_mp_rate: string;
|
|
507
|
+
base_equipment_level: number;
|
|
508
|
+
}
|
|
509
|
+
interface CharacterItemEquipmentPreset2ItemExceptionalOption {
|
|
510
|
+
str: string;
|
|
511
|
+
dex: string;
|
|
512
|
+
int: string;
|
|
513
|
+
luk: string;
|
|
514
|
+
max_hp: string;
|
|
515
|
+
max_mp: string;
|
|
516
|
+
attack_power: string;
|
|
517
|
+
magic_power: string;
|
|
518
|
+
exceptional_upgrade: number;
|
|
519
|
+
}
|
|
520
|
+
interface CharacterItemEquipmentPreset2ItemAddOption {
|
|
521
|
+
str: string;
|
|
522
|
+
dex: string;
|
|
523
|
+
int: string;
|
|
524
|
+
luk: string;
|
|
525
|
+
max_hp: string;
|
|
526
|
+
max_mp: string;
|
|
527
|
+
attack_power: string;
|
|
528
|
+
magic_power: string;
|
|
529
|
+
armor: string;
|
|
530
|
+
speed: string;
|
|
531
|
+
jump: string;
|
|
532
|
+
boss_damage: string;
|
|
533
|
+
damage: string;
|
|
534
|
+
all_stat: string;
|
|
535
|
+
equipment_level_decrease: number;
|
|
536
|
+
}
|
|
537
|
+
interface CharacterItemEquipmentPreset2ItemEtcOption {
|
|
538
|
+
str: string;
|
|
539
|
+
dex: string;
|
|
540
|
+
int: string;
|
|
541
|
+
luk: string;
|
|
542
|
+
max_hp: string;
|
|
543
|
+
max_mp: string;
|
|
544
|
+
attack_power: string;
|
|
545
|
+
magic_power: string;
|
|
546
|
+
armor: string;
|
|
547
|
+
speed: string;
|
|
548
|
+
jump: string;
|
|
549
|
+
}
|
|
550
|
+
interface CharacterItemEquipmentPreset2ItemStarforceOption {
|
|
551
|
+
str: string;
|
|
552
|
+
dex: string;
|
|
553
|
+
int: string;
|
|
554
|
+
luk: string;
|
|
555
|
+
max_hp: string;
|
|
556
|
+
max_mp: string;
|
|
557
|
+
attack_power: string;
|
|
558
|
+
magic_power: string;
|
|
559
|
+
armor: string;
|
|
560
|
+
speed: string;
|
|
561
|
+
jump: string;
|
|
562
|
+
}
|
|
563
|
+
interface CharacterItemEquipmentPreset2 {
|
|
564
|
+
item_equipment_part: string;
|
|
565
|
+
equipment_slot: string;
|
|
566
|
+
item_name: string;
|
|
567
|
+
item_icon: string;
|
|
568
|
+
item_description: string;
|
|
569
|
+
item_shape_name: string;
|
|
570
|
+
item_shape_icon: string;
|
|
571
|
+
item_gender: string;
|
|
572
|
+
item_total_option: CharacterItemEquipmentPreset2ItemTotalOption;
|
|
573
|
+
item_base_option: CharacterItemEquipmentPreset2ItemBaseOption;
|
|
574
|
+
potential_option_grade: string;
|
|
575
|
+
additional_potential_option_grade: string;
|
|
576
|
+
potential_option_1: string;
|
|
577
|
+
potential_option_2: string;
|
|
578
|
+
potential_option_3: string;
|
|
579
|
+
additional_potential_option_1: string;
|
|
580
|
+
additional_potential_option_2: string;
|
|
581
|
+
additional_potential_option_3: string;
|
|
582
|
+
equipment_level_increase: number;
|
|
583
|
+
item_exceptional_option: CharacterItemEquipmentPreset2ItemExceptionalOption;
|
|
584
|
+
item_add_option: CharacterItemEquipmentPreset2ItemAddOption;
|
|
585
|
+
growth_exp: number;
|
|
586
|
+
growth_level: number;
|
|
587
|
+
scroll_upgrade: string;
|
|
588
|
+
cuttable_count: string;
|
|
589
|
+
golden_hammer_flag: string;
|
|
590
|
+
scroll_resilience_count: string;
|
|
591
|
+
scroll_upgradable_count: string;
|
|
592
|
+
soul_name: string;
|
|
593
|
+
soul_option: string;
|
|
594
|
+
item_etc_option: CharacterItemEquipmentPreset2ItemEtcOption;
|
|
595
|
+
starforce: string;
|
|
596
|
+
starforce_scroll_flag: string;
|
|
597
|
+
item_starforce_option: CharacterItemEquipmentPreset2ItemStarforceOption;
|
|
598
|
+
special_ring_level: number;
|
|
599
|
+
date_expire: string;
|
|
600
|
+
freestyle_flag: string;
|
|
601
|
+
}
|
|
602
|
+
interface CharacterItemEquipmentPreset3ItemTotalOption {
|
|
603
|
+
str: string;
|
|
604
|
+
dex: string;
|
|
605
|
+
int: string;
|
|
606
|
+
luk: string;
|
|
607
|
+
max_hp: string;
|
|
608
|
+
max_mp: string;
|
|
609
|
+
attack_power: string;
|
|
610
|
+
magic_power: string;
|
|
611
|
+
armor: string;
|
|
612
|
+
speed: string;
|
|
613
|
+
jump: string;
|
|
614
|
+
boss_damage: string;
|
|
615
|
+
ignore_monster_armor: string;
|
|
616
|
+
all_stat: string;
|
|
617
|
+
damage: string;
|
|
618
|
+
equipment_level_decrease: number;
|
|
619
|
+
max_hp_rate: string;
|
|
620
|
+
max_mp_rate: string;
|
|
621
|
+
}
|
|
622
|
+
interface CharacterItemEquipmentPreset3ItemBaseOption {
|
|
623
|
+
str: string;
|
|
624
|
+
dex: string;
|
|
625
|
+
int: string;
|
|
626
|
+
luk: string;
|
|
627
|
+
max_hp: string;
|
|
628
|
+
max_mp: string;
|
|
629
|
+
attack_power: string;
|
|
630
|
+
magic_power: string;
|
|
631
|
+
armor: string;
|
|
632
|
+
speed: string;
|
|
633
|
+
jump: string;
|
|
634
|
+
boss_damage: string;
|
|
635
|
+
ignore_monster_armor: string;
|
|
636
|
+
all_stat: string;
|
|
637
|
+
max_hp_rate: string;
|
|
638
|
+
max_mp_rate: string;
|
|
639
|
+
base_equipment_level: number;
|
|
640
|
+
}
|
|
641
|
+
interface CharacterItemEquipmentPreset3ItemExceptionalOption {
|
|
642
|
+
str: string;
|
|
643
|
+
dex: string;
|
|
644
|
+
int: string;
|
|
645
|
+
luk: string;
|
|
646
|
+
max_hp: string;
|
|
647
|
+
max_mp: string;
|
|
648
|
+
attack_power: string;
|
|
649
|
+
magic_power: string;
|
|
650
|
+
exceptional_upgrade: number;
|
|
651
|
+
}
|
|
652
|
+
interface CharacterItemEquipmentPreset3ItemAddOption {
|
|
653
|
+
str: string;
|
|
654
|
+
dex: string;
|
|
655
|
+
int: string;
|
|
656
|
+
luk: string;
|
|
657
|
+
max_hp: string;
|
|
658
|
+
max_mp: string;
|
|
659
|
+
attack_power: string;
|
|
660
|
+
magic_power: string;
|
|
661
|
+
armor: string;
|
|
662
|
+
speed: string;
|
|
663
|
+
jump: string;
|
|
664
|
+
boss_damage: string;
|
|
665
|
+
damage: string;
|
|
666
|
+
all_stat: string;
|
|
667
|
+
equipment_level_decrease: number;
|
|
668
|
+
}
|
|
669
|
+
interface CharacterItemEquipmentPreset3ItemEtcOption {
|
|
670
|
+
str: string;
|
|
671
|
+
dex: string;
|
|
672
|
+
int: string;
|
|
673
|
+
luk: string;
|
|
674
|
+
max_hp: string;
|
|
675
|
+
max_mp: string;
|
|
676
|
+
attack_power: string;
|
|
677
|
+
magic_power: string;
|
|
678
|
+
armor: string;
|
|
679
|
+
speed: string;
|
|
680
|
+
jump: string;
|
|
681
|
+
}
|
|
682
|
+
interface CharacterItemEquipmentPreset3ItemStarforceOption {
|
|
683
|
+
str: string;
|
|
684
|
+
dex: string;
|
|
685
|
+
int: string;
|
|
686
|
+
luk: string;
|
|
687
|
+
max_hp: string;
|
|
688
|
+
max_mp: string;
|
|
689
|
+
attack_power: string;
|
|
690
|
+
magic_power: string;
|
|
691
|
+
armor: string;
|
|
692
|
+
speed: string;
|
|
693
|
+
jump: string;
|
|
694
|
+
}
|
|
695
|
+
interface CharacterItemEquipmentPreset3 {
|
|
696
|
+
item_equipment_part: string;
|
|
697
|
+
equipment_slot: string;
|
|
698
|
+
item_name: string;
|
|
699
|
+
item_icon: string;
|
|
700
|
+
item_description: string;
|
|
701
|
+
item_shape_name: string;
|
|
702
|
+
item_shape_icon: string;
|
|
703
|
+
item_gender: string;
|
|
704
|
+
item_total_option: CharacterItemEquipmentPreset3ItemTotalOption;
|
|
705
|
+
item_base_option: CharacterItemEquipmentPreset3ItemBaseOption;
|
|
706
|
+
potential_option_grade: string;
|
|
707
|
+
additional_potential_option_grade: string;
|
|
708
|
+
potential_option_1: string;
|
|
709
|
+
potential_option_2: string;
|
|
710
|
+
potential_option_3: string;
|
|
711
|
+
additional_potential_option_1: string;
|
|
712
|
+
additional_potential_option_2: string;
|
|
713
|
+
additional_potential_option_3: string;
|
|
714
|
+
equipment_level_increase: number;
|
|
715
|
+
item_exceptional_option: CharacterItemEquipmentPreset3ItemExceptionalOption;
|
|
716
|
+
item_add_option: CharacterItemEquipmentPreset3ItemAddOption;
|
|
717
|
+
growth_exp: number;
|
|
718
|
+
growth_level: number;
|
|
719
|
+
scroll_upgrade: string;
|
|
720
|
+
cuttable_count: string;
|
|
721
|
+
golden_hammer_flag: string;
|
|
722
|
+
scroll_resilience_count: string;
|
|
723
|
+
scroll_upgradable_count: string;
|
|
724
|
+
soul_name: string;
|
|
725
|
+
soul_option: string;
|
|
726
|
+
item_etc_option: CharacterItemEquipmentPreset3ItemEtcOption;
|
|
727
|
+
starforce: string;
|
|
728
|
+
starforce_scroll_flag: string;
|
|
729
|
+
item_starforce_option: CharacterItemEquipmentPreset3ItemStarforceOption;
|
|
730
|
+
special_ring_level: number;
|
|
731
|
+
date_expire: string;
|
|
732
|
+
freestyle_flag: string;
|
|
733
|
+
}
|
|
734
|
+
interface CharacterTitle {
|
|
735
|
+
title_name: string;
|
|
736
|
+
title_icon: string;
|
|
737
|
+
title_description: string;
|
|
738
|
+
date_expire: string;
|
|
739
|
+
date_option_expire: string;
|
|
740
|
+
title_shape_name: string;
|
|
741
|
+
title_shape_icon: string;
|
|
742
|
+
title_shape_description: string;
|
|
743
|
+
}
|
|
744
|
+
interface CharacterMedalShape {
|
|
745
|
+
medal_shape_name: string;
|
|
746
|
+
medal_shape_icon: string;
|
|
747
|
+
medal_shape_description: string;
|
|
748
|
+
medal_shape_changed_name: string;
|
|
749
|
+
medal_shape_changed_icon: string;
|
|
750
|
+
medal_shape_changed_description: string;
|
|
751
|
+
}
|
|
752
|
+
interface CharacterDragonEquipmentItemTotalOption {
|
|
753
|
+
str: string;
|
|
754
|
+
dex: string;
|
|
755
|
+
int: string;
|
|
756
|
+
luk: string;
|
|
757
|
+
max_hp: string;
|
|
758
|
+
max_mp: string;
|
|
759
|
+
attack_power: string;
|
|
760
|
+
magic_power: string;
|
|
761
|
+
armor: string;
|
|
762
|
+
speed: string;
|
|
763
|
+
jump: string;
|
|
764
|
+
boss_damage: string;
|
|
765
|
+
ignore_monster_armor: string;
|
|
766
|
+
all_stat: string;
|
|
767
|
+
damage: string;
|
|
768
|
+
equipment_level_decrease: number;
|
|
769
|
+
max_hp_rate: string;
|
|
770
|
+
max_mp_rate: string;
|
|
771
|
+
}
|
|
772
|
+
interface CharacterDragonEquipmentItemBaseOption {
|
|
773
|
+
str: string;
|
|
774
|
+
dex: string;
|
|
775
|
+
int: string;
|
|
776
|
+
luk: string;
|
|
777
|
+
max_hp: string;
|
|
778
|
+
max_mp: string;
|
|
779
|
+
attack_power: string;
|
|
780
|
+
magic_power: string;
|
|
781
|
+
armor: string;
|
|
782
|
+
speed: string;
|
|
783
|
+
jump: string;
|
|
784
|
+
boss_damage: string;
|
|
785
|
+
ignore_monster_armor: string;
|
|
786
|
+
all_stat: string;
|
|
787
|
+
max_hp_rate: string;
|
|
788
|
+
max_mp_rate: string;
|
|
789
|
+
base_equipment_level: number;
|
|
790
|
+
}
|
|
791
|
+
interface CharacterDragonEquipmentItemExceptionalOption {
|
|
792
|
+
str: string;
|
|
793
|
+
dex: string;
|
|
794
|
+
int: string;
|
|
795
|
+
luk: string;
|
|
796
|
+
max_hp: string;
|
|
797
|
+
max_mp: string;
|
|
798
|
+
attack_power: string;
|
|
799
|
+
magic_power: string;
|
|
800
|
+
}
|
|
801
|
+
interface CharacterDragonEquipmentItemAddOption {
|
|
802
|
+
str: string;
|
|
803
|
+
dex: string;
|
|
804
|
+
int: string;
|
|
805
|
+
luk: string;
|
|
806
|
+
max_hp: string;
|
|
807
|
+
max_mp: string;
|
|
808
|
+
attack_power: string;
|
|
809
|
+
magic_power: string;
|
|
810
|
+
armor: string;
|
|
811
|
+
speed: string;
|
|
812
|
+
jump: string;
|
|
813
|
+
boss_damage: string;
|
|
814
|
+
damage: string;
|
|
815
|
+
all_stat: string;
|
|
816
|
+
equipment_level_decrease: number;
|
|
817
|
+
}
|
|
818
|
+
interface CharacterDragonEquipmentItemEtcOption {
|
|
819
|
+
str: string;
|
|
820
|
+
dex: string;
|
|
821
|
+
int: string;
|
|
822
|
+
luk: string;
|
|
823
|
+
max_hp: string;
|
|
824
|
+
max_mp: string;
|
|
825
|
+
attack_power: string;
|
|
826
|
+
magic_power: string;
|
|
827
|
+
armor: string;
|
|
828
|
+
speed: string;
|
|
829
|
+
jump: string;
|
|
830
|
+
}
|
|
831
|
+
interface CharacterDragonEquipmentItemStarforceOption {
|
|
832
|
+
str: string;
|
|
833
|
+
dex: string;
|
|
834
|
+
int: string;
|
|
835
|
+
luk: string;
|
|
836
|
+
max_hp: string;
|
|
837
|
+
max_mp: string;
|
|
838
|
+
attack_power: string;
|
|
839
|
+
magic_power: string;
|
|
840
|
+
armor: string;
|
|
841
|
+
speed: string;
|
|
842
|
+
jump: string;
|
|
843
|
+
}
|
|
844
|
+
interface CharacterDragonEquipment {
|
|
845
|
+
item_equipment_part: string;
|
|
846
|
+
equipment_slot: string;
|
|
847
|
+
item_name: string;
|
|
848
|
+
item_icon: string;
|
|
849
|
+
item_description: string;
|
|
850
|
+
item_shape_name: string;
|
|
851
|
+
item_shape_icon: string;
|
|
852
|
+
item_gender: string;
|
|
853
|
+
item_total_option: CharacterDragonEquipmentItemTotalOption;
|
|
854
|
+
item_base_option: CharacterDragonEquipmentItemBaseOption;
|
|
855
|
+
equipment_level_increase: number;
|
|
856
|
+
item_exceptional_option: CharacterDragonEquipmentItemExceptionalOption;
|
|
857
|
+
item_add_option: CharacterDragonEquipmentItemAddOption;
|
|
858
|
+
growth_exp: number;
|
|
859
|
+
growth_level: number;
|
|
860
|
+
scroll_upgrade: string;
|
|
861
|
+
cuttable_count: string;
|
|
862
|
+
golden_hammer_flag: string;
|
|
863
|
+
scroll_resilience_count: string;
|
|
864
|
+
scroll_upgradable_count: string;
|
|
865
|
+
soul_name: string;
|
|
866
|
+
soul_option: string;
|
|
867
|
+
item_etc_option: CharacterDragonEquipmentItemEtcOption;
|
|
868
|
+
starforce: string;
|
|
869
|
+
starforce_scroll_flag: string;
|
|
870
|
+
item_starforce_option: CharacterDragonEquipmentItemStarforceOption;
|
|
871
|
+
special_ring_level: number;
|
|
872
|
+
date_expire: string;
|
|
873
|
+
freestyle_flag: string;
|
|
874
|
+
}
|
|
875
|
+
interface CharacterMechanicEquipmentItemTotalOption {
|
|
876
|
+
str: string;
|
|
877
|
+
dex: string;
|
|
878
|
+
int: string;
|
|
879
|
+
luk: string;
|
|
880
|
+
max_hp: string;
|
|
881
|
+
max_mp: string;
|
|
882
|
+
attack_power: string;
|
|
883
|
+
magic_power: string;
|
|
884
|
+
armor: string;
|
|
885
|
+
speed: string;
|
|
886
|
+
jump: string;
|
|
887
|
+
boss_damage: string;
|
|
888
|
+
ignore_monster_armor: string;
|
|
889
|
+
all_stat: string;
|
|
890
|
+
damage: string;
|
|
891
|
+
equipment_level_decrease: number;
|
|
892
|
+
max_hp_rate: string;
|
|
893
|
+
max_mp_rate: string;
|
|
894
|
+
}
|
|
895
|
+
interface CharacterMechanicEquipmentItemBaseOption {
|
|
896
|
+
str: string;
|
|
897
|
+
dex: string;
|
|
898
|
+
int: string;
|
|
899
|
+
luk: string;
|
|
900
|
+
max_hp: string;
|
|
901
|
+
max_mp: string;
|
|
902
|
+
attack_power: string;
|
|
903
|
+
magic_power: string;
|
|
904
|
+
armor: string;
|
|
905
|
+
speed: string;
|
|
906
|
+
jump: string;
|
|
907
|
+
boss_damage: string;
|
|
908
|
+
ignore_monster_armor: string;
|
|
909
|
+
all_stat: string;
|
|
910
|
+
max_hp_rate: string;
|
|
911
|
+
max_mp_rate: string;
|
|
912
|
+
base_equipment_level: number;
|
|
913
|
+
}
|
|
914
|
+
interface CharacterMechanicEquipmentItemExceptionalOption {
|
|
915
|
+
str: string;
|
|
916
|
+
dex: string;
|
|
917
|
+
int: string;
|
|
918
|
+
luk: string;
|
|
919
|
+
max_hp: string;
|
|
920
|
+
max_mp: string;
|
|
921
|
+
attack_power: string;
|
|
922
|
+
magic_power: string;
|
|
923
|
+
}
|
|
924
|
+
interface CharacterMechanicEquipmentItemAddOption {
|
|
925
|
+
str: string;
|
|
926
|
+
dex: string;
|
|
927
|
+
int: string;
|
|
928
|
+
luk: string;
|
|
929
|
+
max_hp: string;
|
|
930
|
+
max_mp: string;
|
|
931
|
+
attack_power: string;
|
|
932
|
+
magic_power: string;
|
|
933
|
+
armor: string;
|
|
934
|
+
speed: string;
|
|
935
|
+
jump: string;
|
|
936
|
+
boss_damage: string;
|
|
937
|
+
damage: string;
|
|
938
|
+
all_stat: string;
|
|
939
|
+
equipment_level_decrease: number;
|
|
940
|
+
}
|
|
941
|
+
interface CharacterMechanicEquipmentItemEtcOption {
|
|
942
|
+
str: string;
|
|
943
|
+
dex: string;
|
|
944
|
+
int: string;
|
|
945
|
+
luk: string;
|
|
946
|
+
max_hp: string;
|
|
947
|
+
max_mp: string;
|
|
948
|
+
attack_power: string;
|
|
949
|
+
magic_power: string;
|
|
950
|
+
armor: string;
|
|
951
|
+
speed: string;
|
|
952
|
+
jump: string;
|
|
953
|
+
}
|
|
954
|
+
interface CharacterMechanicEquipmentItemStarforceOption {
|
|
955
|
+
str: string;
|
|
956
|
+
dex: string;
|
|
957
|
+
int: string;
|
|
958
|
+
luk: string;
|
|
959
|
+
max_hp: string;
|
|
960
|
+
max_mp: string;
|
|
961
|
+
attack_power: string;
|
|
962
|
+
magic_power: string;
|
|
963
|
+
armor: string;
|
|
964
|
+
speed: string;
|
|
965
|
+
jump: string;
|
|
966
|
+
}
|
|
967
|
+
interface CharacterMechanicEquipment {
|
|
968
|
+
item_equipment_part: string;
|
|
969
|
+
equipment_slot: string;
|
|
970
|
+
item_name: string;
|
|
971
|
+
item_icon: string;
|
|
972
|
+
item_description: string;
|
|
973
|
+
item_shape_name: string;
|
|
974
|
+
item_shape_icon: string;
|
|
975
|
+
item_gender: string;
|
|
976
|
+
item_total_option: CharacterMechanicEquipmentItemTotalOption;
|
|
977
|
+
item_base_option: CharacterMechanicEquipmentItemBaseOption;
|
|
978
|
+
equipment_level_increase: number;
|
|
979
|
+
item_exceptional_option: CharacterMechanicEquipmentItemExceptionalOption;
|
|
980
|
+
item_add_option: CharacterMechanicEquipmentItemAddOption;
|
|
981
|
+
growth_exp: number;
|
|
982
|
+
growth_level: number;
|
|
983
|
+
scroll_upgrade: string;
|
|
984
|
+
cuttable_count: string;
|
|
985
|
+
golden_hammer_flag: string;
|
|
986
|
+
scroll_resilience_count: string;
|
|
987
|
+
scroll_upgradable_count: string;
|
|
988
|
+
soul_name: string;
|
|
989
|
+
soul_option: string;
|
|
990
|
+
item_etc_option: CharacterMechanicEquipmentItemEtcOption;
|
|
991
|
+
starforce: string;
|
|
992
|
+
starforce_scroll_flag: string;
|
|
993
|
+
item_starforce_option: CharacterMechanicEquipmentItemStarforceOption;
|
|
994
|
+
special_ring_level: number;
|
|
995
|
+
date_expire: string;
|
|
996
|
+
freestyle_flag: string;
|
|
997
|
+
}
|
|
998
|
+
interface CharacterItemEquipmentResponse {
|
|
999
|
+
date: string;
|
|
1000
|
+
character_gender: string;
|
|
1001
|
+
character_class: string;
|
|
1002
|
+
preset_no: number;
|
|
1003
|
+
item_equipment: CharacterItemEquipment[];
|
|
1004
|
+
item_equipment_preset_1: CharacterItemEquipmentPreset1[];
|
|
1005
|
+
item_equipment_preset_2: CharacterItemEquipmentPreset2[];
|
|
1006
|
+
item_equipment_preset_3: CharacterItemEquipmentPreset3[];
|
|
1007
|
+
title: CharacterTitle;
|
|
1008
|
+
medal_shape: CharacterMedalShape;
|
|
1009
|
+
dragon_equipment: CharacterDragonEquipment[];
|
|
1010
|
+
mechanic_equipment: CharacterMechanicEquipment[];
|
|
1011
|
+
}
|
|
1012
|
+
interface GetCharacterItemEquipmentParams {
|
|
1013
|
+
ocid: string;
|
|
1014
|
+
date?: DateInput;
|
|
1015
|
+
}
|
|
1016
|
+
interface CharacterCashItemEquipmentBaseCashItemOption {
|
|
1017
|
+
option_type: string;
|
|
1018
|
+
option_value: string;
|
|
1019
|
+
}
|
|
1020
|
+
interface CharacterCashItemEquipmentBaseCashItemColoringPrism {
|
|
1021
|
+
color_range: string;
|
|
1022
|
+
hue: number;
|
|
1023
|
+
saturation: number;
|
|
1024
|
+
value: number;
|
|
1025
|
+
}
|
|
1026
|
+
interface CharacterCashItemEquipmentBaseCashItemEffectPrism {
|
|
1027
|
+
color_range: string;
|
|
1028
|
+
hue: number;
|
|
1029
|
+
saturation: number;
|
|
1030
|
+
value: number;
|
|
1031
|
+
}
|
|
1032
|
+
interface CharacterCashItemEquipmentBase {
|
|
1033
|
+
cash_item_equipment_part: string;
|
|
1034
|
+
cash_item_equipment_slot: string;
|
|
1035
|
+
cash_item_name: string;
|
|
1036
|
+
cash_item_icon: string;
|
|
1037
|
+
cash_item_description: string;
|
|
1038
|
+
cash_item_option: CharacterCashItemEquipmentBaseCashItemOption[];
|
|
1039
|
+
date_expire: string;
|
|
1040
|
+
date_option_expire: string;
|
|
1041
|
+
cash_item_label: string;
|
|
1042
|
+
cash_item_coloring_prism: CharacterCashItemEquipmentBaseCashItemColoringPrism;
|
|
1043
|
+
cash_item_effect_prism: CharacterCashItemEquipmentBaseCashItemEffectPrism;
|
|
1044
|
+
item_gender: string;
|
|
1045
|
+
skills: string[];
|
|
1046
|
+
freestyle_flag: string;
|
|
1047
|
+
emotion_name: string;
|
|
1048
|
+
}
|
|
1049
|
+
interface CharacterCashItemEquipmentPreset1CashItemOption {
|
|
1050
|
+
option_type: string;
|
|
1051
|
+
option_value: string;
|
|
1052
|
+
}
|
|
1053
|
+
interface CharacterCashItemEquipmentPreset1CashItemColoringPrism {
|
|
1054
|
+
color_range: string;
|
|
1055
|
+
hue: number;
|
|
1056
|
+
saturation: number;
|
|
1057
|
+
value: number;
|
|
1058
|
+
}
|
|
1059
|
+
interface CharacterCashItemEquipmentPreset1CashItemEffectPrism {
|
|
1060
|
+
color_range: string;
|
|
1061
|
+
hue: number;
|
|
1062
|
+
saturation: number;
|
|
1063
|
+
value: number;
|
|
1064
|
+
}
|
|
1065
|
+
interface CharacterCashItemEquipmentPreset1 {
|
|
1066
|
+
cash_item_equipment_part: string;
|
|
1067
|
+
cash_item_equipment_slot: string;
|
|
1068
|
+
cash_item_name: string;
|
|
1069
|
+
cash_item_icon: string;
|
|
1070
|
+
cash_item_description: string;
|
|
1071
|
+
cash_item_option: CharacterCashItemEquipmentPreset1CashItemOption[];
|
|
1072
|
+
date_expire: string;
|
|
1073
|
+
date_option_expire: string;
|
|
1074
|
+
cash_item_label: string;
|
|
1075
|
+
cash_item_coloring_prism: CharacterCashItemEquipmentPreset1CashItemColoringPrism;
|
|
1076
|
+
cash_item_effect_prism: CharacterCashItemEquipmentPreset1CashItemEffectPrism;
|
|
1077
|
+
item_gender: string;
|
|
1078
|
+
skills: string[];
|
|
1079
|
+
freestyle_flag: string;
|
|
1080
|
+
emotion_name: string;
|
|
1081
|
+
}
|
|
1082
|
+
interface CharacterCashItemEquipmentPreset2CashItemOption {
|
|
1083
|
+
option_type: string;
|
|
1084
|
+
option_value: string;
|
|
1085
|
+
}
|
|
1086
|
+
interface CharacterCashItemEquipmentPreset2CashItemColoringPrism {
|
|
1087
|
+
color_range: string;
|
|
1088
|
+
hue: number;
|
|
1089
|
+
saturation: number;
|
|
1090
|
+
value: number;
|
|
1091
|
+
}
|
|
1092
|
+
interface CharacterCashItemEquipmentPreset2CashItemEffectPrism {
|
|
1093
|
+
color_range: string;
|
|
1094
|
+
hue: number;
|
|
1095
|
+
saturation: number;
|
|
1096
|
+
value: number;
|
|
1097
|
+
}
|
|
1098
|
+
interface CharacterCashItemEquipmentPreset2 {
|
|
1099
|
+
cash_item_equipment_part: string;
|
|
1100
|
+
cash_item_equipment_slot: string;
|
|
1101
|
+
cash_item_name: string;
|
|
1102
|
+
cash_item_icon: string;
|
|
1103
|
+
cash_item_description: string;
|
|
1104
|
+
cash_item_option: CharacterCashItemEquipmentPreset2CashItemOption[];
|
|
1105
|
+
date_expire: string;
|
|
1106
|
+
date_option_expire: string;
|
|
1107
|
+
cash_item_label: string;
|
|
1108
|
+
cash_item_coloring_prism: CharacterCashItemEquipmentPreset2CashItemColoringPrism;
|
|
1109
|
+
cash_item_effect_prism: CharacterCashItemEquipmentPreset2CashItemEffectPrism;
|
|
1110
|
+
item_gender: string;
|
|
1111
|
+
skills: string[];
|
|
1112
|
+
freestyle_flag: string;
|
|
1113
|
+
emotion_name: string;
|
|
1114
|
+
}
|
|
1115
|
+
interface CharacterCashItemEquipmentPreset3CashItemOption {
|
|
1116
|
+
option_type: string;
|
|
1117
|
+
option_value: string;
|
|
1118
|
+
}
|
|
1119
|
+
interface CharacterCashItemEquipmentPreset3CashItemColoringPrism {
|
|
1120
|
+
color_range: string;
|
|
1121
|
+
hue: number;
|
|
1122
|
+
saturation: number;
|
|
1123
|
+
value: number;
|
|
1124
|
+
}
|
|
1125
|
+
interface CharacterCashItemEquipmentPreset3CashItemEffectPrism {
|
|
1126
|
+
color_range: string;
|
|
1127
|
+
hue: number;
|
|
1128
|
+
saturation: number;
|
|
1129
|
+
value: number;
|
|
1130
|
+
}
|
|
1131
|
+
interface CharacterCashItemEquipmentPreset3 {
|
|
1132
|
+
cash_item_equipment_part: string;
|
|
1133
|
+
cash_item_equipment_slot: string;
|
|
1134
|
+
cash_item_name: string;
|
|
1135
|
+
cash_item_icon: string;
|
|
1136
|
+
cash_item_description: string;
|
|
1137
|
+
cash_item_option: CharacterCashItemEquipmentPreset3CashItemOption[];
|
|
1138
|
+
date_expire: string;
|
|
1139
|
+
date_option_expire: string;
|
|
1140
|
+
cash_item_label: string;
|
|
1141
|
+
cash_item_coloring_prism: CharacterCashItemEquipmentPreset3CashItemColoringPrism;
|
|
1142
|
+
cash_item_effect_prism: CharacterCashItemEquipmentPreset3CashItemEffectPrism;
|
|
1143
|
+
item_gender: string;
|
|
1144
|
+
skills: string[];
|
|
1145
|
+
freestyle_flag: string;
|
|
1146
|
+
emotion_name: string;
|
|
1147
|
+
}
|
|
1148
|
+
interface CharacterAdditionalCashItemEquipmentBaseCashItemOption {
|
|
1149
|
+
option_type: string;
|
|
1150
|
+
option_value: string;
|
|
1151
|
+
}
|
|
1152
|
+
interface CharacterAdditionalCashItemEquipmentBaseCashItemColoringPrism {
|
|
1153
|
+
color_range: string;
|
|
1154
|
+
hue: number;
|
|
1155
|
+
saturation: number;
|
|
1156
|
+
value: number;
|
|
1157
|
+
}
|
|
1158
|
+
interface CharacterAdditionalCashItemEquipmentBaseCashItemEffectPrism {
|
|
1159
|
+
color_range: string;
|
|
1160
|
+
hue: number;
|
|
1161
|
+
saturation: number;
|
|
1162
|
+
value: number;
|
|
1163
|
+
}
|
|
1164
|
+
interface CharacterAdditionalCashItemEquipmentBase {
|
|
1165
|
+
cash_item_equipment_part: string;
|
|
1166
|
+
cash_item_equipment_slot: string;
|
|
1167
|
+
cash_item_name: string;
|
|
1168
|
+
cash_item_icon: string;
|
|
1169
|
+
cash_item_description: string;
|
|
1170
|
+
cash_item_option: CharacterAdditionalCashItemEquipmentBaseCashItemOption[];
|
|
1171
|
+
date_expire: string;
|
|
1172
|
+
date_option_expire: string;
|
|
1173
|
+
cash_item_label: string;
|
|
1174
|
+
cash_item_coloring_prism: CharacterAdditionalCashItemEquipmentBaseCashItemColoringPrism;
|
|
1175
|
+
cash_item_effect_prism: CharacterAdditionalCashItemEquipmentBaseCashItemEffectPrism;
|
|
1176
|
+
item_gender: string;
|
|
1177
|
+
skills: string[];
|
|
1178
|
+
freestyle_flag: string;
|
|
1179
|
+
emotion_name: string;
|
|
1180
|
+
}
|
|
1181
|
+
interface CharacterAdditionalCashItemEquipmentPreset1CashItemOption {
|
|
1182
|
+
option_type: string;
|
|
1183
|
+
option_value: string;
|
|
1184
|
+
}
|
|
1185
|
+
interface CharacterAdditionalCashItemEquipmentPreset1CashItemColoringPrism {
|
|
1186
|
+
color_range: string;
|
|
1187
|
+
hue: number;
|
|
1188
|
+
saturation: number;
|
|
1189
|
+
value: number;
|
|
1190
|
+
}
|
|
1191
|
+
interface CharacterAdditionalCashItemEquipmentPreset1CashItemEffectPrism {
|
|
1192
|
+
color_range: string;
|
|
1193
|
+
hue: number;
|
|
1194
|
+
saturation: number;
|
|
1195
|
+
value: number;
|
|
1196
|
+
}
|
|
1197
|
+
interface CharacterAdditionalCashItemEquipmentPreset1 {
|
|
1198
|
+
cash_item_equipment_part: string;
|
|
1199
|
+
cash_item_equipment_slot: string;
|
|
1200
|
+
cash_item_name: string;
|
|
1201
|
+
cash_item_icon: string;
|
|
1202
|
+
cash_item_description: string;
|
|
1203
|
+
cash_item_option: CharacterAdditionalCashItemEquipmentPreset1CashItemOption[];
|
|
1204
|
+
date_expire: string;
|
|
1205
|
+
date_option_expire: string;
|
|
1206
|
+
cash_item_label: string;
|
|
1207
|
+
cash_item_coloring_prism: CharacterAdditionalCashItemEquipmentPreset1CashItemColoringPrism;
|
|
1208
|
+
cash_item_effect_prism: CharacterAdditionalCashItemEquipmentPreset1CashItemEffectPrism;
|
|
1209
|
+
item_gender: string;
|
|
1210
|
+
skills: string[];
|
|
1211
|
+
freestyle_flag: string;
|
|
1212
|
+
emotion_name: string;
|
|
1213
|
+
}
|
|
1214
|
+
interface CharacterAdditionalCashItemEquipmentPreset2CashItemOption {
|
|
1215
|
+
option_type: string;
|
|
1216
|
+
option_value: string;
|
|
1217
|
+
}
|
|
1218
|
+
interface CharacterAdditionalCashItemEquipmentPreset2CashItemColoringPrism {
|
|
1219
|
+
color_range: string;
|
|
1220
|
+
hue: number;
|
|
1221
|
+
saturation: number;
|
|
1222
|
+
value: number;
|
|
1223
|
+
}
|
|
1224
|
+
interface CharacterAdditionalCashItemEquipmentPreset2CashItemEffectPrism {
|
|
1225
|
+
color_range: string;
|
|
1226
|
+
hue: number;
|
|
1227
|
+
saturation: number;
|
|
1228
|
+
value: number;
|
|
1229
|
+
}
|
|
1230
|
+
interface CharacterAdditionalCashItemEquipmentPreset2 {
|
|
1231
|
+
cash_item_equipment_part: string;
|
|
1232
|
+
cash_item_equipment_slot: string;
|
|
1233
|
+
cash_item_name: string;
|
|
1234
|
+
cash_item_icon: string;
|
|
1235
|
+
cash_item_description: string;
|
|
1236
|
+
cash_item_option: CharacterAdditionalCashItemEquipmentPreset2CashItemOption[];
|
|
1237
|
+
date_expire: string;
|
|
1238
|
+
date_option_expire: string;
|
|
1239
|
+
cash_item_label: string;
|
|
1240
|
+
cash_item_coloring_prism: CharacterAdditionalCashItemEquipmentPreset2CashItemColoringPrism;
|
|
1241
|
+
cash_item_effect_prism: CharacterAdditionalCashItemEquipmentPreset2CashItemEffectPrism;
|
|
1242
|
+
item_gender: string;
|
|
1243
|
+
skills: string[];
|
|
1244
|
+
freestyle_flag: string;
|
|
1245
|
+
emotion_name: string;
|
|
1246
|
+
}
|
|
1247
|
+
interface CharacterAdditionalCashItemEquipmentPreset3CashItemOption {
|
|
1248
|
+
option_type: string;
|
|
1249
|
+
option_value: string;
|
|
1250
|
+
}
|
|
1251
|
+
interface CharacterAdditionalCashItemEquipmentPreset3CashItemColoringPrism {
|
|
1252
|
+
color_range: string;
|
|
1253
|
+
hue: number;
|
|
1254
|
+
saturation: number;
|
|
1255
|
+
value: number;
|
|
1256
|
+
}
|
|
1257
|
+
interface CharacterAdditionalCashItemEquipmentPreset3CashItemEffectPrism {
|
|
1258
|
+
color_range: string;
|
|
1259
|
+
hue: number;
|
|
1260
|
+
saturation: number;
|
|
1261
|
+
value: number;
|
|
1262
|
+
}
|
|
1263
|
+
interface CharacterAdditionalCashItemEquipmentPreset3 {
|
|
1264
|
+
cash_item_equipment_part: string;
|
|
1265
|
+
cash_item_equipment_slot: string;
|
|
1266
|
+
cash_item_name: string;
|
|
1267
|
+
cash_item_icon: string;
|
|
1268
|
+
cash_item_description: string;
|
|
1269
|
+
cash_item_option: CharacterAdditionalCashItemEquipmentPreset3CashItemOption[];
|
|
1270
|
+
date_expire: string;
|
|
1271
|
+
date_option_expire: string;
|
|
1272
|
+
cash_item_label: string;
|
|
1273
|
+
cash_item_coloring_prism: CharacterAdditionalCashItemEquipmentPreset3CashItemColoringPrism;
|
|
1274
|
+
cash_item_effect_prism: CharacterAdditionalCashItemEquipmentPreset3CashItemEffectPrism;
|
|
1275
|
+
item_gender: string;
|
|
1276
|
+
skills: string[];
|
|
1277
|
+
freestyle_flag: string;
|
|
1278
|
+
emotion_name: string;
|
|
1279
|
+
}
|
|
1280
|
+
interface CharacterCashitemEquipmentResponse {
|
|
1281
|
+
date: string;
|
|
1282
|
+
character_gender: string;
|
|
1283
|
+
character_class: string;
|
|
1284
|
+
character_look_mode: string;
|
|
1285
|
+
preset_no: number;
|
|
1286
|
+
cash_item_equipment_base: CharacterCashItemEquipmentBase[];
|
|
1287
|
+
cash_item_equipment_preset_1: CharacterCashItemEquipmentPreset1[];
|
|
1288
|
+
cash_item_equipment_preset_2: CharacterCashItemEquipmentPreset2[];
|
|
1289
|
+
cash_item_equipment_preset_3: CharacterCashItemEquipmentPreset3[];
|
|
1290
|
+
additional_cash_item_equipment_base: CharacterAdditionalCashItemEquipmentBase[];
|
|
1291
|
+
additional_cash_item_equipment_preset_1: CharacterAdditionalCashItemEquipmentPreset1[];
|
|
1292
|
+
additional_cash_item_equipment_preset_2: CharacterAdditionalCashItemEquipmentPreset2[];
|
|
1293
|
+
additional_cash_item_equipment_preset_3: CharacterAdditionalCashItemEquipmentPreset3[];
|
|
1294
|
+
}
|
|
1295
|
+
interface GetCharacterCashitemEquipmentParams {
|
|
1296
|
+
ocid: string;
|
|
1297
|
+
date?: DateInput;
|
|
1298
|
+
}
|
|
1299
|
+
interface CharacterSymbol {
|
|
1300
|
+
symbol_name: string;
|
|
1301
|
+
symbol_icon: string;
|
|
1302
|
+
symbol_description: string;
|
|
1303
|
+
symbol_other_effect_description: string;
|
|
1304
|
+
symbol_force: string;
|
|
1305
|
+
symbol_level: number;
|
|
1306
|
+
symbol_str: string;
|
|
1307
|
+
symbol_dex: string;
|
|
1308
|
+
symbol_int: string;
|
|
1309
|
+
symbol_luk: string;
|
|
1310
|
+
symbol_hp: string;
|
|
1311
|
+
symbol_drop_rate: string;
|
|
1312
|
+
symbol_meso_rate: string;
|
|
1313
|
+
symbol_exp_rate: string;
|
|
1314
|
+
symbol_growth_count: number;
|
|
1315
|
+
symbol_require_growth_count: number;
|
|
1316
|
+
}
|
|
1317
|
+
interface CharacterSymbolEquipmentResponse {
|
|
1318
|
+
date: string;
|
|
1319
|
+
character_class: string;
|
|
1320
|
+
symbol: CharacterSymbol[];
|
|
1321
|
+
}
|
|
1322
|
+
interface GetCharacterSymbolEquipmentParams {
|
|
1323
|
+
ocid: string;
|
|
1324
|
+
date?: DateInput;
|
|
1325
|
+
}
|
|
1326
|
+
interface CharacterSetEffectSetEffectInfo {
|
|
1327
|
+
set_count: number;
|
|
1328
|
+
set_option: string;
|
|
1329
|
+
}
|
|
1330
|
+
interface CharacterSetEffectSetOptionFull {
|
|
1331
|
+
set_count: number;
|
|
1332
|
+
set_option: string;
|
|
1333
|
+
}
|
|
1334
|
+
interface CharacterSetEffect {
|
|
1335
|
+
set_name: string;
|
|
1336
|
+
total_set_count: number;
|
|
1337
|
+
set_effect_info: CharacterSetEffectSetEffectInfo[];
|
|
1338
|
+
set_option_full: CharacterSetEffectSetOptionFull[];
|
|
1339
|
+
}
|
|
1340
|
+
interface CharacterSetEffectResponse {
|
|
1341
|
+
date: string;
|
|
1342
|
+
set_effect: CharacterSetEffect[];
|
|
1343
|
+
}
|
|
1344
|
+
interface GetCharacterSetEffectParams {
|
|
1345
|
+
ocid: string;
|
|
1346
|
+
date?: DateInput;
|
|
1347
|
+
}
|
|
1348
|
+
interface CharacterCharacterHair {
|
|
1349
|
+
hair_name: string;
|
|
1350
|
+
base_color: string;
|
|
1351
|
+
mix_color: string;
|
|
1352
|
+
mix_rate: string;
|
|
1353
|
+
freestyle_flag: string;
|
|
1354
|
+
}
|
|
1355
|
+
interface CharacterCharacterFace {
|
|
1356
|
+
face_name: string;
|
|
1357
|
+
base_color: string;
|
|
1358
|
+
mix_color: string;
|
|
1359
|
+
mix_rate: string;
|
|
1360
|
+
freestyle_flag: string;
|
|
1361
|
+
}
|
|
1362
|
+
interface CharacterCharacterSkin {
|
|
1363
|
+
skin_name: string;
|
|
1364
|
+
color_style: string;
|
|
1365
|
+
hue: number;
|
|
1366
|
+
saturation: number;
|
|
1367
|
+
brightness: number;
|
|
1368
|
+
}
|
|
1369
|
+
interface CharacterAdditionalCharacterHair {
|
|
1370
|
+
hair_name: string;
|
|
1371
|
+
base_color: string;
|
|
1372
|
+
mix_color: string;
|
|
1373
|
+
mix_rate: string;
|
|
1374
|
+
freestyle_flag: string;
|
|
1375
|
+
}
|
|
1376
|
+
interface CharacterAdditionalCharacterFace {
|
|
1377
|
+
face_name: string;
|
|
1378
|
+
base_color: string;
|
|
1379
|
+
mix_color: string;
|
|
1380
|
+
mix_rate: string;
|
|
1381
|
+
freestyle_flag: string;
|
|
1382
|
+
}
|
|
1383
|
+
interface CharacterAdditionalCharacterSkin {
|
|
1384
|
+
skin_name: string;
|
|
1385
|
+
color_style: string;
|
|
1386
|
+
hue: number;
|
|
1387
|
+
saturation: number;
|
|
1388
|
+
brightness: number;
|
|
1389
|
+
}
|
|
1390
|
+
interface CharacterBeautyEquipmentResponse {
|
|
1391
|
+
date: string;
|
|
1392
|
+
character_gender: string;
|
|
1393
|
+
character_class: string;
|
|
1394
|
+
character_hair: CharacterCharacterHair;
|
|
1395
|
+
character_face: CharacterCharacterFace;
|
|
1396
|
+
character_skin: CharacterCharacterSkin;
|
|
1397
|
+
additional_character_hair: CharacterAdditionalCharacterHair;
|
|
1398
|
+
additional_character_face: CharacterAdditionalCharacterFace;
|
|
1399
|
+
additional_character_skin: CharacterAdditionalCharacterSkin;
|
|
1400
|
+
}
|
|
1401
|
+
interface GetCharacterBeautyEquipmentParams {
|
|
1402
|
+
ocid: string;
|
|
1403
|
+
date?: DateInput;
|
|
1404
|
+
}
|
|
1405
|
+
interface CharacterAndroidHair {
|
|
1406
|
+
hair_name: string;
|
|
1407
|
+
base_color: string;
|
|
1408
|
+
mix_color: string;
|
|
1409
|
+
mix_rate: string;
|
|
1410
|
+
freestyle_flag: string;
|
|
1411
|
+
}
|
|
1412
|
+
interface CharacterAndroidFace {
|
|
1413
|
+
face_name: string;
|
|
1414
|
+
base_color: string;
|
|
1415
|
+
mix_color: string;
|
|
1416
|
+
mix_rate: string;
|
|
1417
|
+
freestyle_flag: string;
|
|
1418
|
+
}
|
|
1419
|
+
interface CharacterAndroidSkin {
|
|
1420
|
+
skin_name: string;
|
|
1421
|
+
color_style: string;
|
|
1422
|
+
hue: number;
|
|
1423
|
+
saturation: number;
|
|
1424
|
+
brightness: number;
|
|
1425
|
+
}
|
|
1426
|
+
interface CharacterAndroidCashItemEquipmentCashItemOption {
|
|
1427
|
+
option_type: string;
|
|
1428
|
+
option_value: string;
|
|
1429
|
+
}
|
|
1430
|
+
interface CharacterAndroidCashItemEquipmentCashItemColoringPrism {
|
|
1431
|
+
color_range: string;
|
|
1432
|
+
hue: number;
|
|
1433
|
+
saturation: number;
|
|
1434
|
+
value: number;
|
|
1435
|
+
}
|
|
1436
|
+
interface CharacterAndroidCashItemEquipment {
|
|
1437
|
+
cash_item_equipment_part: string;
|
|
1438
|
+
cash_item_equipment_slot: string;
|
|
1439
|
+
cash_item_name: string;
|
|
1440
|
+
cash_item_icon: string;
|
|
1441
|
+
cash_item_description: string;
|
|
1442
|
+
cash_item_option: CharacterAndroidCashItemEquipmentCashItemOption[];
|
|
1443
|
+
date_expire: string;
|
|
1444
|
+
date_option_expire: string;
|
|
1445
|
+
cash_item_label: string;
|
|
1446
|
+
cash_item_coloring_prism: CharacterAndroidCashItemEquipmentCashItemColoringPrism;
|
|
1447
|
+
android_item_gender: string;
|
|
1448
|
+
freestyle_flag: string;
|
|
1449
|
+
}
|
|
1450
|
+
interface CharacterAndroidPreset1AndroidSkin {
|
|
1451
|
+
skin_name: string;
|
|
1452
|
+
color_style: string;
|
|
1453
|
+
hue: number;
|
|
1454
|
+
saturation: number;
|
|
1455
|
+
brightness: number;
|
|
1456
|
+
}
|
|
1457
|
+
interface CharacterAndroidPreset1AndroidHair {
|
|
1458
|
+
hair_name: string;
|
|
1459
|
+
base_color: string;
|
|
1460
|
+
mix_color: string;
|
|
1461
|
+
mix_rate: string;
|
|
1462
|
+
freestyle_flag: string;
|
|
1463
|
+
}
|
|
1464
|
+
interface CharacterAndroidPreset1AndroidFace {
|
|
1465
|
+
face_name: string;
|
|
1466
|
+
base_color: string;
|
|
1467
|
+
mix_color: string;
|
|
1468
|
+
mix_rate: string;
|
|
1469
|
+
freestyle_flag: string;
|
|
1470
|
+
}
|
|
1471
|
+
interface CharacterAndroidPreset1 {
|
|
1472
|
+
android_name: string;
|
|
1473
|
+
android_nickname: string;
|
|
1474
|
+
android_icon: string;
|
|
1475
|
+
android_description: string;
|
|
1476
|
+
android_gender: string;
|
|
1477
|
+
android_grade: string;
|
|
1478
|
+
android_skin: CharacterAndroidPreset1AndroidSkin;
|
|
1479
|
+
android_hair: CharacterAndroidPreset1AndroidHair;
|
|
1480
|
+
android_face: CharacterAndroidPreset1AndroidFace;
|
|
1481
|
+
android_ear_sensor_clip_flag: string;
|
|
1482
|
+
android_non_humanoid_flag: string;
|
|
1483
|
+
android_shop_usable_flag: string;
|
|
1484
|
+
}
|
|
1485
|
+
interface CharacterAndroidPreset2AndroidSkin {
|
|
1486
|
+
skin_name: string;
|
|
1487
|
+
color_style: string;
|
|
1488
|
+
hue: number;
|
|
1489
|
+
saturation: number;
|
|
1490
|
+
brightness: number;
|
|
1491
|
+
}
|
|
1492
|
+
interface CharacterAndroidPreset2AndroidHair {
|
|
1493
|
+
hair_name: string;
|
|
1494
|
+
base_color: string;
|
|
1495
|
+
mix_color: string;
|
|
1496
|
+
mix_rate: string;
|
|
1497
|
+
freestyle_flag: string;
|
|
1498
|
+
}
|
|
1499
|
+
interface CharacterAndroidPreset2AndroidFace {
|
|
1500
|
+
face_name: string;
|
|
1501
|
+
base_color: string;
|
|
1502
|
+
mix_color: string;
|
|
1503
|
+
mix_rate: string;
|
|
1504
|
+
freestyle_flag: string;
|
|
1505
|
+
}
|
|
1506
|
+
interface CharacterAndroidPreset2 {
|
|
1507
|
+
android_name: string;
|
|
1508
|
+
android_nickname: string;
|
|
1509
|
+
android_icon: string;
|
|
1510
|
+
android_description: string;
|
|
1511
|
+
android_gender: string;
|
|
1512
|
+
android_grade: string;
|
|
1513
|
+
android_skin: CharacterAndroidPreset2AndroidSkin;
|
|
1514
|
+
android_hair: CharacterAndroidPreset2AndroidHair;
|
|
1515
|
+
android_face: CharacterAndroidPreset2AndroidFace;
|
|
1516
|
+
android_ear_sensor_clip_flag: string;
|
|
1517
|
+
android_non_humanoid_flag: string;
|
|
1518
|
+
android_shop_usable_flag: string;
|
|
1519
|
+
}
|
|
1520
|
+
interface CharacterAndroidPreset3AndroidSkin {
|
|
1521
|
+
skin_name: string;
|
|
1522
|
+
color_style: string;
|
|
1523
|
+
hue: number;
|
|
1524
|
+
saturation: number;
|
|
1525
|
+
brightness: number;
|
|
1526
|
+
}
|
|
1527
|
+
interface CharacterAndroidPreset3AndroidHair {
|
|
1528
|
+
hair_name: string;
|
|
1529
|
+
base_color: string;
|
|
1530
|
+
mix_color: string;
|
|
1531
|
+
mix_rate: string;
|
|
1532
|
+
freestyle_flag: string;
|
|
1533
|
+
}
|
|
1534
|
+
interface CharacterAndroidPreset3AndroidFace {
|
|
1535
|
+
face_name: string;
|
|
1536
|
+
base_color: string;
|
|
1537
|
+
mix_color: string;
|
|
1538
|
+
mix_rate: string;
|
|
1539
|
+
freestyle_flag: string;
|
|
1540
|
+
}
|
|
1541
|
+
interface CharacterAndroidPreset3 {
|
|
1542
|
+
android_name: string;
|
|
1543
|
+
android_nickname: string;
|
|
1544
|
+
android_icon: string;
|
|
1545
|
+
android_description: string;
|
|
1546
|
+
android_gender: string;
|
|
1547
|
+
android_grade: string;
|
|
1548
|
+
android_skin: CharacterAndroidPreset3AndroidSkin;
|
|
1549
|
+
android_hair: CharacterAndroidPreset3AndroidHair;
|
|
1550
|
+
android_face: CharacterAndroidPreset3AndroidFace;
|
|
1551
|
+
android_ear_sensor_clip_flag: string;
|
|
1552
|
+
android_non_humanoid_flag: string;
|
|
1553
|
+
android_shop_usable_flag: string;
|
|
1554
|
+
}
|
|
1555
|
+
interface CharacterAndroidEquipmentResponse {
|
|
1556
|
+
date: string;
|
|
1557
|
+
android_name: string;
|
|
1558
|
+
android_nickname: string;
|
|
1559
|
+
android_icon: string;
|
|
1560
|
+
android_description: string;
|
|
1561
|
+
android_hair: CharacterAndroidHair;
|
|
1562
|
+
android_face: CharacterAndroidFace;
|
|
1563
|
+
android_skin: CharacterAndroidSkin;
|
|
1564
|
+
android_cash_item_equipment: CharacterAndroidCashItemEquipment[];
|
|
1565
|
+
android_ear_sensor_clip_flag: string;
|
|
1566
|
+
android_gender: string;
|
|
1567
|
+
android_grade: string;
|
|
1568
|
+
android_non_humanoid_flag: string;
|
|
1569
|
+
android_shop_usable_flag: string;
|
|
1570
|
+
preset_no: number;
|
|
1571
|
+
android_preset_1: CharacterAndroidPreset1;
|
|
1572
|
+
android_preset_2: CharacterAndroidPreset2;
|
|
1573
|
+
android_preset_3: CharacterAndroidPreset3;
|
|
1574
|
+
}
|
|
1575
|
+
interface GetCharacterAndroidEquipmentParams {
|
|
1576
|
+
ocid: string;
|
|
1577
|
+
date?: DateInput;
|
|
1578
|
+
}
|
|
1579
|
+
interface CharacterPet1EquipmentItemOption {
|
|
1580
|
+
option_type: string;
|
|
1581
|
+
option_value: string;
|
|
1582
|
+
}
|
|
1583
|
+
interface CharacterPet1Equipment {
|
|
1584
|
+
item_name: string;
|
|
1585
|
+
item_icon: string;
|
|
1586
|
+
item_description: string;
|
|
1587
|
+
item_option: CharacterPet1EquipmentItemOption[];
|
|
1588
|
+
scroll_upgrade: number;
|
|
1589
|
+
scroll_upgradable: number;
|
|
1590
|
+
item_shape: string;
|
|
1591
|
+
item_shape_icon: string;
|
|
1592
|
+
}
|
|
1593
|
+
interface CharacterPet1AutoSkill {
|
|
1594
|
+
skill_1: string;
|
|
1595
|
+
skill_1_icon: string;
|
|
1596
|
+
skill_2: string;
|
|
1597
|
+
skill_2_icon: string;
|
|
1598
|
+
}
|
|
1599
|
+
interface CharacterPet2EquipmentItemOption {
|
|
1600
|
+
option_type: string;
|
|
1601
|
+
option_value: string;
|
|
1602
|
+
}
|
|
1603
|
+
interface CharacterPet2Equipment {
|
|
1604
|
+
item_name: string;
|
|
1605
|
+
item_icon: string;
|
|
1606
|
+
item_description: string;
|
|
1607
|
+
item_option: CharacterPet2EquipmentItemOption[];
|
|
1608
|
+
scroll_upgrade: number;
|
|
1609
|
+
scroll_upgradable: number;
|
|
1610
|
+
item_shape: string;
|
|
1611
|
+
item_shape_icon: string;
|
|
1612
|
+
}
|
|
1613
|
+
interface CharacterPet2AutoSkill {
|
|
1614
|
+
skill_1: string;
|
|
1615
|
+
skill_1_icon: string;
|
|
1616
|
+
skill_2: string;
|
|
1617
|
+
skill_2_icon: string;
|
|
1618
|
+
}
|
|
1619
|
+
interface CharacterPet3EquipmentItemOption {
|
|
1620
|
+
option_type: string;
|
|
1621
|
+
option_value: string;
|
|
1622
|
+
}
|
|
1623
|
+
interface CharacterPet3Equipment {
|
|
1624
|
+
item_name: string;
|
|
1625
|
+
item_icon: string;
|
|
1626
|
+
item_description: string;
|
|
1627
|
+
item_option: CharacterPet3EquipmentItemOption[];
|
|
1628
|
+
scroll_upgrade: number;
|
|
1629
|
+
scroll_upgradable: number;
|
|
1630
|
+
item_shape: string;
|
|
1631
|
+
item_shape_icon: string;
|
|
1632
|
+
}
|
|
1633
|
+
interface CharacterPet3AutoSkill {
|
|
1634
|
+
skill_1: string;
|
|
1635
|
+
skill_1_icon: string;
|
|
1636
|
+
skill_2: string;
|
|
1637
|
+
skill_2_icon: string;
|
|
1638
|
+
}
|
|
1639
|
+
interface CharacterPetEquipmentResponse {
|
|
1640
|
+
date: string;
|
|
1641
|
+
pet_1_name: string;
|
|
1642
|
+
pet_1_nickname: string;
|
|
1643
|
+
pet_1_icon: string;
|
|
1644
|
+
pet_1_description: string;
|
|
1645
|
+
pet_1_equipment: CharacterPet1Equipment;
|
|
1646
|
+
pet_1_auto_skill: CharacterPet1AutoSkill;
|
|
1647
|
+
pet_1_pet_type: string;
|
|
1648
|
+
pet_1_skill: string[];
|
|
1649
|
+
pet_1_date_expire: string;
|
|
1650
|
+
pet_1_appearance: string;
|
|
1651
|
+
pet_1_appearance_icon: string;
|
|
1652
|
+
pet_2_name: string;
|
|
1653
|
+
pet_2_nickname: string;
|
|
1654
|
+
pet_2_icon: string;
|
|
1655
|
+
pet_2_description: string;
|
|
1656
|
+
pet_2_equipment: CharacterPet2Equipment;
|
|
1657
|
+
pet_2_auto_skill: CharacterPet2AutoSkill;
|
|
1658
|
+
pet_2_pet_type: string;
|
|
1659
|
+
pet_2_skill: string[];
|
|
1660
|
+
pet_2_date_expire: string;
|
|
1661
|
+
pet_2_appearance: string;
|
|
1662
|
+
pet_2_appearance_icon: string;
|
|
1663
|
+
pet_3_name: string;
|
|
1664
|
+
pet_3_nickname: string;
|
|
1665
|
+
pet_3_icon: string;
|
|
1666
|
+
pet_3_description: string;
|
|
1667
|
+
pet_3_equipment: CharacterPet3Equipment;
|
|
1668
|
+
pet_3_auto_skill: CharacterPet3AutoSkill;
|
|
1669
|
+
pet_3_pet_type: string;
|
|
1670
|
+
pet_3_skill: string[];
|
|
1671
|
+
pet_3_date_expire: string;
|
|
1672
|
+
pet_3_appearance: string;
|
|
1673
|
+
pet_3_appearance_icon: string;
|
|
1674
|
+
}
|
|
1675
|
+
interface GetCharacterPetEquipmentParams {
|
|
1676
|
+
ocid: string;
|
|
1677
|
+
date?: DateInput;
|
|
1678
|
+
}
|
|
1679
|
+
interface CharacterCharacterSkill {
|
|
1680
|
+
skill_name: string;
|
|
1681
|
+
skill_description: string;
|
|
1682
|
+
skill_level: number;
|
|
1683
|
+
skill_effect: string;
|
|
1684
|
+
skill_effect_next: string;
|
|
1685
|
+
skill_icon: string;
|
|
1686
|
+
}
|
|
1687
|
+
interface CharacterSkillResponse {
|
|
1688
|
+
date: string;
|
|
1689
|
+
character_class: string;
|
|
1690
|
+
character_skill_grade: string;
|
|
1691
|
+
character_skill: CharacterCharacterSkill[];
|
|
1692
|
+
}
|
|
1693
|
+
interface GetCharacterSkillParams {
|
|
1694
|
+
ocid: string;
|
|
1695
|
+
date?: DateInput;
|
|
1696
|
+
characterSkillGrade: string;
|
|
1697
|
+
}
|
|
1698
|
+
interface CharacterCharacterLinkSkill {
|
|
1699
|
+
skill_name: string;
|
|
1700
|
+
skill_description: string;
|
|
1701
|
+
skill_level: number;
|
|
1702
|
+
skill_effect: string;
|
|
1703
|
+
skill_effect_next: string;
|
|
1704
|
+
skill_icon: string;
|
|
1705
|
+
}
|
|
1706
|
+
interface CharacterCharacterLinkSkillPreset1 {
|
|
1707
|
+
skill_name: string;
|
|
1708
|
+
skill_description: string;
|
|
1709
|
+
skill_level: number;
|
|
1710
|
+
skill_effect: string;
|
|
1711
|
+
skill_icon: string;
|
|
1712
|
+
}
|
|
1713
|
+
interface CharacterCharacterLinkSkillPreset2 {
|
|
1714
|
+
skill_name: string;
|
|
1715
|
+
skill_description: string;
|
|
1716
|
+
skill_level: number;
|
|
1717
|
+
skill_effect: string;
|
|
1718
|
+
skill_icon: string;
|
|
1719
|
+
}
|
|
1720
|
+
interface CharacterCharacterLinkSkillPreset3 {
|
|
1721
|
+
skill_name: string;
|
|
1722
|
+
skill_description: string;
|
|
1723
|
+
skill_level: number;
|
|
1724
|
+
skill_effect: string;
|
|
1725
|
+
skill_icon: string;
|
|
1726
|
+
}
|
|
1727
|
+
interface CharacterCharacterOwnedLinkSkill {
|
|
1728
|
+
skill_name: string;
|
|
1729
|
+
skill_description: string;
|
|
1730
|
+
skill_level: number;
|
|
1731
|
+
skill_effect: string;
|
|
1732
|
+
skill_icon: string;
|
|
1733
|
+
}
|
|
1734
|
+
interface CharacterCharacterOwnedLinkSkillPreset1 {
|
|
1735
|
+
skill_name: string;
|
|
1736
|
+
skill_description: string;
|
|
1737
|
+
skill_level: number;
|
|
1738
|
+
skill_effect: string;
|
|
1739
|
+
skill_icon: string;
|
|
1740
|
+
}
|
|
1741
|
+
interface CharacterCharacterOwnedLinkSkillPreset2 {
|
|
1742
|
+
skill_name: string;
|
|
1743
|
+
skill_description: string;
|
|
1744
|
+
skill_level: number;
|
|
1745
|
+
skill_effect: string;
|
|
1746
|
+
skill_icon: string;
|
|
1747
|
+
}
|
|
1748
|
+
interface CharacterCharacterOwnedLinkSkillPreset3 {
|
|
1749
|
+
skill_name: string;
|
|
1750
|
+
skill_description: string;
|
|
1751
|
+
skill_level: number;
|
|
1752
|
+
skill_effect: string;
|
|
1753
|
+
skill_icon: string;
|
|
1754
|
+
}
|
|
1755
|
+
interface CharacterLinkSkillResponse {
|
|
1756
|
+
date: string;
|
|
1757
|
+
character_class: string;
|
|
1758
|
+
character_link_skill: CharacterCharacterLinkSkill[];
|
|
1759
|
+
character_link_skill_preset_1: CharacterCharacterLinkSkillPreset1[];
|
|
1760
|
+
character_link_skill_preset_2: CharacterCharacterLinkSkillPreset2[];
|
|
1761
|
+
character_link_skill_preset_3: CharacterCharacterLinkSkillPreset3[];
|
|
1762
|
+
character_owned_link_skill: CharacterCharacterOwnedLinkSkill;
|
|
1763
|
+
character_owned_link_skill_preset_1: CharacterCharacterOwnedLinkSkillPreset1;
|
|
1764
|
+
character_owned_link_skill_preset_2: CharacterCharacterOwnedLinkSkillPreset2;
|
|
1765
|
+
character_owned_link_skill_preset_3: CharacterCharacterOwnedLinkSkillPreset3;
|
|
1766
|
+
}
|
|
1767
|
+
interface GetCharacterLinkSkillParams {
|
|
1768
|
+
ocid: string;
|
|
1769
|
+
date?: DateInput;
|
|
1770
|
+
}
|
|
1771
|
+
interface CharacterCharacterVCoreEquipment {
|
|
1772
|
+
slot_id: string;
|
|
1773
|
+
v_core_name: string;
|
|
1774
|
+
v_core_type: string;
|
|
1775
|
+
v_core_level: number;
|
|
1776
|
+
}
|
|
1777
|
+
interface CharacterVmatrixResponse {
|
|
1778
|
+
date: string;
|
|
1779
|
+
character_class: string;
|
|
1780
|
+
character_v_core_equipment: CharacterCharacterVCoreEquipment[];
|
|
1781
|
+
character_v_matrix_remain_slot_upgrade_point: number;
|
|
1782
|
+
}
|
|
1783
|
+
interface GetCharacterVmatrixParams {
|
|
1784
|
+
ocid: string;
|
|
1785
|
+
date?: DateInput;
|
|
1786
|
+
}
|
|
1787
|
+
interface CharacterCharacterHexaCoreEquipmentLinkedSkill {
|
|
1788
|
+
hexa_skill_id: string;
|
|
1789
|
+
}
|
|
1790
|
+
interface CharacterCharacterHexaCoreEquipment {
|
|
1791
|
+
hexa_core_name: string;
|
|
1792
|
+
hexa_core_level: number;
|
|
1793
|
+
hexa_core_type: string;
|
|
1794
|
+
linked_skill: CharacterCharacterHexaCoreEquipmentLinkedSkill[];
|
|
1795
|
+
}
|
|
1796
|
+
interface CharacterHexamatrixResponse {
|
|
1797
|
+
date: string;
|
|
1798
|
+
character_hexa_core_equipment: CharacterCharacterHexaCoreEquipment[];
|
|
1799
|
+
}
|
|
1800
|
+
interface GetCharacterHexamatrixParams {
|
|
1801
|
+
ocid: string;
|
|
1802
|
+
date?: DateInput;
|
|
1803
|
+
}
|
|
1804
|
+
interface CharacterCharacterHexaStatCore {
|
|
1805
|
+
slot_id: string;
|
|
1806
|
+
main_stat_name: string;
|
|
1807
|
+
sub_stat_name_1: string;
|
|
1808
|
+
sub_stat_name_2: string;
|
|
1809
|
+
main_stat_level: number;
|
|
1810
|
+
sub_stat_level_1: number;
|
|
1811
|
+
sub_stat_level_2: number;
|
|
1812
|
+
stat_grade: number;
|
|
1813
|
+
}
|
|
1814
|
+
interface CharacterCharacterHexaStatCore2 {
|
|
1815
|
+
slot_id: string;
|
|
1816
|
+
main_stat_name: string;
|
|
1817
|
+
sub_stat_name_1: string;
|
|
1818
|
+
sub_stat_name_2: string;
|
|
1819
|
+
main_stat_level: number;
|
|
1820
|
+
sub_stat_level_1: number;
|
|
1821
|
+
sub_stat_level_2: number;
|
|
1822
|
+
stat_grade: number;
|
|
1823
|
+
}
|
|
1824
|
+
interface CharacterCharacterHexaStatCore3 {
|
|
1825
|
+
slot_id: string;
|
|
1826
|
+
main_stat_name: string;
|
|
1827
|
+
sub_stat_name_1: string;
|
|
1828
|
+
sub_stat_name_2: string;
|
|
1829
|
+
main_stat_level: number;
|
|
1830
|
+
sub_stat_level_1: number;
|
|
1831
|
+
sub_stat_level_2: number;
|
|
1832
|
+
stat_grade: number;
|
|
1833
|
+
}
|
|
1834
|
+
interface CharacterPresetHexaStatCore {
|
|
1835
|
+
slot_id: string;
|
|
1836
|
+
main_stat_name: string;
|
|
1837
|
+
sub_stat_name_1: string;
|
|
1838
|
+
sub_stat_name_2: string;
|
|
1839
|
+
main_stat_level: number;
|
|
1840
|
+
sub_stat_level_1: number;
|
|
1841
|
+
sub_stat_level_2: number;
|
|
1842
|
+
stat_grade: number;
|
|
1843
|
+
}
|
|
1844
|
+
interface CharacterPresetHexaStatCore2 {
|
|
1845
|
+
slot_id: string;
|
|
1846
|
+
main_stat_name: string;
|
|
1847
|
+
sub_stat_name_1: string;
|
|
1848
|
+
sub_stat_name_2: string;
|
|
1849
|
+
main_stat_level: number;
|
|
1850
|
+
sub_stat_level_1: number;
|
|
1851
|
+
sub_stat_level_2: number;
|
|
1852
|
+
stat_grade: number;
|
|
1853
|
+
}
|
|
1854
|
+
interface CharacterPresetHexaStatCore3 {
|
|
1855
|
+
slot_id: string;
|
|
1856
|
+
main_stat_name: string;
|
|
1857
|
+
sub_stat_name_1: string;
|
|
1858
|
+
sub_stat_name_2: string;
|
|
1859
|
+
main_stat_level: number;
|
|
1860
|
+
sub_stat_level_1: number;
|
|
1861
|
+
sub_stat_level_2: number;
|
|
1862
|
+
stat_grade: number;
|
|
1863
|
+
}
|
|
1864
|
+
interface CharacterHexamatrixStatResponse {
|
|
1865
|
+
date: string;
|
|
1866
|
+
character_class: string;
|
|
1867
|
+
character_hexa_stat_core: CharacterCharacterHexaStatCore[];
|
|
1868
|
+
character_hexa_stat_core_2: CharacterCharacterHexaStatCore2[];
|
|
1869
|
+
character_hexa_stat_core_3: CharacterCharacterHexaStatCore3[];
|
|
1870
|
+
preset_hexa_stat_core: CharacterPresetHexaStatCore[];
|
|
1871
|
+
preset_hexa_stat_core_2: CharacterPresetHexaStatCore2[];
|
|
1872
|
+
preset_hexa_stat_core_3: CharacterPresetHexaStatCore3[];
|
|
1873
|
+
}
|
|
1874
|
+
interface GetCharacterHexamatrixStatParams {
|
|
1875
|
+
ocid: string;
|
|
1876
|
+
date?: DateInput;
|
|
1877
|
+
}
|
|
1878
|
+
interface CharacterDojangResponse {
|
|
1879
|
+
date: string;
|
|
1880
|
+
character_class: string;
|
|
1881
|
+
world_name: string;
|
|
1882
|
+
dojang_best_floor: number;
|
|
1883
|
+
date_dojang_record: string;
|
|
1884
|
+
dojang_best_time: number;
|
|
1885
|
+
}
|
|
1886
|
+
interface GetCharacterDojangParams {
|
|
1887
|
+
ocid: string;
|
|
1888
|
+
date?: DateInput;
|
|
1889
|
+
}
|
|
1890
|
+
interface CharacterOtherStatStatInfo {
|
|
1891
|
+
stat_name: string;
|
|
1892
|
+
stat_value: string;
|
|
1893
|
+
}
|
|
1894
|
+
interface CharacterOtherStat {
|
|
1895
|
+
other_stat_type: string;
|
|
1896
|
+
stat_info: CharacterOtherStatStatInfo[];
|
|
1897
|
+
}
|
|
1898
|
+
interface CharacterOtherStatResponse {
|
|
1899
|
+
date: string;
|
|
1900
|
+
other_stat: CharacterOtherStat[];
|
|
1901
|
+
}
|
|
1902
|
+
interface GetCharacterOtherStatParams {
|
|
1903
|
+
ocid: string;
|
|
1904
|
+
date?: DateInput;
|
|
1905
|
+
}
|
|
1906
|
+
interface CharacterRingExchangeSkillEquipmentResponse {
|
|
1907
|
+
date: string;
|
|
1908
|
+
character_class: string;
|
|
1909
|
+
special_ring_exchange_name: string;
|
|
1910
|
+
special_ring_exchange_level: number;
|
|
1911
|
+
special_ring_exchange_icon: string;
|
|
1912
|
+
special_ring_exchange_description: string;
|
|
1913
|
+
}
|
|
1914
|
+
interface GetCharacterRingExchangeSkillEquipmentParams {
|
|
1915
|
+
ocid: string;
|
|
1916
|
+
date?: DateInput;
|
|
1917
|
+
}
|
|
1918
|
+
|
|
1919
|
+
/**
|
|
1920
|
+
* Base API class providing common HTTP functionality for all API categories
|
|
1921
|
+
*
|
|
1922
|
+
* Features:
|
|
1923
|
+
* - Centralized ky instance with base URL and headers
|
|
1924
|
+
* - Automatic error transformation to MapleApiError
|
|
1925
|
+
* - Network error handling
|
|
1926
|
+
*/
|
|
1927
|
+
declare class BaseApi {
|
|
1928
|
+
protected readonly client: KyInstance;
|
|
1929
|
+
constructor(apiKey: string);
|
|
1930
|
+
/**
|
|
1931
|
+
* Handles error responses and throws appropriate error types
|
|
1932
|
+
*/
|
|
1933
|
+
private handleErrorResponse;
|
|
1934
|
+
/**
|
|
1935
|
+
* Makes a GET request with proper error handling
|
|
1936
|
+
*/
|
|
1937
|
+
protected get<T>(endpoint: string, searchParams?: Record<string, string | number | undefined>, options?: ApiOptions): Promise<T>;
|
|
1938
|
+
}
|
|
1939
|
+
|
|
1940
|
+
/**
|
|
1941
|
+
* 캐릭터 정보 조회 API
|
|
1942
|
+
* Auto-generated from JSON schema - DO NOT EDIT
|
|
1943
|
+
* Generated at: 2025-12-24T23:59:23.304Z
|
|
1944
|
+
*/
|
|
1945
|
+
|
|
1946
|
+
/**
|
|
1947
|
+
* 캐릭터 정보 조회 API Class
|
|
1948
|
+
*/
|
|
1949
|
+
declare class CharacterApi extends BaseApi {
|
|
1950
|
+
/**
|
|
1951
|
+
* 캐릭터 목록 조회
|
|
1952
|
+
*/
|
|
1953
|
+
getList(options?: ApiOptions): Promise<CharacterListResponse>;
|
|
1954
|
+
/**
|
|
1955
|
+
* 업적 정보 조회
|
|
1956
|
+
*/
|
|
1957
|
+
getAchievement(options?: ApiOptions): Promise<CharacterAchievementResponse>;
|
|
1958
|
+
/**
|
|
1959
|
+
* 캐릭터 식별자(ocid) 조회
|
|
1960
|
+
*/
|
|
1961
|
+
getId(params: GetCharacterIdParams, options?: ApiOptions): Promise<CharacterIdResponse>;
|
|
1962
|
+
/**
|
|
1963
|
+
* 기본 정보 조회
|
|
1964
|
+
*/
|
|
1965
|
+
getBasic(params: GetCharacterBasicParams, options?: ApiOptions): Promise<CharacterBasicResponse>;
|
|
1966
|
+
/**
|
|
1967
|
+
* 인기도 정보 조회
|
|
1968
|
+
*/
|
|
1969
|
+
getPopularity(params: GetCharacterPopularityParams, options?: ApiOptions): Promise<CharacterPopularityResponse>;
|
|
1970
|
+
/**
|
|
1971
|
+
* 종합 능력치 정보 조회
|
|
1972
|
+
*/
|
|
1973
|
+
getStat(params: GetCharacterStatParams, options?: ApiOptions): Promise<CharacterStatResponse>;
|
|
1974
|
+
/**
|
|
1975
|
+
* 하이퍼스탯 정보 조회
|
|
1976
|
+
*/
|
|
1977
|
+
getHyperstat(params: GetCharacterHyperStatParams, options?: ApiOptions): Promise<CharacterHyperStatResponse>;
|
|
1978
|
+
/**
|
|
1979
|
+
* 성향 정보 조회
|
|
1980
|
+
*/
|
|
1981
|
+
getPropensity(params: GetCharacterPropensityParams, options?: ApiOptions): Promise<CharacterPropensityResponse>;
|
|
1982
|
+
/**
|
|
1983
|
+
* 어빌리티 정보 조회
|
|
1984
|
+
*/
|
|
1985
|
+
getAbility(params: GetCharacterAbilityParams, options?: ApiOptions): Promise<CharacterAbilityResponse>;
|
|
1986
|
+
/**
|
|
1987
|
+
* 장착 장비 정보 조회 (캐시 장비 제외)
|
|
1988
|
+
*/
|
|
1989
|
+
getItemequipment(params: GetCharacterItemEquipmentParams, options?: ApiOptions): Promise<CharacterItemEquipmentResponse>;
|
|
1990
|
+
/**
|
|
1991
|
+
* 장착 캐시 장비 정보 조회
|
|
1992
|
+
*/
|
|
1993
|
+
getCashitemequipment(params: GetCharacterCashitemEquipmentParams, options?: ApiOptions): Promise<CharacterCashitemEquipmentResponse>;
|
|
1994
|
+
/**
|
|
1995
|
+
* 장착 심볼 정보 조회
|
|
1996
|
+
*/
|
|
1997
|
+
getSymbolequipment(params: GetCharacterSymbolEquipmentParams, options?: ApiOptions): Promise<CharacterSymbolEquipmentResponse>;
|
|
1998
|
+
/**
|
|
1999
|
+
* 적용 세트 효과 정보 조회
|
|
2000
|
+
*/
|
|
2001
|
+
getSeteffect(params: GetCharacterSetEffectParams, options?: ApiOptions): Promise<CharacterSetEffectResponse>;
|
|
2002
|
+
/**
|
|
2003
|
+
* 장착 헤어, 성형, 피부 정보 조회
|
|
2004
|
+
*/
|
|
2005
|
+
getBeautyequipment(params: GetCharacterBeautyEquipmentParams, options?: ApiOptions): Promise<CharacterBeautyEquipmentResponse>;
|
|
2006
|
+
/**
|
|
2007
|
+
* 장착 안드로이드 정보 조회
|
|
2008
|
+
*/
|
|
2009
|
+
getAndroidequipment(params: GetCharacterAndroidEquipmentParams, options?: ApiOptions): Promise<CharacterAndroidEquipmentResponse>;
|
|
2010
|
+
/**
|
|
2011
|
+
* 장착 펫 정보 조회
|
|
2012
|
+
*/
|
|
2013
|
+
getPetequipment(params: GetCharacterPetEquipmentParams, options?: ApiOptions): Promise<CharacterPetEquipmentResponse>;
|
|
2014
|
+
/**
|
|
2015
|
+
* 스킬 정보 조회
|
|
2016
|
+
*/
|
|
2017
|
+
getSkill(params: GetCharacterSkillParams, options?: ApiOptions): Promise<CharacterSkillResponse>;
|
|
2018
|
+
/**
|
|
2019
|
+
* 장착 링크 스킬 정보 조회
|
|
2020
|
+
*/
|
|
2021
|
+
getLinkskill(params: GetCharacterLinkSkillParams, options?: ApiOptions): Promise<CharacterLinkSkillResponse>;
|
|
2022
|
+
/**
|
|
2023
|
+
* V매트릭스 정보 조회
|
|
2024
|
+
*/
|
|
2025
|
+
getVmatrix(params: GetCharacterVmatrixParams, options?: ApiOptions): Promise<CharacterVmatrixResponse>;
|
|
2026
|
+
/**
|
|
2027
|
+
* HEXA 코어 정보 조회
|
|
2028
|
+
*/
|
|
2029
|
+
getHexamatrix(params: GetCharacterHexamatrixParams, options?: ApiOptions): Promise<CharacterHexamatrixResponse>;
|
|
2030
|
+
/**
|
|
2031
|
+
* HEXA 매트릭스 설정 HEXA 스탯 정보 조회
|
|
2032
|
+
*/
|
|
2033
|
+
getHexamatrixstat(params: GetCharacterHexamatrixStatParams, options?: ApiOptions): Promise<CharacterHexamatrixStatResponse>;
|
|
2034
|
+
/**
|
|
2035
|
+
* 무릉도장 최고 기록 정보 조회
|
|
2036
|
+
*/
|
|
2037
|
+
getDojang(params: GetCharacterDojangParams, options?: ApiOptions): Promise<CharacterDojangResponse>;
|
|
2038
|
+
/**
|
|
2039
|
+
* 기타 능력치 영향 요소 정보 조회
|
|
2040
|
+
*/
|
|
2041
|
+
getOtherstat(params: GetCharacterOtherStatParams, options?: ApiOptions): Promise<CharacterOtherStatResponse>;
|
|
2042
|
+
/**
|
|
2043
|
+
* 링 익스체인지 스킬 등록 장비 조회
|
|
2044
|
+
*/
|
|
2045
|
+
getRingexchangeskillequipment(params: GetCharacterRingExchangeSkillEquipmentParams, options?: ApiOptions): Promise<CharacterRingExchangeSkillEquipmentResponse>;
|
|
2046
|
+
}
|
|
2047
|
+
|
|
2048
|
+
/**
|
|
2049
|
+
* 길드 정보 조회 API Types
|
|
2050
|
+
* Auto-generated from JSON schema - DO NOT EDIT
|
|
2051
|
+
* Generated at: 2025-12-24T23:59:23.302Z
|
|
2052
|
+
*/
|
|
2053
|
+
|
|
2054
|
+
interface GuildIdResponse {
|
|
2055
|
+
oguild_id: string;
|
|
2056
|
+
}
|
|
2057
|
+
interface GetGuildIdParams {
|
|
2058
|
+
guildName: string;
|
|
2059
|
+
worldName: string;
|
|
2060
|
+
}
|
|
2061
|
+
interface GuildGuildSkill {
|
|
2062
|
+
skill_name: string;
|
|
2063
|
+
skill_description: string;
|
|
2064
|
+
skill_level: number;
|
|
2065
|
+
skill_effect: string;
|
|
2066
|
+
skill_icon: string;
|
|
2067
|
+
}
|
|
2068
|
+
interface GuildGuildNoblesseSkill {
|
|
2069
|
+
skill_name: string;
|
|
2070
|
+
skill_description: string;
|
|
2071
|
+
skill_level: number;
|
|
2072
|
+
skill_effect: string;
|
|
2073
|
+
skill_icon: string;
|
|
2074
|
+
}
|
|
2075
|
+
interface GuildBasicResponse {
|
|
2076
|
+
date: string;
|
|
2077
|
+
world_name: string;
|
|
2078
|
+
guild_name: string;
|
|
2079
|
+
guild_level: number;
|
|
2080
|
+
guild_fame: number;
|
|
2081
|
+
guild_point: number;
|
|
2082
|
+
guild_master_name: string;
|
|
2083
|
+
guild_member_count: number;
|
|
2084
|
+
guild_member: string[];
|
|
2085
|
+
guild_skill: GuildGuildSkill[];
|
|
2086
|
+
guild_noblesse_skill: GuildGuildNoblesseSkill[];
|
|
2087
|
+
}
|
|
2088
|
+
interface GetGuildBasicParams {
|
|
2089
|
+
oguildId: string;
|
|
2090
|
+
date?: DateInput;
|
|
2091
|
+
}
|
|
2092
|
+
|
|
2093
|
+
/**
|
|
2094
|
+
* 길드 정보 조회 API
|
|
2095
|
+
* Auto-generated from JSON schema - DO NOT EDIT
|
|
2096
|
+
* Generated at: 2025-12-24T23:59:23.305Z
|
|
2097
|
+
*/
|
|
2098
|
+
|
|
2099
|
+
/**
|
|
2100
|
+
* 길드 정보 조회 API Class
|
|
2101
|
+
*/
|
|
2102
|
+
declare class GuildApi extends BaseApi {
|
|
2103
|
+
/**
|
|
2104
|
+
* 길드 식별자(oguild_id) 정보 조회
|
|
2105
|
+
*/
|
|
2106
|
+
getId(params: GetGuildIdParams, options?: ApiOptions): Promise<GuildIdResponse>;
|
|
2107
|
+
/**
|
|
2108
|
+
* 기본 정보 조회
|
|
2109
|
+
*/
|
|
2110
|
+
getBasic(params: GetGuildBasicParams, options?: ApiOptions): Promise<GuildBasicResponse>;
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2113
|
+
/**
|
|
2114
|
+
* 확률 정보 조회 API Types
|
|
2115
|
+
* Auto-generated from JSON schema - DO NOT EDIT
|
|
2116
|
+
* Generated at: 2025-12-24T23:59:23.302Z
|
|
2117
|
+
*/
|
|
2118
|
+
|
|
2119
|
+
interface HistoryLegacyOuidResponse {
|
|
2120
|
+
ouid: string;
|
|
2121
|
+
}
|
|
2122
|
+
interface HistoryOuidResponse {
|
|
2123
|
+
ouid: string;
|
|
2124
|
+
}
|
|
2125
|
+
interface HistoryStarforceHistoryStarforceEventList {
|
|
2126
|
+
success_rate: string;
|
|
2127
|
+
destroy_decrease_rate: string;
|
|
2128
|
+
cost_discount_rate: string;
|
|
2129
|
+
plus_value: string;
|
|
2130
|
+
starforce_event_range: string;
|
|
2131
|
+
}
|
|
2132
|
+
interface HistoryStarforceHistory {
|
|
2133
|
+
id: string;
|
|
2134
|
+
item_upgrade_result: string;
|
|
2135
|
+
before_starforce_count: number;
|
|
2136
|
+
after_starforce_count: number;
|
|
2137
|
+
starcatch_result: string;
|
|
2138
|
+
superior_item_flag: string;
|
|
2139
|
+
destroy_defence: string;
|
|
2140
|
+
chance_time: string;
|
|
2141
|
+
event_field_flag: string;
|
|
2142
|
+
upgrade_item: string;
|
|
2143
|
+
protect_shield: string;
|
|
2144
|
+
bonus_stat_upgrade: string;
|
|
2145
|
+
character_name: string;
|
|
2146
|
+
world_name: string;
|
|
2147
|
+
target_item: string;
|
|
2148
|
+
date_create: string;
|
|
2149
|
+
starforce_event_list: HistoryStarforceHistoryStarforceEventList[];
|
|
2150
|
+
}
|
|
2151
|
+
interface HistoryStarforceResponse {
|
|
2152
|
+
count: number;
|
|
2153
|
+
next_cursor: string;
|
|
2154
|
+
starforce_history: HistoryStarforceHistory[];
|
|
2155
|
+
}
|
|
2156
|
+
interface GetHistoryStarforceParams {
|
|
2157
|
+
count: string;
|
|
2158
|
+
date?: DateInput;
|
|
2159
|
+
cursor?: string;
|
|
2160
|
+
}
|
|
2161
|
+
interface HistoryPotentialHistoryBeforePotentialOption {
|
|
2162
|
+
value: string;
|
|
2163
|
+
grade: string;
|
|
2164
|
+
}
|
|
2165
|
+
interface HistoryPotentialHistoryBeforeAdditionalPotentialOption {
|
|
2166
|
+
value: string;
|
|
2167
|
+
grade: string;
|
|
2168
|
+
}
|
|
2169
|
+
interface HistoryPotentialHistoryAfterPotentialOption {
|
|
2170
|
+
value: string;
|
|
2171
|
+
grade: string;
|
|
2172
|
+
}
|
|
2173
|
+
interface HistoryPotentialHistoryAfterAdditionalPotentialOption {
|
|
2174
|
+
value: string;
|
|
2175
|
+
grade: string;
|
|
2176
|
+
}
|
|
2177
|
+
interface HistoryPotentialHistory {
|
|
2178
|
+
id: string;
|
|
2179
|
+
character_name: string;
|
|
2180
|
+
date_create: string;
|
|
2181
|
+
potential_type: string;
|
|
2182
|
+
item_upgrade_result: string;
|
|
2183
|
+
miracle_time_flag: string;
|
|
2184
|
+
item_equipment_part: string;
|
|
2185
|
+
item_level: number;
|
|
2186
|
+
target_item: string;
|
|
2187
|
+
potential_option_grade: string;
|
|
2188
|
+
additional_potential_option_grade: string;
|
|
2189
|
+
upgrade_guarantee: boolean;
|
|
2190
|
+
upgrade_guarantee_count: number;
|
|
2191
|
+
before_potential_option: HistoryPotentialHistoryBeforePotentialOption[];
|
|
2192
|
+
before_additional_potential_option: HistoryPotentialHistoryBeforeAdditionalPotentialOption[];
|
|
2193
|
+
after_potential_option: HistoryPotentialHistoryAfterPotentialOption[];
|
|
2194
|
+
after_additional_potential_option: HistoryPotentialHistoryAfterAdditionalPotentialOption[];
|
|
2195
|
+
}
|
|
2196
|
+
interface HistoryPotentialResponse {
|
|
2197
|
+
count: number;
|
|
2198
|
+
next_cursor: string;
|
|
2199
|
+
potential_history: HistoryPotentialHistory[];
|
|
2200
|
+
}
|
|
2201
|
+
interface GetHistoryPotentialParams {
|
|
2202
|
+
count: string;
|
|
2203
|
+
date?: DateInput;
|
|
2204
|
+
cursor?: string;
|
|
2205
|
+
}
|
|
2206
|
+
interface HistoryCubeHistoryBeforePotentialOption {
|
|
2207
|
+
value: string;
|
|
2208
|
+
grade: string;
|
|
2209
|
+
}
|
|
2210
|
+
interface HistoryCubeHistoryBeforeAdditionalPotentialOption {
|
|
2211
|
+
value: string;
|
|
2212
|
+
grade: string;
|
|
2213
|
+
}
|
|
2214
|
+
interface HistoryCubeHistoryAfterPotentialOption {
|
|
2215
|
+
value: string;
|
|
2216
|
+
grade: string;
|
|
2217
|
+
}
|
|
2218
|
+
interface HistoryCubeHistoryAfterAdditionalPotentialOption {
|
|
2219
|
+
value: string;
|
|
2220
|
+
grade: string;
|
|
2221
|
+
}
|
|
2222
|
+
interface HistoryCubeHistory {
|
|
2223
|
+
id: string;
|
|
2224
|
+
character_name: string;
|
|
2225
|
+
date_create: string;
|
|
2226
|
+
cube_type: string;
|
|
2227
|
+
item_upgrade_result: string;
|
|
2228
|
+
miracle_time_flag: string;
|
|
2229
|
+
item_equipment_part: string;
|
|
2230
|
+
item_level: number;
|
|
2231
|
+
target_item: string;
|
|
2232
|
+
potential_option_grade: string;
|
|
2233
|
+
additional_potential_option_grade: string;
|
|
2234
|
+
upgrade_guarantee: boolean;
|
|
2235
|
+
upgrade_guarantee_count: number;
|
|
2236
|
+
before_potential_option: HistoryCubeHistoryBeforePotentialOption[];
|
|
2237
|
+
before_additional_potential_option: HistoryCubeHistoryBeforeAdditionalPotentialOption[];
|
|
2238
|
+
after_potential_option: HistoryCubeHistoryAfterPotentialOption[];
|
|
2239
|
+
after_additional_potential_option: HistoryCubeHistoryAfterAdditionalPotentialOption[];
|
|
2240
|
+
}
|
|
2241
|
+
interface HistoryCubeResponse {
|
|
2242
|
+
count: number;
|
|
2243
|
+
next_cursor: string;
|
|
2244
|
+
cube_history: HistoryCubeHistory[];
|
|
2245
|
+
}
|
|
2246
|
+
interface GetHistoryCubeParams {
|
|
2247
|
+
count: string;
|
|
2248
|
+
date?: DateInput;
|
|
2249
|
+
cursor?: string;
|
|
2250
|
+
}
|
|
2251
|
+
|
|
2252
|
+
/**
|
|
2253
|
+
* 확률 정보 조회 API
|
|
2254
|
+
* Auto-generated from JSON schema - DO NOT EDIT
|
|
2255
|
+
* Generated at: 2025-12-24T23:59:23.305Z
|
|
2256
|
+
*/
|
|
2257
|
+
|
|
2258
|
+
/**
|
|
2259
|
+
* 확률 정보 조회 API Class
|
|
2260
|
+
*/
|
|
2261
|
+
declare class HistoryApi extends BaseApi {
|
|
2262
|
+
/**
|
|
2263
|
+
* 계정 식별자(ouid) 조회 (구 API KEY 사용)
|
|
2264
|
+
*/
|
|
2265
|
+
getLegacyouid(options?: ApiOptions): Promise<HistoryLegacyOuidResponse>;
|
|
2266
|
+
/**
|
|
2267
|
+
* 계정 식별자(ouid) 조회
|
|
2268
|
+
*/
|
|
2269
|
+
getOuid(options?: ApiOptions): Promise<HistoryOuidResponse>;
|
|
2270
|
+
/**
|
|
2271
|
+
* 스타포스 강화 결과 조회
|
|
2272
|
+
*/
|
|
2273
|
+
getStarforce(params: GetHistoryStarforceParams, options?: ApiOptions): Promise<HistoryStarforceResponse>;
|
|
2274
|
+
/**
|
|
2275
|
+
* 잠재능력 재설정 이용 결과 조회
|
|
2276
|
+
*/
|
|
2277
|
+
getPotential(params: GetHistoryPotentialParams, options?: ApiOptions): Promise<HistoryPotentialResponse>;
|
|
2278
|
+
/**
|
|
2279
|
+
* 큐브 사용 결과 조회
|
|
2280
|
+
*/
|
|
2281
|
+
getCube(params: GetHistoryCubeParams, options?: ApiOptions): Promise<HistoryCubeResponse>;
|
|
2282
|
+
}
|
|
2283
|
+
|
|
2284
|
+
/**
|
|
2285
|
+
* 공지 정보 조회 API Types
|
|
2286
|
+
* Auto-generated from JSON schema - DO NOT EDIT
|
|
2287
|
+
* Generated at: 2025-12-24T23:59:23.302Z
|
|
2288
|
+
*/
|
|
2289
|
+
interface NoticeNotice {
|
|
2290
|
+
title: string;
|
|
2291
|
+
url: string;
|
|
2292
|
+
notice_id: number;
|
|
2293
|
+
date: string;
|
|
2294
|
+
}
|
|
2295
|
+
interface NoticeNoticeResponse {
|
|
2296
|
+
notice: NoticeNotice[];
|
|
2297
|
+
}
|
|
2298
|
+
interface NoticeDetailResponse {
|
|
2299
|
+
title: string;
|
|
2300
|
+
url: string;
|
|
2301
|
+
contents: string;
|
|
2302
|
+
date: string;
|
|
2303
|
+
}
|
|
2304
|
+
interface GetNoticeDetailParams {
|
|
2305
|
+
noticeId: number;
|
|
2306
|
+
}
|
|
2307
|
+
interface NoticeUpdateNotice {
|
|
2308
|
+
title: string;
|
|
2309
|
+
url: string;
|
|
2310
|
+
notice_id: number;
|
|
2311
|
+
date: string;
|
|
2312
|
+
}
|
|
2313
|
+
interface NoticeNoticeUpdateResponse {
|
|
2314
|
+
update_notice: NoticeUpdateNotice[];
|
|
2315
|
+
}
|
|
2316
|
+
interface NoticeUpdateDetailResponse {
|
|
2317
|
+
title: string;
|
|
2318
|
+
url: string;
|
|
2319
|
+
contents: string;
|
|
2320
|
+
date: string;
|
|
2321
|
+
}
|
|
2322
|
+
interface GetNoticeUpdateDetailParams {
|
|
2323
|
+
noticeId: number;
|
|
2324
|
+
}
|
|
2325
|
+
interface NoticeEventNotice {
|
|
2326
|
+
title: string;
|
|
2327
|
+
url: string;
|
|
2328
|
+
notice_id: number;
|
|
2329
|
+
date: string;
|
|
2330
|
+
date_event_start: string | null;
|
|
2331
|
+
date_event_end: string | null;
|
|
2332
|
+
}
|
|
2333
|
+
interface NoticeNoticeEventResponse {
|
|
2334
|
+
event_notice: NoticeEventNotice[];
|
|
2335
|
+
}
|
|
2336
|
+
interface NoticeEventDetailResponse {
|
|
2337
|
+
title: string;
|
|
2338
|
+
url: string;
|
|
2339
|
+
contents: string;
|
|
2340
|
+
date: string;
|
|
2341
|
+
date_event_start: string | null;
|
|
2342
|
+
date_event_end: string | null;
|
|
2343
|
+
}
|
|
2344
|
+
interface GetNoticeEventDetailParams {
|
|
2345
|
+
noticeId: number;
|
|
2346
|
+
}
|
|
2347
|
+
interface NoticeCashshopNotice {
|
|
2348
|
+
title: string;
|
|
2349
|
+
url: string;
|
|
2350
|
+
notice_id: number;
|
|
2351
|
+
date: string;
|
|
2352
|
+
date_sale_start: string | null;
|
|
2353
|
+
date_sale_end: string | null;
|
|
2354
|
+
ongoing_flag: string;
|
|
2355
|
+
}
|
|
2356
|
+
interface NoticeNoticeCashshopResponse {
|
|
2357
|
+
cashshop_notice: NoticeCashshopNotice[];
|
|
2358
|
+
}
|
|
2359
|
+
interface NoticeCashshopDetailResponse {
|
|
2360
|
+
title: string;
|
|
2361
|
+
url: string;
|
|
2362
|
+
contents: string;
|
|
2363
|
+
date: string;
|
|
2364
|
+
date_sale_start: string | null;
|
|
2365
|
+
date_sale_end: string | null;
|
|
2366
|
+
ongoing_flag: string;
|
|
2367
|
+
}
|
|
2368
|
+
interface GetNoticeCashshopDetailParams {
|
|
2369
|
+
noticeId: number;
|
|
2370
|
+
}
|
|
2371
|
+
|
|
2372
|
+
/**
|
|
2373
|
+
* 공지 정보 조회 API
|
|
2374
|
+
* Auto-generated from JSON schema - DO NOT EDIT
|
|
2375
|
+
* Generated at: 2025-12-24T23:59:23.305Z
|
|
2376
|
+
*/
|
|
2377
|
+
|
|
2378
|
+
/**
|
|
2379
|
+
* 공지 정보 조회 API Class
|
|
2380
|
+
*/
|
|
2381
|
+
declare class NoticeApi extends BaseApi {
|
|
2382
|
+
/**
|
|
2383
|
+
* 공지사항 목록 조회
|
|
2384
|
+
*/
|
|
2385
|
+
getNotice(options?: ApiOptions): Promise<NoticeNoticeResponse>;
|
|
2386
|
+
/**
|
|
2387
|
+
* 공지사항 상세 조회
|
|
2388
|
+
*/
|
|
2389
|
+
getDetail(params: GetNoticeDetailParams, options?: ApiOptions): Promise<NoticeDetailResponse>;
|
|
2390
|
+
/**
|
|
2391
|
+
* 업데이트 목록 조회
|
|
2392
|
+
*/
|
|
2393
|
+
getNoticeupdate(options?: ApiOptions): Promise<NoticeNoticeUpdateResponse>;
|
|
2394
|
+
/**
|
|
2395
|
+
* 업데이트 상세 조회
|
|
2396
|
+
*/
|
|
2397
|
+
getUpdatedetail(params: GetNoticeUpdateDetailParams, options?: ApiOptions): Promise<NoticeUpdateDetailResponse>;
|
|
2398
|
+
/**
|
|
2399
|
+
* 진행 중 이벤트 목록 조회
|
|
2400
|
+
*/
|
|
2401
|
+
getNoticeevent(options?: ApiOptions): Promise<NoticeNoticeEventResponse>;
|
|
2402
|
+
/**
|
|
2403
|
+
* 진행 중 이벤트 상세 조회
|
|
2404
|
+
*/
|
|
2405
|
+
getEventdetail(params: GetNoticeEventDetailParams, options?: ApiOptions): Promise<NoticeEventDetailResponse>;
|
|
2406
|
+
/**
|
|
2407
|
+
* 캐시샵 공지 목록 조회
|
|
2408
|
+
*/
|
|
2409
|
+
getNoticecashshop(options?: ApiOptions): Promise<NoticeNoticeCashshopResponse>;
|
|
2410
|
+
/**
|
|
2411
|
+
* 캐시샵 공지 상세 조회
|
|
2412
|
+
*/
|
|
2413
|
+
getCashshopdetail(params: GetNoticeCashshopDetailParams, options?: ApiOptions): Promise<NoticeCashshopDetailResponse>;
|
|
2414
|
+
}
|
|
2415
|
+
|
|
2416
|
+
/**
|
|
2417
|
+
* 랭킹 정보 조회 API Types
|
|
2418
|
+
* Auto-generated from JSON schema - DO NOT EDIT
|
|
2419
|
+
* Generated at: 2025-12-24T23:59:23.303Z
|
|
2420
|
+
*/
|
|
2421
|
+
|
|
2422
|
+
interface RankingRanking {
|
|
2423
|
+
date: string;
|
|
2424
|
+
ranking: number;
|
|
2425
|
+
character_name: string;
|
|
2426
|
+
world_name: string;
|
|
2427
|
+
class_name: string;
|
|
2428
|
+
sub_class_name: string;
|
|
2429
|
+
character_level: number;
|
|
2430
|
+
character_exp: number;
|
|
2431
|
+
character_popularity: number;
|
|
2432
|
+
character_guildname: string;
|
|
2433
|
+
}
|
|
2434
|
+
interface RankingOverallResponse {
|
|
2435
|
+
ranking: RankingRanking[];
|
|
2436
|
+
}
|
|
2437
|
+
interface GetRankingOverallParams {
|
|
2438
|
+
date: DateInput;
|
|
2439
|
+
worldName?: string;
|
|
2440
|
+
worldType?: string;
|
|
2441
|
+
class?: string;
|
|
2442
|
+
ocid?: string;
|
|
2443
|
+
page?: number;
|
|
2444
|
+
}
|
|
2445
|
+
interface RankingUnionResponse {
|
|
2446
|
+
ranking: RankingRanking[];
|
|
2447
|
+
}
|
|
2448
|
+
interface GetRankingUnionParams {
|
|
2449
|
+
date: DateInput;
|
|
2450
|
+
worldName?: string;
|
|
2451
|
+
ocid?: string;
|
|
2452
|
+
page?: number;
|
|
2453
|
+
}
|
|
2454
|
+
interface RankingGuildResponse {
|
|
2455
|
+
ranking: RankingRanking[];
|
|
2456
|
+
}
|
|
2457
|
+
interface GetRankingGuildParams {
|
|
2458
|
+
date: DateInput;
|
|
2459
|
+
worldName?: string;
|
|
2460
|
+
rankingType: string;
|
|
2461
|
+
guildName?: string;
|
|
2462
|
+
page?: number;
|
|
2463
|
+
}
|
|
2464
|
+
interface RankingDojangResponse {
|
|
2465
|
+
ranking: RankingRanking[];
|
|
2466
|
+
}
|
|
2467
|
+
interface GetRankingDojangParams {
|
|
2468
|
+
date: DateInput;
|
|
2469
|
+
worldName?: string;
|
|
2470
|
+
difficulty: number;
|
|
2471
|
+
class?: string;
|
|
2472
|
+
ocid?: string;
|
|
2473
|
+
page?: number;
|
|
2474
|
+
}
|
|
2475
|
+
interface RankingTheseedResponse {
|
|
2476
|
+
ranking: RankingRanking[];
|
|
2477
|
+
}
|
|
2478
|
+
interface GetRankingTheseedParams {
|
|
2479
|
+
date: DateInput;
|
|
2480
|
+
worldName?: string;
|
|
2481
|
+
ocid?: string;
|
|
2482
|
+
page?: number;
|
|
2483
|
+
}
|
|
2484
|
+
interface RankingAchievementResponse {
|
|
2485
|
+
ranking: RankingRanking[];
|
|
2486
|
+
}
|
|
2487
|
+
interface GetRankingAchievementParams {
|
|
2488
|
+
date: DateInput;
|
|
2489
|
+
ocid?: string;
|
|
2490
|
+
page?: number;
|
|
2491
|
+
}
|
|
2492
|
+
|
|
2493
|
+
/**
|
|
2494
|
+
* 랭킹 정보 조회 API
|
|
2495
|
+
* Auto-generated from JSON schema - DO NOT EDIT
|
|
2496
|
+
* Generated at: 2025-12-24T23:59:23.305Z
|
|
2497
|
+
*/
|
|
2498
|
+
|
|
2499
|
+
/**
|
|
2500
|
+
* 랭킹 정보 조회 API Class
|
|
2501
|
+
*/
|
|
2502
|
+
declare class RankingApi extends BaseApi {
|
|
2503
|
+
/**
|
|
2504
|
+
* 종합 랭킹 정보 조회
|
|
2505
|
+
*/
|
|
2506
|
+
getOverall(params: GetRankingOverallParams, options?: ApiOptions): Promise<RankingOverallResponse>;
|
|
2507
|
+
/**
|
|
2508
|
+
* 유니온 랭킹 정보 조회
|
|
2509
|
+
*/
|
|
2510
|
+
getUnion(params: GetRankingUnionParams, options?: ApiOptions): Promise<RankingUnionResponse>;
|
|
2511
|
+
/**
|
|
2512
|
+
* 길드 랭킹 정보 조회
|
|
2513
|
+
*/
|
|
2514
|
+
getGuild(params: GetRankingGuildParams, options?: ApiOptions): Promise<RankingGuildResponse>;
|
|
2515
|
+
/**
|
|
2516
|
+
* 무릉도장 랭킹 정보 조회
|
|
2517
|
+
*/
|
|
2518
|
+
getDojang(params: GetRankingDojangParams, options?: ApiOptions): Promise<RankingDojangResponse>;
|
|
2519
|
+
/**
|
|
2520
|
+
* 더 시드 랭킹 정보 조회
|
|
2521
|
+
*/
|
|
2522
|
+
getTheseed(params: GetRankingTheseedParams, options?: ApiOptions): Promise<RankingTheseedResponse>;
|
|
2523
|
+
/**
|
|
2524
|
+
* 업적 랭킹 정보 조회
|
|
2525
|
+
*/
|
|
2526
|
+
getAchievement(params: GetRankingAchievementParams, options?: ApiOptions): Promise<RankingAchievementResponse>;
|
|
2527
|
+
}
|
|
2528
|
+
|
|
2529
|
+
/**
|
|
2530
|
+
* 유니온 정보 조회 API Types
|
|
2531
|
+
* Auto-generated from JSON schema - DO NOT EDIT
|
|
2532
|
+
* Generated at: 2025-12-24T23:59:23.303Z
|
|
2533
|
+
*/
|
|
2534
|
+
|
|
2535
|
+
interface UnionUnionResponse {
|
|
2536
|
+
date: string;
|
|
2537
|
+
union_level: number;
|
|
2538
|
+
union_grade: string;
|
|
2539
|
+
union_artifact_level: number;
|
|
2540
|
+
union_artifact_exp: number;
|
|
2541
|
+
union_artifact_point: number;
|
|
2542
|
+
}
|
|
2543
|
+
interface GetUnionUnionParams {
|
|
2544
|
+
ocid: string;
|
|
2545
|
+
date?: DateInput;
|
|
2546
|
+
}
|
|
2547
|
+
interface UnionUnionInnerStat {
|
|
2548
|
+
stat_field_id: string;
|
|
2549
|
+
stat_field_effect: string;
|
|
2550
|
+
}
|
|
2551
|
+
interface UnionUnionBlockBlockControlPoint {
|
|
2552
|
+
x: number;
|
|
2553
|
+
y: number;
|
|
2554
|
+
}
|
|
2555
|
+
interface UnionUnionBlockBlockPosition {
|
|
2556
|
+
x: number;
|
|
2557
|
+
y: number;
|
|
2558
|
+
}
|
|
2559
|
+
interface UnionUnionBlock {
|
|
2560
|
+
block_type: string;
|
|
2561
|
+
block_class: string;
|
|
2562
|
+
block_level: string;
|
|
2563
|
+
block_control_point: UnionUnionBlockBlockControlPoint;
|
|
2564
|
+
block_position: UnionUnionBlockBlockPosition[];
|
|
2565
|
+
}
|
|
2566
|
+
interface UnionUnionRaiderPreset1UnionInnerStat {
|
|
2567
|
+
stat_field_id: string;
|
|
2568
|
+
stat_field_effect: string;
|
|
2569
|
+
}
|
|
2570
|
+
interface UnionUnionRaiderPreset1UnionBlockBlockControlPoint {
|
|
2571
|
+
x: number;
|
|
2572
|
+
y: number;
|
|
2573
|
+
}
|
|
2574
|
+
interface UnionUnionRaiderPreset1UnionBlockBlockPosition {
|
|
2575
|
+
x: number;
|
|
2576
|
+
y: number;
|
|
2577
|
+
}
|
|
2578
|
+
interface UnionUnionRaiderPreset1UnionBlock {
|
|
2579
|
+
block_type: string;
|
|
2580
|
+
block_class: string;
|
|
2581
|
+
block_level: string;
|
|
2582
|
+
block_control_point: UnionUnionRaiderPreset1UnionBlockBlockControlPoint;
|
|
2583
|
+
block_position: UnionUnionRaiderPreset1UnionBlockBlockPosition[];
|
|
2584
|
+
}
|
|
2585
|
+
interface UnionUnionRaiderPreset1 {
|
|
2586
|
+
union_raider_stat: string[];
|
|
2587
|
+
union_occupied_stat: string[];
|
|
2588
|
+
union_inner_stat: UnionUnionRaiderPreset1UnionInnerStat[];
|
|
2589
|
+
union_block: UnionUnionRaiderPreset1UnionBlock[];
|
|
2590
|
+
}
|
|
2591
|
+
interface UnionUnionRaiderPreset2UnionInnerStat {
|
|
2592
|
+
stat_field_id: string;
|
|
2593
|
+
stat_field_effect: string;
|
|
2594
|
+
}
|
|
2595
|
+
interface UnionUnionRaiderPreset2UnionBlockBlockControlPoint {
|
|
2596
|
+
x: number;
|
|
2597
|
+
y: number;
|
|
2598
|
+
}
|
|
2599
|
+
interface UnionUnionRaiderPreset2UnionBlockBlockPosition {
|
|
2600
|
+
x: number;
|
|
2601
|
+
y: number;
|
|
2602
|
+
}
|
|
2603
|
+
interface UnionUnionRaiderPreset2UnionBlock {
|
|
2604
|
+
block_type: string;
|
|
2605
|
+
block_class: string;
|
|
2606
|
+
block_level: string;
|
|
2607
|
+
block_control_point: UnionUnionRaiderPreset2UnionBlockBlockControlPoint;
|
|
2608
|
+
block_position: UnionUnionRaiderPreset2UnionBlockBlockPosition[];
|
|
2609
|
+
}
|
|
2610
|
+
interface UnionUnionRaiderPreset2 {
|
|
2611
|
+
union_raider_stat: string[];
|
|
2612
|
+
union_occupied_stat: string[];
|
|
2613
|
+
union_inner_stat: UnionUnionRaiderPreset2UnionInnerStat[];
|
|
2614
|
+
union_block: UnionUnionRaiderPreset2UnionBlock[];
|
|
2615
|
+
}
|
|
2616
|
+
interface UnionUnionRaiderPreset3UnionInnerStat {
|
|
2617
|
+
stat_field_id: string;
|
|
2618
|
+
stat_field_effect: string;
|
|
2619
|
+
}
|
|
2620
|
+
interface UnionUnionRaiderPreset3UnionBlockBlockControlPoint {
|
|
2621
|
+
x: number;
|
|
2622
|
+
y: number;
|
|
2623
|
+
}
|
|
2624
|
+
interface UnionUnionRaiderPreset3UnionBlockBlockPosition {
|
|
2625
|
+
x: number;
|
|
2626
|
+
y: number;
|
|
2627
|
+
}
|
|
2628
|
+
interface UnionUnionRaiderPreset3UnionBlock {
|
|
2629
|
+
block_type: string;
|
|
2630
|
+
block_class: string;
|
|
2631
|
+
block_level: string;
|
|
2632
|
+
block_control_point: UnionUnionRaiderPreset3UnionBlockBlockControlPoint;
|
|
2633
|
+
block_position: UnionUnionRaiderPreset3UnionBlockBlockPosition[];
|
|
2634
|
+
}
|
|
2635
|
+
interface UnionUnionRaiderPreset3 {
|
|
2636
|
+
union_raider_stat: string[];
|
|
2637
|
+
union_occupied_stat: string[];
|
|
2638
|
+
union_inner_stat: UnionUnionRaiderPreset3UnionInnerStat[];
|
|
2639
|
+
union_block: UnionUnionRaiderPreset3UnionBlock[];
|
|
2640
|
+
}
|
|
2641
|
+
interface UnionUnionRaiderPreset4UnionInnerStat {
|
|
2642
|
+
stat_field_id: string;
|
|
2643
|
+
stat_field_effect: string;
|
|
2644
|
+
}
|
|
2645
|
+
interface UnionUnionRaiderPreset4UnionBlockBlockControlPoint {
|
|
2646
|
+
x: number;
|
|
2647
|
+
y: number;
|
|
2648
|
+
}
|
|
2649
|
+
interface UnionUnionRaiderPreset4UnionBlockBlockPosition {
|
|
2650
|
+
x: number;
|
|
2651
|
+
y: number;
|
|
2652
|
+
}
|
|
2653
|
+
interface UnionUnionRaiderPreset4UnionBlock {
|
|
2654
|
+
block_type: string;
|
|
2655
|
+
block_class: string;
|
|
2656
|
+
block_level: string;
|
|
2657
|
+
block_control_point: UnionUnionRaiderPreset4UnionBlockBlockControlPoint;
|
|
2658
|
+
block_position: UnionUnionRaiderPreset4UnionBlockBlockPosition[];
|
|
2659
|
+
}
|
|
2660
|
+
interface UnionUnionRaiderPreset4 {
|
|
2661
|
+
union_raider_stat: string[];
|
|
2662
|
+
union_occupied_stat: string[];
|
|
2663
|
+
union_inner_stat: UnionUnionRaiderPreset4UnionInnerStat[];
|
|
2664
|
+
union_block: UnionUnionRaiderPreset4UnionBlock[];
|
|
2665
|
+
}
|
|
2666
|
+
interface UnionUnionRaiderPreset5UnionInnerStat {
|
|
2667
|
+
stat_field_id: string;
|
|
2668
|
+
stat_field_effect: string;
|
|
2669
|
+
}
|
|
2670
|
+
interface UnionUnionRaiderPreset5UnionBlockBlockControlPoint {
|
|
2671
|
+
x: number;
|
|
2672
|
+
y: number;
|
|
2673
|
+
}
|
|
2674
|
+
interface UnionUnionRaiderPreset5UnionBlockBlockPosition {
|
|
2675
|
+
x: number;
|
|
2676
|
+
y: number;
|
|
2677
|
+
}
|
|
2678
|
+
interface UnionUnionRaiderPreset5UnionBlock {
|
|
2679
|
+
block_type: string;
|
|
2680
|
+
block_class: string;
|
|
2681
|
+
block_level: string;
|
|
2682
|
+
block_control_point: UnionUnionRaiderPreset5UnionBlockBlockControlPoint;
|
|
2683
|
+
block_position: UnionUnionRaiderPreset5UnionBlockBlockPosition[];
|
|
2684
|
+
}
|
|
2685
|
+
interface UnionUnionRaiderPreset5 {
|
|
2686
|
+
union_raider_stat: string[];
|
|
2687
|
+
union_occupied_stat: string[];
|
|
2688
|
+
union_inner_stat: UnionUnionRaiderPreset5UnionInnerStat[];
|
|
2689
|
+
union_block: UnionUnionRaiderPreset5UnionBlock[];
|
|
2690
|
+
}
|
|
2691
|
+
interface UnionUnionRaiderResponse {
|
|
2692
|
+
date: string;
|
|
2693
|
+
union_raider_stat: string[];
|
|
2694
|
+
union_occupied_stat: string[];
|
|
2695
|
+
union_inner_stat: UnionUnionInnerStat[];
|
|
2696
|
+
union_block: UnionUnionBlock[];
|
|
2697
|
+
use_preset_no: number;
|
|
2698
|
+
union_raider_preset_1: UnionUnionRaiderPreset1;
|
|
2699
|
+
union_raider_preset_2: UnionUnionRaiderPreset2;
|
|
2700
|
+
union_raider_preset_3: UnionUnionRaiderPreset3;
|
|
2701
|
+
union_raider_preset_4: UnionUnionRaiderPreset4;
|
|
2702
|
+
union_raider_preset_5: UnionUnionRaiderPreset5;
|
|
2703
|
+
}
|
|
2704
|
+
interface GetUnionUnionRaiderParams {
|
|
2705
|
+
ocid: string;
|
|
2706
|
+
date?: DateInput;
|
|
2707
|
+
}
|
|
2708
|
+
interface UnionUnionArtifactEffect {
|
|
2709
|
+
name: string;
|
|
2710
|
+
level: number;
|
|
2711
|
+
}
|
|
2712
|
+
interface UnionUnionArtifactCrystal {
|
|
2713
|
+
name: string;
|
|
2714
|
+
validity_flag: string;
|
|
2715
|
+
date_expire: string;
|
|
2716
|
+
level: number;
|
|
2717
|
+
crystal_option_name_1: string;
|
|
2718
|
+
crystal_option_name_2: string;
|
|
2719
|
+
crystal_option_name_3: string;
|
|
2720
|
+
}
|
|
2721
|
+
interface UnionUnionArtifactResponse {
|
|
2722
|
+
date: string;
|
|
2723
|
+
union_artifact_effect: UnionUnionArtifactEffect[];
|
|
2724
|
+
union_artifact_crystal: UnionUnionArtifactCrystal[];
|
|
2725
|
+
union_artifact_remain_ap: number;
|
|
2726
|
+
}
|
|
2727
|
+
interface GetUnionUnionArtifactParams {
|
|
2728
|
+
ocid: string;
|
|
2729
|
+
date?: DateInput;
|
|
2730
|
+
}
|
|
2731
|
+
interface UnionUnionChampionChampionBadgeInfo {
|
|
2732
|
+
stat: string;
|
|
2733
|
+
}
|
|
2734
|
+
interface UnionUnionChampion {
|
|
2735
|
+
champion_name: string;
|
|
2736
|
+
champion_slot: number;
|
|
2737
|
+
champion_grade: string;
|
|
2738
|
+
champion_class: string;
|
|
2739
|
+
champion_badge_info: UnionUnionChampionChampionBadgeInfo[];
|
|
2740
|
+
}
|
|
2741
|
+
interface UnionChampionBadgeTotalInfo {
|
|
2742
|
+
stat: string;
|
|
2743
|
+
}
|
|
2744
|
+
interface UnionUnionChampionResponse {
|
|
2745
|
+
date: string;
|
|
2746
|
+
union_champion: UnionUnionChampion[];
|
|
2747
|
+
champion_badge_total_info: UnionChampionBadgeTotalInfo[];
|
|
2748
|
+
}
|
|
2749
|
+
interface GetUnionUnionChampionParams {
|
|
2750
|
+
ocid: string;
|
|
2751
|
+
date?: DateInput;
|
|
2752
|
+
}
|
|
2753
|
+
|
|
2754
|
+
/**
|
|
2755
|
+
* 유니온 정보 조회 API
|
|
2756
|
+
* Auto-generated from JSON schema - DO NOT EDIT
|
|
2757
|
+
* Generated at: 2025-12-24T23:59:23.305Z
|
|
2758
|
+
*/
|
|
2759
|
+
|
|
2760
|
+
/**
|
|
2761
|
+
* 유니온 정보 조회 API Class
|
|
2762
|
+
*/
|
|
2763
|
+
declare class UnionApi extends BaseApi {
|
|
2764
|
+
/**
|
|
2765
|
+
* 유니온 정보 조회
|
|
2766
|
+
*/
|
|
2767
|
+
getUnion(params: GetUnionUnionParams, options?: ApiOptions): Promise<UnionUnionResponse>;
|
|
2768
|
+
/**
|
|
2769
|
+
* 유니온 공격대 정보 조회
|
|
2770
|
+
*/
|
|
2771
|
+
getUnionraider(params: GetUnionUnionRaiderParams, options?: ApiOptions): Promise<UnionUnionRaiderResponse>;
|
|
2772
|
+
/**
|
|
2773
|
+
* 유니온 아티팩트 정보 조회
|
|
2774
|
+
*/
|
|
2775
|
+
getUnionartifact(params: GetUnionUnionArtifactParams, options?: ApiOptions): Promise<UnionUnionArtifactResponse>;
|
|
2776
|
+
/**
|
|
2777
|
+
* 유니온 챔피언 정보 조회
|
|
2778
|
+
*/
|
|
2779
|
+
getUnionchampion(params: GetUnionUnionChampionParams, options?: ApiOptions): Promise<UnionUnionChampionResponse>;
|
|
2780
|
+
}
|
|
2781
|
+
|
|
2782
|
+
/**
|
|
2783
|
+
* MapleStory Open API Client
|
|
2784
|
+
* Auto-generated - DO NOT EDIT
|
|
2785
|
+
* Generated at: 2025-12-24T23:59:23.306Z
|
|
2786
|
+
*/
|
|
2787
|
+
|
|
2788
|
+
/**
|
|
2789
|
+
* Client configuration options
|
|
2790
|
+
*/
|
|
2791
|
+
interface MapleStoryClientOptions {
|
|
2792
|
+
/**
|
|
2793
|
+
* Nexon Open API key
|
|
2794
|
+
* Obtain from https://openapi.nexon.com
|
|
2795
|
+
*/
|
|
2796
|
+
apiKey: string;
|
|
2797
|
+
}
|
|
2798
|
+
/**
|
|
2799
|
+
* MapleStory Open API Client
|
|
2800
|
+
*/
|
|
2801
|
+
declare class MapleStoryClient {
|
|
2802
|
+
readonly character: CharacterApi;
|
|
2803
|
+
readonly guild: GuildApi;
|
|
2804
|
+
readonly history: HistoryApi;
|
|
2805
|
+
readonly notice: NoticeApi;
|
|
2806
|
+
readonly ranking: RankingApi;
|
|
2807
|
+
readonly union: UnionApi;
|
|
2808
|
+
constructor(options: MapleStoryClientOptions);
|
|
2809
|
+
}
|
|
2810
|
+
|
|
2811
|
+
/**
|
|
2812
|
+
* MapleApiError - Standardized error class for all API errors
|
|
2813
|
+
*
|
|
2814
|
+
* Wraps all API errors with consistent structure including:
|
|
2815
|
+
* - Error code from Nexon API
|
|
2816
|
+
* - HTTP status code
|
|
2817
|
+
* - Original error for debugging
|
|
2818
|
+
*/
|
|
2819
|
+
declare class MapleApiError extends Error {
|
|
2820
|
+
/** Error code from Nexon API (e.g., "OPENAPI00001") */
|
|
2821
|
+
readonly code: string;
|
|
2822
|
+
/** HTTP status code (400, 403, 429, 500, etc.) */
|
|
2823
|
+
readonly httpStatus: number;
|
|
2824
|
+
/** Original error for debugging purposes */
|
|
2825
|
+
readonly originalError?: Error;
|
|
2826
|
+
/** Retry-After header value in seconds (for rate limit errors) */
|
|
2827
|
+
readonly retryAfter?: number;
|
|
2828
|
+
constructor(options: {
|
|
2829
|
+
name: string;
|
|
2830
|
+
message: string;
|
|
2831
|
+
code: string;
|
|
2832
|
+
httpStatus: number;
|
|
2833
|
+
originalError?: Error;
|
|
2834
|
+
retryAfter?: number;
|
|
2835
|
+
});
|
|
2836
|
+
/**
|
|
2837
|
+
* Check if this is an authentication error (403)
|
|
2838
|
+
*/
|
|
2839
|
+
isAuthError(): boolean;
|
|
2840
|
+
/**
|
|
2841
|
+
* Check if this is a rate limit error (429)
|
|
2842
|
+
*/
|
|
2843
|
+
isRateLimitError(): boolean;
|
|
2844
|
+
/**
|
|
2845
|
+
* Check if this is a bad request error (400)
|
|
2846
|
+
*/
|
|
2847
|
+
isBadRequestError(): boolean;
|
|
2848
|
+
/**
|
|
2849
|
+
* Check if this is a server error (5xx)
|
|
2850
|
+
*/
|
|
2851
|
+
isServerError(): boolean;
|
|
2852
|
+
/**
|
|
2853
|
+
* Creates a string representation of the error
|
|
2854
|
+
*/
|
|
2855
|
+
toString(): string;
|
|
2856
|
+
}
|
|
2857
|
+
/**
|
|
2858
|
+
* MapleNetworkError - Error for network-related issues
|
|
2859
|
+
*
|
|
2860
|
+
* Distinguishes network errors from API errors for proper handling
|
|
2861
|
+
*/
|
|
2862
|
+
declare class MapleNetworkError extends Error {
|
|
2863
|
+
/** Original error for debugging */
|
|
2864
|
+
readonly originalError?: Error;
|
|
2865
|
+
/** Whether this is a timeout error */
|
|
2866
|
+
readonly isTimeout: boolean;
|
|
2867
|
+
constructor(options: {
|
|
2868
|
+
message: string;
|
|
2869
|
+
originalError?: Error;
|
|
2870
|
+
isTimeout?: boolean;
|
|
2871
|
+
});
|
|
2872
|
+
}
|
|
2873
|
+
|
|
2874
|
+
export { type ApiErrorResponse, type ApiOptions, BaseApi, type CharacterAbilityInfo, type CharacterAbilityPreset1, type CharacterAbilityPreset1AbilityInfo, type CharacterAbilityPreset2, type CharacterAbilityPreset2AbilityInfo, type CharacterAbilityPreset3, type CharacterAbilityPreset3AbilityInfo, type CharacterAbilityResponse, type CharacterAccountList, type CharacterAccountListAchievementAchieve, type CharacterAccountListCharacterList, type CharacterAchievementResponse, type CharacterAdditionalCashItemEquipmentBase, type CharacterAdditionalCashItemEquipmentBaseCashItemColoringPrism, type CharacterAdditionalCashItemEquipmentBaseCashItemEffectPrism, type CharacterAdditionalCashItemEquipmentBaseCashItemOption, type CharacterAdditionalCashItemEquipmentPreset1, type CharacterAdditionalCashItemEquipmentPreset1CashItemColoringPrism, type CharacterAdditionalCashItemEquipmentPreset1CashItemEffectPrism, type CharacterAdditionalCashItemEquipmentPreset1CashItemOption, type CharacterAdditionalCashItemEquipmentPreset2, type CharacterAdditionalCashItemEquipmentPreset2CashItemColoringPrism, type CharacterAdditionalCashItemEquipmentPreset2CashItemEffectPrism, type CharacterAdditionalCashItemEquipmentPreset2CashItemOption, type CharacterAdditionalCashItemEquipmentPreset3, type CharacterAdditionalCashItemEquipmentPreset3CashItemColoringPrism, type CharacterAdditionalCashItemEquipmentPreset3CashItemEffectPrism, type CharacterAdditionalCashItemEquipmentPreset3CashItemOption, type CharacterAdditionalCharacterFace, type CharacterAdditionalCharacterHair, type CharacterAdditionalCharacterSkin, type CharacterAndroidCashItemEquipment, type CharacterAndroidCashItemEquipmentCashItemColoringPrism, type CharacterAndroidCashItemEquipmentCashItemOption, type CharacterAndroidEquipmentResponse, type CharacterAndroidFace, type CharacterAndroidHair, type CharacterAndroidPreset1, type CharacterAndroidPreset1AndroidFace, type CharacterAndroidPreset1AndroidHair, type CharacterAndroidPreset1AndroidSkin, type CharacterAndroidPreset2, type CharacterAndroidPreset2AndroidFace, type CharacterAndroidPreset2AndroidHair, type CharacterAndroidPreset2AndroidSkin, type CharacterAndroidPreset3, type CharacterAndroidPreset3AndroidFace, type CharacterAndroidPreset3AndroidHair, type CharacterAndroidPreset3AndroidSkin, type CharacterAndroidSkin, CharacterApi, type CharacterBasicResponse, type CharacterBeautyEquipmentResponse, type CharacterCashItemEquipmentBase, type CharacterCashItemEquipmentBaseCashItemColoringPrism, type CharacterCashItemEquipmentBaseCashItemEffectPrism, type CharacterCashItemEquipmentBaseCashItemOption, type CharacterCashItemEquipmentPreset1, type CharacterCashItemEquipmentPreset1CashItemColoringPrism, type CharacterCashItemEquipmentPreset1CashItemEffectPrism, type CharacterCashItemEquipmentPreset1CashItemOption, type CharacterCashItemEquipmentPreset2, type CharacterCashItemEquipmentPreset2CashItemColoringPrism, type CharacterCashItemEquipmentPreset2CashItemEffectPrism, type CharacterCashItemEquipmentPreset2CashItemOption, type CharacterCashItemEquipmentPreset3, type CharacterCashItemEquipmentPreset3CashItemColoringPrism, type CharacterCashItemEquipmentPreset3CashItemEffectPrism, type CharacterCashItemEquipmentPreset3CashItemOption, type CharacterCashitemEquipmentResponse, type CharacterCharacterFace, type CharacterCharacterHair, type CharacterCharacterHexaCoreEquipment, type CharacterCharacterHexaCoreEquipmentLinkedSkill, type CharacterCharacterHexaStatCore, type CharacterCharacterHexaStatCore2, type CharacterCharacterHexaStatCore3, type CharacterCharacterLinkSkill, type CharacterCharacterLinkSkillPreset1, type CharacterCharacterLinkSkillPreset2, type CharacterCharacterLinkSkillPreset3, type CharacterCharacterOwnedLinkSkill, type CharacterCharacterOwnedLinkSkillPreset1, type CharacterCharacterOwnedLinkSkillPreset2, type CharacterCharacterOwnedLinkSkillPreset3, type CharacterCharacterSkill, type CharacterCharacterSkin, type CharacterCharacterVCoreEquipment, type CharacterDojangResponse, type CharacterDragonEquipment, type CharacterDragonEquipmentItemAddOption, type CharacterDragonEquipmentItemBaseOption, type CharacterDragonEquipmentItemEtcOption, type CharacterDragonEquipmentItemExceptionalOption, type CharacterDragonEquipmentItemStarforceOption, type CharacterDragonEquipmentItemTotalOption, type CharacterFinalStat, type CharacterHexamatrixResponse, type CharacterHexamatrixStatResponse, type CharacterHyperStatPreset1, type CharacterHyperStatPreset2, type CharacterHyperStatPreset3, type CharacterHyperStatResponse, type CharacterIdResponse, type CharacterItemEquipment, type CharacterItemEquipmentItemAddOption, type CharacterItemEquipmentItemBaseOption, type CharacterItemEquipmentItemEtcOption, type CharacterItemEquipmentItemExceptionalOption, type CharacterItemEquipmentItemStarforceOption, type CharacterItemEquipmentItemTotalOption, type CharacterItemEquipmentPreset1, type CharacterItemEquipmentPreset1ItemAddOption, type CharacterItemEquipmentPreset1ItemBaseOption, type CharacterItemEquipmentPreset1ItemEtcOption, type CharacterItemEquipmentPreset1ItemExceptionalOption, type CharacterItemEquipmentPreset1ItemStarforceOption, type CharacterItemEquipmentPreset1ItemTotalOption, type CharacterItemEquipmentPreset2, type CharacterItemEquipmentPreset2ItemAddOption, type CharacterItemEquipmentPreset2ItemBaseOption, type CharacterItemEquipmentPreset2ItemEtcOption, type CharacterItemEquipmentPreset2ItemExceptionalOption, type CharacterItemEquipmentPreset2ItemStarforceOption, type CharacterItemEquipmentPreset2ItemTotalOption, type CharacterItemEquipmentPreset3, type CharacterItemEquipmentPreset3ItemAddOption, type CharacterItemEquipmentPreset3ItemBaseOption, type CharacterItemEquipmentPreset3ItemEtcOption, type CharacterItemEquipmentPreset3ItemExceptionalOption, type CharacterItemEquipmentPreset3ItemStarforceOption, type CharacterItemEquipmentPreset3ItemTotalOption, type CharacterItemEquipmentResponse, type CharacterLinkSkillResponse, type CharacterListResponse, type CharacterMechanicEquipment, type CharacterMechanicEquipmentItemAddOption, type CharacterMechanicEquipmentItemBaseOption, type CharacterMechanicEquipmentItemEtcOption, type CharacterMechanicEquipmentItemExceptionalOption, type CharacterMechanicEquipmentItemStarforceOption, type CharacterMechanicEquipmentItemTotalOption, type CharacterMedalShape, type CharacterOtherStat, type CharacterOtherStatResponse, type CharacterOtherStatStatInfo, type CharacterPet1AutoSkill, type CharacterPet1Equipment, type CharacterPet1EquipmentItemOption, type CharacterPet2AutoSkill, type CharacterPet2Equipment, type CharacterPet2EquipmentItemOption, type CharacterPet3AutoSkill, type CharacterPet3Equipment, type CharacterPet3EquipmentItemOption, type CharacterPetEquipmentResponse, type CharacterPopularityResponse, type CharacterPresetHexaStatCore, type CharacterPresetHexaStatCore2, type CharacterPresetHexaStatCore3, type CharacterPropensityResponse, type CharacterRingExchangeSkillEquipmentResponse, type CharacterSetEffect, type CharacterSetEffectResponse, type CharacterSetEffectSetEffectInfo, type CharacterSetEffectSetOptionFull, type CharacterSkillResponse, type CharacterStatResponse, type CharacterSymbol, type CharacterSymbolEquipmentResponse, type CharacterTitle, type CharacterVmatrixResponse, type DateInput, type GetCharacterAbilityParams, type GetCharacterAndroidEquipmentParams, type GetCharacterBasicParams, type GetCharacterBeautyEquipmentParams, type GetCharacterCashitemEquipmentParams, type GetCharacterDojangParams, type GetCharacterHexamatrixParams, type GetCharacterHexamatrixStatParams, type GetCharacterHyperStatParams, type GetCharacterIdParams, type GetCharacterItemEquipmentParams, type GetCharacterLinkSkillParams, type GetCharacterOtherStatParams, type GetCharacterPetEquipmentParams, type GetCharacterPopularityParams, type GetCharacterPropensityParams, type GetCharacterRingExchangeSkillEquipmentParams, type GetCharacterSetEffectParams, type GetCharacterSkillParams, type GetCharacterStatParams, type GetCharacterSymbolEquipmentParams, type GetCharacterVmatrixParams, type GetGuildBasicParams, type GetGuildIdParams, type GetHistoryCubeParams, type GetHistoryPotentialParams, type GetHistoryStarforceParams, type GetNoticeCashshopDetailParams, type GetNoticeDetailParams, type GetNoticeEventDetailParams, type GetNoticeUpdateDetailParams, type GetRankingAchievementParams, type GetRankingDojangParams, type GetRankingGuildParams, type GetRankingOverallParams, type GetRankingTheseedParams, type GetRankingUnionParams, type GetUnionUnionArtifactParams, type GetUnionUnionChampionParams, type GetUnionUnionParams, type GetUnionUnionRaiderParams, GuildApi, type GuildBasicResponse, type GuildGuildNoblesseSkill, type GuildGuildSkill, type GuildIdResponse, HistoryApi, type HistoryCubeHistory, type HistoryCubeHistoryAfterAdditionalPotentialOption, type HistoryCubeHistoryAfterPotentialOption, type HistoryCubeHistoryBeforeAdditionalPotentialOption, type HistoryCubeHistoryBeforePotentialOption, type HistoryCubeResponse, type HistoryLegacyOuidResponse, type HistoryOuidResponse, type HistoryPotentialHistory, type HistoryPotentialHistoryAfterAdditionalPotentialOption, type HistoryPotentialHistoryAfterPotentialOption, type HistoryPotentialHistoryBeforeAdditionalPotentialOption, type HistoryPotentialHistoryBeforePotentialOption, type HistoryPotentialResponse, type HistoryStarforceHistory, type HistoryStarforceHistoryStarforceEventList, type HistoryStarforceResponse, MapleApiError, MapleNetworkError, MapleStoryClient, type MapleStoryClientOptions, NoticeApi, type NoticeCashshopDetailResponse, type NoticeCashshopNotice, type NoticeDetailResponse, type NoticeEventDetailResponse, type NoticeEventNotice, type NoticeNotice, type NoticeNoticeCashshopResponse, type NoticeNoticeEventResponse, type NoticeNoticeResponse, type NoticeNoticeUpdateResponse, type NoticeUpdateDetailResponse, type NoticeUpdateNotice, type RankingAchievementResponse, RankingApi, type RankingDojangResponse, type RankingGuildResponse, type RankingOverallResponse, type RankingRanking, type RankingTheseedResponse, type RankingUnionResponse, UnionApi, type UnionChampionBadgeTotalInfo, type UnionUnionArtifactCrystal, type UnionUnionArtifactEffect, type UnionUnionArtifactResponse, type UnionUnionBlock, type UnionUnionBlockBlockControlPoint, type UnionUnionBlockBlockPosition, type UnionUnionChampion, type UnionUnionChampionChampionBadgeInfo, type UnionUnionChampionResponse, type UnionUnionInnerStat, type UnionUnionRaiderPreset1, type UnionUnionRaiderPreset1UnionBlock, type UnionUnionRaiderPreset1UnionBlockBlockControlPoint, type UnionUnionRaiderPreset1UnionBlockBlockPosition, type UnionUnionRaiderPreset1UnionInnerStat, type UnionUnionRaiderPreset2, type UnionUnionRaiderPreset2UnionBlock, type UnionUnionRaiderPreset2UnionBlockBlockControlPoint, type UnionUnionRaiderPreset2UnionBlockBlockPosition, type UnionUnionRaiderPreset2UnionInnerStat, type UnionUnionRaiderPreset3, type UnionUnionRaiderPreset3UnionBlock, type UnionUnionRaiderPreset3UnionBlockBlockControlPoint, type UnionUnionRaiderPreset3UnionBlockBlockPosition, type UnionUnionRaiderPreset3UnionInnerStat, type UnionUnionRaiderPreset4, type UnionUnionRaiderPreset4UnionBlock, type UnionUnionRaiderPreset4UnionBlockBlockControlPoint, type UnionUnionRaiderPreset4UnionBlockBlockPosition, type UnionUnionRaiderPreset4UnionInnerStat, type UnionUnionRaiderPreset5, type UnionUnionRaiderPreset5UnionBlock, type UnionUnionRaiderPreset5UnionBlockBlockControlPoint, type UnionUnionRaiderPreset5UnionBlockBlockPosition, type UnionUnionRaiderPreset5UnionInnerStat, type UnionUnionRaiderResponse, type UnionUnionResponse, formatDate, getYesterdayDate };
|