maplestory-openapi 2.3.1 → 2.4.0

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.
Files changed (35) hide show
  1. package/README.md +1 -1
  2. package/dist/index.js +1520 -622
  3. package/dist/index.min.js +1 -1
  4. package/dist/index.mjs +1511 -623
  5. package/package.json +1 -1
  6. package/types/index.d.ts +10 -0
  7. package/types/maplestory/api/dto/character/characterAbilityDto.d.ts +17 -0
  8. package/types/maplestory/api/dto/character/characterAbilityInfoDto.d.ts +9 -0
  9. package/types/maplestory/api/dto/character/characterAbilityPresetDto.d.ts +17 -0
  10. package/types/maplestory/api/dto/character/characterAndroidEquipmentDto.d.ts +33 -0
  11. package/types/maplestory/api/dto/character/characterAndroidEquipmentPresetDto.d.ts +58 -0
  12. package/types/maplestory/api/dto/character/characterCashItemEquipmentDto.d.ts +14 -6
  13. package/types/maplestory/api/dto/character/characterCashItemEquipmentPresetDto.d.ts +2 -2
  14. package/types/maplestory/api/dto/character/characterItemEquipmentDragonInfoDto.d.ts +126 -0
  15. package/types/maplestory/api/dto/character/characterItemEquipmentDto.d.ts +22 -4
  16. package/types/maplestory/api/dto/character/characterItemEquipmentInfoDto.d.ts +4 -1
  17. package/types/maplestory/api/dto/character/characterItemEquipmentMechanicInfoDto.d.ts +126 -0
  18. package/types/maplestory/api/dto/character/characterLinkSkillDto.d.ts +25 -1
  19. package/types/maplestory/api/dto/character/characterPetEquipmentDto.d.ts +51 -21
  20. package/types/maplestory/api/dto/character/characterPetEquipmentItemDto.d.ts +9 -1
  21. package/types/maplestory/api/dto/history/potentialHistoryDto.d.ts +82 -0
  22. package/types/maplestory/api/dto/history/potentialHistoryResponseDto.d.ts +21 -0
  23. package/types/maplestory/api/dto/history/potentialResultOptionDto.d.ts +18 -0
  24. package/types/maplestory/api/dto/union/unionArtifactCrystalDto.d.ts +36 -0
  25. package/types/maplestory/api/dto/union/unionArtifactDto.d.ts +26 -0
  26. package/types/maplestory/api/dto/union/unionArtifactEffectDto.d.ts +16 -0
  27. package/types/maplestory/api/mapleStoryApi.d.ts +49 -8
  28. package/types/maplestory/api/response/character/characterAbilityDtoBody.d.ts +9 -1
  29. package/types/maplestory/api/response/character/characterAndroidEquipmentDtoBody.d.ts +23 -1
  30. package/types/maplestory/api/response/character/characterCashItemEquipmentDtoBody.d.ts +3 -1
  31. package/types/maplestory/api/response/character/characterItemEquipmentDtoBody.d.ts +40 -5
  32. package/types/maplestory/api/response/character/characterLinkSkillDtoBody.d.ts +7 -1
  33. package/types/maplestory/api/response/character/characterPetEquipmentDtoBody.d.ts +30 -22
  34. package/types/maplestory/api/response/history/potentialHistoryResponseDtoBody.d.ts +29 -0
  35. package/types/maplestory/api/response/union/unionArtifactDtoBody.d.ts +20 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "maplestory-openapi",
3
- "version": "2.3.1",
3
+ "version": "2.4.0",
4
4
  "description": "This JavaScript library enables the use of the MapleStory OpenAPI of Nexon.",
