maplestory-openapi 2.11.0 → 2.12.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/dist/index.js +191 -46
- package/dist/index.min.js +1 -1
- package/dist/index.mjs +191 -46
- package/package.json +1 -1
- package/types/maplestory/api/dto/character/characterAndroidCashItemEquipmentDto.d.ts +8 -0
- package/types/maplestory/api/dto/character/characterCashItemEquipmentPresetDto.d.ts +10 -2
- package/types/maplestory/api/dto/character/characterHexaMatrixStatDto.d.ts +8 -0
- package/types/maplestory/api/dto/character/characterItemEquipmentDragonInfoDto.d.ts +4 -0
- package/types/maplestory/api/dto/character/characterItemEquipmentInfoDto.d.ts +4 -0
- package/types/maplestory/api/dto/character/characterItemEquipmentMechanicInfoDto.d.ts +4 -0
- package/types/maplestory/api/dto/character/characterItemEquipmentTitleDto.d.ts +7 -3
- package/types/maplestory/api/dto/character/characterPetEquipmentDto.d.ts +12 -0
- package/types/maplestory/api/dto/history/starforceEventDto.d.ts +4 -0
- package/types/maplestory/api/dto/history/starforceHistoryDto.d.ts +16 -16
- package/types/maplestory/api/dto/union/unionArtifactCrystalDto.d.ts +6 -2
- package/types/maplestory/api/response/character/characterHexaMatrixStatDtoBody.d.ts +2 -0
- package/types/maplestory/api/response/character/characterItemEquipmentDtoBody.d.ts +4 -4
- package/types/maplestory/api/response/history/starforceEventDtoBody.d.ts +1 -0
|
@@ -5,67 +5,67 @@ import { StarforceHistoryDtoBody } from '../../response/history/starforceHistory
|
|
|
5
5
|
*/
|
|
6
6
|
declare class StarforceHistoryDto {
|
|
7
7
|
/**
|
|
8
|
-
|
|
8
|
+
* 스타포스 히스토리 식별자
|
|
9
9
|
*/
|
|
10
10
|
id: string;
|
|
11
11
|
/**
|
|
12
|
-
|
|
12
|
+
* 강화 시도 결과
|
|
13
13
|
*/
|
|
14
14
|
itemUpgradeResult: string;
|
|
15
15
|
/**
|
|
16
|
-
|
|
16
|
+
* 강화 시도 전 스타포스 수치
|
|
17
17
|
*/
|
|
18
18
|
beforeStarforceCount: number;
|
|
19
19
|
/**
|
|
20
|
-
|
|
20
|
+
* 강화 시도 후 스타포스 수치
|
|
21
21
|
*/
|
|
22
22
|
afterStarforceCount: number;
|
|
23
23
|
/**
|
|
24
|
-
|
|
24
|
+
* 스타 캐치
|
|
25
25
|
*/
|
|
26
26
|
starCatchResult: string;
|
|
27
27
|
/**
|
|
28
|
-
|
|
28
|
+
* 슈페리얼 장비
|
|
29
29
|
*/
|
|
30
30
|
superiorItemFlag: string;
|
|
31
31
|
/**
|
|
32
|
-
|
|
32
|
+
* 파괴 방지
|
|
33
33
|
*/
|
|
34
34
|
destroyDefence: string;
|
|
35
35
|
/**
|
|
36
|
-
|
|
36
|
+
* 찬스 타임
|
|
37
37
|
*/
|
|
38
38
|
chanceTime: string;
|
|
39
39
|
/**
|
|
40
|
-
|
|
40
|
+
* 파괴 방지 필드 이벤트
|
|
41
41
|
*/
|
|
42
42
|
eventFieldFlag: string;
|
|
43
43
|
/**
|
|
44
|
-
|
|
44
|
+
* 사용 주문서 명
|
|
45
45
|
*/
|
|
46
46
|
upgradeItem: string;
|
|
47
47
|
/**
|
|
48
|
-
|
|
48
|
+
* 프로텍트 실드
|
|
49
49
|
*/
|
|
50
50
|
protectShield: string;
|
|
51
51
|
/**
|
|
52
|
-
|
|
52
|
+
* 보너스 스탯 부여 아이템 여부
|
|
53
53
|
*/
|
|
54
54
|
bonusStatUpgrade: string;
|
|
55
55
|
/**
|
|
56
|
-
|
|
56
|
+
* 캐릭터 명
|
|
57
57
|
*/
|
|
58
58
|
characterName: string;
|
|
59
59
|
/**
|
|
60
|
-
|
|
60
|
+
* 월드 명
|
|
61
61
|
*/
|
|
62
62
|
worldName: string;
|
|
63
63
|
/**
|
|
64
|
-
|
|
64
|
+
* 대상 장비 아이템 명
|
|
65
65
|
*/
|
|
66
66
|
targetItem: string;
|
|
67
67
|
/**
|
|
68
|
-
|
|
68
|
+
* 강화 일시 (KST)
|
|
69
69
|
*/
|
|
70
70
|
dateCreate: Date;
|
|
71
71
|
/**
|
|
@@ -12,9 +12,13 @@ declare class UnionArtifactCrystalDto {
|
|
|
12
12
|
*/
|
|
13
13
|
validityFlag: string;
|
|
14
14
|
/**
|
|
15
|
-
* 능력치 유효 기간(KST)
|
|
15
|
+
* 능력치 유효 기간 (KST)
|
|
16
16
|
*/
|
|
17
|
-
dateExpire: Date;
|
|
17
|
+
dateExpire: Date | null;
|
|
18
|
+
/**
|
|
19
|
+
* 능력치 유효 기간 만료 여부
|
|
20
|
+
*/
|
|
21
|
+
isExpired: boolean | null;
|
|
18
22
|
/**
|
|
19
23
|
* 아티팩트 크리스탈 등급
|
|
20
24
|
*/
|
|
@@ -3,8 +3,10 @@ type CharacterHexaMatrixStatDtoBody = {
|
|
|
3
3
|
character_class: string;
|
|
4
4
|
character_hexa_stat_core: CharacterHexaMatrixStatCoreDtoBody[];
|
|
5
5
|
character_hexa_stat_core_2: CharacterHexaMatrixStatCoreDtoBody[];
|
|
6
|
+
character_hexa_stat_core_3: CharacterHexaMatrixStatCoreDtoBody[];
|
|
6
7
|
preset_hexa_stat_core: CharacterHexaMatrixStatCoreDtoBody[];
|
|
7
8
|
preset_hexa_stat_core_2: CharacterHexaMatrixStatCoreDtoBody[];
|
|
9
|
+
preset_hexa_stat_core_3: CharacterHexaMatrixStatCoreDtoBody[];
|
|
8
10
|
};
|
|
9
11
|
type CharacterHexaMatrixStatCoreDtoBody = {
|
|
10
12
|
slot_id: string;
|
|
@@ -110,7 +110,7 @@ type CharacterItemEquipmentExceptionalOptionDtoBody = {
|
|
|
110
110
|
max_mp: string;
|
|
111
111
|
attack_power: string;
|
|
112
112
|
magic_power: string;
|
|
113
|
-
exceptional_upgrade: number;
|
|
113
|
+
exceptional_upgrade: number | null;
|
|
114
114
|
};
|
|
115
115
|
type CharacterItemEquipmentTotalOptionDtoBody = {
|
|
116
116
|
str: string;
|
|
@@ -183,9 +183,9 @@ type CharacterItemEquipmentEtcOptionDtoBody = {
|
|
|
183
183
|
};
|
|
184
184
|
type CharacterItemEquipmentStarforceOptionDtoBody = CharacterItemEquipmentEtcOptionDtoBody;
|
|
185
185
|
type CharacterItemEquipmentTitleDtoBody = {
|
|
186
|
-
title_name: string;
|
|
187
|
-
title_icon: string;
|
|
188
|
-
title_description: string;
|
|
186
|
+
title_name: string | null;
|
|
187
|
+
title_icon: string | null;
|
|
188
|
+
title_description: string | null;
|
|
189
189
|
date_expire: string | null;
|
|
190
190
|
date_option_expire: string | null;
|
|
191
191
|
title_shape_name: string | null;
|