maplestory-openapi 2.3.0 → 2.3.2
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 +312 -13
- package/dist/index.min.js +1 -1
- package/dist/index.mjs +311 -14
- package/package.json +1 -1
- package/types/index.d.ts +2 -0
- package/types/maplestory/api/dto/character/characterItemEquipmentDragonInfoDto.d.ts +126 -0
- package/types/maplestory/api/dto/character/characterItemEquipmentDto.d.ts +5 -3
- package/types/maplestory/api/dto/character/characterItemEquipmentInfoDto.d.ts +4 -1
- package/types/maplestory/api/dto/character/characterItemEquipmentMechanicInfoDto.d.ts +126 -0
- package/types/maplestory/api/dto/guild/guildBasicDto.d.ts +1 -1
- package/types/maplestory/api/response/character/characterItemEquipmentDtoBody.d.ts +36 -5
- package/types/maplestory/api/response/guild/guildBasicDtoBody.d.ts +1 -1
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import { CharacterItemEquipmentAddOptionDto } from './characterItemEquipmentAddOptionDto';
|
|
2
|
+
import { CharacterItemEquipmentBaseOptionDto } from './characterItemEquipmentBaseOptionDto';
|
|
3
|
+
import { CharacterItemEquipmentEtcOptionDto } from './characterItemEquipmentEtcOptionDto';
|
|
4
|
+
import { CharacterItemEquipmentExceptionalOptionDto } from './characterItemEquipmentExceptionalOptionDto';
|
|
5
|
+
import { CharacterItemEquipmentStarforceOptionDto } from './characterItemEquipmentStarforceOptionDto';
|
|
6
|
+
import { CharacterItemEquipmentTotalOptionDto } from './characterItemEquipmentTotalOptionDto';
|
|
7
|
+
import { CharacterItemEquipmentInfoDtoBody } from '../../response/character/characterItemEquipmentDtoBody';
|
|
8
|
+
/**
|
|
9
|
+
* 메카닉 장비 정보
|
|
10
|
+
*/
|
|
11
|
+
declare class CharacterItemEquipmentMechanicInfoDto {
|
|
12
|
+
/**
|
|
13
|
+
* 장비 부위 명
|
|
14
|
+
*/
|
|
15
|
+
itemEquipmentPart: string;
|
|
16
|
+
/**
|
|
17
|
+
* 장비 슬롯 위치
|
|
18
|
+
*/
|
|
19
|
+
itemEquipmentSlot: string;
|
|
20
|
+
/**
|
|
21
|
+
* 장비 명
|
|
22
|
+
*/
|
|
23
|
+
itemName: string;
|
|
24
|
+
/**
|
|
25
|
+
* 장비 아이콘
|
|
26
|
+
*/
|
|
27
|
+
itemIcon: string;
|
|
28
|
+
/**
|
|
29
|
+
* 장비 설명
|
|
30
|
+
*/
|
|
31
|
+
itemDescription: string | null;
|
|
32
|
+
/**
|
|
33
|
+
* 장비 외형
|
|
34
|
+
*/
|
|
35
|
+
itemShapeName: string;
|
|
36
|
+
/**
|
|
37
|
+
* 장비 외형 아이콘
|
|
38
|
+
*/
|
|
39
|
+
itemShapeIcon: string;
|
|
40
|
+
/**
|
|
41
|
+
* 전용 성별
|
|
42
|
+
*/
|
|
43
|
+
itemGender: string | null;
|
|
44
|
+
/**
|
|
45
|
+
* 장비 최종 옵션
|
|
46
|
+
*/
|
|
47
|
+
itemTotalOption: CharacterItemEquipmentTotalOptionDto;
|
|
48
|
+
/**
|
|
49
|
+
* 장비 기본 옵션
|
|
50
|
+
*/
|
|
51
|
+
itemBaseOption: CharacterItemEquipmentBaseOptionDto;
|
|
52
|
+
/**
|
|
53
|
+
* 착용 레벨 증가
|
|
54
|
+
*/
|
|
55
|
+
equipmentLevelIncrease: number;
|
|
56
|
+
/**
|
|
57
|
+
* 장비 특별 옵션
|
|
58
|
+
*/
|
|
59
|
+
itemExceptionalOption: CharacterItemEquipmentExceptionalOptionDto;
|
|
60
|
+
/**
|
|
61
|
+
* 장비 추가 옵션
|
|
62
|
+
*/
|
|
63
|
+
itemAddOption: CharacterItemEquipmentAddOptionDto;
|
|
64
|
+
/**
|
|
65
|
+
* 성장 경험치
|
|
66
|
+
*/
|
|
67
|
+
growthExp: number;
|
|
68
|
+
/**
|
|
69
|
+
* 성장 레벨
|
|
70
|
+
*/
|
|
71
|
+
growthLevel: number;
|
|
72
|
+
/**
|
|
73
|
+
* 업그레이드 횟수
|
|
74
|
+
*/
|
|
75
|
+
scrollUpgrade: string;
|
|
76
|
+
/**
|
|
77
|
+
* 가위 사용 가능 횟수 (교환 불가 장비, 가위 횟수가 없는 교환 가능 장비는 255)
|
|
78
|
+
*/
|
|
79
|
+
cuttableCount: string;
|
|
80
|
+
/**
|
|
81
|
+
* 황금 망치 재련 적용 (1:적용, 이외 미 적용)
|
|
82
|
+
*/
|
|
83
|
+
goldenHammerFlag: string;
|
|
84
|
+
/**
|
|
85
|
+
* 복구 가능 횟수
|
|
86
|
+
*/
|
|
87
|
+
scrollResilienceCount: string;
|
|
88
|
+
/**
|
|
89
|
+
* 업그레이드 가능 횟수
|
|
90
|
+
*/
|
|
91
|
+
scrollUpgradeableCount: string;
|
|
92
|
+
/**
|
|
93
|
+
* 소울 명
|
|
94
|
+
*/
|
|
95
|
+
soulName: string | null;
|
|
96
|
+
/**
|
|
97
|
+
* 소울 옵션
|
|
98
|
+
*/
|
|
99
|
+
soulOption: string | null;
|
|
100
|
+
/**
|
|
101
|
+
* 장비 기타 옵션
|
|
102
|
+
*/
|
|
103
|
+
itemEtcOption: CharacterItemEquipmentEtcOptionDto;
|
|
104
|
+
/**
|
|
105
|
+
* 강화 단계
|
|
106
|
+
*/
|
|
107
|
+
starforce: string;
|
|
108
|
+
/**
|
|
109
|
+
* 놀라운 장비 강화 주문서 사용 여부 (0:미사용, 1:사용)
|
|
110
|
+
*/
|
|
111
|
+
starforceScrollFlag: string;
|
|
112
|
+
/**
|
|
113
|
+
* 장비 스타포스 옵션
|
|
114
|
+
*/
|
|
115
|
+
itemStarforceOption: CharacterItemEquipmentStarforceOptionDto;
|
|
116
|
+
/**
|
|
117
|
+
* 특수 반지 레벨
|
|
118
|
+
*/
|
|
119
|
+
specialRingLevel: number;
|
|
120
|
+
/**
|
|
121
|
+
* 장비 유효 기간
|
|
122
|
+
*/
|
|
123
|
+
dateExpire: Date | null;
|
|
124
|
+
constructor(obj: CharacterItemEquipmentInfoDtoBody);
|
|
125
|
+
}
|
|
126
|
+
export { CharacterItemEquipmentMechanicInfoDto };
|
|
@@ -3,13 +3,13 @@ type CharacterItemEquipmentDtoBody = {
|
|
|
3
3
|
character_gender: string;
|
|
4
4
|
character_class: string;
|
|
5
5
|
item_equipment: CharacterItemEquipmentInfoDtoBody[];
|
|
6
|
-
title: CharacterItemEquipmentTitleDtoBody;
|
|
7
|
-
dragon_equipment
|
|
8
|
-
mechanic_equipment
|
|
6
|
+
title: CharacterItemEquipmentTitleDtoBody | null;
|
|
7
|
+
dragon_equipment: CharacterItemEquipmentInfoDtoBody[];
|
|
8
|
+
mechanic_equipment: CharacterItemEquipmentInfoDtoBody[];
|
|
9
9
|
};
|
|
10
10
|
type CharacterItemEquipmentInfoDtoBody = {
|
|
11
11
|
item_equipment_part: string;
|
|
12
|
-
|
|
12
|
+
item_equipment_slot: string;
|
|
13
13
|
item_name: string;
|
|
14
14
|
item_icon: string;
|
|
15
15
|
item_description: string | null;
|
|
@@ -45,6 +45,37 @@ type CharacterItemEquipmentInfoDtoBody = {
|
|
|
45
45
|
special_ring_level: number;
|
|
46
46
|
date_expire: string | null;
|
|
47
47
|
};
|
|
48
|
+
type CharacterItemEquipmentMechanicInfoDtoBody = {
|
|
49
|
+
item_equipment_part: string;
|
|
50
|
+
item_equipment_slot: string;
|
|
51
|
+
item_name: string;
|
|
52
|
+
item_icon: string;
|
|
53
|
+
item_description: string | null;
|
|
54
|
+
item_shape_name: string;
|
|
55
|
+
item_shape_icon: string;
|
|
56
|
+
item_gender: string | null;
|
|
57
|
+
item_total_option: CharacterItemEquipmentOptionDtoBody;
|
|
58
|
+
item_base_option: CharacterItemEquipmentBaseOptionDtoBody;
|
|
59
|
+
equipment_level_increase: number;
|
|
60
|
+
item_exceptional_option: CharacterItemEquipmentOptionDtoBody;
|
|
61
|
+
item_add_option: CharacterItemEquipmentAddOptionDtoBody;
|
|
62
|
+
growth_exp: number;
|
|
63
|
+
growth_level: number;
|
|
64
|
+
scroll_upgrade: string;
|
|
65
|
+
cuttable_count: string;
|
|
66
|
+
golden_hammer_flag: string;
|
|
67
|
+
scroll_resilience_count: string;
|
|
68
|
+
scroll_upgradeable_count: string;
|
|
69
|
+
soul_name: string | null;
|
|
70
|
+
soul_option: string | null;
|
|
71
|
+
item_etc_option: CharacterItemEquipmentOptionDtoBody;
|
|
72
|
+
starforce: string;
|
|
73
|
+
starforce_scroll_flag: string;
|
|
74
|
+
item_starforce_option: CharacterItemEquipmentOptionDtoBody;
|
|
75
|
+
special_ring_level: number;
|
|
76
|
+
date_expire: string | null;
|
|
77
|
+
};
|
|
78
|
+
type CharacterItemEquipmentDragonInfoDtoBody = CharacterItemEquipmentMechanicInfoDtoBody;
|
|
48
79
|
type CharacterItemEquipmentOptionDtoBody = {
|
|
49
80
|
str: string;
|
|
50
81
|
dex: string;
|
|
@@ -152,4 +183,4 @@ type CharacterItemEquipmentTitleDtoBody = {
|
|
|
152
183
|
date_expire: string | null;
|
|
153
184
|
date_option_expire: string | null;
|
|
154
185
|
};
|
|
155
|
-
export type { CharacterItemEquipmentDtoBody, CharacterItemEquipmentInfoDtoBody, CharacterItemEquipmentTitleDtoBody, CharacterItemEquipmentOptionDtoBody, CharacterItemEquipmentExceptionalOptionDtoBody, CharacterItemEquipmentTotalOptionDtoBody, CharacterItemEquipmentBaseOptionDtoBody, CharacterItemEquipmentAddOptionDtoBody, CharacterItemEquipmentEtcOptionDtoBody, CharacterItemEquipmentStarforceOptionDtoBody, };
|
|
186
|
+
export type { CharacterItemEquipmentDtoBody, CharacterItemEquipmentInfoDtoBody, CharacterItemEquipmentTitleDtoBody, CharacterItemEquipmentOptionDtoBody, CharacterItemEquipmentExceptionalOptionDtoBody, CharacterItemEquipmentTotalOptionDtoBody, CharacterItemEquipmentBaseOptionDtoBody, CharacterItemEquipmentAddOptionDtoBody, CharacterItemEquipmentEtcOptionDtoBody, CharacterItemEquipmentStarforceOptionDtoBody, CharacterItemEquipmentDragonInfoDtoBody, CharacterItemEquipmentMechanicInfoDtoBody, };
|
|
@@ -9,7 +9,7 @@ type GuildBasicDtoBody = {
|
|
|
9
9
|
guild_member_count: number;
|
|
10
10
|
guild_member: string[];
|
|
11
11
|
guild_skill: GuildSkillDtoBody[];
|
|
12
|
-
|
|
12
|
+
guild_noblesse_skill: GuildSkillDtoBody[];
|
|
13
13
|
guild_mark: string | null;
|
|
14
14
|
guild_mark_custom: string | null;
|
|
15
15
|
};
|