5
5
  "keywords": [
6
6
  "maplestory",
package/types/index.d.ts CHANGED
@@ -4,12 +4,14 @@ export * from './maplestory/api/dto/ranking/achievementRankingDto';
4
4
  export * from './maplestory/api/dto/ranking/achievementRankingResponseDto';
5
5
  export * from './maplestory/api/dto/character/characterAbilityDto';
6
6
  export * from './maplestory/api/dto/character/characterAbilityInfoDto';
7
+ export * from './maplestory/api/dto/character/characterAbilityPresetDto';
7
8
  export * from './maplestory/api/dto/character/characterAndroidCashItemEquipmentColoringPrismDto';
8
9
  export * from './maplestory/api/dto/character/characterAndroidCashItemEquipmentDto';
9
10
  export * from './maplestory/api/dto/character/characterAndroidCashItemEquipmentOptionDto';
10
11
  export * from './maplestory/api/dto/character/characterAndroidEquipmentDto';
11
12
  export * from './maplestory/api/dto/character/characterAndroidEquipmentFaceDto';
12
13
  export * from './maplestory/api/dto/character/characterAndroidEquipmentHairDto';
14
+ export * from './maplestory/api/dto/character/characterAndroidEquipmentPresetDto';
13
15
  export * from './maplestory/api/dto/character/characterBasicDto';
14
16
  export * from './maplestory/api/dto/character/characterBeautyEquipmentDto';
15
17
  export * from './maplestory/api/dto/character/characterBeautyEquipmentFaceDto';
@@ -29,10 +31,12 @@ export * from './maplestory/api/dto/character/characterHyperStatDto';
29
31
  export * from './maplestory/api/dto/character/characterHyperStatPresetDto';
30
32
  export * from './maplestory/api/dto/character/characterItemEquipmentAddOptionDto';
31
33
  export * from './maplestory/api/dto/character/characterItemEquipmentBaseOptionDto';
34
+ export * from './maplestory/api/dto/character/characterItemEquipmentDragonInfoDto';
32
35
  export * from './maplestory/api/dto/character/characterItemEquipmentDto';
33
36
  export * from './maplestory/api/dto/character/characterItemEquipmentEtcOptionDto';
34
37
  export * from './maplestory/api/dto/character/characterItemEquipmentExceptionalOptionDto';
35
38
  export * from './maplestory/api/dto/character/characterItemEquipmentInfoDto';
39
+ export * from './maplestory/api/dto/character/characterItemEquipmentMechanicInfoDto';
36
40
  export * from './maplestory/api/dto/character/characterItemEquipmentStarforceOptionDto';
37
41
  export * from './maplestory/api/dto/character/characterItemEquipmentTitleDto';
38
42
  export * from './maplestory/api/dto/character/characterItemEquipmentTotalOptionDto';
@@ -57,6 +61,9 @@ export * from './maplestory/api/dto/character/characterVMatrixDto';
57
61
  export * from './maplestory/api/dto/history/cubeHistoryDto';
58
62
  export * from './maplestory/api/dto/history/cubeHistoryResponseDto';
59
63
  export * from './maplestory/api/dto/history/cubeResultOptionDto';
64
+ export * from './maplestory/api/dto/history/potentialHistoryDto';
65
+ export * from './maplestory/api/dto/history/potentialHistoryResponseDto';
66
+ export * from './maplestory/api/dto/history/potentialResultOptionDto';
60
67
  export * from './maplestory/api/dto/ranking/dojangRankingDto';
61
68
  export * from './maplestory/api/dto/ranking/dojangRankingResponseDto';
62
69
  export * from './maplestory/api/dto/guild/guildBasicDto';
@@ -75,6 +82,9 @@ export * from './maplestory/api/dto/history/starforceHistoryDto';
75
82
  export * from './maplestory/api/dto/history/starforceHistoryResponseDto';
76
83
  export * from './maplestory/api/dto/ranking/theSeedRankingDto';
77
84
  export * from './maplestory/api/dto/ranking/theSeedRankingResponseDto';
85
+ export * from './maplestory/api/dto/union/unionArtifactCrystalDto';
86
+ export * from './maplestory/api/dto/union/unionArtifactDto';
87
+ export * from './maplestory/api/dto/union/unionArtifactEffectDto';
78
88
  export * from './maplestory/api/dto/union/unionDto';
79
89
  export * from './maplestory/api/dto/union/unionRaiderBlockDto';
80
90
  export * from './maplestory/api/dto/union/unionRaiderBlockPositionDto';
@@ -1,4 +1,5 @@
1
1
  import { CharacterAbilityInfoDto } from './characterAbilityInfoDto';
2
+ import { CharacterAbilityPresetDto } from './characterAbilityPresetDto';
2
3
  import { CharacterAbilityDtoBody } from '../../response/character/characterAbilityDtoBody';
3
4
  /**
4
5
  * 캐릭터 어빌리티 정보
@@ -20,6 +21,22 @@ declare class CharacterAbilityDto {
20
21
  * 보유 명성치
21
22
  */
22
23
  remainFame: number;
24
+ /**
25
+ * 적용 중인 어빌리티 프리셋 번호
26
+ */
27
+ presetNo: number | null;
28
+ /**
29
+ * 어빌리티 1번 프리셋 전체 정보
30
+ */
31
+ abilityPreset1: CharacterAbilityPresetDto | null;
32
+ /**
33
+ * 어빌리티 2번 프리셋 전체 정보
34
+ */
35
+ abilityPreset2: CharacterAbilityPresetDto | null;
36
+ /**
37
+ * 어빌리티 3번 프리셋 전체 정보
38
+ */
39
+ abilityPreset3: CharacterAbilityPresetDto | null;
23
40
  constructor(obj: CharacterAbilityDtoBody);
24
41
  }
