maplestory-openapi 3.0.0 → 3.2.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.
- package/dist/cjs/maplestory/api/common/dto/character/characterBasic.js +0 -3
- package/dist/cjs/maplestory/api/kms/dto/character/characterAndroidEquipment.js +41 -3
- package/dist/cjs/maplestory/api/kms/dto/character/characterBasic.js +4 -10
- package/dist/cjs/maplestory/api/kms/dto/character/characterBeautyEquipment.js +24 -2
- package/dist/cjs/maplestory/api/kms/dto/character/characterCashItemEquipment.js +12 -1
- package/dist/cjs/maplestory/api/kms/dto/character/characterItemEquipment.js +36 -3
- package/dist/cjs/maplestory/api/kms/dto/user/achievement.js +57 -0
- package/dist/cjs/maplestory/api/kms/dto/{character → user}/characterList.js +3 -8
- package/dist/cjs/maplestory/api/kms/kms.js +8 -4
- package/dist/cjs/maplestory/api/kms/mapleStoryApi.js +28 -13
- package/dist/cjs/maplestory/api/msea/dto/character/characterAndroidEquipment.js +6 -1
- package/dist/cjs/maplestory/api/msea/dto/character/characterBasic.js +1 -1
- package/dist/esm/maplestory/api/common/dto/character/characterBasic.js +0 -3
- package/dist/esm/maplestory/api/kms/dto/character/characterAndroidEquipment.js +41 -3
- package/dist/esm/maplestory/api/kms/dto/character/characterBasic.js +4 -10
- package/dist/esm/maplestory/api/kms/dto/character/characterBeautyEquipment.js +24 -2
- package/dist/esm/maplestory/api/kms/dto/character/characterCashItemEquipment.js +12 -1
- package/dist/esm/maplestory/api/kms/dto/character/characterItemEquipment.js +36 -3
- package/dist/esm/maplestory/api/kms/dto/user/achievement.js +51 -0
- package/dist/esm/maplestory/api/kms/dto/{character → user}/characterList.js +3 -8
- package/dist/esm/maplestory/api/kms/kms.js +2 -1
- package/dist/esm/maplestory/api/kms/mapleStoryApi.js +28 -13
- package/dist/esm/maplestory/api/msea/dto/character/characterAndroidEquipment.js +6 -1
- package/dist/esm/maplestory/api/msea/dto/character/characterBasic.js +1 -1
- package/dist/index.min.js +1 -1
- package/package.json +1 -1
- package/types/maplestory/api/common/dto/character/characterAndroidEquipment.d.ts +1 -0
- package/types/maplestory/api/common/dto/character/characterBasic.d.ts +0 -2
- package/types/maplestory/api/kms/dto/character/characterAndroidEquipment.d.ts +28 -0
- package/types/maplestory/api/kms/dto/character/characterBasic.d.ts +2 -6
- package/types/maplestory/api/kms/dto/character/characterBeautyEquipment.d.ts +16 -0
- package/types/maplestory/api/kms/dto/character/characterCashItemEquipment.d.ts +8 -0
- package/types/maplestory/api/kms/dto/character/characterItemEquipment.d.ts +24 -0
- package/types/maplestory/api/kms/dto/user/achievement.d.ts +39 -0
- package/types/maplestory/api/kms/dto/{character → user}/characterList.d.ts +4 -5
- package/types/maplestory/api/kms/index.d.ts +2 -1
- package/types/maplestory/api/kms/mapleStoryApi.d.ts +17 -8
- package/types/maplestory/api/kms/response/character/characterAndroidEquipmentBody.d.ts +4 -0
- package/types/maplestory/api/kms/response/character/characterBasicBody.d.ts +1 -1
- package/types/maplestory/api/kms/response/character/characterBeautyEquipmentBody.d.ts +2 -0
- package/types/maplestory/api/kms/response/character/characterCashItemEquipmentBody.d.ts +1 -0
- package/types/maplestory/api/kms/response/character/characterItemEquipmentBody.d.ts +2 -0
- package/types/maplestory/api/kms/response/user/achievementBody.d.ts +11 -0
- package/types/maplestory/api/msea/dto/character/characterAndroidEquipment.d.ts +4 -0
- package/types/maplestory/api/msea/response/character/characterAndroidEquipmentBody.d.ts +1 -0
- package/dist/cjs/maplestory/api/common/dto/character/characterList.js +0 -14
- package/dist/esm/maplestory/api/common/dto/character/characterList.js +0 -8
- package/types/maplestory/api/common/dto/character/characterList.d.ts +0 -14
- /package/types/maplestory/api/kms/response/{character → user}/characterListBody.d.ts +0 -0
|
@@ -98,7 +98,15 @@ export declare class CharacterAndroidEquipmentFaceDto extends base.CharacterAndr
|
|
|
98
98
|
* 안드로이드 성형 믹스 컬러의 염색 비율
|
|
99
99
|
*/
|
|
100
100
|
mixRate: string;
|
|
101
|
+
/**
|
|
102
|
+
* 프리스타일 쿠폰 적용 여부 (0:미적용, 1:적용)
|
|
103
|
+
*/
|
|
104
|
+
freestyleFlag: string | null;
|
|
101
105
|
constructor(obj: CharacterAndroidEquipmentFaceBody);
|
|
106
|
+
/**
|
|
107
|
+
* 프리스타일 쿠폰 적용 여부
|
|
108
|
+
*/
|
|
109
|
+
get isFreestyleFlag(): boolean;
|
|
102
110
|
}
|
|
103
111
|
/**
|
|
104
112
|
* 캐릭터 안드로이드 헤어 정보
|
|
@@ -120,7 +128,15 @@ export declare class CharacterAndroidEquipmentHairDto extends base.CharacterAndr
|
|
|
120
128
|
* 안드로이드 헤어 믹스 컬러의 염색 비율
|
|
121
129
|
*/
|
|
122
130
|
mixRate: string;
|
|
131
|
+
/**
|
|
132
|
+
* 프리스타일 쿠폰 적용 여부 (0:미적용, 1:적용)
|
|
133
|
+
*/
|
|
134
|
+
freestyleFlag: string | null;
|
|
123
135
|
constructor(obj: CharacterAndroidEquipmentHairBody);
|
|
136
|
+
/**
|
|
137
|
+
* 프리스타일 쿠폰 적용 여부
|
|
138
|
+
*/
|
|
139
|
+
get isFreestyleFlag(): boolean;
|
|
124
140
|
}
|
|
125
141
|
/**
|
|
126
142
|
* 캐릭터 안드로이드 피부 정보
|
|
@@ -290,5 +306,17 @@ export declare class CharacterAndroidCashItemEquipmentDto extends base.Character
|
|
|
290
306
|
* 안드로이드 캐시 아이템 컬러링프리즘 정보
|
|
291
307
|
*/
|
|
292
308
|
cashItemColoringPrism: CharacterAndroidCashItemEquipmentColoringPrismDto | null;
|
|
309
|
+
/**
|
|
310
|
+
* 아이템 장착 가능 성별
|
|
311
|
+
*/
|
|
312
|
+
androidItemGender: string | null;
|
|
313
|
+
/**
|
|
314
|
+
* 프리스타일 쿠폰 적용 여부 (0:미적용, 1:적용)
|
|
315
|
+
*/
|
|
316
|
+
freestyleFlag: string | null;
|
|
293
317
|
constructor(obj: CharacterAndroidCashItemEquipmentBody);
|
|
318
|
+
/**
|
|
319
|
+
* 프리스타일 쿠폰 적용 여부
|
|
320
|
+
*/
|
|
321
|
+
get isFreestyleFlag(): boolean;
|
|
294
322
|
}
|
|
@@ -57,16 +57,12 @@ export declare class CharacterBasicDto extends base.CharacterBasicDto {
|
|
|
57
57
|
*/
|
|
58
58
|
accessFlag: 'true' | 'false';
|
|
59
59
|
/**
|
|
60
|
-
* 해방 퀘스트 완료 여부
|
|
60
|
+
* 해방 퀘스트 완료 여부 (0:미완료, 1:제네시스 무기 해방, 2:데스티니 무기 1차 해방)
|
|
61
61
|
*/
|
|
62
|
-
|
|
62
|
+
liberationQuestClear: string;
|
|
63
63
|
constructor(obj: CharacterBasicBody);
|
|
64
64
|
/**
|
|
65
65
|
* 최근 7일간 접속 여부
|
|
66
66
|
*/
|
|
67
67
|
get isAccessFlag(): boolean;
|
|
68
|
-
/**
|
|
69
|
-
* 해방 퀘스트 완료 여부
|
|
70
|
-
*/
|
|
71
|
-
get isLiberationQuestClearFlag(): boolean;
|
|
72
68
|
}
|
|
@@ -65,7 +65,15 @@ export declare class CharacterBeautyEquipmentFaceDto extends base.CharacterBeaut
|
|
|
65
65
|
* 성형 믹스 컬러의 염색 비율
|
|
66
66
|
*/
|
|
67
67
|
mixRate: string;
|
|
68
|
+
/**
|
|
69
|
+
* 프리스타일 쿠폰 적용 여부 (0:미적용, 1:적용)
|
|
70
|
+
*/
|
|
71
|
+
freestyleFlag: string | null;
|
|
68
72
|
constructor(obj: CharacterBeautyEquipmentFaceBody);
|
|
73
|
+
/**
|
|
74
|
+
* 프리스타일 쿠폰 적용 여부
|
|
75
|
+
*/
|
|
76
|
+
get isFreestyleFlag(): boolean;
|
|
69
77
|
}
|
|
70
78
|
/**
|
|
71
79
|
* 캐릭터 헤어 정보
|
|
@@ -87,7 +95,15 @@ export declare class CharacterBeautyEquipmentHairDto extends base.CharacterBeaut
|
|
|
87
95
|
* 헤어 믹스 컬러의 염색 비율
|
|
88
96
|
*/
|
|
89
97
|
mixRate: string;
|
|
98
|
+
/**
|
|
99
|
+
* 프리스타일 쿠폰 적용 여부 (0:미적용, 1:적용)
|
|
100
|
+
*/
|
|
101
|
+
freestyleFlag: string | null;
|
|
90
102
|
constructor(obj: CharacterBeautyEquipmentHairBody);
|
|
103
|
+
/**
|
|
104
|
+
* 프리스타일 쿠폰 적용 여부
|
|
105
|
+
*/
|
|
106
|
+
get isFreestyleFlag(): boolean;
|
|
91
107
|
}
|
|
92
108
|
/**
|
|
93
109
|
* 캐릭터 피부 정보
|
|
@@ -154,5 +154,13 @@ export declare class CharacterCashItemEquipmentPresetDto extends base.CharacterC
|
|
|
154
154
|
* 스킬명
|
|
155
155
|
*/
|
|
156
156
|
skills: string[];
|
|
157
|
+
/**
|
|
158
|
+
* 프리스타일 쿠폰 적용 여부 (0:미적용, 1:적용)
|
|
159
|
+
*/
|
|
160
|
+
freestyleFlag: string | null;
|
|
157
161
|
constructor(obj: CharacterCashItemEquipmentPresetBody);
|
|
162
|
+
/**
|
|
163
|
+
* 프리스타일 쿠폰 적용 여부
|
|
164
|
+
*/
|
|
165
|
+
get isFreestyleFlag(): boolean;
|
|
158
166
|
}
|
|
@@ -610,7 +610,15 @@ export declare class CharacterItemEquipmentDragonInfoDto extends base.CharacterI
|
|
|
610
610
|
* 장비 유효 기간 만료 여부
|
|
611
611
|
*/
|
|
612
612
|
isExpired: boolean | null;
|
|
613
|
+
/**
|
|
614
|
+
* 프리스타일 쿠폰 적용 여부 (0:미적용, 1:적용)
|
|
615
|
+
*/
|
|
616
|
+
freestyleFlag: string | null;
|
|
613
617
|
constructor(obj: CharacterItemEquipmentDragonInfoBody);
|
|
618
|
+
/**
|
|
619
|
+
* 프리스타일 쿠폰 적용 여부
|
|
620
|
+
*/
|
|
621
|
+
get isFreestyleFlag(): boolean;
|
|
614
622
|
}
|
|
615
623
|
/**
|
|
616
624
|
* 메카닉 장비 정보
|
|
@@ -732,7 +740,15 @@ export declare class CharacterItemEquipmentMechanicInfoDto extends base.Characte
|
|
|
732
740
|
* 장비 유효 기간 만료 여부
|
|
733
741
|
*/
|
|
734
742
|
isExpired: boolean | null;
|
|
743
|
+
/**
|
|
744
|
+
* 프리스타일 쿠폰 적용 여부 (0:미적용, 1:적용)
|
|
745
|
+
*/
|
|
746
|
+
freestyleFlag: string | null;
|
|
735
747
|
constructor(obj: CharacterItemEquipmentMechanicInfoBody);
|
|
748
|
+
/**
|
|
749
|
+
* 프리스타일 쿠폰 적용 여부
|
|
750
|
+
*/
|
|
751
|
+
get isFreestyleFlag(): boolean;
|
|
736
752
|
}
|
|
737
753
|
/**
|
|
738
754
|
* 캐릭터 장비 아이템 상세 정보
|
|
@@ -886,5 +902,13 @@ export declare class CharacterItemEquipmentInfoDto extends base.CharacterItemEqu
|
|
|
886
902
|
* 장비 유효 기간 만료 여부
|
|
887
903
|
*/
|
|
888
904
|
isExpired: boolean | null;
|
|
905
|
+
/**
|
|
906
|
+
* 프리스타일 쿠폰 적용 여부 (0:미적용, 1:적용)
|
|
907
|
+
*/
|
|
908
|
+
freestyleFlag: string | null;
|
|
889
909
|
constructor(obj: CharacterItemEquipmentInfoBody);
|
|
910
|
+
/**
|
|
911
|
+
* 프리스타일 쿠폰 적용 여부
|
|
912
|
+
*/
|
|
913
|
+
get isFreestyleFlag(): boolean;
|
|
890
914
|
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { AchievementAccountListBody, AchievementAchieveBody, AchievementBody } from '../../response/user/achievementBody';
|
|
2
|
+
/**
|
|
3
|
+
* 계정의 업적 목록
|
|
4
|
+
*/
|
|
5
|
+
export declare class AchievementDto {
|
|
6
|
+
/**
|
|
7
|
+
* 메이플스토리 계정 목록
|
|
8
|
+
*/
|
|
9
|
+
accountList: AchievementAccountListDto[];
|
|
10
|
+
constructor(obj: AchievementBody);
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* 메이플스토리 계정
|
|
14
|
+
*/
|
|
15
|
+
export declare class AchievementAccountListDto {
|
|
16
|
+
/**
|
|
17
|
+
* 메이플스토리 계정 식별자
|
|
18
|
+
*/
|
|
19
|
+
accountId: string;
|
|
20
|
+
/**
|
|
21
|
+
* 달성 업적 정보
|
|
22
|
+
*/
|
|
23
|
+
achievementAchieve: AchievementAchieveDto[];
|
|
24
|
+
constructor(obj: AchievementAccountListBody);
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* 달성 업적 정보
|
|
28
|
+
*/
|
|
29
|
+
export declare class AchievementAchieveDto {
|
|
30
|
+
/**
|
|
31
|
+
* 업적 명
|
|
32
|
+
*/
|
|
33
|
+
achievementName: string;
|
|
34
|
+
/**
|
|
35
|
+
* 업적 설명
|
|
36
|
+
*/
|
|
37
|
+
achievementDescription: string;
|
|
38
|
+
constructor(obj: AchievementAchieveBody);
|
|
39
|
+
}
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { CharacterListAccountBody, CharacterListAccountCharacterBody, CharacterListBody } from '../../response/character/characterListBody';
|
|
1
|
+
import { CharacterListAccountBody, CharacterListAccountCharacterBody, CharacterListBody } from '../../response/user/characterListBody';
|
|
3
2
|
/**
|
|
4
3
|
* 계정의 보유 캐릭터 목록
|
|
5
4
|
*/
|
|
6
|
-
export declare class CharacterListDto
|
|
5
|
+
export declare class CharacterListDto {
|
|
7
6
|
/**
|
|
8
7
|
* 메이플스토리 계정 목록
|
|
9
8
|
*/
|
|
@@ -13,7 +12,7 @@ export declare class CharacterListDto extends base.CharacterListDto {
|
|
|
13
12
|
/**
|
|
14
13
|
* 캐릭터 정보
|
|
15
14
|
*/
|
|
16
|
-
export declare class CharacterListAccountCharacterDto
|
|
15
|
+
export declare class CharacterListAccountCharacterDto {
|
|
17
16
|
/**
|
|
18
17
|
* 캐릭터 식별자
|
|
19
18
|
*/
|
|
@@ -39,7 +38,7 @@ export declare class CharacterListAccountCharacterDto extends base.CharacterList
|
|
|
39
38
|
/**
|
|
40
39
|
* 메이플스토리 계정
|
|
41
40
|
*/
|
|
42
|
-
export declare class CharacterListAccountDto
|
|
41
|
+
export declare class CharacterListAccountDto {
|
|
43
42
|
/**
|
|
44
43
|
* 메이플스토리 계정 식별자
|
|
45
44
|
*/
|
|
@@ -12,7 +12,6 @@ export * from './dto/character/characterHyperStat';
|
|
|
12
12
|
export * from './dto/character/characterImage';
|
|
13
13
|
export * from './dto/character/characterItemEquipment';
|
|
14
14
|
export * from './dto/character/characterLinkSkill';
|
|
15
|
-
export * from './dto/character/characterList';
|
|
16
15
|
export * from './dto/character/characterPetEquipment';
|
|
17
16
|
export * from './dto/character/characterPopularity';
|
|
18
17
|
export * from './dto/character/characterPropensity';
|
|
@@ -44,4 +43,6 @@ export * from './dto/union/union';
|
|
|
44
43
|
export * from './dto/union/unionArtifact';
|
|
45
44
|
export * from './dto/union/unionChampion';
|
|
46
45
|
export * from './dto/union/unionRaider';
|
|
46
|
+
export * from './dto/user/achievement';
|
|
47
|
+
export * from './dto/user/characterList';
|
|
47
48
|
export * from './dto/inspectionInfo';
|
|
@@ -11,7 +11,6 @@ import { CharacterHyperStatDto } from './dto/character/characterHyperStat';
|
|
|
11
11
|
import { CharacterImageDto } from './dto/character/characterImage';
|
|
12
12
|
import { CharacterItemEquipmentDto } from './dto/character/characterItemEquipment';
|
|
13
13
|
import { CharacterLinkSkillDto } from './dto/character/characterLinkSkill';
|
|
14
|
-
import { CharacterListDto } from './dto/character/characterList';
|
|
15
14
|
import { CharacterPetEquipmentDto } from './dto/character/characterPetEquipment';
|
|
16
15
|
import { CharacterPopularityDto } from './dto/character/characterPopularity';
|
|
17
16
|
import { CharacterPropensityDto } from './dto/character/characterPropensity';
|
|
@@ -44,6 +43,8 @@ import { UnionDto } from './dto/union/union';
|
|
|
44
43
|
import { UnionArtifactDto } from './dto/union/unionArtifact';
|
|
45
44
|
import { UnionChampionDto } from './dto/union/unionChampion';
|
|
46
45
|
import { UnionRaiderDto } from './dto/union/unionRaider';
|
|
46
|
+
import { AchievementDto } from './dto/user/achievement';
|
|
47
|
+
import { CharacterListDto } from './dto/user/characterList';
|
|
47
48
|
import { CharacterImageAction, CharacterImageEmotion, CharacterImageWeaponMotion } from '../common/enum/characterImage';
|
|
48
49
|
import { DateOptions } from '../common/mapleStoryApi';
|
|
49
50
|
import * as base from '../common/mapleStoryApi';
|
|
@@ -56,24 +57,32 @@ export declare class MapleStoryApi extends base.MapleStoryApi {
|
|
|
56
57
|
protected timezoneOffset: number;
|
|
57
58
|
constructor(apiKey: string);
|
|
58
59
|
/**
|
|
59
|
-
* 캐릭터
|
|
60
|
+
* 계정의 보유 캐릭터 목록을 조회합니다.
|
|
60
61
|
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
61
|
-
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
62
62
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
63
63
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
64
64
|
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
65
|
-
*
|
|
66
|
-
* @param characterName 캐릭터 명
|
|
67
65
|
*/
|
|
68
|
-
|
|
66
|
+
getCharacterList(): Promise<CharacterListDto>;
|
|
69
67
|
/**
|
|
70
|
-
* 계정의
|
|
68
|
+
* 계정의 업적 정보를 조회합니다.
|
|
71
69
|
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
72
70
|
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
73
71
|
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
74
72
|
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
75
73
|
*/
|
|
76
|
-
|
|
74
|
+
getAchievement(): Promise<AchievementDto>;
|
|
75
|
+
/**
|
|
76
|
+
* 캐릭터 식별자(ocid)를 조회합니다.
|
|
77
|
+
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
78
|
+
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
|
|
79
|
+
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
|
|
80
|
+
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
|
|
81
|
+
* - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
|
|
82
|
+
*
|
|
83
|
+
* @param characterName 캐릭터 명
|
|
84
|
+
*/
|
|
85
|
+
getCharacter(characterName: string): Promise<CharacterDto>;
|
|
77
86
|
/**
|
|
78
87
|
* 기본 정보를 조회합니다.
|
|
79
88
|
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
|
|
@@ -23,12 +23,14 @@ export type CharacterAndroidEquipmentHairBody = {
|
|
|
23
23
|
base_color: string | null;
|
|
24
24
|
mix_color: string | null;
|
|
25
25
|
mix_rate: string;
|
|
26
|
+
freestyle_flag: string | null;
|
|
26
27
|
};
|
|
27
28
|
export type CharacterAndroidEquipmentFaceBody = {
|
|
28
29
|
face_name: string | null;
|
|
29
30
|
base_color: string | null;
|
|
30
31
|
mix_color: string | null;
|
|
31
32
|
mix_rate: string;
|
|
33
|
+
freestyle_flag: string | null;
|
|
32
34
|
};
|
|
33
35
|
export type CharacterAndroidEquipmentSkinBody = {
|
|
34
36
|
skin_name: string;
|
|
@@ -62,6 +64,8 @@ export type CharacterAndroidCashItemEquipmentBody = {
|
|
|
62
64
|
date_option_expire: string | null;
|
|
63
65
|
cash_item_label: string | null;
|
|
64
66
|
cash_item_coloring_prism: CharacterAndroidCashItemEquipmentColoringPrismBody | null;
|
|
67
|
+
android_item_gender: string;
|
|
68
|
+
freestyle_flag: string | null;
|
|
65
69
|
};
|
|
66
70
|
export type CharacterAndroidCashItemEquipmentOptionBody = {
|
|
67
71
|
option_type: string;
|
|
@@ -14,12 +14,14 @@ export type CharacterBeautyEquipmentHairBody = {
|
|
|
14
14
|
base_color: string;
|
|
15
15
|
mix_color: string | null;
|
|
16
16
|
mix_rate: string;
|
|
17
|
+
freestyle_flag: string | null;
|
|
17
18
|
};
|
|
18
19
|
export type CharacterBeautyEquipmentFaceBody = {
|
|
19
20
|
face_name: string;
|
|
20
21
|
base_color: string;
|
|
21
22
|
mix_color: string | null;
|
|
22
23
|
mix_rate: string;
|
|
24
|
+
freestyle_flag: string | null;
|
|
23
25
|
};
|
|
24
26
|
export type CharacterBeautyEquipmentSkinBody = {
|
|
25
27
|
skin_name: string;
|
|
@@ -26,6 +26,7 @@ export type CharacterCashItemEquipmentPresetBody = {
|
|
|
26
26
|
cash_item_coloring_prism: CharacterCashItemEquipmentColoringPrismBody | null;
|
|
27
27
|
item_gender: string | null;
|
|
28
28
|
skills: string[];
|
|
29
|
+
freestyle_flag: string | null;
|
|
29
30
|
};
|
|
30
31
|
export type CharacterCashItemEquipmentOptionBody = {
|
|
31
32
|
option_type: string;
|
|
@@ -49,6 +49,7 @@ export type CharacterItemEquipmentInfoBody = {
|
|
|
49
49
|
item_starforce_option: CharacterItemEquipmentStarforceOptionBody;
|
|
50
50
|
special_ring_level: number;
|
|
51
51
|
date_expire: string | null;
|
|
52
|
+
freestyle_flag: string | null;
|
|
52
53
|
};
|
|
53
54
|
export type CharacterItemEquipmentMechanicInfoBody = {
|
|
54
55
|
item_equipment_part: string;
|
|
@@ -79,6 +80,7 @@ export type CharacterItemEquipmentMechanicInfoBody = {
|
|
|
79
80
|
item_starforce_option: CharacterItemEquipmentOptionBody;
|
|
80
81
|
special_ring_level: number;
|
|
81
82
|
date_expire: string | null;
|
|
83
|
+
freestyle_flag: string | null;
|
|
82
84
|
};
|
|
83
85
|
export type CharacterItemEquipmentDragonInfoBody = CharacterItemEquipmentMechanicInfoBody;
|
|
84
86
|
export type CharacterItemEquipmentOptionBody = {
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export type AchievementBody = {
|
|
2
|
+
account_list: AchievementAccountListBody[];
|
|
3
|
+
};
|
|
4
|
+
export type AchievementAccountListBody = {
|
|
5
|
+
account_id: string;
|
|
6
|
+
achievement_achieve: AchievementAchieveBody[];
|
|
7
|
+
};
|
|
8
|
+
export type AchievementAchieveBody = {
|
|
9
|
+
achievement_name: string;
|
|
10
|
+
achievement_description: string;
|
|
11
|
+
};
|
|
@@ -291,5 +291,9 @@ export declare class CharacterAndroidCashItemEquipmentDto extends base.Character
|
|
|
291
291
|
* Android cash item coloring prism information
|
|
292
292
|
*/
|
|
293
293
|
cashItemColoringPrism: CharacterAndroidCashItemEquipmentColoringPrismDto | null;
|
|
294
|
+
/**
|
|
295
|
+
* Gender compatibility for item equipment
|
|
296
|
+
*/
|
|
297
|
+
androidItemGender: string | null;
|
|
294
298
|
constructor(obj: CharacterAndroidCashItemEquipmentBody);
|
|
295
299
|
}
|
|
@@ -62,6 +62,7 @@ export type CharacterAndroidCashItemEquipmentBody = {
|
|
|
62
62
|
date_option_expire: string | null;
|
|
63
63
|
cash_item_label: string | null;
|
|
64
64
|
cash_item_coloring_prism: CharacterAndroidCashItemEquipmentColoringPrismBody | null;
|
|
65
|
+
android_item_gender: string | null;
|
|
65
66
|
};
|
|
66
67
|
export type CharacterAndroidCashItemEquipmentOptionBody = {
|
|
67
68
|
option_type: string;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
|
-
class CharacterListDto {
|
|
6
|
-
}
|
|
7
|
-
class CharacterListAccountCharacterDto {
|
|
8
|
-
}
|
|
9
|
-
class CharacterListAccountDto {
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
exports.CharacterListAccountCharacterDto = CharacterListAccountCharacterDto;
|
|
13
|
-
exports.CharacterListAccountDto = CharacterListAccountDto;
|
|
14
|
-
exports.CharacterListDto = CharacterListDto;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
export declare abstract class CharacterListDto {
|
|
2
|
-
abstract accountList: CharacterListAccountDto[];
|
|
3
|
-
}
|
|
4
|
-
export declare abstract class CharacterListAccountCharacterDto {
|
|
5
|
-
abstract ocid: string;
|
|
6
|
-
abstract characterName: string;
|
|
7
|
-
abstract worldName: string;
|
|
8
|
-
abstract characterClass: string;
|
|
9
|
-
abstract characterLevel: number;
|
|
10
|
-
}
|
|
11
|
-
export declare abstract class CharacterListAccountDto {
|
|
12
|
-
abstract accountId: string;
|
|
13
|
-
abstract characterList: CharacterListAccountCharacterDto[];
|
|
14
|
-
}
|
|
File without changes
|