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
|
@@ -10,6 +10,7 @@ import { CharacterHexaMatrixStatDto } from './dto/character/characterHexaMatrixS
|
|
|
10
10
|
import { CharacterHyperStatDto } from './dto/character/characterHyperStatDto';
|
|
11
11
|
import { CharacterItemEquipmentDto } from './dto/character/characterItemEquipmentDto';
|
|
12
12
|
import { CharacterLinkSkillDto } from './dto/character/characterLinkSkillDto';
|
|
13
|
+
import { CharacterListDto } from './dto/character/characterListDto';
|
|
13
14
|
import { CharacterPetEquipmentDto } from './dto/character/characterPetEquipmentDto';
|
|
14
15
|
import { CharacterPopularityDto } from './dto/character/characterPopularityDto';
|
|
15
16
|
import { CharacterPropensityDto } from './dto/character/characterPropensityDto';
|
|
@@ -24,6 +25,14 @@ import { CubeHistoryResponseDto } from './dto/history/cubeHistoryResponseDto';
|
|
|
24
25
|
import { PotentialHistoryResponseDto } from './dto/history/potentialHistoryResponseDto';
|
|
25
26
|
import { StarforceHistoryResponseDto } from './dto/history/starforceHistoryResponseDto';
|
|
26
27
|
import { InspectionInfoDto } from './dto/inspectionInfoDto';
|
|
28
|
+
import { CashshopNoticeDetailDto } from './dto/notice/cashshopNoticeDetailDto';
|
|
29
|
+
import { CashshopNoticeListDto } from './dto/notice/cashshopNoticeListDto';
|
|
30
|
+
import { EventNoticeDetailDto } from './dto/notice/eventNoticeDetailDto';
|
|
31
|
+
import { EventNoticeListDto } from './dto/notice/eventNoticeListDto';
|
|
32
|
+
import { NoticeDetailDto } from './dto/notice/noticeDetailDto';
|
|
33
|
+
import { NoticeListDto } from './dto/notice/noticeListDto';
|
|
34
|
+
import { UpdateNoticeDetailDto } from './dto/notice/updateNoticeDetailDto';
|
|
35
|
+
import { UpdateNoticeListDto } from './dto/notice/updateNoticeListDto';
|
|
27
36
|
import { AchievementRankingResponseDto } from './dto/ranking/achievementRankingResponseDto';
|
|
28
37
|
import { DojangRankingResponseDto } from './dto/ranking/dojangRankingResponseDto';
|
|
29
38
|
import { GuildRankingResponseDto } from './dto/ranking/guildRankingResponseDto';
|
|
@@ -48,17 +57,26 @@ declare class MapleStoryApi {
|
|
|
48
57
|
constructor(apiKey: string);
|
|
49
58
|
/**
|
|
50
59
|
* 캐릭터 식별자(ocid)를 조회합니다.
|
|
60
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
51
61
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
52
|
-
* -
|
|
62
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
53
63
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
54
64
|
*
|
|
55
65
|
* @param characterName 캐릭터 명
|
|
56
66
|
*/
|
|
57
67
|
getCharacter(characterName: string): Promise<CharacterDto>;
|
|
68
|
+
/**
|
|
69
|
+
* 계정의 보유 캐릭터 목록을 조회합니다.
|
|
70
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
71
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
72
|
+
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
73
|
+
*/
|
|
74
|
+
getCharacterList(): Promise<CharacterListDto>;
|
|
58
75
|
/**
|
|
59
76
|
* 기본 정보를 조회합니다.
|
|
77
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
60
78
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
61
|
-
* -
|
|
79
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
62
80
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
63
81
|
*
|
|
64
82
|
* @param ocid 캐릭터 식별자
|
|
@@ -67,8 +85,9 @@ declare class MapleStoryApi {
|
|
|
67
85
|
getCharacterBasic(ocid: string, dateOptions?: DateOptions): Promise<CharacterBasicDto>;
|
|
68
86
|
/**
|
|
69
87
|
* 인기도 정보를 조회합니다.
|
|
88
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
70
89
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
71
|
-
* -
|
|
90
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
72
91
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
73
92
|
*
|
|
74
93
|
* @param ocid 캐릭터 식별자
|
|
@@ -77,8 +96,9 @@ declare class MapleStoryApi {
|
|
|
77
96
|
getCharacterPopularity(ocid: string, dateOptions?: DateOptions): Promise<CharacterPopularityDto>;
|
|
78
97
|
/**
|
|
79
98
|
* 종합 능력치 정보를 조회합니다.
|
|
99
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
80
100
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
81
|
-
* -
|
|
101
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
82
102
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
83
103
|
*
|
|
84
104
|
* @param ocid 캐릭터 식별자
|
|
@@ -87,8 +107,9 @@ declare class MapleStoryApi {
|
|
|
87
107
|
getCharacterStat(ocid: string, dateOptions?: DateOptions): Promise<CharacterStatDto>;
|
|
88
108
|
/**
|
|
89
109
|
* 하이퍼스탯 정보를 조회합니다.
|
|
110
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
90
111
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
91
|
-
* -
|
|
112
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
92
113
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
93
114
|
*
|
|
94
115
|
* @param ocid 캐릭터 식별자
|
|
@@ -97,8 +118,9 @@ declare class MapleStoryApi {
|
|
|
97
118
|
getCharacterHyperStat(ocid: string, dateOptions?: DateOptions): Promise<CharacterHyperStatDto>;
|
|
98
119
|
/**
|
|
99
120
|
* 성향 정보를 조회합니다.
|
|
121
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
100
122
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
101
|
-
* -
|
|
123
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
102
124
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
103
125
|
*
|
|
104
126
|
* @param ocid 캐릭터 식별자
|
|
@@ -107,8 +129,9 @@ declare class MapleStoryApi {
|
|
|
107
129
|
getCharacterPropensity(ocid: string, dateOptions?: DateOptions): Promise<CharacterPropensityDto>;
|
|
108
130
|
/**
|
|
109
131
|
* 어빌리티 정보를 조회합니다.
|
|
132
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
110
133
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
111
|
-
* -
|
|
134
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
112
135
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
113
136
|
*
|
|
114
137
|
* @param ocid 캐릭터 식별자
|
|
@@ -117,8 +140,9 @@ declare class MapleStoryApi {
|
|
|
117
140
|
getCharacterAbility(ocid: string, dateOptions?: DateOptions): Promise<CharacterAbilityDto>;
|
|
118
141
|
/**
|
|
119
142
|
* 장착한 장비 중 캐시 장비를 제외한 나머지 장비 정보를 조회합니다.
|
|
143
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
120
144
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
121
|
-
* -
|
|
145
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
122
146
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
123
147
|
*
|
|
124
148
|
* @param ocid 캐릭터 식별자
|
|
@@ -127,8 +151,9 @@ declare class MapleStoryApi {
|
|
|
127
151
|
getCharacterItemEquipment(ocid: string, dateOptions?: DateOptions): Promise<CharacterItemEquipmentDto>;
|
|
128
152
|
/**
|
|
129
153
|
* 장착한 캐시 장비 정보를 조회합니다.
|
|
154
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
130
155
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
131
|
-
* -
|
|
156
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
132
157
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
133
158
|
*
|
|
134
159
|
* @param ocid 캐릭터 식별자
|
|
@@ -137,8 +162,9 @@ declare class MapleStoryApi {
|
|
|
137
162
|
getCharacterCashItemEquipment(ocid: string, dateOptions?: DateOptions): Promise<CharacterCashItemEquipmentDto>;
|
|
138
163
|
/**
|
|
139
164
|
* 장착한 심볼 정보를 조회합니다.
|
|
165
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
140
166
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
141
|
-
* -
|
|
167
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
142
168
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
143
169
|
*
|
|
144
170
|
* @param ocid 캐릭터 식별자
|
|
@@ -147,8 +173,9 @@ declare class MapleStoryApi {
|
|
|
147
173
|
getCharacterSymbolEquipment(ocid: string, dateOptions?: DateOptions): Promise<CharacterSymbolEquipmentDto>;
|
|
148
174
|
/**
|
|
149
175
|
* 적용받고 있는 세트 효과 정보를 조회합니다.
|
|
176
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
150
177
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
151
|
-
* -
|
|
178
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
152
179
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
153
180
|
*
|
|
154
181
|
* @param ocid 캐릭터 식별자
|
|
@@ -157,8 +184,9 @@ declare class MapleStoryApi {
|
|
|
157
184
|
getCharacterSetEffect(ocid: string, dateOptions?: DateOptions): Promise<CharacterSetEffectDto>;
|
|
158
185
|
/**
|
|
159
186
|
* 장착 중인 헤어, 성형, 피부 정보를 조회합니다.
|
|
187
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
160
188
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
161
|
-
* -
|
|
189
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
162
190
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
163
191
|
*
|
|
164
192
|
* @param ocid 캐릭터 식별자
|
|
@@ -167,8 +195,9 @@ declare class MapleStoryApi {
|
|
|
167
195
|
getCharacterBeautyEquipment(ocid: string, dateOptions?: DateOptions): Promise<CharacterBeautyEquipmentDto>;
|
|
168
196
|
/**
|
|
169
197
|
* 장착한 안드로이드 정보를 조회합니다.
|
|
198
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
170
199
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
171
|
-
* -
|
|
200
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
172
201
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
173
202
|
*
|
|
174
203
|
* @param ocid 캐릭터 식별자
|
|
@@ -177,8 +206,9 @@ declare class MapleStoryApi {
|
|
|
177
206
|
getCharacterAndroidEquipment(ocid: string, dateOptions?: DateOptions): Promise<CharacterAndroidEquipmentDto>;
|
|
178
207
|
/**
|
|
179
208
|
* 장착한 펫 및 펫 스킬, 장비 정보를 조회합니다.
|
|
209
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
180
210
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
181
|
-
* -
|
|
211
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
182
212
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
183
213
|
*
|
|
184
214
|
* @param ocid 캐릭터 식별자
|
|
@@ -187,8 +217,9 @@ declare class MapleStoryApi {
|
|
|
187
217
|
getCharacterPetEquipment(ocid: string, dateOptions?: DateOptions): Promise<CharacterPetEquipmentDto>;
|
|
188
218
|
/**
|
|
189
219
|
* 캐릭터 스킬과 하이퍼 스킬 정보를 조회합니다.
|
|
220
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
190
221
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
191
|
-
* -
|
|
222
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
192
223
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
193
224
|
*
|
|
194
225
|
* @param ocid 캐릭터 식별자
|
|
@@ -209,8 +240,9 @@ declare class MapleStoryApi {
|
|
|
209
240
|
getCharacterSkill(ocid: string, characterSkillGrade: string, dateOptions?: DateOptions): Promise<CharacterSkillDto>;
|
|
210
241
|
/**
|
|
211
242
|
* 장착 링크 스킬 정보를 조회합니다.
|
|
243
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
212
244
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
213
|
-
* -
|
|
245
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
214
246
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
215
247
|
*
|
|
216
248
|
* @param ocid 캐릭터 식별자
|
|
@@ -219,8 +251,9 @@ declare class MapleStoryApi {
|
|
|
219
251
|
getCharacterLinkSkill(ocid: string, dateOptions?: DateOptions): Promise<CharacterLinkSkillDto>;
|
|
220
252
|
/**
|
|
221
253
|
* V매트릭스 슬롯 정보와 장착한 V코어 정보를 조회합니다.
|
|
254
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
222
255
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
223
|
-
* -
|
|
256
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
224
257
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
225
258
|
*
|
|
226
259
|
* @param ocid 캐릭터 식별자
|
|
@@ -229,8 +262,9 @@ declare class MapleStoryApi {
|
|
|
229
262
|
getCharacterVMatrix(ocid: string, dateOptions?: DateOptions): Promise<CharacterVMatrixDto>;
|
|
230
263
|
/**
|
|
231
264
|
* HEXA 매트릭스에 장착한 HEXA 코어 정보를 조회합니다.
|
|
265
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
232
266
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
233
|
-
* -
|
|
267
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
234
268
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
235
269
|
*
|
|
236
270
|
* @param ocid 캐릭터 식별자
|
|
@@ -239,8 +273,9 @@ declare class MapleStoryApi {
|
|
|
239
273
|
getCharacterHexaMatrix(ocid: string, dateOptions?: DateOptions): Promise<CharacterHexaMatrixDto>;
|
|
240
274
|
/**
|
|
241
275
|
* HEXA 매트릭스에 설정한 HEXA 스탯 정보를 조회합니다.
|
|
276
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
242
277
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
243
|
-
* -
|
|
278
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
244
279
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
245
280
|
*
|
|
246
281
|
* @param ocid 캐릭터 식별자
|
|
@@ -249,8 +284,9 @@ declare class MapleStoryApi {
|
|
|
249
284
|
getCharacterHexaMatrixStat(ocid: string, dateOptions?: DateOptions): Promise<CharacterHexaMatrixStatDto>;
|
|
250
285
|
/**
|
|
251
286
|
* 캐릭터 무릉도장 최고 기록 정보를 조회합니다.
|
|
287
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
252
288
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
253
|
-
* -
|
|
289
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
254
290
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
255
291
|
*
|
|
256
292
|
* @param ocid 캐릭터 식별자
|
|
@@ -259,8 +295,9 @@ declare class MapleStoryApi {
|
|
|
259
295
|
getCharacterDojang(ocid: string, dateOptions?: DateOptions): Promise<CharacterDojangDto>;
|
|
260
296
|
/**
|
|
261
297
|
* 유니온 정보를 조회합니다.
|
|
298
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
262
299
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
263
|
-
* -
|
|
300
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
264
301
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
265
302
|
*
|
|
266
303
|
* @param ocid 캐릭터 식별자
|
|
@@ -269,8 +306,9 @@ declare class MapleStoryApi {
|
|
|
269
306
|
getUnion(ocid: string, dateOptions?: DateOptions): Promise<UnionDto>;
|
|
270
307
|
/**
|
|
271
308
|
* 유니온 공격대 정보를 조회합니다.
|
|
309
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
272
310
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
273
|
-
* -
|
|
311
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
274
312
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
275
313
|
*
|
|
276
314
|
* @param ocid 캐릭터 식별자
|
|
@@ -279,8 +317,9 @@ declare class MapleStoryApi {
|
|
|
279
317
|
getUnionRaider(ocid: string, dateOptions?: DateOptions): Promise<UnionRaiderDto>;
|
|
280
318
|
/**
|
|
281
319
|
* 유니온 아티팩트 정보를 조회합니다.
|
|
320
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
282
321
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
283
|
-
* -
|
|
322
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
284
323
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
285
324
|
*
|
|
286
325
|
* @param ocid 캐릭터 식별자
|
|
@@ -289,8 +328,9 @@ declare class MapleStoryApi {
|
|
|
289
328
|
getUnionArtifact(ocid: string, dateOptions?: DateOptions): Promise<UnionArtifactDto>;
|
|
290
329
|
/**
|
|
291
330
|
* 길드 식별자(oguild_id) 정보를 조회합니다.
|
|
331
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
292
332
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
293
|
-
* -
|
|
333
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
294
334
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
295
335
|
*
|
|
296
336
|
* @param guildName 길드 명
|
|
@@ -299,8 +339,9 @@ declare class MapleStoryApi {
|
|
|
299
339
|
getGuild(guildName: string, worldName: string): Promise<GuildDto>;
|
|
300
340
|
/**
|
|
301
341
|
* 길드 기본 정보를 조회합니다.
|
|
342
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
302
343
|
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
303
|
-
* -
|
|
344
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
304
345
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
305
346
|
*
|
|
306
347
|
* @param guildId 길드 식별자
|
|
@@ -452,6 +493,66 @@ declare class MapleStoryApi {
|
|
|
452
493
|
* @param dateOptions 조회 기준일 (KST)
|
|
453
494
|
*/
|
|
454
495
|
getAchievementRanking(filterOptions?: AchievementRankingApiFilterOptions, dateOptions?: DateOptions): Promise<AchievementRankingResponseDto>;
|
|
496
|
+
/**
|
|
497
|
+
* 메이플스토리 공지사항에 최근 등록된 게시글 20개를 조회합니다.
|
|
498
|
+
*
|
|
499
|
+
* - 공지 정보 API는 데이터 최신화(공지 내용 수정/ 업데이트 고려)를 위해 실시간 조회 또는 최소 일배치 작업을 권장합니다.
|
|
500
|
+
* - 실시간으로 정보를 제공하지 않는 경우, 신규/수정 공지 내용이 반영되지 않을 수 있으니 서비스 이용 유저에게 홈페이지 공지 사항을 확인하라는 가이드를 제공해주세요.
|
|
501
|
+
*/
|
|
502
|
+
getNoticeList(): Promise<NoticeListDto>;
|
|
503
|
+
/**
|
|
504
|
+
* 메이플스토리 공지사항 게시글 세부 사항을 조회합니다.
|
|
505
|
+
*
|
|
506
|
+
* - 공지 정보 API는 데이터 최신화(공지 내용 수정/ 업데이트 고려)를 위해 실시간 조회 또는 최소 일배치 작업을 권장합니다.
|
|
507
|
+
* - 실시간으로 정보를 제공하지 않는 경우, 신규/수정 공지 내용이 반영되지 않을 수 있으니 서비스 이용 유저에게 홈페이지 공지 사항을 확인하라는 가이드를 제공해주세요.
|
|
508
|
+
* @param noticeId 공지 식별자
|
|
509
|
+
*/
|
|
510
|
+
getNoticeDetail(noticeId: number): Promise<NoticeDetailDto>;
|
|
511
|
+
/**
|
|
512
|
+
* 메이플스토리 업데이트에 최근 등록된 게시글 20개를 조회합니다.
|
|
513
|
+
*
|
|
514
|
+
* - 공지 정보 API는 데이터 최신화(공지 내용 수정/ 업데이트 고려)를 위해 실시간 조회 또는 최소 일배치 작업을 권장합니다.
|
|
515
|
+
* - 실시간으로 정보를 제공하지 않는 경우, 신규/수정 공지 내용이 반영되지 않을 수 있으니 서비스 이용 유저에게 홈페이지 공지 사항을 확인하라는 가이드를 제공해주세요.
|
|
516
|
+
*/
|
|
517
|
+
getUpdateNoticeList(): Promise<UpdateNoticeListDto>;
|
|
518
|
+
/**
|
|
519
|
+
* 메이플스토리 업데이트 게시글 세부 사항을 조회합니다.
|
|
520
|
+
*
|
|
521
|
+
* - 공지 정보 API는 데이터 최신화(공지 내용 수정/ 업데이트 고려)를 위해 실시간 조회 또는 최소 일배치 작업을 권장합니다.
|
|
522
|
+
* - 실시간으로 정보를 제공하지 않는 경우, 신규/수정 공지 내용이 반영되지 않을 수 있으니 서비스 이용 유저에게 홈페이지 공지 사항을 확인하라는 가이드를 제공해주세요.
|
|
523
|
+
* @param noticeId 공지 식별자
|
|
524
|
+
*/
|
|
525
|
+
getUpdateNoticeDetail(noticeId: number): Promise<UpdateNoticeDetailDto>;
|
|
526
|
+
/**
|
|
527
|
+
* 메이플스토리 진행 중 이벤트에 최근 등록된 공지사항 20개를 조회합니다.
|
|
528
|
+
*
|
|
529
|
+
* - 공지 정보 API는 데이터 최신화(공지 내용 수정/ 업데이트 고려)를 위해 실시간 조회 또는 최소 일배치 작업을 권장합니다.
|
|
530
|
+
* - 실시간으로 정보를 제공하지 않는 경우, 신규/수정 공지 내용이 반영되지 않을 수 있으니 서비스 이용 유저에게 홈페이지 공지 사항을 확인하라는 가이드를 제공해주세요.
|
|
531
|
+
*/
|
|
532
|
+
getEventNoticeList(): Promise<EventNoticeListDto>;
|
|
533
|
+
/**
|
|
534
|
+
* 메이플스토리 진행 중 이벤트 게시글 세부 사항을 조회합니다.
|
|
535
|
+
*
|
|
536
|
+
* - 공지 정보 API는 데이터 최신화(공지 내용 수정/ 업데이트 고려)를 위해 실시간 조회 또는 최소 일배치 작업을 권장합니다.
|
|
537
|
+
* - 실시간으로 정보를 제공하지 않는 경우, 신규/수정 공지 내용이 반영되지 않을 수 있으니 서비스 이용 유저에게 홈페이지 공지 사항을 확인하라는 가이드를 제공해주세요.
|
|
538
|
+
* @param noticeId 공지 식별자
|
|
539
|
+
*/
|
|
540
|
+
getEventNoticeDetail(noticeId: number): Promise<EventNoticeDetailDto>;
|
|
541
|
+
/**
|
|
542
|
+
* 메이플스토리 캐시샵 공지에 최근 등록된 공지사항 20개를 조회합니다.
|
|
543
|
+
*
|
|
544
|
+
* - 공지 정보 API는 데이터 최신화(공지 내용 수정/ 업데이트 고려)를 위해 실시간 조회 또는 최소 일배치 작업을 권장합니다.
|
|
545
|
+
* - 실시간으로 정보를 제공하지 않는 경우, 신규/수정 공지 내용이 반영되지 않을 수 있으니 서비스 이용 유저에게 홈페이지 공지 사항을 확인하라는 가이드를 제공해주세요.
|
|
546
|
+
*/
|
|
547
|
+
getCashshopNoticeList(): Promise<CashshopNoticeListDto>;
|
|
548
|
+
/**
|
|
549
|
+
* 메이플스토리 캐시샵 공지 게시글 세부 사항을 조회합니다.
|
|
550
|
+
*
|
|
551
|
+
* - 공지 정보 API는 데이터 최신화(공지 내용 수정/ 업데이트 고려)를 위해 실시간 조회 또는 최소 일배치 작업을 권장합니다.
|
|
552
|
+
* - 실시간으로 정보를 제공하지 않는 경우, 신규/수정 공지 내용이 반영되지 않을 수 있으니 서비스 이용 유저에게 홈페이지 공지 사항을 확인하라는 가이드를 제공해주세요.
|
|
553
|
+
* @param noticeId 공지 식별자
|
|
554
|
+
*/
|
|
555
|
+
getCashshopNoticeDetail(noticeId: number): Promise<CashshopNoticeDetailDto>;
|
|
455
556
|
/**
|
|
456
557
|
* 서버 점검 정보를 조회합니다.
|
|
457
558
|
*/
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
type CharacterAndroidEquipmentDtoBody = {
|
|
2
|
-
date: string;
|
|
2
|
+
date: string | null;
|
|
3
3
|
android_name: string | null;
|
|
4
4
|
android_nickname: string | null;
|
|
5
5
|
android_icon: string | null;
|
|
6
6
|
android_description: string | null;
|
|
7
7
|
android_hair: CharacterAndroidEquipmentHairDtoBody;
|
|
8
8
|
android_face: CharacterAndroidEquipmentFaceDtoBody;
|
|
9
|
-
|
|
9
|
+
android_skin: CharacterAndroidEquipmentSkinDtoBody | null;
|
|
10
10
|
android_cash_item_equipment: CharacterAndroidCashItemEquipmentDtoBody[];
|
|
11
11
|
android_ear_sensor_clip_flag: string | null;
|
|
12
12
|
android_gender: string | null;
|
|
@@ -30,6 +30,13 @@ type CharacterAndroidEquipmentFaceDtoBody = {
|
|
|
30
30
|
mix_color: string | null;
|
|
31
31
|
mix_rate: string;
|
|
32
32
|
};
|
|
33
|
+
type CharacterAndroidEquipmentSkinDtoBody = {
|
|
34
|
+
skin_name: string;
|
|
35
|
+
color_style: string | null;
|
|
36
|
+
hue: number | null;
|
|
37
|
+
saturation: number | null;
|
|
38
|
+
brightness: number | null;
|
|
39
|
+
};
|
|
33
40
|
type CharacterAndroidEquipmentPresetDtoBody = {
|
|
34
41
|
android_name: string;
|
|
35
42
|
android_nickname: string;
|
|
@@ -37,9 +44,9 @@ type CharacterAndroidEquipmentPresetDtoBody = {
|
|
|
37
44
|
android_description: string;
|
|
38
45
|
android_gender: string | null;
|
|
39
46
|
android_grade: string;
|
|
40
|
-
android_skin_name: string;
|
|
41
47
|
android_hair: CharacterAndroidEquipmentHairDtoBody;
|
|
42
48
|
android_face: CharacterAndroidEquipmentFaceDtoBody;
|
|
49
|
+
android_skin: CharacterAndroidEquipmentSkinDtoBody | null;
|
|
43
50
|
android_ear_sensor_clip_flag: string;
|
|
44
51
|
android_non_humanoid_flag: string;
|
|
45
52
|
android_shop_usable_flag: string;
|
|
@@ -66,4 +73,4 @@ type CharacterAndroidCashItemEquipmentColoringPrismDtoBody = {
|
|
|
66
73
|
saturation: number;
|
|
67
74
|
value: number;
|
|
68
75
|
};
|
|
69
|
-
export type { CharacterAndroidEquipmentDtoBody, CharacterAndroidEquipmentHairDtoBody, CharacterAndroidEquipmentFaceDtoBody, CharacterAndroidEquipmentPresetDtoBody, CharacterAndroidCashItemEquipmentDtoBody, CharacterAndroidCashItemEquipmentOptionDtoBody, CharacterAndroidCashItemEquipmentColoringPrismDtoBody, };
|
|
76
|
+
export type { CharacterAndroidEquipmentDtoBody, CharacterAndroidEquipmentHairDtoBody, CharacterAndroidEquipmentFaceDtoBody, CharacterAndroidEquipmentSkinDtoBody, CharacterAndroidEquipmentPresetDtoBody, CharacterAndroidCashItemEquipmentDtoBody, CharacterAndroidCashItemEquipmentOptionDtoBody, CharacterAndroidCashItemEquipmentColoringPrismDtoBody, };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
type CharacterBasicDtoBody = {
|
|
2
|
-
date: string;
|
|
2
|
+
date: string | null;
|
|
3
3
|
character_name: string;
|
|
4
4
|
world_name: string;
|
|
5
5
|
character_gender: string;
|
|
@@ -10,5 +10,8 @@ type CharacterBasicDtoBody = {
|
|
|
10
10
|
character_exp_rate: string;
|
|
11
11
|
character_guild_name: string | null;
|
|
12
12
|
character_image: string;
|
|
13
|
+
character_date_create: string;
|
|
14
|
+
access_flag: 'true' | 'false';
|
|
15
|
+
liberation_quest_clear_flag: 'true' | 'false';
|
|
13
16
|
};
|
|
14
17
|
export type { CharacterBasicDtoBody };
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
type CharacterBeautyEquipmentDtoBody = {
|
|
2
|
-
date: string;
|
|
2
|
+
date: string | null;
|
|
3
3
|
character_gender: string;
|
|
4
4
|
character_class: string;
|
|
5
5
|
character_hair: CharacterBeautyEquipmentHairDtoBody;
|
|
6
6
|
character_face: CharacterBeautyEquipmentFaceDtoBody;
|
|
7
|
-
|
|
7
|
+
character_skin: CharacterBeautyEquipmentSkinDtoBody;
|
|
8
8
|
additional_character_hair: CharacterBeautyEquipmentHairDtoBody | null;
|
|
9
9
|
additional_character_face: CharacterBeautyEquipmentFaceDtoBody | null;
|
|
10
|
-
|
|
10
|
+
additional_character_skin: CharacterBeautyEquipmentSkinDtoBody | null;
|
|
11
11
|
};
|
|
12
12
|
type CharacterBeautyEquipmentHairDtoBody = {
|
|
13
13
|
hair_name: string;
|
|
@@ -21,4 +21,11 @@ type CharacterBeautyEquipmentFaceDtoBody = {
|
|
|
21
21
|
mix_color: string | null;
|
|
22
22
|
mix_rate: string;
|
|
23
23
|
};
|
|
24
|
-
|
|
24
|
+
type CharacterBeautyEquipmentSkinDtoBody = {
|
|
25
|
+
skin_name: string;
|
|
26
|
+
color_style: string | null;
|
|
27
|
+
hue: number | null;
|
|
28
|
+
saturation: number | null;
|
|
29
|
+
brightness: number | null;
|
|
30
|
+
};
|
|
31
|
+
export type { CharacterBeautyEquipmentDtoBody, CharacterBeautyEquipmentHairDtoBody, CharacterBeautyEquipmentFaceDtoBody, CharacterBeautyEquipmentSkinDtoBody, };
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
type CharacterHexaMatrixStatDtoBody = {
|
|
2
|
-
date: string;
|
|
2
|
+
date: string | null;
|
|
3
3
|
character_class: string;
|
|
4
4
|
character_hexa_stat_core: CharacterHexaMatrixStatCoreDtoBody[];
|
|
5
|
+
character_hexa_stat_core_2: CharacterHexaMatrixStatCoreDtoBody[];
|
|
5
6
|
preset_hexa_stat_core: CharacterHexaMatrixStatCoreDtoBody[];
|
|
7
|
+
preset_hexa_stat_core_2: CharacterHexaMatrixStatCoreDtoBody[];
|
|
6
8
|
};
|
|
7
9
|
type CharacterHexaMatrixStatCoreDtoBody = {
|
|
8
10
|
slot_id: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
type CharacterItemEquipmentDtoBody = {
|
|
2
|
-
date: string;
|
|
2
|
+
date: string | null;
|
|
3
3
|
character_gender: string;
|
|
4
4
|
character_class: string;
|
|
5
5
|
preset_no: number | null;
|
|
@@ -31,7 +31,7 @@ type CharacterItemEquipmentInfoDtoBody = {
|
|
|
31
31
|
additional_potential_option_2: string | null;
|
|
32
32
|
additional_potential_option_3: string | null;
|
|
33
33
|
equipment_level_increase: number;
|
|
34
|
-
item_exceptional_option:
|
|
34
|
+
item_exceptional_option: CharacterItemEquipmentExceptionalOptionDtoBody;
|
|
35
35
|
item_add_option: CharacterItemEquipmentAddOptionDtoBody;
|
|
36
36
|
growth_exp: number;
|
|
37
37
|
growth_level: number;
|
|
@@ -109,6 +109,7 @@ type CharacterItemEquipmentExceptionalOptionDtoBody = {
|
|
|
109
109
|
max_mp: string;
|
|
110
110
|
attack_power: string;
|
|
111
111
|
magic_power: string;
|
|
112
|
+
exceptional_upgrade: number;
|
|
112
113
|
};
|
|
113
114
|
type CharacterItemEquipmentTotalOptionDtoBody = {
|
|
114
115
|
str: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
type CharacterLinkSkillDtoBody = {
|
|
2
|
-
date: string;
|
|
2
|
+
date: string | null;
|
|
3
3
|
character_class: string;
|
|
4
4
|
character_link_skill: CharacterLinkSkillInfoDtoBody[];
|
|
5
5
|
character_link_skill_preset_1: CharacterLinkSkillInfoDtoBody[];
|
|
@@ -15,6 +15,7 @@ type CharacterLinkSkillInfoDtoBody = {
|
|
|
15
15
|
skill_description: string;
|
|
16
16
|
skill_level: number;
|
|
17
17
|
skill_effect: string;
|
|
18
|
+
skill_effect_next: string | null;
|
|
18
19
|
skill_icon: string;
|
|
19
20
|
};
|
|
20
21
|
export type { CharacterLinkSkillDtoBody, CharacterLinkSkillInfoDtoBody };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
type CharacterListDtoBody = {
|
|
2
|
+
account_list: CharacterListAccountDtoBody[];
|
|
3
|
+
};
|
|
4
|
+
type CharacterListAccountDtoBody = {
|
|
5
|
+
account_id: string;
|
|
6
|
+
character_list: CharacterListAccountCharacterDtoBody[];
|
|
7
|
+
};
|
|
8
|
+
type CharacterListAccountCharacterDtoBody = {
|
|
9
|
+
ocid: string;
|
|
10
|
+
character_name: string;
|
|
11
|
+
world_name: string;
|
|
12
|
+
character_class: string;
|
|
13
|
+
character_level: number;
|
|
14
|
+
};
|
|
15
|
+
export type { CharacterListDtoBody, CharacterListAccountDtoBody, CharacterListAccountCharacterDtoBody };
|