25
42
  export { CharacterAbilityDto };
@@ -3,8 +3,17 @@ import { CharacterAbilityInfoDtoBody } from '../../response/character/characterA
3
3
  * 캐릭터 어빌리티 상세 정보
4
4
  */
5
5
  declare class CharacterAbilityInfoDto {
6
+ /**
7
+ * 어빌리티 번호
8
+ */
6
9
  abilityNo: string;
10
+ /**
11
+ * 어빌리티 등급
12
+ */
7
13
  abilityGrade: string;
14
+ /**
15
+ * 어빌리티 옵션 및 수치
16
+ */
8
17
  abilityValue: string;
9
18
  constructor(obj: CharacterAbilityInfoDtoBody);
10
19
  }
@@ -0,0 +1,17 @@
1
+ import { CharacterAbilityInfoDto } from './characterAbilityInfoDto';
2
+ import { CharacterAbilityPresetDtoBody } from '../../response/character/characterAbilityDtoBody';
3
+ /**
4
+ * 캐릭터 어빌리티 프리셋 정보
5
+ */
6
+ declare class CharacterAbilityPresetDto {
7
+ /**
8
+ * 프리셋의 어빌리티 등급
9
+ */
10
+ abilityPresetGrade: string;
11
+ /**
12
+ * 프리셋의 어빌리티 정보
13
+ */
14
+ abilityInfo: CharacterAbilityInfoDto[];
15
+ constructor(obj: CharacterAbilityPresetDtoBody);
16
+ }
17
+ export { CharacterAbilityPresetDto };
@@ -2,6 +2,7 @@ import { CharacterAndroidCashItemEquipmentDto } from './characterAndroidCashItem
2
2
  import { CharacterAndroidEquipmentFaceDto } from './characterAndroidEquipmentFaceDto';
3
3
  import { CharacterAndroidEquipmentHairDto } from './characterAndroidEquipmentHairDto';
4
4
  import { CharacterAndroidEquipmentDtoBody } from '../../response/character/characterAndroidEquipmentDtoBody';
5
+ import { CharacterAndroidEquipmentPresetDto } from './characterAndroidEquipmentPresetDto';
5
6
  /**
6
7
  * 캐릭터 안드로이드 장비 정보
7
8
  */
@@ -46,6 +47,38 @@ declare class CharacterAndroidEquipmentDto {
46
47
  * 안드로이드 이어센서 클립 적용 여부
47
48
  */
48
49
  androidEarSensorClipFlag: string | null;
50
+ /**
51
+ * 안드로이드 성별
52
+ */
53
+ androidGender: string | null;
54
+ /**
55
+ * 안드로이드 등급
56
+ */
57
+ androidGrade: string | null;
58
+ /**
59
+ * 비인간형 안드로이드 여부
60
+ */
61
+ androidNonHumanoidFlag: string | null;
62
+ /**
63
+ * 잡화상점 기능 이용 가능 여부
64
+ */
65
+ androidShopUsableFlag: string | null;
66
+ /**
67
+ * 적용 중인 장비 프리셋 번호
68
+ */
69
+ presetNo: number | null;
70
+ /**
71
+ * 1번 프리셋 안드로이드 정보
72
+ */
73
+ androidPreset1: CharacterAndroidEquipmentPresetDto | null;
74
+ /**
75
+ * 2번 프리셋 안드로이드 정보
76
+ */
77
+ androidPreset2: CharacterAndroidEquipmentPresetDto | null;
78
+ /**
79
+ * 3번 프리셋 안드로이드 정보
80
+ */
81
+ androidPreset3: CharacterAndroidEquipmentPresetDto | null;
49
82
  constructor(obj: CharacterAndroidEquipmentDtoBody);
50
83
  }
51
84
  export { CharacterAndroidEquipmentDto };
