maplestory-openapi 2.4.1 → 2.7.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 +51 -41
- package/dist/index.js +1158 -393
- package/dist/index.min.js +1 -1
- package/dist/index.mjs +1141 -393
- package/package.json +6 -4
- package/types/index.d.ts +18 -3
- package/types/maplestory/api/dto/character/characterAbilityDto.d.ts +1 -1
- package/types/maplestory/api/dto/character/characterAndroidEquipmentDto.d.ts +4 -3
- package/types/maplestory/api/dto/character/characterAndroidEquipmentPresetDto.d.ts +5 -4
- package/types/maplestory/api/dto/character/characterAndroidEquipmentSkinDto.d.ts +28 -0
- package/types/maplestory/api/dto/character/characterBasicDto.d.ts +21 -1
- package/types/maplestory/api/dto/character/characterBeautyEquipmentDto.d.ts +6 -5
- package/types/maplestory/api/dto/character/characterBeautyEquipmentSkinDto.d.ts +28 -0
- package/types/maplestory/api/dto/character/characterCashItemEquipmentDto.d.ts +1 -1
- package/types/maplestory/api/dto/character/characterDojangDto.d.ts +1 -1
- package/types/maplestory/api/dto/character/characterHexaMatrixDto.d.ts +1 -1
- package/types/maplestory/api/dto/character/characterHexaMatrixStatDto.d.ts +11 -3
- package/types/maplestory/api/dto/character/characterHyperStatDto.d.ts +1 -1
- package/types/maplestory/api/dto/character/characterItemEquipmentDto.d.ts +1 -1
- package/types/maplestory/api/dto/character/characterItemEquipmentExceptionalOptionDto.d.ts +4 -0
- package/types/maplestory/api/dto/character/characterLinkSkillDto.d.ts +1 -1
- package/types/maplestory/api/dto/character/characterLinkSkillInfoDto.d.ts +4 -0
- package/types/maplestory/api/dto/character/characterListAccountCharacterDto.d.ts +28 -0
- package/types/maplestory/api/dto/character/characterListAccountDto.d.ts +17 -0
- package/types/maplestory/api/dto/character/characterListDto.d.ts +13 -0
- package/types/maplestory/api/dto/character/characterPetEquipmentDto.d.ts +1 -1
- package/types/maplestory/api/dto/character/characterPopularityDto.d.ts +1 -1
- package/types/maplestory/api/dto/character/characterPropensityDto.d.ts +1 -1
- package/types/maplestory/api/dto/character/characterSetEffectDto.d.ts +3 -3
- package/types/maplestory/api/dto/character/characterSetEffectInfoDto.d.ts +5 -10
- package/types/maplestory/api/dto/character/characterSetEffectOptionFullDto.d.ts +16 -0
- package/types/maplestory/api/dto/character/characterSetEffectSetDto.d.ts +26 -0
- package/types/maplestory/api/dto/character/characterSkillDto.d.ts +1 -1
- package/types/maplestory/api/dto/character/characterSkillInfoDto.d.ts +4 -0
- package/types/maplestory/api/dto/character/characterStatDto.d.ts +1 -1
- package/types/maplestory/api/dto/character/characterSymbolEquipmentDto.d.ts +1 -1
- package/types/maplestory/api/dto/character/characterVMatrixCoreEquipmentDto.d.ts +2 -2
- package/types/maplestory/api/dto/character/characterVMatrixDto.d.ts +1 -1
- package/types/maplestory/api/dto/guild/guildBasicDto.d.ts +1 -9
- package/types/maplestory/api/dto/history/starforceHistoryDto.d.ts +1 -1
- package/types/maplestory/api/dto/notice/cashshopNoticeDetailDto.d.ts +40 -0
- package/types/maplestory/api/dto/notice/cashshopNoticeListDto.d.ts +13 -0
- package/types/maplestory/api/dto/notice/cashshopNoticeListItemDto.d.ts +40 -0
- package/types/maplestory/api/dto/notice/eventNoticeDetailDto.d.ts +32 -0
- package/types/maplestory/api/dto/notice/eventNoticeListDto.d.ts +13 -0
- package/types/maplestory/api/dto/notice/eventNoticeListItemDto.d.ts +32 -0
- package/types/maplestory/api/dto/notice/noticeDetailDto.d.ts +24 -0
- package/types/maplestory/api/dto/notice/noticeListDto.d.ts +13 -0
- package/types/maplestory/api/dto/notice/noticeListItemDto.d.ts +24 -0
- package/types/maplestory/api/dto/notice/updateNoticeDetailDto.d.ts +24 -0
- package/types/maplestory/api/dto/notice/updateNoticeListDto.d.ts +13 -0
- package/types/maplestory/api/dto/notice/updateNoticeListItemDto.d.ts +24 -0
- package/types/maplestory/api/dto/union/unionArtifactDto.d.ts +1 -1
- package/types/maplestory/api/dto/union/unionDto.d.ts +1 -1
- package/types/maplestory/api/dto/union/unionRaiderDto.d.ts +26 -1
- package/types/maplestory/api/dto/union/unionRaiderPresetDto.d.ts +26 -0
- package/types/maplestory/api/mapleStoryApi.d.ts +126 -25
- package/types/maplestory/api/mapleStoryApiError.d.ts +2 -1
- package/types/maplestory/api/response/character/characterAbilityDtoBody.d.ts +1 -1
- package/types/maplestory/api/response/character/characterAndroidEquipmentDtoBody.d.ts +11 -4
- package/types/maplestory/api/response/character/characterBasicDtoBody.d.ts +4 -1
- package/types/maplestory/api/response/character/characterBeautyEquipmentDtoBody.d.ts +11 -4
- package/types/maplestory/api/response/character/characterCashItemEquipmentDtoBody.d.ts +1 -1
- package/types/maplestory/api/response/character/characterDojangDtoBody.d.ts +1 -1
- package/types/maplestory/api/response/character/characterHexaMatrixDtoBody.d.ts +1 -1
- package/types/maplestory/api/response/character/characterHexaMatrixStatDtoBody.d.ts +3 -1
- package/types/maplestory/api/response/character/characterHyperStatDtoBody.d.ts +1 -1
- package/types/maplestory/api/response/character/characterItemEquipmentDtoBody.d.ts +3 -2
- package/types/maplestory/api/response/character/characterLinkSkillDtoBody.d.ts +2 -1
- package/types/maplestory/api/response/character/characterListDtoBody.d.ts +15 -0
- package/types/maplestory/api/response/character/characterPetEquipmentDtoBody.d.ts +1 -1
- package/types/maplestory/api/response/character/characterPopularityDtoBody.d.ts +1 -1
- package/types/maplestory/api/response/character/characterPropensityDtoBody.d.ts +1 -1
- package/types/maplestory/api/response/character/characterSetEffectDtoBody.d.ts +11 -6
- package/types/maplestory/api/response/character/characterSkillDtoBody.d.ts +2 -1
- package/types/maplestory/api/response/character/characterStatDtoBody.d.ts +1 -1
- package/types/maplestory/api/response/character/characterSymbolEquipmentDtoBody.d.ts +1 -1
- package/types/maplestory/api/response/character/characterVMatrixDtoBody.d.ts +3 -3
- package/types/maplestory/api/response/guild/guildBasicDtoBody.d.ts +1 -3
- package/types/maplestory/api/response/history/cubeHistoryDtoBody.d.ts +1 -1
- package/types/maplestory/api/response/history/cubeHistoryResponseDtoBody.d.ts +1 -1
- package/types/maplestory/api/response/history/starforceHistoryDtoBody.d.ts +2 -2
- package/types/maplestory/api/response/history/starforceHistoryResponseDtoBody.d.ts +1 -1
- package/types/maplestory/api/response/notice/cashshopNoticeDetailDtoBody.d.ts +10 -0
- package/types/maplestory/api/response/notice/cashshopNoticeListDtoBody.d.ts +13 -0
- package/types/maplestory/api/response/notice/eventNoticeDetailDtoBody.d.ts +9 -0
- package/types/maplestory/api/response/notice/eventNoticeListDtoBody.d.ts +12 -0
- package/types/maplestory/api/response/notice/noticeDetailDtoBody.d.ts +7 -0
- package/types/maplestory/api/response/notice/noticeListDtoBody.d.ts +10 -0
- package/types/maplestory/api/response/notice/updateNoticeDetailDtoBody.d.ts +7 -0
- package/types/maplestory/api/response/notice/updateNoticeListDtoBody.d.ts +10 -0
- package/types/maplestory/api/response/ranking/theSeedRankingResponseDtoBody.d.ts +2 -3
- package/types/maplestory/api/response/union/unionArtifactDtoBody.d.ts +1 -1
- package/types/maplestory/api/response/union/unionDtoBody.d.ts +1 -1
- package/types/maplestory/api/response/union/unionRaiderDtoBody.d.ts +14 -2
- package/types/maplestory/api/dto/character/characterSetEffectOptionInfoDto.d.ts +0 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "maplestory-openapi",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.2",
|
|
4
4
|
"description": "This JavaScript library enables the use of the MapleStory OpenAPI of Nexon.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"maplestory",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"lint": "eslint ./src/** --fix",
|
|
43
43
|
"format": "prettier --write ./**/*.{ts,js}",
|
|
44
44
|
"prepublishOnly": "npm run build",
|
|
45
|
-
"test": "
|
|
45
|
+
"test": "jest",
|
|
46
46
|
"ts_sample": "ts-node sample/ts_sample.ts",
|
|
47
47
|
"types": "tsc --noEmit"
|
|
48
48
|
},
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@rollup/plugin-commonjs": "^21.1.0",
|
|
56
56
|
"@rollup/plugin-node-resolve": "13.1.3",
|
|
57
|
+
"@types/jest": "^29.5.12",
|
|
57
58
|
"@types/xml2js": "^0.4.14",
|
|
58
59
|
"@typescript-eslint/eslint-plugin": "^6.15.0",
|
|
59
60
|
"@typescript-eslint/parser": "^6.15.0",
|
|
@@ -67,10 +68,11 @@
|
|
|
67
68
|
"rollup": "2.66.1",
|
|
68
69
|
"rollup-plugin-terser": "7.0.2",
|
|
69
70
|
"rollup-plugin-typescript2": "0.27.1",
|
|
71
|
+
"jest": "^29.7.0",
|
|
72
|
+
"ts-jest": "^29.1.4",
|
|
70
73
|
"ts-node": "^10.9.1",
|
|
71
74
|
"tsm": "2.2.1",
|
|
72
|
-
"typescript": "^5.2.2"
|
|
73
|
-
"uvu": "0.5.3"
|
|
75
|
+
"typescript": "^5.2.2"
|
|
74
76
|
},
|
|
75
77
|
"engines": {
|
|
76
78
|
"node": ">=12"
|
package/types/index.d.ts
CHANGED
|
@@ -42,6 +42,9 @@ export * from './maplestory/api/dto/character/characterItemEquipmentTitleDto';
|
|
|
42
42
|
export * from './maplestory/api/dto/character/characterItemEquipmentTotalOptionDto';
|
|
43
43
|
export * from './maplestory/api/dto/character/characterLinkSkillDto';
|
|
44
44
|
export * from './maplestory/api/dto/character/characterLinkSkillInfoDto';
|
|
45
|
+
export * from './maplestory/api/dto/character/characterListAccountCharacterDto';
|
|
46
|
+
export * from './maplestory/api/dto/character/characterListAccountDto';
|
|
47
|
+
export * from './maplestory/api/dto/character/characterListDto';
|
|
45
48
|
export * from './maplestory/api/dto/character/characterPetEquipmentAutoSkillDto';
|
|
46
49
|
export * from './maplestory/api/dto/character/characterPetEquipmentDto';
|
|
47
50
|
export * from './maplestory/api/dto/character/characterPetEquipmentItemDto';
|
|
@@ -49,8 +52,9 @@ export * from './maplestory/api/dto/character/characterPetEquipmentItemOptionDto
|
|
|
49
52
|
export * from './maplestory/api/dto/character/characterPopularityDto';
|
|
50
53
|
export * from './maplestory/api/dto/character/characterPropensityDto';
|
|
51
54
|
export * from './maplestory/api/dto/character/characterSetEffectDto';
|
|
55
|
+
export * from './maplestory/api/dto/character/characterSetEffectSetDto';
|
|
52
56
|
export * from './maplestory/api/dto/character/characterSetEffectInfoDto';
|
|
53
|
-
export * from './maplestory/api/dto/character/
|
|
57
|
+
export * from './maplestory/api/dto/character/characterSetEffectOptionFullDto';
|
|
54
58
|
export * from './maplestory/api/dto/character/characterSkillDto';
|
|
55
59
|
export * from './maplestory/api/dto/character/characterSkillInfoDto';
|
|
56
60
|
export * from './maplestory/api/dto/character/characterStatDto';
|
|
@@ -66,8 +70,6 @@ export * from './maplestory/api/dto/history/potentialHistoryResponseDto';
|
|
|
66
70
|
export * from './maplestory/api/dto/history/potentialResultOptionDto';
|
|
67
71
|
export * from './maplestory/api/dto/ranking/dojangRankingDto';
|
|
68
72
|
export * from './maplestory/api/dto/ranking/dojangRankingResponseDto';
|
|
69
|
-
export * from './maplestory/api/dto/guild/guildBasicDto';
|
|
70
|
-
export * from './maplestory/api/dto/guild/guildDto';
|
|
71
73
|
export * from './maplestory/api/dto/ranking/guildRankingDto';
|
|
72
74
|
export * from './maplestory/api/dto/ranking/guildRankingResponseDto';
|
|
73
75
|
export * from './maplestory/api/dto/guild/guildBasicDto';
|
|
@@ -80,6 +82,18 @@ export * from './maplestory/api/dto/potentialOptionGrade';
|
|
|
80
82
|
export * from './maplestory/api/dto/history/starforceEventDto';
|
|
81
83
|
export * from './maplestory/api/dto/history/starforceHistoryDto';
|
|
82
84
|
export * from './maplestory/api/dto/history/starforceHistoryResponseDto';
|
|
85
|
+
export * from './maplestory/api/dto/notice/cashshopNoticeDetailDto';
|
|
86
|
+
export * from './maplestory/api/dto/notice/cashshopNoticeListDto';
|
|
87
|
+
export * from './maplestory/api/dto/notice/cashshopNoticeListItemDto';
|
|
88
|
+
export * from './maplestory/api/dto/notice/eventNoticeDetailDto';
|
|
89
|
+
export * from './maplestory/api/dto/notice/eventNoticeListDto';
|
|
90
|
+
export * from './maplestory/api/dto/notice/eventNoticeListItemDto';
|
|
91
|
+
export * from './maplestory/api/dto/notice/noticeDetailDto';
|
|
92
|
+
export * from './maplestory/api/dto/notice/noticeListDto';
|
|
93
|
+
export * from './maplestory/api/dto/notice/noticeListItemDto';
|
|
94
|
+
export * from './maplestory/api/dto/notice/updateNoticeDetailDto';
|
|
95
|
+
export * from './maplestory/api/dto/notice/updateNoticeListDto';
|
|
96
|
+
export * from './maplestory/api/dto/notice/updateNoticeListItemDto';
|
|
83
97
|
export * from './maplestory/api/dto/ranking/theSeedRankingDto';
|
|
84
98
|
export * from './maplestory/api/dto/ranking/theSeedRankingResponseDto';
|
|
85
99
|
export * from './maplestory/api/dto/union/unionArtifactCrystalDto';
|
|
@@ -91,5 +105,6 @@ export * from './maplestory/api/dto/union/unionRaiderBlockPositionDto';
|
|
|
91
105
|
export * from './maplestory/api/dto/union/unionRaiderControlPointDto';
|
|
92
106
|
export * from './maplestory/api/dto/union/unionRaiderDto';
|
|
93
107
|
export * from './maplestory/api/dto/union/unionRaiderInnerStatDto';
|
|
108
|
+
export * from './maplestory/api/dto/union/unionRaiderPresetDto';
|
|
94
109
|
export * from './maplestory/api/dto/ranking/unionRankingDto';
|
|
95
110
|
export * from './maplestory/api/dto/ranking/unionRankingResponseDto';
|
|
@@ -3,6 +3,7 @@ import { CharacterAndroidEquipmentFaceDto } from './characterAndroidEquipmentFac
|
|
|
3
3
|
import { CharacterAndroidEquipmentHairDto } from './characterAndroidEquipmentHairDto';
|
|
4
4
|
import { CharacterAndroidEquipmentPresetDto } from './characterAndroidEquipmentPresetDto';
|
|
5
5
|
import { CharacterAndroidEquipmentDtoBody } from '../../response/character/characterAndroidEquipmentDtoBody';
|
|
6
|
+
import { CharacterAndroidEquipmentSkinDto } from './characterAndroidEquipmentSkinDto';
|
|
6
7
|
/**
|
|
7
8
|
* 캐릭터 안드로이드 장비 정보
|
|
8
9
|
*/
|
|
@@ -10,7 +11,7 @@ declare class CharacterAndroidEquipmentDto {
|
|
|
10
11
|
/**
|
|
11
12
|
* 조회 기준일
|
|
12
13
|
*/
|
|
13
|
-
date: Date;
|
|
14
|
+
date: Date | null;
|
|
14
15
|
/**
|
|
15
16
|
* 안드로이드 명
|
|
16
17
|
*/
|
|
@@ -36,9 +37,9 @@ declare class CharacterAndroidEquipmentDto {
|
|
|
36
37
|
*/
|
|
37
38
|
androidFace: CharacterAndroidEquipmentFaceDto;
|
|
38
39
|
/**
|
|
39
|
-
* 안드로이드 피부
|
|
40
|
+
* 안드로이드 피부 정보
|
|
40
41
|
*/
|
|
41
|
-
|
|
42
|
+
androidSkin: CharacterAndroidEquipmentSkinDto | null;
|
|
42
43
|
/**
|
|
43
44
|
* 안드로이드 캐시 아이템 장착 정보
|
|
44
45
|
*/
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { CharacterAndroidEquipmentFaceDto } from './characterAndroidEquipmentFaceDto';
|
|
2
2
|
import { CharacterAndroidEquipmentHairDto } from './characterAndroidEquipmentHairDto';
|
|
3
|
+
import { CharacterAndroidEquipmentSkinDto } from './characterAndroidEquipmentSkinDto';
|
|
3
4
|
import { CharacterAndroidEquipmentPresetDtoBody } from '../../response/character/characterAndroidEquipmentDtoBody';
|
|
4
5
|
/**
|
|
5
6
|
* 캐릭터 안드로이드 프리셋 정보
|
|
@@ -29,10 +30,6 @@ declare class CharacterAndroidEquipmentPresetDto {
|
|
|
29
30
|
* 안드로이드 등급
|
|
30
31
|
*/
|
|
31
32
|
androidGrade: string;
|
|
32
|
-
/**
|
|
33
|
-
* 안드로이드 피부 명
|
|
34
|
-
*/
|
|
35
|
-
androidSkinName: string;
|
|
36
33
|
/**
|
|
37
34
|
* 안드로이드 헤어 정보
|
|
38
35
|
*/
|
|
@@ -41,6 +38,10 @@ declare class CharacterAndroidEquipmentPresetDto {
|
|
|
41
38
|
* 안드로이드 성형 정보
|
|
42
39
|
*/
|
|
43
40
|
androidFace: CharacterAndroidEquipmentFaceDto;
|
|
41
|
+
/**
|
|
42
|
+
* 안드로이드 피부 정보
|
|
43
|
+
*/
|
|
44
|
+
androidSkin: CharacterAndroidEquipmentSkinDto | null;
|
|
44
45
|
/**
|
|
45
46
|
* 안드로이드 이어센서 클립 적용 여부
|
|
46
47
|
*/
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { CharacterAndroidEquipmentSkinDtoBody } from '../../response/character/characterAndroidEquipmentDtoBody';
|
|
2
|
+
/**
|
|
3
|
+
* 캐릭터 안드로이드 피부 정보
|
|
4
|
+
*/
|
|
5
|
+
declare class CharacterAndroidEquipmentSkinDto {
|
|
6
|
+
/**
|
|
7
|
+
* 피부 명
|
|
8
|
+
*/
|
|
9
|
+
skinName: string;
|
|
10
|
+
/**
|
|
11
|
+
* 색상 계열
|
|
12
|
+
*/
|
|
13
|
+
colorStyle: string | null;
|
|
14
|
+
/**
|
|
15
|
+
* 피부 색조
|
|
16
|
+
*/
|
|
17
|
+
hue: number | null;
|
|
18
|
+
/**
|
|
19
|
+
* 피부 채도
|
|
20
|
+
*/
|
|
21
|
+
saturation: number | null;
|
|
22
|
+
/**
|
|
23
|
+
* 피부 명도
|
|
24
|
+
*/
|
|
25
|
+
brightness: number | null;
|
|
26
|
+
constructor(obj: CharacterAndroidEquipmentSkinDtoBody);
|
|
27
|
+
}
|
|
28
|
+
export { CharacterAndroidEquipmentSkinDto };
|
|
@@ -3,7 +3,7 @@ import { CharacterBasicDtoBody } from '../../response/character/characterBasicDt
|
|
|
3
3
|
* 캐릭터 기본 정보
|
|
4
4
|
*/
|
|
5
5
|
declare class CharacterBasicDto {
|
|
6
|
-
date: Date;
|
|
6
|
+
date: Date | null;
|
|
7
7
|
/**
|
|
8
8
|
* 캐릭터 명
|
|
9
9
|
*/
|
|
@@ -44,6 +44,26 @@ declare class CharacterBasicDto {
|
|
|
44
44
|
* 캐릭터 외형 이미지
|
|
45
45
|
*/
|
|
46
46
|
characterImage: string;
|
|
47
|
+
/**
|
|
48
|
+
* 캐릭터 생성일
|
|
49
|
+
*/
|
|
50
|
+
characterDateCreate: Date;
|
|
51
|
+
/**
|
|
52
|
+
* 최근 7일간 접속 여부
|
|
53
|
+
*/
|
|
54
|
+
accessFlag: 'true' | 'false';
|
|
55
|
+
/**
|
|
56
|
+
* 해방 퀘스트 완료 여부
|
|
57
|
+
*/
|
|
58
|
+
liberationQuestClearFlag: 'true' | 'false';
|
|
47
59
|
constructor(obj: CharacterBasicDtoBody);
|
|
60
|
+
/**
|
|
61
|
+
* 최근 7일간 접속 여부
|
|
62
|
+
*/
|
|
63
|
+
get isAccessFlag(): boolean;
|
|
64
|
+
/**
|
|
65
|
+
* 해방 퀘스트 완료 여부
|
|
66
|
+
*/
|
|
67
|
+
get isLiberationQuestClearFlag(): boolean;
|
|
48
68
|
}
|
|
49
69
|
export { CharacterBasicDto };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { CharacterBeautyEquipmentFaceDto } from './characterBeautyEquipmentFaceDto';
|
|
2
2
|
import { CharacterBeautyEquipmentHairDto } from './characterBeautyEquipmentHairDto';
|
|
3
|
+
import { CharacterBeautyEquipmentSkinDto } from './characterBeautyEquipmentSkinDto';
|
|
3
4
|
import { CharacterBeautyEquipmentDtoBody } from '../../response/character/characterBeautyEquipmentDtoBody';
|
|
4
5
|
/**
|
|
5
6
|
* 캐릭터 헤어, 성형, 피부 정보
|
|
@@ -8,7 +9,7 @@ declare class CharacterBeautyEquipmentDto {
|
|
|
8
9
|
/**
|
|
9
10
|
* 조회 기준일
|
|
10
11
|
*/
|
|
11
|
-
date: Date;
|
|
12
|
+
date: Date | null;
|
|
12
13
|
/**
|
|
13
14
|
* 캐릭터 성별
|
|
14
15
|
*/
|
|
@@ -28,10 +29,10 @@ declare class CharacterBeautyEquipmentDto {
|
|
|
28
29
|
*/
|
|
29
30
|
characterFace: CharacterBeautyEquipmentFaceDto;
|
|
30
31
|
/**
|
|
31
|
-
* 피부
|
|
32
|
+
* 캐릭터 피부 정보<br>
|
|
32
33
|
* (제로인 경우 알파, 엔젤릭버스터인 경우 일반 모드)
|
|
33
34
|
*/
|
|
34
|
-
|
|
35
|
+
characterSkin: CharacterBeautyEquipmentSkinDto;
|
|
35
36
|
/**
|
|
36
37
|
* 제로인 경우 베타, 엔젤릭버스터인 경우 드레스 업 모드에 적용 중인 헤어 정보
|
|
37
38
|
*/
|
|
@@ -41,9 +42,9 @@ declare class CharacterBeautyEquipmentDto {
|
|
|
41
42
|
*/
|
|
42
43
|
additionalCharacterFace: CharacterBeautyEquipmentFaceDto | null;
|
|
43
44
|
/**
|
|
44
|
-
* 제로인 경우 베타, 엔젤릭버스터인 경우 드레스 업 모드에 적용 중인 피부
|
|
45
|
+
* 제로인 경우 베타, 엔젤릭버스터인 경우 드레스 업 모드에 적용 중인 피부 정보
|
|
45
46
|
*/
|
|
46
|
-
|
|
47
|
+
additionalCharacterSkin: CharacterBeautyEquipmentSkinDto | null;
|
|
47
48
|
constructor(obj: CharacterBeautyEquipmentDtoBody);
|
|
48
49
|
}
|
|
49
50
|
export { CharacterBeautyEquipmentDto };
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { CharacterBeautyEquipmentSkinDtoBody } from '../../response/character/characterBeautyEquipmentDtoBody';
|
|
2
|
+
/**
|
|
3
|
+
* 캐릭터 피부 정보
|
|
4
|
+
*/
|
|
5
|
+
declare class CharacterBeautyEquipmentSkinDto {
|
|
6
|
+
/**
|
|
7
|
+
* 피부 명
|
|
8
|
+
*/
|
|
9
|
+
skinName: string;
|
|
10
|
+
/**
|
|
11
|
+
* 색상 계열
|
|
12
|
+
*/
|
|
13
|
+
colorStyle: string | null;
|
|
14
|
+
/**
|
|
15
|
+
* 피부 색조
|
|
16
|
+
*/
|
|
17
|
+
hue: number | null;
|
|
18
|
+
/**
|
|
19
|
+
* 피부 채도
|
|
20
|
+
*/
|
|
21
|
+
saturation: number | null;
|
|
22
|
+
/**
|
|
23
|
+
* 피부 명도
|
|
24
|
+
*/
|
|
25
|
+
brightness: number | null;
|
|
26
|
+
constructor(obj: CharacterBeautyEquipmentSkinDtoBody);
|
|
27
|
+
}
|
|
28
|
+
export { CharacterBeautyEquipmentSkinDto };
|
|
@@ -7,19 +7,27 @@ declare class CharacterHexaMatrixStatDto {
|
|
|
7
7
|
/**
|
|
8
8
|
* 조회 기준일
|
|
9
9
|
*/
|
|
10
|
-
date: Date;
|
|
10
|
+
date: Date | null;
|
|
11
11
|
/**
|
|
12
12
|
* 캐릭터 직업
|
|
13
13
|
*/
|
|
14
14
|
characterClass: string;
|
|
15
15
|
/**
|
|
16
|
-
* HEXA 스탯 코어 정보
|
|
16
|
+
* HEXA 스탯 I 코어 정보
|
|
17
17
|
*/
|
|
18
18
|
characterHexaStatCore: CharacterHexaMatrixStatCoreDto[];
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* HEXA 스탯 II 코어 정보
|
|
21
|
+
*/
|
|
22
|
+
characterHexaStatCore2: CharacterHexaMatrixStatCoreDto[];
|
|
23
|
+
/**
|
|
24
|
+
* 프리셋 HEXA 스탯 I 코어 정보
|
|
21
25
|
*/
|
|
22
26
|
presetHexaStatCore: CharacterHexaMatrixStatCoreDto[];
|
|
27
|
+
/**
|
|
28
|
+
* 프리셋 HEXA 스탯 II 코어 정보
|
|
29
|
+
*/
|
|
30
|
+
presetHexaStatCore2: CharacterHexaMatrixStatCoreDto[];
|
|
23
31
|
constructor(obj: CharacterHexaMatrixStatDtoBody);
|
|
24
32
|
}
|
|
25
33
|
export { CharacterHexaMatrixStatDto };
|
|
@@ -35,6 +35,10 @@ declare class CharacterItemEquipmentExceptionalOptionDto {
|
|
|
35
35
|
* 마력
|
|
36
36
|
*/
|
|
37
37
|
magicPower: string;
|
|
38
|
+
/**
|
|
39
|
+
* 익셉셔널 강화 적용 횟수
|
|
40
|
+
*/
|
|
41
|
+
exceptionalUpgrade: number;
|
|
38
42
|
constructor(obj: CharacterItemEquipmentExceptionalOptionDtoBody);
|
|
39
43
|
}
|
|
40
44
|
export { CharacterItemEquipmentExceptionalOptionDto };
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { CharacterListAccountCharacterDtoBody } from '../../response/character/characterListDtoBody';
|
|
2
|
+
/**
|
|
3
|
+
* 캐릭터 정보
|
|
4
|
+
*/
|
|
5
|
+
declare class CharacterListAccountCharacterDto {
|
|
6
|
+
/**
|
|
7
|
+
* 캐릭터 식별자
|
|
8
|
+
*/
|
|
9
|
+
ocid: string;
|
|
10
|
+
/**
|
|
11
|
+
* 캐릭터 명
|
|
12
|
+
*/
|
|
13
|
+
characterName: string;
|
|
14
|
+
/**
|
|
15
|
+
* 월드 명
|
|
16
|
+
*/
|
|
17
|
+
worldName: string;
|
|
18
|
+
/**
|
|
19
|
+
* 캐릭터 직업
|
|
20
|
+
*/
|
|
21
|
+
characterClass: string;
|
|
22
|
+
/**
|
|
23
|
+
* 캐릭터 레벨
|
|
24
|
+
*/
|
|
25
|
+
characterLevel: number;
|
|
26
|
+
constructor(obj: CharacterListAccountCharacterDtoBody);
|
|
27
|
+
}
|
|
28
|
+
export { CharacterListAccountCharacterDto };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { CharacterListAccountCharacterDto } from './characterListAccountCharacterDto';
|
|
2
|
+
import { CharacterListAccountDtoBody } from '../../response/character/characterListDtoBody';
|
|
3
|
+
/**
|
|
4
|
+
* 메이플스토리 계정
|
|
5
|
+
*/
|
|
6
|
+
declare class CharacterListAccountDto {
|
|
7
|
+
/**
|
|
8
|
+
* 메이플스토리 계정 식별자
|
|
9
|
+
*/
|
|
10
|
+
accountId: string;
|
|
11
|
+
/**
|
|
12
|
+
* 캐릭터 목록
|
|
13
|
+
*/
|
|
14
|
+
characterList: CharacterListAccountCharacterDto[];
|
|
15
|
+
constructor(obj: CharacterListAccountDtoBody);
|
|
16
|
+
}
|
|
17
|
+
export { CharacterListAccountDto };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { CharacterListAccountDto } from './characterListAccountDto';
|
|
2
|
+
import { CharacterListDtoBody } from '../../response/character/characterListDtoBody';
|
|
3
|
+
/**
|
|
4
|
+
* 계정의 보유 캐릭터 목록
|
|
5
|
+
*/
|
|
6
|
+
declare class CharacterListDto {
|
|
7
|
+
/**
|
|
8
|
+
* 메이플스토리 계정 목록
|
|
9
|
+
*/
|
|
10
|
+
accountList: CharacterListAccountDto[];
|
|
11
|
+
constructor(obj: CharacterListDtoBody);
|
|
12
|
+
}
|
|
13
|
+
export { CharacterListDto };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CharacterSetEffectSetDto } from './characterSetEffectSetDto';
|
|
2
2
|
import { CharacterSetEffectDtoBody } from '../../response/character/characterSetEffectDtoBody';
|
|
3
3
|
/**
|
|
4
4
|
* 캐릭터 세트 효과 정보
|
|
@@ -7,11 +7,11 @@ declare class CharacterSetEffectDto {
|
|
|
7
7
|
/**
|
|
8
8
|
* 조회 기준일
|
|
9
9
|
*/
|
|
10
|
-
date: Date;
|
|
10
|
+
date: Date | null;
|
|
11
11
|
/**
|
|
12
12
|
* 세트 효과 정보
|
|
13
13
|
*/
|
|
14
|
-
setEffect:
|
|
14
|
+
setEffect: CharacterSetEffectSetDto[];
|
|
15
15
|
constructor(obj: CharacterSetEffectDtoBody);
|
|
16
16
|
}
|
|
17
17
|
export { CharacterSetEffectDto };
|
|
@@ -1,21 +1,16 @@
|
|
|
1
|
-
import { CharacterSetEffectOptionInfoDto } from './characterSetEffectOptionInfoDto';
|
|
2
1
|
import { CharacterSetEffectInfoDtoBody } from '../../response/character/characterSetEffectDtoBody';
|
|
3
2
|
/**
|
|
4
|
-
*
|
|
3
|
+
* 적용 중인 세트 효과 정보
|
|
5
4
|
*/
|
|
6
5
|
declare class CharacterSetEffectInfoDto {
|
|
7
6
|
/**
|
|
8
|
-
* 세트 효과
|
|
7
|
+
* 세트 효과 레벨 (장비 수)
|
|
9
8
|
*/
|
|
10
|
-
|
|
9
|
+
setCount: number;
|
|
11
10
|
/**
|
|
12
|
-
* 세트
|
|
11
|
+
* 세트 효과
|
|
13
12
|
*/
|
|
14
|
-
|
|
15
|
-
/**
|
|
16
|
-
* 세트 효과 옵션
|
|
17
|
-
*/
|
|
18
|
-
setEffectInfo: CharacterSetEffectOptionInfoDto[];
|
|
13
|
+
setOption: string;
|
|
19
14
|
constructor(obj: CharacterSetEffectInfoDtoBody);
|
|
20
15
|
}
|
|
21
16
|
export { CharacterSetEffectInfoDto };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { CharacterSetEffectOptionFullDtoBody } from '../../response/character/characterSetEffectDtoBody';
|
|
2
|
+
/**
|
|
3
|
+
* 모든 세트 효과 정보
|
|
4
|
+
*/
|
|
5
|
+
declare class CharacterSetEffectOptionFullDto {
|
|
6
|
+
/**
|
|
7
|
+
* 세트 효과 레벨 (장비 수)
|
|
8
|
+
*/
|
|
9
|
+
setCount: number;
|
|
10
|
+
/**
|
|
11
|
+
* 세트 효과
|
|
12
|
+
*/
|
|
13
|
+
setOption: string;
|
|
14
|
+
constructor(obj: CharacterSetEffectOptionFullDtoBody);
|
|
15
|
+
}
|
|
16
|
+
export { CharacterSetEffectOptionFullDto };
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { CharacterSetEffectInfoDto } from './characterSetEffectInfoDto';
|
|
2
|
+
import { CharacterSetEffectOptionFullDto } from './characterSetEffectOptionFullDto';
|
|
3
|
+
import { CharacterSetEffectSetDtoBody } from '../../response/character/characterSetEffectDtoBody';
|
|
4
|
+
/**
|
|
5
|
+
* 세트 효과 정보
|
|
6
|
+
*/
|
|
7
|
+
declare class CharacterSetEffectSetDto {
|
|
8
|
+
/**
|
|
9
|
+
* 세트 효과 명
|
|
10
|
+
*/
|
|
11
|
+
setName: string;
|
|
12
|
+
/**
|
|
13
|
+
* 세트 개수 (럭키 아이템 포함)
|
|
14
|
+
*/
|
|
15
|
+
totalSetCount: number;
|
|
16
|
+
/**
|
|
17
|
+
* 적용 중인 세트 효과 정보
|
|
18
|
+
*/
|
|
19
|
+
setEffectInfo: CharacterSetEffectInfoDto[];
|
|
20
|
+
/**
|
|
21
|
+
* 모든 세트 효과 정보
|
|
22
|
+
*/
|
|
23
|
+
setOptionFull: CharacterSetEffectOptionFullDto[];
|
|
24
|
+
constructor(obj: CharacterSetEffectSetDtoBody);
|
|
25
|
+
}
|
|
26
|
+
export { CharacterSetEffectSetDto };
|