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
package/dist/index.mjs
CHANGED
|
@@ -1448,6 +1448,9 @@ class CharacterItemEquipmentTotalOptionDto {
|
|
|
1448
1448
|
}
|
|
1449
1449
|
}
|
|
1450
1450
|
|
|
1451
|
+
/**
|
|
1452
|
+
* 캐릭터 장비 아이템 상세 정보
|
|
1453
|
+
*/
|
|
1451
1454
|
class CharacterItemEquipmentInfoDto {
|
|
1452
1455
|
/**
|
|
1453
1456
|
* 장비 부위 명
|
|
@@ -1456,7 +1459,7 @@ class CharacterItemEquipmentInfoDto {
|
|
|
1456
1459
|
/**
|
|
1457
1460
|
* 장비 슬롯 위치
|
|
1458
1461
|
*/
|
|
1459
|
-
|
|
1462
|
+
itemEquipmentSlot;
|
|
1460
1463
|
/**
|
|
1461
1464
|
* 장비 명
|
|
1462
1465
|
*/
|
|
@@ -1594,9 +1597,9 @@ class CharacterItemEquipmentInfoDto {
|
|
|
1594
1597
|
*/
|
|
1595
1598
|
dateExpire;
|
|
1596
1599
|
constructor(obj) {
|
|
1597
|
-
const { item_equipment_part,
|
|
1600
|
+
const { item_equipment_part, item_equipment_slot, item_name, item_icon, item_description, item_shape_name, item_shape_icon, item_gender, item_total_option, item_base_option, potential_option_grade, additional_potential_option_grade, potential_option_1, potential_option_2, potential_option_3, additional_potential_option_1, additional_potential_option_2, additional_potential_option_3, equipment_level_increase, item_exceptional_option, item_add_option, growth_exp, growth_level, scroll_upgrade, cuttable_count, golden_hammer_flag, scroll_resilience_count, scroll_upgradeable_count, soul_name, soul_option, item_etc_option, starforce, starforce_scroll_flag, item_starforce_option, special_ring_level, date_expire, } = obj;
|
|
1598
1601
|
this.itemEquipmentPart = item_equipment_part;
|
|
1599
|
-
this.
|
|
1602
|
+
this.itemEquipmentSlot = item_equipment_slot;
|
|
1600
1603
|
this.itemName = item_name;
|
|
1601
1604
|
this.itemIcon = item_icon;
|
|
1602
1605
|
this.itemDescription = item_description;
|
|
@@ -1679,6 +1682,304 @@ class CharacterItemEquipmentTitleDto {
|
|
|
1679
1682
|
}
|
|
1680
1683
|
}
|
|
1681
1684
|
|
|
1685
|
+
/**
|
|
1686
|
+
* 에반 드래곤 장비 정보
|
|
1687
|
+
*/
|
|
1688
|
+
class CharacterItemEquipmentDragonInfoDto {
|
|
1689
|
+
/**
|
|
1690
|
+
* 장비 부위 명
|
|
1691
|
+
*/
|
|
1692
|
+
itemEquipmentPart;
|
|
1693
|
+
/**
|
|
1694
|
+
* 장비 슬롯 위치
|
|
1695
|
+
*/
|
|
1696
|
+
itemEquipmentSlot;
|
|
1697
|
+
/**
|
|
1698
|
+
* 장비 명
|
|
1699
|
+
*/
|
|
1700
|
+
itemName;
|
|
1701
|
+
/**
|
|
1702
|
+
* 장비 아이콘
|
|
1703
|
+
*/
|
|
1704
|
+
itemIcon;
|
|
1705
|
+
/**
|
|
1706
|
+
* 장비 설명
|
|
1707
|
+
*/
|
|
1708
|
+
itemDescription;
|
|
1709
|
+
/**
|
|
1710
|
+
* 장비 외형
|
|
1711
|
+
*/
|
|
1712
|
+
itemShapeName;
|
|
1713
|
+
/**
|
|
1714
|
+
* 장비 외형 아이콘
|
|
1715
|
+
*/
|
|
1716
|
+
itemShapeIcon;
|
|
1717
|
+
/**
|
|
1718
|
+
* 전용 성별
|
|
1719
|
+
*/
|
|
1720
|
+
itemGender;
|
|
1721
|
+
/**
|
|
1722
|
+
* 장비 최종 옵션
|
|
1723
|
+
*/
|
|
1724
|
+
itemTotalOption;
|
|
1725
|
+
/**
|
|
1726
|
+
* 장비 기본 옵션
|
|
1727
|
+
*/
|
|
1728
|
+
itemBaseOption;
|
|
1729
|
+
/**
|
|
1730
|
+
* 착용 레벨 증가
|
|
1731
|
+
*/
|
|
1732
|
+
equipmentLevelIncrease;
|
|
1733
|
+
/**
|
|
1734
|
+
* 장비 특별 옵션
|
|
1735
|
+
*/
|
|
1736
|
+
itemExceptionalOption;
|
|
1737
|
+
/**
|
|
1738
|
+
* 장비 추가 옵션
|
|
1739
|
+
*/
|
|
1740
|
+
itemAddOption;
|
|
1741
|
+
/**
|
|
1742
|
+
* 성장 경험치
|
|
1743
|
+
*/
|
|
1744
|
+
growthExp;
|
|
1745
|
+
/**
|
|
1746
|
+
* 성장 레벨
|
|
1747
|
+
*/
|
|
1748
|
+
growthLevel;
|
|
1749
|
+
/**
|
|
1750
|
+
* 업그레이드 횟수
|
|
1751
|
+
*/
|
|
1752
|
+
scrollUpgrade;
|
|
1753
|
+
/**
|
|
1754
|
+
* 가위 사용 가능 횟수 (교환 불가 장비, 가위 횟수가 없는 교환 가능 장비는 255)
|
|
1755
|
+
*/
|
|
1756
|
+
cuttableCount;
|
|
1757
|
+
/**
|
|
1758
|
+
* 황금 망치 재련 적용 (1:적용, 이외 미 적용)
|
|
1759
|
+
*/
|
|
1760
|
+
goldenHammerFlag;
|
|
1761
|
+
/**
|
|
1762
|
+
* 복구 가능 횟수
|
|
1763
|
+
*/
|
|
1764
|
+
scrollResilienceCount;
|
|
1765
|
+
/**
|
|
1766
|
+
* 업그레이드 가능 횟수
|
|
1767
|
+
*/
|
|
1768
|
+
scrollUpgradeableCount;
|
|
1769
|
+
/**
|
|
1770
|
+
* 소울 명
|
|
1771
|
+
*/
|
|
1772
|
+
soulName;
|
|
1773
|
+
/**
|
|
1774
|
+
* 소울 옵션
|
|
1775
|
+
*/
|
|
1776
|
+
soulOption;
|
|
1777
|
+
/**
|
|
1778
|
+
* 장비 기타 옵션
|
|
1779
|
+
*/
|
|
1780
|
+
itemEtcOption;
|
|
1781
|
+
/**
|
|
1782
|
+
* 강화 단계
|
|
1783
|
+
*/
|
|
1784
|
+
starforce;
|
|
1785
|
+
/**
|
|
1786
|
+
* 놀라운 장비 강화 주문서 사용 여부 (0:미사용, 1:사용)
|
|
1787
|
+
*/
|
|
1788
|
+
starforceScrollFlag;
|
|
1789
|
+
/**
|
|
1790
|
+
* 장비 스타포스 옵션
|
|
1791
|
+
*/
|
|
1792
|
+
itemStarforceOption;
|
|
1793
|
+
/**
|
|
1794
|
+
* 특수 반지 레벨
|
|
1795
|
+
*/
|
|
1796
|
+
specialRingLevel;
|
|
1797
|
+
/**
|
|
1798
|
+
* 장비 유효 기간
|
|
1799
|
+
*/
|
|
1800
|
+
dateExpire;
|
|
1801
|
+
constructor(obj) {
|
|
1802
|
+
const { item_equipment_part, item_equipment_slot, item_name, item_icon, item_description, item_shape_name, item_shape_icon, item_gender, item_total_option, item_base_option, equipment_level_increase, item_exceptional_option, item_add_option, growth_exp, growth_level, scroll_upgrade, cuttable_count, golden_hammer_flag, scroll_resilience_count, scroll_upgradeable_count, soul_name, soul_option, item_etc_option, starforce, starforce_scroll_flag, item_starforce_option, special_ring_level, date_expire, } = obj;
|
|
1803
|
+
this.itemEquipmentPart = item_equipment_part;
|
|
1804
|
+
this.itemEquipmentSlot = item_equipment_slot;
|
|
1805
|
+
this.itemName = item_name;
|
|
1806
|
+
this.itemIcon = item_icon;
|
|
1807
|
+
this.itemDescription = item_description;
|
|
1808
|
+
this.itemShapeName = item_shape_name;
|
|
1809
|
+
this.itemShapeIcon = item_shape_icon;
|
|
1810
|
+
this.itemGender = item_gender;
|
|
1811
|
+
this.itemTotalOption = new CharacterItemEquipmentTotalOptionDto(item_total_option);
|
|
1812
|
+
this.itemBaseOption = new CharacterItemEquipmentBaseOptionDto(item_base_option);
|
|
1813
|
+
this.equipmentLevelIncrease = equipment_level_increase;
|
|
1814
|
+
this.itemExceptionalOption = new CharacterItemEquipmentExceptionalOptionDto(item_exceptional_option);
|
|
1815
|
+
this.itemAddOption = new CharacterItemEquipmentAddOptionDto(item_add_option);
|
|
1816
|
+
this.growthExp = growth_exp;
|
|
1817
|
+
this.growthLevel = growth_level;
|
|
1818
|
+
this.scrollUpgrade = scroll_upgrade;
|
|
1819
|
+
this.cuttableCount = cuttable_count;
|
|
1820
|
+
this.goldenHammerFlag = golden_hammer_flag;
|
|
1821
|
+
this.scrollResilienceCount = scroll_resilience_count;
|
|
1822
|
+
this.scrollUpgradeableCount = scroll_upgradeable_count;
|
|
1823
|
+
this.soulName = soul_name;
|
|
1824
|
+
this.soulOption = soul_option;
|
|
1825
|
+
this.itemEtcOption = new CharacterItemEquipmentEtcOptionDto(item_etc_option);
|
|
1826
|
+
this.starforce = starforce;
|
|
1827
|
+
this.starforceScrollFlag = starforce_scroll_flag;
|
|
1828
|
+
this.itemStarforceOption = new CharacterItemEquipmentStarforceOptionDto(item_starforce_option);
|
|
1829
|
+
this.specialRingLevel = special_ring_level;
|
|
1830
|
+
this.dateExpire = date_expire ? new Date(date_expire) : null;
|
|
1831
|
+
}
|
|
1832
|
+
}
|
|
1833
|
+
|
|
1834
|
+
/**
|
|
1835
|
+
* 메카닉 장비 정보
|
|
1836
|
+
*/
|
|
1837
|
+
class CharacterItemEquipmentMechanicInfoDto {
|
|
1838
|
+
/**
|
|
1839
|
+
* 장비 부위 명
|
|
1840
|
+
*/
|
|
1841
|
+
itemEquipmentPart;
|
|
1842
|
+
/**
|
|
1843
|
+
* 장비 슬롯 위치
|
|
1844
|
+
*/
|
|
1845
|
+
itemEquipmentSlot;
|
|
1846
|
+
/**
|
|
1847
|
+
* 장비 명
|
|
1848
|
+
*/
|
|
1849
|
+
itemName;
|
|
1850
|
+
/**
|
|
1851
|
+
* 장비 아이콘
|
|
1852
|
+
*/
|
|
1853
|
+
itemIcon;
|
|
1854
|
+
/**
|
|
1855
|
+
* 장비 설명
|
|
1856
|
+
*/
|
|
1857
|
+
itemDescription;
|
|
1858
|
+
/**
|
|
1859
|
+
* 장비 외형
|
|
1860
|
+
*/
|
|
1861
|
+
itemShapeName;
|
|
1862
|
+
/**
|
|
1863
|
+
* 장비 외형 아이콘
|
|
1864
|
+
*/
|
|
1865
|
+
itemShapeIcon;
|
|
1866
|
+
/**
|
|
1867
|
+
* 전용 성별
|
|
1868
|
+
*/
|
|
1869
|
+
itemGender;
|
|
1870
|
+
/**
|
|
1871
|
+
* 장비 최종 옵션
|
|
1872
|
+
*/
|
|
1873
|
+
itemTotalOption;
|
|
1874
|
+
/**
|
|
1875
|
+
* 장비 기본 옵션
|
|
1876
|
+
*/
|
|
1877
|
+
itemBaseOption;
|
|
1878
|
+
/**
|
|
1879
|
+
* 착용 레벨 증가
|
|
1880
|
+
*/
|
|
1881
|
+
equipmentLevelIncrease;
|
|
1882
|
+
/**
|
|
1883
|
+
* 장비 특별 옵션
|
|
1884
|
+
*/
|
|
1885
|
+
itemExceptionalOption;
|
|
1886
|
+
/**
|
|
1887
|
+
* 장비 추가 옵션
|
|
1888
|
+
*/
|
|
1889
|
+
itemAddOption;
|
|
1890
|
+
/**
|
|
1891
|
+
* 성장 경험치
|
|
1892
|
+
*/
|
|
1893
|
+
growthExp;
|
|
1894
|
+
/**
|
|
1895
|
+
* 성장 레벨
|
|
1896
|
+
*/
|
|
1897
|
+
growthLevel;
|
|
1898
|
+
/**
|
|
1899
|
+
* 업그레이드 횟수
|
|
1900
|
+
*/
|
|
1901
|
+
scrollUpgrade;
|
|
1902
|
+
/**
|
|
1903
|
+
* 가위 사용 가능 횟수 (교환 불가 장비, 가위 횟수가 없는 교환 가능 장비는 255)
|
|
1904
|
+
*/
|
|
1905
|
+
cuttableCount;
|
|
1906
|
+
/**
|
|
1907
|
+
* 황금 망치 재련 적용 (1:적용, 이외 미 적용)
|
|
1908
|
+
*/
|
|
1909
|
+
goldenHammerFlag;
|
|
1910
|
+
/**
|
|
1911
|
+
* 복구 가능 횟수
|
|
1912
|
+
*/
|
|
1913
|
+
scrollResilienceCount;
|
|
1914
|
+
/**
|
|
1915
|
+
* 업그레이드 가능 횟수
|
|
1916
|
+
*/
|
|
1917
|
+
scrollUpgradeableCount;
|
|
1918
|
+
/**
|
|
1919
|
+
* 소울 명
|
|
1920
|
+
*/
|
|
1921
|
+
soulName;
|
|
1922
|
+
/**
|
|
1923
|
+
* 소울 옵션
|
|
1924
|
+
*/
|
|
1925
|
+
soulOption;
|
|
1926
|
+
/**
|
|
1927
|
+
* 장비 기타 옵션
|
|
1928
|
+
*/
|
|
1929
|
+
itemEtcOption;
|
|
1930
|
+
/**
|
|
1931
|
+
* 강화 단계
|
|
1932
|
+
*/
|
|
1933
|
+
starforce;
|
|
1934
|
+
/**
|
|
1935
|
+
* 놀라운 장비 강화 주문서 사용 여부 (0:미사용, 1:사용)
|
|
1936
|
+
*/
|
|
1937
|
+
starforceScrollFlag;
|
|
1938
|
+
/**
|
|
1939
|
+
* 장비 스타포스 옵션
|
|
1940
|
+
*/
|
|
1941
|
+
itemStarforceOption;
|
|
1942
|
+
/**
|
|
1943
|
+
* 특수 반지 레벨
|
|
1944
|
+
*/
|
|
1945
|
+
specialRingLevel;
|
|
1946
|
+
/**
|
|
1947
|
+
* 장비 유효 기간
|
|
1948
|
+
*/
|
|
1949
|
+
dateExpire;
|
|
1950
|
+
constructor(obj) {
|
|
1951
|
+
const { item_equipment_part, item_equipment_slot, item_name, item_icon, item_description, item_shape_name, item_shape_icon, item_gender, item_total_option, item_base_option, equipment_level_increase, item_exceptional_option, item_add_option, growth_exp, growth_level, scroll_upgrade, cuttable_count, golden_hammer_flag, scroll_resilience_count, scroll_upgradeable_count, soul_name, soul_option, item_etc_option, starforce, starforce_scroll_flag, item_starforce_option, special_ring_level, date_expire, } = obj;
|
|
1952
|
+
this.itemEquipmentPart = item_equipment_part;
|
|
1953
|
+
this.itemEquipmentSlot = item_equipment_slot;
|
|
1954
|
+
this.itemName = item_name;
|
|
1955
|
+
this.itemIcon = item_icon;
|
|
1956
|
+
this.itemDescription = item_description;
|
|
1957
|
+
this.itemShapeName = item_shape_name;
|
|
1958
|
+
this.itemShapeIcon = item_shape_icon;
|
|
1959
|
+
this.itemGender = item_gender;
|
|
1960
|
+
this.itemTotalOption = new CharacterItemEquipmentTotalOptionDto(item_total_option);
|
|
1961
|
+
this.itemBaseOption = new CharacterItemEquipmentBaseOptionDto(item_base_option);
|
|
1962
|
+
this.equipmentLevelIncrease = equipment_level_increase;
|
|
1963
|
+
this.itemExceptionalOption = new CharacterItemEquipmentExceptionalOptionDto(item_exceptional_option);
|
|
1964
|
+
this.itemAddOption = new CharacterItemEquipmentAddOptionDto(item_add_option);
|
|
1965
|
+
this.growthExp = growth_exp;
|
|
1966
|
+
this.growthLevel = growth_level;
|
|
1967
|
+
this.scrollUpgrade = scroll_upgrade;
|
|
1968
|
+
this.cuttableCount = cuttable_count;
|
|
1969
|
+
this.goldenHammerFlag = golden_hammer_flag;
|
|
1970
|
+
this.scrollResilienceCount = scroll_resilience_count;
|
|
1971
|
+
this.scrollUpgradeableCount = scroll_upgradeable_count;
|
|
1972
|
+
this.soulName = soul_name;
|
|
1973
|
+
this.soulOption = soul_option;
|
|
1974
|
+
this.itemEtcOption = new CharacterItemEquipmentEtcOptionDto(item_etc_option);
|
|
1975
|
+
this.starforce = starforce;
|
|
1976
|
+
this.starforceScrollFlag = starforce_scroll_flag;
|
|
1977
|
+
this.itemStarforceOption = new CharacterItemEquipmentStarforceOptionDto(item_starforce_option);
|
|
1978
|
+
this.specialRingLevel = special_ring_level;
|
|
1979
|
+
this.dateExpire = date_expire ? new Date(date_expire) : null;
|
|
1980
|
+
}
|
|
1981
|
+
}
|
|
1982
|
+
|
|
1682
1983
|
/**
|
|
1683
1984
|
* 캐릭터 장비 아이템 정보
|
|
1684
1985
|
*/
|
|
@@ -1717,13 +2018,9 @@ class CharacterItemEquipmentDto {
|
|
|
1717
2018
|
this.characterGender = character_gender;
|
|
1718
2019
|
this.characterClass = character_class;
|
|
1719
2020
|
this.itemEquipment = item_equipment.map((equipment) => new CharacterItemEquipmentInfoDto(equipment));
|
|
1720
|
-
this.title = new CharacterItemEquipmentTitleDto(title);
|
|
1721
|
-
this.dragonEquipment = dragon_equipment
|
|
1722
|
-
|
|
1723
|
-
: undefined;
|
|
1724
|
-
this.mechanicEquipment = mechanic_equipment
|
|
1725
|
-
? mechanic_equipment.map((equipment) => new CharacterItemEquipmentInfoDto(equipment))
|
|
1726
|
-
: undefined;
|
|
2021
|
+
this.title = title ? new CharacterItemEquipmentTitleDto(title) : null;
|
|
2022
|
+
this.dragonEquipment = dragon_equipment.map((equipment) => new CharacterItemEquipmentDragonInfoDto(equipment));
|
|
2023
|
+
this.mechanicEquipment = mechanic_equipment.map((equipment) => new CharacterItemEquipmentMechanicInfoDto(equipment));
|
|
1727
2024
|
}
|
|
1728
2025
|
}
|
|
1729
2026
|
|
|
@@ -2750,7 +3047,7 @@ class GuildBasicDto {
|
|
|
2750
3047
|
/**
|
|
2751
3048
|
* 노블레스 스킬 목록
|
|
2752
3049
|
*/
|
|
2753
|
-
|
|
3050
|
+
guildNoblesseSkill;
|
|
2754
3051
|
/**
|
|
2755
3052
|
* 조합형 길드 마크
|
|
2756
3053
|
*/
|
|
@@ -2760,7 +3057,7 @@ class GuildBasicDto {
|
|
|
2760
3057
|
*/
|
|
2761
3058
|
guildMarkCustom;
|
|
2762
3059
|
constructor(obj) {
|
|
2763
|
-
const { date, world_name, guild_name, guild_level, guild_fame, guild_point, guild_master_name, guild_member_count, guild_member, guild_skill,
|
|
3060
|
+
const { date, world_name, guild_name, guild_level, guild_fame, guild_point, guild_master_name, guild_member_count, guild_member, guild_skill, guild_noblesse_skill, guild_mark, guild_mark_custom, } = obj;
|
|
2764
3061
|
this.date = new Date(date);
|
|
2765
3062
|
this.worldName = world_name;
|
|
2766
3063
|
this.guildName = guild_name;
|
|
@@ -2771,7 +3068,7 @@ class GuildBasicDto {
|
|
|
2771
3068
|
this.guildMemberCount = guild_member_count;
|
|
2772
3069
|
this.guildMember = guild_member;
|
|
2773
3070
|
this.guildSkill = guild_skill.map((skill) => new GuildSkillDto(skill));
|
|
2774
|
-
this.
|
|
3071
|
+
this.guildNoblesseSkill = guild_noblesse_skill.map((skill) => new GuildSkillDto(skill));
|
|
2775
3072
|
this.guildMark = guild_mark;
|
|
2776
3073
|
this.guildMarkCustom = guild_mark_custom;
|
|
2777
3074
|
}
|
|
@@ -4833,4 +5130,4 @@ class MapleStoryApi {
|
|
|
4833
5130
|
}
|
|
4834
5131
|
}
|
|
4835
5132
|
|
|
4836
|
-
export { AchievementRankingDto, AchievementRankingResponseDto, CharacterAbilityDto, CharacterAbilityInfoDto, CharacterAndroidCashItemEquipmentColoringPrismDto, CharacterAndroidCashItemEquipmentDto, CharacterAndroidCashItemEquipmentOptionDto, CharacterAndroidEquipmentDto, CharacterAndroidEquipmentFaceDto, CharacterAndroidEquipmentHairDto, CharacterBasicDto, CharacterBeautyEquipmentDto, CharacterBeautyEquipmentFaceDto, CharacterBeautyEquipmentHairDto, CharacterCashItemEquipmentColoringPrismDto, CharacterCashItemEquipmentDto, CharacterCashItemEquipmentOptionDto, CharacterCashItemEquipmentPresetDto, CharacterDojangDto, CharacterDto, CharacterHexaMatrixDto, CharacterHexaMatrixEquipmentDto, CharacterHexaMatrixEquipmentLinkedSkillDto, CharacterHexaMatrixStatCoreDto, CharacterHexaMatrixStatDto, CharacterHyperStatDto, CharacterHyperStatPresetDto, CharacterItemEquipmentAddOptionDto, CharacterItemEquipmentBaseOptionDto, CharacterItemEquipmentDto, CharacterItemEquipmentEtcOptionDto, CharacterItemEquipmentExceptionalOptionDto, CharacterItemEquipmentInfoDto, CharacterItemEquipmentStarforceOptionDto, CharacterItemEquipmentTitleDto, CharacterItemEquipmentTotalOptionDto, CharacterLinkSkillDto, CharacterLinkSkillInfoDto, CharacterPetEquipmentAutoSkillDto, CharacterPetEquipmentDto, CharacterPetEquipmentItemDto, CharacterPetEquipmentItemOptionDto, CharacterPopularityDto, CharacterPropensityDto, CharacterSetEffectDto, CharacterSetEffectInfoDto, CharacterSetEffectOptionInfoDto, CharacterSkillDto, CharacterSkillInfoDto, CharacterStatDto, CharacterSymbolEquipmentDto, CharacterSymbolEquipmentInfoDto, CharacterVMatrixCodeEquipmentDto, CharacterVMatrixDto, CubeHistoryDto, CubeHistoryResponseDto, CubeResultOptionDto, DojangRankingDto, DojangRankingResponseDto, GuildBasicDto, GuildDto, GuildRankingDto, GuildRankingResponseDto, GuildSkillDto, InspectionInfoDto, MapleStoryApi, MapleStoryApiError, MapleStoryApiErrorCode, OverallRankingDto, OverallRankingResponseDto, PotentialOptionGrade, StarforceEventDto, StarforceHistoryDto, StarforceHistoryResponseDto, TheSeedRankingDto, TheSeedRankingResponseDto, UnionDto, UnionRaiderBlockControlPointDto, UnionRaiderBlockDto, UnionRaiderBlockPositionDto, UnionRaiderDto, UnionRaiderInnerStatDto, UnionRankingDto, UnionRankingResponseDto, potentialOptionGradeFromString };
|
|
5133
|
+
export { AchievementRankingDto, AchievementRankingResponseDto, CharacterAbilityDto, CharacterAbilityInfoDto, CharacterAndroidCashItemEquipmentColoringPrismDto, CharacterAndroidCashItemEquipmentDto, CharacterAndroidCashItemEquipmentOptionDto, CharacterAndroidEquipmentDto, CharacterAndroidEquipmentFaceDto, CharacterAndroidEquipmentHairDto, CharacterBasicDto, CharacterBeautyEquipmentDto, CharacterBeautyEquipmentFaceDto, CharacterBeautyEquipmentHairDto, CharacterCashItemEquipmentColoringPrismDto, CharacterCashItemEquipmentDto, CharacterCashItemEquipmentOptionDto, CharacterCashItemEquipmentPresetDto, CharacterDojangDto, CharacterDto, CharacterHexaMatrixDto, CharacterHexaMatrixEquipmentDto, CharacterHexaMatrixEquipmentLinkedSkillDto, CharacterHexaMatrixStatCoreDto, CharacterHexaMatrixStatDto, CharacterHyperStatDto, CharacterHyperStatPresetDto, CharacterItemEquipmentAddOptionDto, CharacterItemEquipmentBaseOptionDto, CharacterItemEquipmentDragonInfoDto, CharacterItemEquipmentDto, CharacterItemEquipmentEtcOptionDto, CharacterItemEquipmentExceptionalOptionDto, CharacterItemEquipmentInfoDto, CharacterItemEquipmentMechanicInfoDto, CharacterItemEquipmentStarforceOptionDto, CharacterItemEquipmentTitleDto, CharacterItemEquipmentTotalOptionDto, CharacterLinkSkillDto, CharacterLinkSkillInfoDto, CharacterPetEquipmentAutoSkillDto, CharacterPetEquipmentDto, CharacterPetEquipmentItemDto, CharacterPetEquipmentItemOptionDto, CharacterPopularityDto, CharacterPropensityDto, CharacterSetEffectDto, CharacterSetEffectInfoDto, CharacterSetEffectOptionInfoDto, CharacterSkillDto, CharacterSkillInfoDto, CharacterStatDto, CharacterSymbolEquipmentDto, CharacterSymbolEquipmentInfoDto, CharacterVMatrixCodeEquipmentDto, CharacterVMatrixDto, CubeHistoryDto, CubeHistoryResponseDto, CubeResultOptionDto, DojangRankingDto, DojangRankingResponseDto, GuildBasicDto, GuildDto, GuildRankingDto, GuildRankingResponseDto, GuildSkillDto, InspectionInfoDto, MapleStoryApi, MapleStoryApiError, MapleStoryApiErrorCode, OverallRankingDto, OverallRankingResponseDto, PotentialOptionGrade, StarforceEventDto, StarforceHistoryDto, StarforceHistoryResponseDto, TheSeedRankingDto, TheSeedRankingResponseDto, UnionDto, UnionRaiderBlockControlPointDto, UnionRaiderBlockDto, UnionRaiderBlockPositionDto, UnionRaiderDto, UnionRaiderInnerStatDto, UnionRankingDto, UnionRankingResponseDto, potentialOptionGradeFromString };
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -29,10 +29,12 @@ export * from './maplestory/api/dto/character/characterHyperStatDto';
|
|
|
29
29
|
export * from './maplestory/api/dto/character/characterHyperStatPresetDto';
|
|
30
30
|
export * from './maplestory/api/dto/character/characterItemEquipmentAddOptionDto';
|
|
31
31
|
export * from './maplestory/api/dto/character/characterItemEquipmentBaseOptionDto';
|
|
32
|
+
export * from './maplestory/api/dto/character/characterItemEquipmentDragonInfoDto';
|
|
32
33
|
export * from './maplestory/api/dto/character/characterItemEquipmentDto';
|
|
33
34
|
export * from './maplestory/api/dto/character/characterItemEquipmentEtcOptionDto';
|
|
34
35
|
export * from './maplestory/api/dto/character/characterItemEquipmentExceptionalOptionDto';
|
|
35
36
|
export * from './maplestory/api/dto/character/characterItemEquipmentInfoDto';
|
|
37
|
+
export * from './maplestory/api/dto/character/characterItemEquipmentMechanicInfoDto';
|
|
36
38
|
export * from './maplestory/api/dto/character/characterItemEquipmentStarforceOptionDto';
|
|
37
39
|
export * from './maplestory/api/dto/character/characterItemEquipmentTitleDto';
|
|
38
40
|
export * from './maplestory/api/dto/character/characterItemEquipmentTotalOptionDto';
|
|
@@ -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 CharacterItemEquipmentDragonInfoDto {
|
|
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 { CharacterItemEquipmentDragonInfoDto };
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { CharacterItemEquipmentInfoDto } from './characterItemEquipmentInfoDto';
|
|
2
2
|
import { CharacterItemEquipmentTitleDto } from './characterItemEquipmentTitleDto';
|
|
3
3
|
import { CharacterItemEquipmentDtoBody } from '../../response/character/characterItemEquipmentDtoBody';
|
|
4
|
+
import { CharacterItemEquipmentDragonInfoDto } from './characterItemEquipmentDragonInfoDto';
|
|
5
|
+
import { CharacterItemEquipmentMechanicInfoDto } from './characterItemEquipmentMechanicInfoDto';
|
|
4
6
|
/**
|
|
5
7
|
* 캐릭터 장비 아이템 정보
|
|
6
8
|
*/
|
|
@@ -24,15 +26,15 @@ declare class CharacterItemEquipmentDto {
|
|
|
24
26
|
/**
|
|
25
27
|
* 칭호 정보
|
|
26
28
|
*/
|
|
27
|
-
title: CharacterItemEquipmentTitleDto;
|
|
29
|
+
title: CharacterItemEquipmentTitleDto | null;
|
|
28
30
|
/**
|
|
29
31
|
* 에반 드래곤 장비 정보 (에반인 경우 응답)
|
|
30
32
|
*/
|
|
31
|
-
dragonEquipment
|
|
33
|
+
dragonEquipment: CharacterItemEquipmentDragonInfoDto[];
|
|
32
34
|
/**
|
|
33
35
|
* 메카닉 장비 정보 (메카닉인 경우 응답)
|
|
34
36
|
*/
|
|
35
|
-
mechanicEquipment
|
|
37
|
+
mechanicEquipment: CharacterItemEquipmentMechanicInfoDto[];
|
|
36
38
|
constructor(obj: CharacterItemEquipmentDtoBody);
|
|
37
39
|
}
|
|
38
40
|
export { CharacterItemEquipmentDto };
|
|
@@ -5,6 +5,9 @@ import { CharacterItemEquipmentExceptionalOptionDto } from './characterItemEquip
|
|
|
5
5
|
import { CharacterItemEquipmentStarforceOptionDto } from './characterItemEquipmentStarforceOptionDto';
|
|
6
6
|
import { CharacterItemEquipmentTotalOptionDto } from './characterItemEquipmentTotalOptionDto';
|
|
7
7
|
import { CharacterItemEquipmentInfoDtoBody } from '../../response/character/characterItemEquipmentDtoBody';
|
|
8
|
+
/**
|
|
9
|
+
* 캐릭터 장비 아이템 상세 정보
|
|
10
|
+
*/
|
|
8
11
|
declare class CharacterItemEquipmentInfoDto {
|
|
9
12
|
/**
|
|
10
13
|
* 장비 부위 명
|
|
@@ -13,7 +16,7 @@ declare class CharacterItemEquipmentInfoDto {
|
|
|
13
16
|
/**
|
|
14
17
|
* 장비 슬롯 위치
|
|
15
18
|
*/
|
|
16
|
-
|
|
19
|
+
itemEquipmentSlot: string;
|
|
17
20
|
/**
|
|
18
21
|
* 장비 명
|
|
19
22
|
*/
|