@@ -0,0 +1,58 @@
1
+ import { CharacterAndroidEquipmentPresetDtoBody } from '../../response/character/characterAndroidEquipmentDtoBody';
2
+ import { CharacterAndroidEquipmentHairDto } from './characterAndroidEquipmentHairDto';
3
+ import { CharacterAndroidEquipmentFaceDto } from './characterAndroidEquipmentFaceDto';
4
+ /**
5
+ * 캐릭터 안드로이드 프리셋 정보
6
+ */
7
+ declare class CharacterAndroidEquipmentPresetDto {
8
+ /**
9
+ * 안드로이드 명
10
+ */
11
+ androidName: string;
12
+ /**
13
+ * 안드로이드 닉네임
14
+ */
15
+ androidNickname: string;
16
+ /**
17
+ * 안드로이드 아이콘
18
+ */
19
+ androidIcon: string;
20
+ /**
21
+ * 안드로이드 아이템 설명
22
+ */
23
+ androidDescription: string;
24
+ /**
25
+ * 안드로이드 성별
26
+ */
27
+ androidGender: string | null;
28
+ /**
29
+ * 안드로이드 등급
30
+ */
31
+ androidGrade: string;
32
+ /**
33
+ * 안드로이드 피부 명
34
+ */
35
+ androidSkinName: string;
36
+ /**
37
+ * 안드로이드 헤어 정보
38
+ */
39
+ androidHair: CharacterAndroidEquipmentHairDto;
40
+ /**
41
+ * 안드로이드 성형 정보
42
+ */
43
+ androidFace: CharacterAndroidEquipmentFaceDto;
44
+ /**
45
+ * 안드로이드 이어센서 클립 적용 여부
46
+ */
47
+ androidEarSensorClipFlag: string;
48
+ /**
49
+ * 비인간형 안드로이드 여부
50
+ */
51
+ androidNonHumanoidFlag: string;
52
+ /**
53
+ * 잡화상점 기능 이용 가능 여부
54
+ */
55
+ androidShopUsableFlag: string;
56
+ constructor(obj: CharacterAndroidEquipmentPresetDtoBody);
57
+ }
58
+ export { CharacterAndroidEquipmentPresetDto };
@@ -21,27 +21,35 @@ declare class CharacterCashItemEquipmentDto {
21
21
  */
22
22
  presetNo: number;
23
23
  /**
24
- * 1번 프리셋 장착 캐시 장비 정보
24
+ * 장착 중인 캐시 장비
25
+ */
26
+ cashItemEquipmentBase: CharacterCashItemEquipmentPresetDto[];
27
+ /**
28
+ * 1번 코디 프리셋
25
29
  */
26
30
  cashItemEquipmentPreset1: CharacterCashItemEquipmentPresetDto[];
27
31
  /**
28
- * 2번 프리셋 장착 캐시 장비 정보
32
+ * 2번 코디 프리셋
29
33
  */
30
34
  cashItemEquipmentPreset2: CharacterCashItemEquipmentPresetDto[];
31
35
  /**
32
- * 3번 프리셋 장착 캐시 장비 정보
36
+ * 3번 코디 프리셋
33
37
  */
34
38
  cashItemEquipmentPreset3: CharacterCashItemEquipmentPresetDto[];
35
39
  /**
36
- * 제로인 경우 베타, 엔젤릭버스터인 경우 드레스 업 모드의 1번 프리셋 장착 캐시 장비 정보
40
+ * 제로인 경우 베타, 엔젤릭버스터인 경우 드레스 업 모드에서 장착 중인 캐시 장비
41
+ */
42
+ additionalCashItemEquipmentBase: CharacterCashItemEquipmentPresetDto[];
43
+ /**
44
+ * 제로인 경우 베타, 엔젤릭버스터인 경우 드레스 업 모드의 1번 코디 프리셋
37
45
  */
38
46
  additionalCashItemEquipmentPreset1: CharacterCashItemEquipmentPresetDto[];
39
47
  /**
40
- * 제로인 경우 베타, 엔젤릭버스터인 경우 드레스 업 모드의 2번 프리셋 장착 캐시 장비 정보
48
+ * 제로인 경우 베타, 엔젤릭버스터인 경우 드레스 업 모드의 2번 코디 프리셋
41
49
  */
42
50
  additionalCashItemEquipmentPreset2: CharacterCashItemEquipmentPresetDto[];
43
51
  /**
44
- * 제로인 경우 베타, 엔젤릭버스터인 경우 드레스 업 모드의 3번 프리셋 장착 캐시 장비 정보
52
+ * 제로인 경우 베타, 엔젤릭버스터인 경우 드레스 업 모드의 3번 코디 프리셋
45
53
  */
46
54
  additionalCashItemEquipmentPreset3: CharacterCashItemEquipmentPresetDto[];
47
55
  constructor(obj: CharacterCashItemEquipmentDtoBody);
@@ -46,9 +46,9 @@ declare class CharacterCashItemEquipmentPresetDto {
46
46
  */
47
47
  cashItemColoringPrism: CharacterCashItemEquipmentColoringPrismDto | null;
48
48
  /**
49
- * 다른 프리셋에서 장비 추가 장착 없이 1번 프리셋의 장비 공유를 비활성화 했는지 여부
49
+ * 아이템 장착 가능 성별
50
50
  */
51
- basePresetItemDisableFlag: string;
51
+ itemGender: string | null;
52
52
  constructor(obj: CharacterCashItemEquipmentPresetDtoBody);
53
53
  }
54
54
  export { CharacterCashItemEquipmentPresetDto };
@@ -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
  */
@@ -18,21 +20,37 @@ declare class CharacterItemEquipmentDto {
18
20
  */
19
21
  characterClass: string;
20
22
  /**
21
- * 장비 정보 배열
23
+ * 적용 중인 장비 프리셋 번호
24
+ */
25
+ presetNo: number | null;
26
+ /**
27
+ * 장비 정보
22
28
  */
23
29
  itemEquipment: CharacterItemEquipmentInfoDto[];
30
+ /**
31
+ * 1번 프리셋 장비 정보
32
+ */
33
+ itemEquipmentPreset1: CharacterItemEquipmentInfoDto[] | null;
34
+ /**
35
+ * 2번 프리셋 장비 정보
36
+ */
37
+ itemEquipmentPreset2: CharacterItemEquipmentInfoDto[] | null;
38
+ /**
39
+ * 3번 프리셋 장비 정보
40
+ */
41
+ itemEquipmentPreset3: CharacterItemEquipmentInfoDto[] | null;
24
42
  /**
25
43
  * 칭호 정보
26
44
  */
27
- title: CharacterItemEquipmentTitleDto;
45
+ title: CharacterItemEquipmentTitleDto | null;
28
46
  /**
29
47
  * 에반 드래곤 장비 정보 (에반인 경우 응답)
30
48
  */
31
- dragonEquipment?: CharacterItemEquipmentInfoDto[];
49
+ dragonEquipment: CharacterItemEquipmentDragonInfoDto[];
32
50
  /**
33
51
  * 메카닉 장비 정보 (메카닉인 경우 응답)
34
52
  */
35
- mechanicEquipment?: CharacterItemEquipmentInfoDto[];
53
+ mechanicEquipment: CharacterItemEquipmentMechanicInfoDto[];
36
54
  constructor(obj: CharacterItemEquipmentDtoBody);
37
55
  }
38
56
  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
- equipmentSlot: string;
19
+ itemEquipmentSlot: string;
17
20
  /**
18
21
  * 장비 명
19
22
  */
@@ -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 };
@@ -15,11 +15,35 @@ declare class CharacterLinkSkillDto {
15
15
  /**
16
16
  * 링크 스킬 정보
17
17
  */
18
- characterLinkSkill: CharacterLinkSkillInfoDto;
18
+ characterLinkSkill: CharacterLinkSkillInfoDto[];
19
+ /**
20
+ * 링크 스킬 1번 프리셋 정보
21
+ */
22
+ characterLinkSkillPreset1: CharacterLinkSkillInfoDto[];
23
+ /**
24
+ * 링크 스킬 2번 프리셋 정보
25
+ */
26
+ characterLinkSkillPreset2: CharacterLinkSkillInfoDto[];
27
+ /**
28
+ * 링크 스킬 3번 프리셋 정보
29
+ */
30
+ characterLinkSkillPreset3: CharacterLinkSkillInfoDto[];
19
31
  /**
20
32
  * 내 링크 스킬 정보
21
33
  */
22
34
  characterOwnedLinkSkill: CharacterLinkSkillInfoDto;
35
+ /**
36
+ * 내 링크 스킬 1번 프리셋 정보
37
+ */
38
+ characterOwnedLinkSkillPreset1: CharacterLinkSkillInfoDto | null;
39
+ /**
40
+ * 내 링크 스킬 2번 프리셋 정보
41
+ */
42
+ characterOwnedLinkSkillPreset2: CharacterLinkSkillInfoDto | null;
43
+ /**
44
+ * 내 링크 스킬 3번 프리셋 정보
45
+ */
46
+ characterOwnedLinkSkillPreset3: CharacterLinkSkillInfoDto | null;
23
47
  constructor(obj: CharacterLinkSkillDtoBody);
24
48
  }
25
49
  export { CharacterLinkSkillDto };