maplestory-openapi 2.12.1 → 2.13.1
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 +219 -219
- package/dist/index.min.js +1 -1
- package/dist/index.mjs +219 -219
- package/package.json +1 -1
- package/types/maplestory/api/dto/character/characterAbilityDto.d.ts +2 -2
- package/types/maplestory/api/dto/character/characterAndroidEquipmentDto.d.ts +3 -3
- package/types/maplestory/api/dto/character/characterBeautyEquipmentDto.d.ts +3 -3
- package/types/maplestory/api/dto/character/characterCashItemEquipmentDto.d.ts +3 -3
- package/types/maplestory/api/dto/character/characterDojangDto.d.ts +4 -4
- package/types/maplestory/api/dto/character/characterHexaMatrixDto.d.ts +1 -1
- package/types/maplestory/api/dto/character/characterHexaMatrixStatDto.d.ts +1 -1
- package/types/maplestory/api/dto/character/characterHyperStatDto.d.ts +6 -6
- package/types/maplestory/api/dto/character/characterItemEquipmentDto.d.ts +5 -5
- package/types/maplestory/api/dto/character/characterLinkSkillDto.d.ts +2 -2
- package/types/maplestory/api/dto/character/characterPropensityDto.d.ts +6 -6
- package/types/maplestory/api/dto/character/characterSkillDto.d.ts +2 -2
- package/types/maplestory/api/dto/character/characterStatDto.d.ts +2 -2
- package/types/maplestory/api/dto/character/characterSymbolEquipmentDto.d.ts +1 -1
- package/types/maplestory/api/dto/character/characterVMatrixDto.d.ts +2 -2
- package/types/maplestory/api/dto/union/unionDto.d.ts +2 -2
- package/types/maplestory/api/mapleStoryApi.d.ts +24 -46
- package/types/maplestory/api/response/character/characterAbilityDtoBody.d.ts +6 -6
- package/types/maplestory/api/response/character/characterAndroidEquipmentDtoBody.d.ts +2 -2
- package/types/maplestory/api/response/character/characterBeautyEquipmentDtoBody.d.ts +3 -3
- package/types/maplestory/api/response/character/characterCashItemEquipmentDtoBody.d.ts +3 -3
- package/types/maplestory/api/response/character/characterDojangDtoBody.d.ts +4 -4
- package/types/maplestory/api/response/character/characterHexaMatrixDtoBody.d.ts +1 -1
- package/types/maplestory/api/response/character/characterHexaMatrixStatDtoBody.d.ts +7 -7
- package/types/maplestory/api/response/character/characterHyperStatDtoBody.d.ts +6 -6
- package/types/maplestory/api/response/character/characterItemEquipmentDtoBody.d.ts +2 -2
- package/types/maplestory/api/response/character/characterLinkSkillDtoBody.d.ts +2 -2
- package/types/maplestory/api/response/character/characterPropensityDtoBody.d.ts +6 -6
- package/types/maplestory/api/response/character/characterSkillDtoBody.d.ts +2 -2
- package/types/maplestory/api/response/character/characterStatDtoBody.d.ts +2 -2
- package/types/maplestory/api/response/character/characterSymbolEquipmentDtoBody.d.ts +1 -1
- package/types/maplestory/api/response/character/characterVMatrixDtoBody.d.ts +2 -2
- package/types/maplestory/api/response/union/unionDtoBody.d.ts +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
type CharacterItemEquipmentDtoBody = {
|
|
2
2
|
date: string | null;
|
|
3
|
-
character_gender: string;
|
|
4
|
-
character_class: string;
|
|
3
|
+
character_gender: string | null;
|
|
4
|
+
character_class: string | null;
|
|
5
5
|
preset_no: number | null;
|
|
6
6
|
item_equipment: CharacterItemEquipmentInfoDtoBody[];
|
|
7
7
|
item_equipment_preset_1: CharacterItemEquipmentInfoDtoBody[] | null;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
type CharacterLinkSkillDtoBody = {
|
|
2
2
|
date: string | null;
|
|
3
|
-
character_class: string;
|
|
3
|
+
character_class: string | null;
|
|
4
4
|
character_link_skill: CharacterLinkSkillInfoDtoBody[];
|
|
5
5
|
character_link_skill_preset_1: CharacterLinkSkillInfoDtoBody[];
|
|
6
6
|
character_link_skill_preset_2: CharacterLinkSkillInfoDtoBody[];
|
|
7
7
|
character_link_skill_preset_3: CharacterLinkSkillInfoDtoBody[];
|
|
8
|
-
character_owned_link_skill: CharacterLinkSkillInfoDtoBody;
|
|
8
|
+
character_owned_link_skill: CharacterLinkSkillInfoDtoBody | null;
|
|
9
9
|
character_owned_link_skill_preset_1: CharacterLinkSkillInfoDtoBody | null;
|
|
10
10
|
character_owned_link_skill_preset_2: CharacterLinkSkillInfoDtoBody | null;
|
|
11
11
|
character_owned_link_skill_preset_3: CharacterLinkSkillInfoDtoBody | null;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
type CharacterPropensityDtoBody = {
|
|
2
2
|
date: string | null;
|
|
3
|
-
charisma_level: number;
|
|
4
|
-
sensibility_level: number;
|
|
5
|
-
insight_level: number;
|
|
6
|
-
willingness_level: number;
|
|
7
|
-
handicraft_level: number;
|
|
8
|
-
charm_level: number;
|
|
3
|
+
charisma_level: number | null;
|
|
4
|
+
sensibility_level: number | null;
|
|
5
|
+
insight_level: number | null;
|
|
6
|
+
willingness_level: number | null;
|
|
7
|
+
handicraft_level: number | null;
|
|
8
|
+
charm_level: number | null;
|
|
9
9
|
};
|
|
10
10
|
export type { CharacterPropensityDtoBody };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
type CharacterSkillDtoBody = {
|
|
2
2
|
date: string | null;
|
|
3
|
-
character_class: string;
|
|
4
|
-
character_skill_grade: string;
|
|
3
|
+
character_class: string | null;
|
|
4
|
+
character_skill_grade: string | null;
|
|
5
5
|
character_skill: CharacterSkillInfoDtoBody[];
|
|
6
6
|
};
|
|
7
7
|
type CharacterSkillInfoDtoBody = {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
type CharacterStatDtoBody = {
|
|
2
2
|
date: string | null;
|
|
3
|
-
character_class: string;
|
|
3
|
+
character_class: string | null;
|
|
4
4
|
final_stat: {
|
|
5
5
|
stat_name: string;
|
|
6
6
|
stat_value: string;
|
|
7
7
|
}[];
|
|
8
|
-
remain_ap: number;
|
|
8
|
+
remain_ap: number | null;
|
|
9
9
|
};
|
|
10
10
|
export type { CharacterStatDtoBody };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
type CharacterVMatrixDtoBody = {
|
|
2
2
|
date: string | null;
|
|
3
|
-
character_class: string;
|
|
3
|
+
character_class: string | null;
|
|
4
4
|
character_v_core_equipment: CharacterVMatrixCoreEquipmentDtoBody[];
|
|
5
|
-
character_v_matrix_remain_slot_upgrade_point: number;
|
|
5
|
+
character_v_matrix_remain_slot_upgrade_point: number | null;
|
|
6
6
|
};
|
|
7
7
|
type CharacterVMatrixCoreEquipmentDtoBody = {
|
|
8
8
|
slot_id: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
type UnionDtoBody = {
|
|
2
2
|
date: string | null;
|
|
3
|
-
union_level: number;
|
|
4
|
-
union_grade: string;
|
|
3
|
+
union_level: number | null;
|
|
4
|
+
union_grade: string | null;
|
|
5
5
|
union_artifact_level: number | null;
|
|
6
6
|
union_artifact_exp: number | null;
|
|
7
7
|
union_artifact_point: number | null;
|