maplestory-openapi 3.2.0 → 3.2.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.
@@ -16,10 +16,6 @@ class CubeHistoryDto {
16
16
  * 캐릭터 명
17
17
  */
18
18
  characterName;
19
- /**
20
- * 월드 명
21
- */
22
- worldName;
23
19
  /**
24
20
  * 사용 일시
25
21
  */
@@ -81,10 +77,9 @@ class CubeHistoryDto {
81
77
  */
82
78
  afterAdditionalPotentialOption;
83
79
  constructor(obj) {
84
- const { id, character_name, world_name, date_create, cube_type, item_upgrade_result, miracle_time_flag, item_equipment_part, item_level, target_item, potential_option_grade, additional_potential_option_grade, upgrade_guarantee, upgrade_guarantee_count, before_potential_option, before_additional_potential_option, after_potential_option, after_additional_potential_option, } = obj;
80
+ const { id, character_name, date_create, cube_type, item_upgrade_result, miracle_time_flag, item_equipment_part, item_level, target_item, potential_option_grade, additional_potential_option_grade, upgrade_guarantee, upgrade_guarantee_count, before_potential_option, before_additional_potential_option, after_potential_option, after_additional_potential_option, } = obj;
85
81
  this.id = id;
86
82
  this.characterName = character_name;
87
- this.worldName = world_name;
88
83
  this.dateCreate = new Date(date_create);
89
84
  this.cubeType = cube_type;
90
85
  this.itemUpgradeResult = item_upgrade_result;
@@ -12,10 +12,6 @@ class CubeHistoryDto {
12
12
  * 캐릭터 명
13
13
  */
14
14
  characterName;
15
- /**
16
- * 월드 명
17
- */
18
- worldName;
19
15
  /**
20
16
  * 사용 일시
21
17
  */
@@ -77,10 +73,9 @@ class CubeHistoryDto {
77
73
  */
78
74
  afterAdditionalPotentialOption;
79
75
  constructor(obj) {
80
- const { id, character_name, world_name, date_create, cube_type, item_upgrade_result, miracle_time_flag, item_equipment_part, item_level, target_item, potential_option_grade, additional_potential_option_grade, upgrade_guarantee, upgrade_guarantee_count, before_potential_option, before_additional_potential_option, after_potential_option, after_additional_potential_option, } = obj;
76
+ const { id, character_name, date_create, cube_type, item_upgrade_result, miracle_time_flag, item_equipment_part, item_level, target_item, potential_option_grade, additional_potential_option_grade, upgrade_guarantee, upgrade_guarantee_count, before_potential_option, before_additional_potential_option, after_potential_option, after_additional_potential_option, } = obj;
81
77
  this.id = id;
82
78
  this.characterName = character_name;
83
- this.worldName = world_name;
84
79
  this.dateCreate = new Date(date_create);
85
80
  this.cubeType = cube_type;
86
81
  this.itemUpgradeResult = item_upgrade_result;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "maplestory-openapi",
3
- "version": "3.2.0",
3
+ "version": "3.2.1",
4
4
  "description": "This JavaScript library enables the use of the MapleStory OpenAPI of Nexon.",
5
5
  "keywords": [
6
6
  "maplestory",
@@ -12,10 +12,6 @@ export declare class CubeHistoryDto {
12
12
  * 캐릭터 명
13
13
  */
14
14
  characterName: string;
15
- /**
16
- * 월드 명
17
- */
18
- worldName: string;
19
15
  /**
20
16
  * 사용 일시
21
17
  */
@@ -5,7 +5,6 @@ export type CubeResultOptionBody = {
5
5
  export type CubeHistoryBody = {
6
6
  id: string;
7
7
  character_name: string;
8
- world_name: string;
9
8
  date_create: string;
10
9
  cube_type: string;
11
10
  item_upgrade_result: string;