maplestory-openapi 3.4.0 → 3.4.1
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/kms/dto/character/characterRingExchangeSkillEquipment.js +11 -1
- package/dist/esm/maplestory/api/kms/dto/character/characterRingExchangeSkillEquipment.js +11 -1
- package/package.json +1 -1
- package/types/maplestory/api/kms/dto/character/characterRingExchangeSkillEquipment.d.ts +8 -0
- package/types/maplestory/api/kms/response/character/characterRingExchangeSkillEquipmentBody.d.ts +2 -0
|
@@ -22,12 +22,22 @@ class CharacterRingExchangeSkillEquipmentDto {
|
|
|
22
22
|
* 링 익스체인지에 등록된 특수 반지 레벨
|
|
23
23
|
*/
|
|
24
24
|
specialRingExchangeLevel;
|
|
25
|
+
/**
|
|
26
|
+
* 링 익스체인지에 등록된 특수 반지 아이콘
|
|
27
|
+
*/
|
|
28
|
+
specialRingExchangeIcon;
|
|
29
|
+
/**
|
|
30
|
+
* 링 익스체인지에 등록된 특수 반지 설명
|
|
31
|
+
*/
|
|
32
|
+
specialRingExchangeDescription;
|
|
25
33
|
constructor(obj) {
|
|
26
|
-
const { date, character_class, special_ring_exchange_name, special_ring_exchange_level } = obj;
|
|
34
|
+
const { date, character_class, special_ring_exchange_name, special_ring_exchange_level, special_ring_exchange_icon, special_ring_exchange_description } = obj;
|
|
27
35
|
this.date = date ? new Date(date) : null;
|
|
28
36
|
this.characterClass = character_class ?? '';
|
|
29
37
|
this.specialRingExchangeName = special_ring_exchange_name ?? null;
|
|
30
38
|
this.specialRingExchangeLevel = special_ring_exchange_level ?? null;
|
|
39
|
+
this.specialRingExchangeIcon = special_ring_exchange_icon ?? null;
|
|
40
|
+
this.specialRingExchangeDescription = special_ring_exchange_description ?? null;
|
|
31
41
|
}
|
|
32
42
|
}
|
|
33
43
|
|
|
@@ -18,12 +18,22 @@ class CharacterRingExchangeSkillEquipmentDto {
|
|
|
18
18
|
* 링 익스체인지에 등록된 특수 반지 레벨
|
|
19
19
|
*/
|
|
20
20
|
specialRingExchangeLevel;
|
|
21
|
+
/**
|
|
22
|
+
* 링 익스체인지에 등록된 특수 반지 아이콘
|
|
23
|
+
*/
|
|
24
|
+
specialRingExchangeIcon;
|
|
25
|
+
/**
|
|
26
|
+
* 링 익스체인지에 등록된 특수 반지 설명
|
|
27
|
+
*/
|
|
28
|
+
specialRingExchangeDescription;
|
|
21
29
|
constructor(obj) {
|
|
22
|
-
const { date, character_class, special_ring_exchange_name, special_ring_exchange_level } = obj;
|
|
30
|
+
const { date, character_class, special_ring_exchange_name, special_ring_exchange_level, special_ring_exchange_icon, special_ring_exchange_description } = obj;
|
|
23
31
|
this.date = date ? new Date(date) : null;
|
|
24
32
|
this.characterClass = character_class ?? '';
|
|
25
33
|
this.specialRingExchangeName = special_ring_exchange_name ?? null;
|
|
26
34
|
this.specialRingExchangeLevel = special_ring_exchange_level ?? null;
|
|
35
|
+
this.specialRingExchangeIcon = special_ring_exchange_icon ?? null;
|
|
36
|
+
this.specialRingExchangeDescription = special_ring_exchange_description ?? null;
|
|
27
37
|
}
|
|
28
38
|
}
|
|
29
39
|
|
package/package.json
CHANGED
|
@@ -19,5 +19,13 @@ export declare class CharacterRingExchangeSkillEquipmentDto {
|
|
|
19
19
|
* 링 익스체인지에 등록된 특수 반지 레벨
|
|
20
20
|
*/
|
|
21
21
|
specialRingExchangeLevel: number | null;
|
|
22
|
+
/**
|
|
23
|
+
* 링 익스체인지에 등록된 특수 반지 아이콘
|
|
24
|
+
*/
|
|
25
|
+
specialRingExchangeIcon: string | null;
|
|
26
|
+
/**
|
|
27
|
+
* 링 익스체인지에 등록된 특수 반지 설명
|
|
28
|
+
*/
|
|
29
|
+
specialRingExchangeDescription: string | null;
|
|
22
30
|
constructor(obj: CharacterRingExchangeSkillEquipmentBody);
|
|
23
31
|
}
|