maplestory-openapi 2.3.2 → 2.4.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 +1 -1
- package/dist/index.js +1068 -469
- package/dist/index.min.js +1 -1
- package/dist/index.mjs +1061 -470
- package/package.json +1 -1
- package/types/index.d.ts +8 -0
- package/types/maplestory/api/dto/character/characterAbilityDto.d.ts +17 -0
- package/types/maplestory/api/dto/character/characterAbilityInfoDto.d.ts +9 -0
- package/types/maplestory/api/dto/character/characterAbilityPresetDto.d.ts +17 -0
- package/types/maplestory/api/dto/character/characterAndroidEquipmentDto.d.ts +33 -0
- package/types/maplestory/api/dto/character/characterAndroidEquipmentPresetDto.d.ts +58 -0
- package/types/maplestory/api/dto/character/characterCashItemEquipmentDto.d.ts +14 -6
- package/types/maplestory/api/dto/character/characterCashItemEquipmentPresetDto.d.ts +2 -2
- package/types/maplestory/api/dto/character/characterItemEquipmentDto.d.ts +17 -1
- package/types/maplestory/api/dto/character/characterLinkSkillDto.d.ts +25 -1
- package/types/maplestory/api/dto/character/characterPetEquipmentDto.d.ts +51 -21
- package/types/maplestory/api/dto/character/characterPetEquipmentItemDto.d.ts +9 -1
- package/types/maplestory/api/dto/history/potentialHistoryDto.d.ts +82 -0
- package/types/maplestory/api/dto/history/potentialHistoryResponseDto.d.ts +21 -0
- package/types/maplestory/api/dto/history/potentialResultOptionDto.d.ts +18 -0
- package/types/maplestory/api/dto/union/unionArtifactCrystalDto.d.ts +36 -0
- package/types/maplestory/api/dto/union/unionArtifactDto.d.ts +26 -0
- package/types/maplestory/api/dto/union/unionArtifactEffectDto.d.ts +16 -0
- package/types/maplestory/api/mapleStoryApi.d.ts +49 -8
- package/types/maplestory/api/response/character/characterAbilityDtoBody.d.ts +9 -1
- package/types/maplestory/api/response/character/characterAndroidEquipmentDtoBody.d.ts +23 -1
- package/types/maplestory/api/response/character/characterCashItemEquipmentDtoBody.d.ts +3 -1
- package/types/maplestory/api/response/character/characterItemEquipmentDtoBody.d.ts +4 -0
- package/types/maplestory/api/response/character/characterLinkSkillDtoBody.d.ts +7 -1
- package/types/maplestory/api/response/character/characterPetEquipmentDtoBody.d.ts +30 -22
- package/types/maplestory/api/response/history/potentialHistoryResponseDtoBody.d.ts +29 -0
- package/types/maplestory/api/response/union/unionArtifactDtoBody.d.ts +20 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { UnionArtifactCrystalDto } from './unionArtifactCrystalDto';
|
|
2
|
+
import { UnionArtifactEffectDto } from './unionArtifactEffectDto';
|
|
3
|
+
import { UnionArtifactDtoBody } from '../../response/union/unionArtifactDtoBody';
|
|
4
|
+
/**
|
|
5
|
+
* 유니온 아티팩트 정보
|
|
6
|
+
*/
|
|
7
|
+
declare class UnionArtifactDto {
|
|
8
|
+
/**
|
|
9
|
+
* 조회 기준일
|
|
10
|
+
*/
|
|
11
|
+
date: Date;
|
|
12
|
+
/**
|
|
13
|
+
* 아티팩트 효과 정보
|
|
14
|
+
*/
|
|
15
|
+
unionArtifactEffect: UnionArtifactEffectDto[];
|
|
16
|
+
/**
|
|
17
|
+
* 아티팩트 크리스탈 정보
|
|
18
|
+
*/
|
|
19
|
+
unionArtifactCrystal: UnionArtifactCrystalDto[];
|
|
20
|
+
/**
|
|
21
|
+
* 잔여 아티팩트 AP
|
|
22
|
+
*/
|
|
23
|
+
unionArtifactRemainAp: number | null;
|
|
24
|
+
constructor(obj: UnionArtifactDtoBody);
|
|
25
|
+
}
|
|
26
|
+
export { UnionArtifactDto };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { UnionArtifactEffectDtoBody } from '../../response/union/unionArtifactDtoBody';
|
|
2
|
+
/**
|
|
3
|
+
* 유니온 아티팩트 효과 정보
|
|
4
|
+
*/
|
|
5
|
+
declare class UnionArtifactEffectDto {
|
|
6
|
+
/**
|
|
7
|
+
* 아티팩트 효과 명
|
|
8
|
+
*/
|
|
9
|
+
name: string;
|
|
10
|
+
/**
|
|
11
|
+
* 아티팩트 효과 레벨
|
|
12
|
+
*/
|
|
13
|
+
level: number;
|
|
14
|
+
constructor(obj: UnionArtifactEffectDtoBody);
|
|
15
|
+
}
|
|
16
|
+
export { UnionArtifactEffectDto };
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { AchievementRankingResponseDto } from './dto/ranking/achievementRankingResponseDto';
|
|
2
1
|
import { CharacterAbilityDto } from './dto/character/characterAbilityDto';
|
|
3
2
|
import { CharacterAndroidEquipmentDto } from './dto/character/characterAndroidEquipmentDto';
|
|
4
3
|
import { CharacterBasicDto } from './dto/character/characterBasicDto';
|
|
@@ -19,18 +18,21 @@ import { CharacterSkillDto } from './dto/character/characterSkillDto';
|
|
|
19
18
|
import { CharacterStatDto } from './dto/character/characterStatDto';
|
|
20
19
|
import { CharacterSymbolEquipmentDto } from './dto/character/characterSymbolEquipmentDto';
|
|
21
20
|
import { CharacterVMatrixDto } from './dto/character/characterVMatrixDto';
|
|
22
|
-
import { CubeHistoryResponseDto } from './dto/history/cubeHistoryResponseDto';
|
|
23
|
-
import { DojangRankingResponseDto } from './dto/ranking/dojangRankingResponseDto';
|
|
24
21
|
import { GuildBasicDto } from './dto/guild/guildBasicDto';
|
|
25
22
|
import { GuildDto } from './dto/guild/guildDto';
|
|
26
|
-
import {
|
|
23
|
+
import { CubeHistoryResponseDto } from './dto/history/cubeHistoryResponseDto';
|
|
24
|
+
import { StarforceHistoryResponseDto } from './dto/history/starforceHistoryResponseDto';
|
|
27
25
|
import { InspectionInfoDto } from './dto/inspectionInfoDto';
|
|
26
|
+
import { AchievementRankingResponseDto } from './dto/ranking/achievementRankingResponseDto';
|
|
27
|
+
import { DojangRankingResponseDto } from './dto/ranking/dojangRankingResponseDto';
|
|
28
|
+
import { GuildRankingResponseDto } from './dto/ranking/guildRankingResponseDto';
|
|
28
29
|
import { OverallRankingResponseDto } from './dto/ranking/overallRankingResponseDto';
|
|
29
30
|
import { TheSeedRankingResponseDto } from './dto/ranking/theSeedRankingResponseDto';
|
|
31
|
+
import { UnionRankingResponseDto } from './dto/ranking/unionRankingResponseDto';
|
|
32
|
+
import { UnionArtifactDto } from './dto/union/unionArtifactDto';
|
|
30
33
|
import { UnionDto } from './dto/union/unionDto';
|
|
31
34
|
import { UnionRaiderDto } from './dto/union/unionRaiderDto';
|
|
32
|
-
import {
|
|
33
|
-
import { StarforceHistoryResponseDto } from './dto/history/starforceHistoryResponseDto';
|
|
35
|
+
import { PotentialHistoryResponseDto } from './dto/history/potentialHistoryResponseDto';
|
|
34
36
|
/**
|
|
35
37
|
* MapleStory OpenAPI client.<br>
|
|
36
38
|
* This is an implementation of <a href="https://openapi.nexon.com/game/maplestory">MapleStory API</a>
|
|
@@ -261,7 +263,7 @@ declare class MapleStoryApi {
|
|
|
261
263
|
* @param ocid 캐릭터 식별자
|
|
262
264
|
* @param dateOptions 조회 기준일 (KST)
|
|
263
265
|
*/
|
|
264
|
-
|
|
266
|
+
getUnion(ocid: string, dateOptions?: DateOptions): Promise<UnionDto>;
|
|
265
267
|
/**
|
|
266
268
|
* 유니온 공격대 정보를 조회합니다.
|
|
267
269
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
@@ -271,7 +273,17 @@ declare class MapleStoryApi {
|
|
|
271
273
|
* @param ocid 캐릭터 식별자
|
|
272
274
|
* @param dateOptions 조회 기준일 (KST)
|
|
273
275
|
*/
|
|
274
|
-
|
|
276
|
+
getUnionRaider(ocid: string, dateOptions?: DateOptions): Promise<UnionRaiderDto>;
|
|
277
|
+
/**
|
|
278
|
+
* 유니온 아티팩트 정보를 조회합니다.
|
|
279
|
+
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
280
|
+
* - 유니온 정보 조회 API는 일자별 데이터로 매일 오전 1시부터 전일 데이터 조회가 가능합니다. (예를 들어, 12월 22일 데이터를 조회하면 22일 00시부터 23일의 00시 사이의 데이터가 조회됩니다.)
|
|
281
|
+
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
282
|
+
*
|
|
283
|
+
* @param ocid 캐릭터 식별자
|
|
284
|
+
* @param dateOptions 조회 기준일 (KST)
|
|
285
|
+
*/
|
|
286
|
+
getUnionArtifact(ocid: string, dateOptions?: DateOptions): Promise<UnionArtifactDto>;
|
|
275
287
|
/**
|
|
276
288
|
* 길드 식별자(oguild_id) 정보를 조회합니다.
|
|
277
289
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
@@ -347,6 +359,35 @@ declare class MapleStoryApi {
|
|
|
347
359
|
* @param cursor 페이징 처리를 위한 cursor
|
|
348
360
|
*/
|
|
349
361
|
getCubeHistory(count: number, cursor: string): Promise<CubeHistoryResponseDto>;
|
|
362
|
+
/**
|
|
363
|
+
* 잠재능력 재설정 이용 결과를 조회합니다.
|
|
364
|
+
* - 데이터는 매일 오전 4시, 전일 데이터가 갱신됩니다.
|
|
365
|
+
* - e.g. 오늘 오후 3시 5분 잠재능력 재설정 정보 조회 시, 어제의 잠재능력 재설정 정보 데이터를 조회할 수 있습니다.
|
|
366
|
+
* - 2024년 1월 25일 데이터부터 조회할 수 있습니다.
|
|
367
|
+
*
|
|
368
|
+
* @param count 한번에 가져오려는 결과의 개수(최소 10, 최대 1000)
|
|
369
|
+
*/
|
|
370
|
+
getPotentialHistory(count: number): Promise<PotentialHistoryResponseDto>;
|
|
371
|
+
/**
|
|
372
|
+
* 지목한 날짜의 잠재능력 재설정 이용 결과를 조회합니다.
|
|
373
|
+
* - 데이터는 매일 오전 4시, 전일 데이터가 갱신됩니다.
|
|
374
|
+
* - e.g. 오늘 오후 3시 5분 잠재능력 재설정 정보 조회 시, 어제의 잠재능력 재설정 정보 데이터를 조회할 수 있습니다.
|
|
375
|
+
* - 2024년 1월 25일 데이터부터 조회할 수 있습니다.
|
|
376
|
+
*
|
|
377
|
+
* @param count 한번에 가져오려는 결과의 개수(최소 10, 최대 1000)
|
|
378
|
+
* @param dateOptions 조회 기준일 (KST)
|
|
379
|
+
*/
|
|
380
|
+
getPotentialHistory(count: number, dateOptions: DateOptions): Promise<PotentialHistoryResponseDto>;
|
|
381
|
+
/**
|
|
382
|
+
* 잠재능력 재설정 이용 결과를 조회합니다.
|
|
383
|
+
* - 데이터는 매일 오전 4시, 전일 데이터가 갱신됩니다.
|
|
384
|
+
* - e.g. 오늘 오후 3시 5분 잠재능력 재설정 정보 조회 시, 어제의 잠재능력 재설정 정보 데이터를 조회할 수 있습니다.
|
|
385
|
+
* - 2024년 1월 25일 데이터부터 조회할 수 있습니다.
|
|
386
|
+
*
|
|
387
|
+
* @param count 한번에 가져오려는 결과의 개수(최소 10, 최대 1000)
|
|
388
|
+
* @param cursor 페이징 처리를 위한 cursor
|
|
389
|
+
*/
|
|
390
|
+
getPotentialHistory(count: number, cursor: string): Promise<PotentialHistoryResponseDto>;
|
|
350
391
|
/**
|
|
351
392
|
* 종합 랭킹 정보를 조회합니다.
|
|
352
393
|
* - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
|
|
@@ -3,10 +3,18 @@ type CharacterAbilityDtoBody = {
|
|
|
3
3
|
ability_grade: string;
|
|
4
4
|
ability_info: CharacterAbilityInfoDtoBody[];
|
|
5
5
|
remain_fame: number;
|
|
6
|
+
preset_no: number;
|
|
7
|
+
ability_preset_1: CharacterAbilityPresetDtoBody;
|
|
8
|
+
ability_preset_2: CharacterAbilityPresetDtoBody;
|
|
9
|
+
ability_preset_3: CharacterAbilityPresetDtoBody;
|
|
6
10
|
};
|
|
7
11
|
type CharacterAbilityInfoDtoBody = {
|
|
8
12
|
ability_no: string;
|
|
9
13
|
ability_grade: string;
|
|
10
14
|
ability_value: string;
|
|
11
15
|
};
|
|
12
|
-
|
|
16
|
+
type CharacterAbilityPresetDtoBody = {
|
|
17
|
+
ability_preset_grade: string;
|
|
18
|
+
ability_info: CharacterAbilityInfoDtoBody[];
|
|
19
|
+
};
|
|
20
|
+
export { CharacterAbilityDtoBody, CharacterAbilityInfoDtoBody, CharacterAbilityPresetDtoBody };
|
|
@@ -9,6 +9,14 @@ type CharacterAndroidEquipmentDtoBody = {
|
|
|
9
9
|
android_skin_name: string | null;
|
|
10
10
|
android_cash_item_equipment: CharacterAndroidCashItemEquipmentDtoBody[];
|
|
11
11
|
android_ear_sensor_clip_flag: string | null;
|
|
12
|
+
android_gender: string | null;
|
|
13
|
+
android_grade: string | null;
|
|
14
|
+
android_non_humanoid_flag: string | null;
|
|
15
|
+
android_shop_usable_flag: string | null;
|
|
16
|
+
preset_no: number | null;
|
|
17
|
+
android_preset_1: CharacterAndroidEquipmentPresetDtoBody | null;
|
|
18
|
+
android_preset_2: CharacterAndroidEquipmentPresetDtoBody | null;
|
|
19
|
+
android_preset_3: CharacterAndroidEquipmentPresetDtoBody | null;
|
|
12
20
|
};
|
|
13
21
|
type CharacterAndroidEquipmentHairDtoBody = {
|
|
14
22
|
hair_name: string | null;
|
|
@@ -22,6 +30,20 @@ type CharacterAndroidEquipmentFaceDtoBody = {
|
|
|
22
30
|
mix_color: string | null;
|
|
23
31
|
mix_rate: string;
|
|
24
32
|
};
|
|
33
|
+
type CharacterAndroidEquipmentPresetDtoBody = {
|
|
34
|
+
android_name: string;
|
|
35
|
+
android_nickname: string;
|
|
36
|
+
android_icon: string;
|
|
37
|
+
android_description: string;
|
|
38
|
+
android_gender: string | null;
|
|
39
|
+
android_grade: string;
|
|
40
|
+
android_skin_name: string;
|
|
41
|
+
android_hair: CharacterAndroidEquipmentHairDtoBody;
|
|
42
|
+
android_face: CharacterAndroidEquipmentFaceDtoBody;
|
|
43
|
+
android_ear_sensor_clip_flag: string;
|
|
44
|
+
android_non_humanoid_flag: string;
|
|
45
|
+
android_shop_usable_flag: string;
|
|
46
|
+
};
|
|
25
47
|
type CharacterAndroidCashItemEquipmentDtoBody = {
|
|
26
48
|
cash_item_equipment_part: string;
|
|
27
49
|
cash_item_equipment_slot: string;
|
|
@@ -44,4 +66,4 @@ type CharacterAndroidCashItemEquipmentColoringPrismDtoBody = {
|
|
|
44
66
|
saturation: number;
|
|
45
67
|
value: number;
|
|
46
68
|
};
|
|
47
|
-
export type { CharacterAndroidEquipmentDtoBody, CharacterAndroidEquipmentHairDtoBody, CharacterAndroidEquipmentFaceDtoBody, CharacterAndroidCashItemEquipmentDtoBody, CharacterAndroidCashItemEquipmentOptionDtoBody, CharacterAndroidCashItemEquipmentColoringPrismDtoBody, };
|
|
69
|
+
export type { CharacterAndroidEquipmentDtoBody, CharacterAndroidEquipmentHairDtoBody, CharacterAndroidEquipmentFaceDtoBody, CharacterAndroidEquipmentPresetDtoBody, CharacterAndroidCashItemEquipmentDtoBody, CharacterAndroidCashItemEquipmentOptionDtoBody, CharacterAndroidCashItemEquipmentColoringPrismDtoBody, };
|
|
@@ -3,9 +3,11 @@ type CharacterCashItemEquipmentDtoBody = {
|
|
|
3
3
|
character_gender: string;
|
|
4
4
|
character_class: string;
|
|
5
5
|
preset_no: number;
|
|
6
|
+
cash_item_equipment_base: CharacterCashItemEquipmentPresetDtoBody[];
|
|
6
7
|
cash_item_equipment_preset_1: CharacterCashItemEquipmentPresetDtoBody[];
|
|
7
8
|
cash_item_equipment_preset_2: CharacterCashItemEquipmentPresetDtoBody[];
|
|
8
9
|
cash_item_equipment_preset_3: CharacterCashItemEquipmentPresetDtoBody[];
|
|
10
|
+
additional_cash_item_equipment_base: CharacterCashItemEquipmentPresetDtoBody[];
|
|
9
11
|
additional_cash_item_equipment_preset_1: CharacterCashItemEquipmentPresetDtoBody[];
|
|
10
12
|
additional_cash_item_equipment_preset_2: CharacterCashItemEquipmentPresetDtoBody[];
|
|
11
13
|
additional_cash_item_equipment_preset_3: CharacterCashItemEquipmentPresetDtoBody[];
|
|
@@ -21,7 +23,7 @@ type CharacterCashItemEquipmentPresetDtoBody = {
|
|
|
21
23
|
date_option_expire: string | null;
|
|
22
24
|
cash_item_label: string | null;
|
|
23
25
|
cash_item_coloring_prism: CharacterCashItemEquipmentColoringPrismDtoBody | null;
|
|
24
|
-
|
|
26
|
+
item_gender: string | null;
|
|
25
27
|
};
|
|
26
28
|
type CharacterCashItemEquipmentOptionDtoBody = {
|
|
27
29
|
option_type: string;
|
|
@@ -2,7 +2,11 @@ type CharacterItemEquipmentDtoBody = {
|
|
|
2
2
|
date: string;
|
|
3
3
|
character_gender: string;
|
|
4
4
|
character_class: string;
|
|
5
|
+
preset_no: number | null;
|
|
5
6
|
item_equipment: CharacterItemEquipmentInfoDtoBody[];
|
|
7
|
+
item_equipment_preset_1: CharacterItemEquipmentInfoDtoBody[] | null;
|
|
8
|
+
item_equipment_preset_2: CharacterItemEquipmentInfoDtoBody[] | null;
|
|
9
|
+
item_equipment_preset_3: CharacterItemEquipmentInfoDtoBody[] | null;
|
|
6
10
|
title: CharacterItemEquipmentTitleDtoBody | null;
|
|
7
11
|
dragon_equipment: CharacterItemEquipmentInfoDtoBody[];
|
|
8
12
|
mechanic_equipment: CharacterItemEquipmentInfoDtoBody[];
|
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
type CharacterLinkSkillDtoBody = {
|
|
2
2
|
date: string;
|
|
3
3
|
character_class: string;
|
|
4
|
-
character_link_skill: CharacterLinkSkillInfoDtoBody;
|
|
4
|
+
character_link_skill: CharacterLinkSkillInfoDtoBody[];
|
|
5
|
+
character_link_skill_preset_1: CharacterLinkSkillInfoDtoBody[];
|
|
6
|
+
character_link_skill_preset_2: CharacterLinkSkillInfoDtoBody[];
|
|
7
|
+
character_link_skill_preset_3: CharacterLinkSkillInfoDtoBody[];
|
|
5
8
|
character_owned_link_skill: CharacterLinkSkillInfoDtoBody;
|
|
9
|
+
character_owned_link_skill_preset_1: CharacterLinkSkillInfoDtoBody | null;
|
|
10
|
+
character_owned_link_skill_preset_2: CharacterLinkSkillInfoDtoBody | null;
|
|
11
|
+
character_owned_link_skill_preset_3: CharacterLinkSkillInfoDtoBody | null;
|
|
6
12
|
};
|
|
7
13
|
type CharacterLinkSkillInfoDtoBody = {
|
|
8
14
|
skill_name: string;
|
|
@@ -1,32 +1,38 @@
|
|
|
1
1
|
type CharacterPetEquipmentDtoBody = {
|
|
2
2
|
date: string;
|
|
3
|
-
pet_1_name: string;
|
|
4
|
-
pet_1_nickname: string;
|
|
5
|
-
pet_1_icon: string;
|
|
6
|
-
pet_1_description: string;
|
|
7
|
-
pet_1_equipment: CharacterPetEquipmentItemDtoBody;
|
|
8
|
-
pet_1_auto_skill: CharacterPetEquipmentAutoSkillDtoBody;
|
|
3
|
+
pet_1_name: string | null;
|
|
4
|
+
pet_1_nickname: string | null;
|
|
5
|
+
pet_1_icon: string | null;
|
|
6
|
+
pet_1_description: string | null;
|
|
7
|
+
pet_1_equipment: CharacterPetEquipmentItemDtoBody | null;
|
|
8
|
+
pet_1_auto_skill: CharacterPetEquipmentAutoSkillDtoBody | null;
|
|
9
9
|
pet_1_pet_type: string | null;
|
|
10
10
|
pet_1_skill: string[];
|
|
11
|
-
pet_1_date_expire: string;
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
pet_1_date_expire: string | null;
|
|
12
|
+
pet_1_appearance: string | null;
|
|
13
|
+
pet_1_appearance_icon: string | null;
|
|
14
|
+
pet_2_name: string | null;
|
|
15
|
+
pet_2_nickname: string | null;
|
|
16
|
+
pet_2_icon: string | null;
|
|
17
|
+
pet_2_description: string | null;
|
|
18
|
+
pet_2_equipment: CharacterPetEquipmentItemDtoBody | null;
|
|
19
|
+
pet_2_auto_skill: CharacterPetEquipmentAutoSkillDtoBody | null;
|
|
18
20
|
pet_2_pet_type: string | null;
|
|
19
21
|
pet_2_skill: string[];
|
|
20
|
-
pet_2_date_expire: string;
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
22
|
+
pet_2_date_expire: string | null;
|
|
23
|
+
pet_2_appearance: string | null;
|
|
24
|
+
pet_2_appearance_icon: string | null;
|
|
25
|
+
pet_3_name: string | null;
|
|
26
|
+
pet_3_nickname: string | null;
|
|
27
|
+
pet_3_icon: string | null;
|
|
28
|
+
pet_3_description: string | null;
|
|
29
|
+
pet_3_equipment: CharacterPetEquipmentItemDtoBody | null;
|
|
30
|
+
pet_3_auto_skill: CharacterPetEquipmentAutoSkillDtoBody | null;
|
|
27
31
|
pet_3_pet_type: string | null;
|
|
28
32
|
pet_3_skill: string[];
|
|
29
|
-
pet_3_date_expire: string;
|
|
33
|
+
pet_3_date_expire: string | null;
|
|
34
|
+
pet_3_appearance: string | null;
|
|
35
|
+
pet_3_appearance_icon: string | null;
|
|
30
36
|
};
|
|
31
37
|
type CharacterPetEquipmentItemDtoBody = {
|
|
32
38
|
item_name: string | null;
|
|
@@ -34,7 +40,9 @@ type CharacterPetEquipmentItemDtoBody = {
|
|
|
34
40
|
item_description: string | null;
|
|
35
41
|
item_option: CharacterPetEquipmentItemOptionDtoBody[];
|
|
36
42
|
scroll_upgrade: number;
|
|
37
|
-
|
|
43
|
+
scroll_upgradable: number;
|
|
44
|
+
item_shape: string | null;
|
|
45
|
+
item_shape_icon: string | null;
|
|
38
46
|
};
|
|
39
47
|
type CharacterPetEquipmentItemOptionDtoBody = {
|
|
40
48
|
option_type: string;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
type PotentialHistoryResponseDtoBody = {
|
|
2
|
+
count: number;
|
|
3
|
+
potential_history: PotentialHistoryDtoBody[];
|
|
4
|
+
next_cursor: string | null;
|
|
5
|
+
};
|
|
6
|
+
type PotentialHistoryDtoBody = {
|
|
7
|
+
id: string;
|
|
8
|
+
character_name: string;
|
|
9
|
+
date_create: string;
|
|
10
|
+
potential_type: string;
|
|
11
|
+
item_upgrade_result: string;
|
|
12
|
+
miracle_time_flag: string;
|
|
13
|
+
item_equipment_part: string;
|
|
14
|
+
item_level: number;
|
|
15
|
+
target_item: string;
|
|
16
|
+
potential_option_grade: string;
|
|
17
|
+
additional_potential_option_grade: string;
|
|
18
|
+
upgrade_guarantee: boolean;
|
|
19
|
+
upgrade_guarantee_count: number;
|
|
20
|
+
before_potential_option: PotentialResultOptionDtoBody[];
|
|
21
|
+
before_additional_potential_option: PotentialResultOptionDtoBody[];
|
|
22
|
+
after_potential_option: PotentialResultOptionDtoBody[];
|
|
23
|
+
after_additional_potential_option: PotentialResultOptionDtoBody[];
|
|
24
|
+
};
|
|
25
|
+
type PotentialResultOptionDtoBody = {
|
|
26
|
+
value: string;
|
|
27
|
+
grade: string;
|
|
28
|
+
};
|
|
29
|
+
export type { PotentialHistoryResponseDtoBody, PotentialHistoryDtoBody, PotentialResultOptionDtoBody, };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
type UnionArtifactDtoBody = {
|
|
2
|
+
date: string;
|
|
3
|
+
union_artifact_effect: UnionArtifactEffectDtoBody[];
|
|
4
|
+
union_artifact_crystal: UnionArtifactCrystalDtoBody[];
|
|
5
|
+
union_artifact_remain_ap: number | null;
|
|
6
|
+
};
|
|
7
|
+
type UnionArtifactEffectDtoBody = {
|
|
8
|
+
name: string;
|
|
9
|
+
level: number;
|
|
10
|
+
};
|
|
11
|
+
type UnionArtifactCrystalDtoBody = {
|
|
12
|
+
name: string;
|
|
13
|
+
validity_flag: string;
|
|
14
|
+
date_expire: string;
|
|
15
|
+
level: number;
|
|
16
|
+
crystal_option_name_1: string;
|
|
17
|
+
crystal_option_name_2: string;
|
|
18
|
+
crystal_option_name_3: string;
|
|
19
|
+
};
|
|
20
|
+
export type { UnionArtifactDtoBody, UnionArtifactEffectDtoBody, UnionArtifactCrystalDtoBody, };
|