maplestory-openapi 2.3.1 → 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 +309 -10
- package/dist/index.min.js +1 -1
- package/dist/index.mjs +308 -11
- 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/response/character/characterItemEquipmentDtoBody.d.ts +36 -5
|
@@ -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, };
|