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.
@@ -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?: CharacterItemEquipmentInfoDtoBody[];
8
- mechanic_equipment?: CharacterItemEquipmentInfoDtoBody[];
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
- equipment_slot: string;
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, };