maplestory-openapi 3.8.0 → 3.9.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.
@@ -312,9 +312,13 @@ class CharacterPetEquipmentItemDto extends characterPetEquipment.CharacterPetEqu
312
312
  * 아이템 외형 아이콘
313
313
  */
314
314
  itemShapeIcon;
315
+ /**
316
+ * 아이템 만료시간 (KST, 분 단위는 일괄 0으로 표기, null:무제한, -1:미착용)
317
+ */
318
+ itemDateExpire;
315
319
  constructor(obj) {
316
320
  super();
317
- const { item_name, item_icon, item_description, item_option, scroll_upgrade, scroll_upgradable, item_shape, item_shape_icon, } = obj;
321
+ const { item_name, item_icon, item_description, item_option, scroll_upgrade, scroll_upgradable, item_shape, item_shape_icon, item_date_expire, } = obj;
318
322
  this.itemName = item_name;
319
323
  this.itemIcon = item_icon;
320
324
  this.itemDescription = item_description;
@@ -323,6 +327,7 @@ class CharacterPetEquipmentItemDto extends characterPetEquipment.CharacterPetEqu
323
327
  this.scrollUpgradable = scroll_upgradable;
324
328
  this.itemShape = item_shape;
325
329
  this.itemShapeIcon = item_shape_icon;
330
+ this.itemDateExpire = item_date_expire ? new Date(item_date_expire) : null;
326
331
  }
327
332
  }
328
333
 
@@ -0,0 +1,44 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ /**
6
+ * 캐릭터 예비 특수 반지 장착 정보
7
+ */
8
+ class CharacterRingReserveSkillEquipmentDto {
9
+ /**
10
+ * 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
11
+ */
12
+ date;
13
+ /**
14
+ * 캐릭터 직업
15
+ */
16
+ characterClass;
17
+ /**
18
+ * 예비 특수 반지 슬롯에 장착한 특수 반지
19
+ */
20
+ specialRingReserveName;
21
+ /**
22
+ * 예비 특수 반지 슬롯에 장착한 특수 반지 레벨
23
+ */
24
+ specialRingReserveLevel;
25
+ /**
26
+ * 예비 특수 반지 슬롯에 장착한 특수 반지 아이콘
27
+ */
28
+ specialRingReserveIcon;
29
+ /**
30
+ * 예비 특수 반지 슬롯에 장착한 특수 반지 설명
31
+ */
32
+ specialRingReserveDescription;
33
+ constructor(obj) {
34
+ const { date, character_class, special_ring_reserve_name, special_ring_reserve_level, special_ring_reserve_icon, special_ring_reserve_description, } = obj;
35
+ this.date = date ? new Date(date) : null;
36
+ this.characterClass = character_class;
37
+ this.specialRingReserveName = special_ring_reserve_name;
38
+ this.specialRingReserveLevel = special_ring_reserve_level;
39
+ this.specialRingReserveIcon = special_ring_reserve_icon;
40
+ this.specialRingReserveDescription = special_ring_reserve_description;
41
+ }
42
+ }
43
+
44
+ exports.CharacterRingReserveSkillEquipmentDto = CharacterRingReserveSkillEquipmentDto;
@@ -25,6 +25,8 @@ var characterSetEffect = require('./dto/character/characterSetEffect.js');
25
25
  var characterSkill = require('./dto/character/characterSkill.js');
26
26
  var characterStat = require('./dto/character/characterStat.js');
27
27
  var characterSymbolEquipment = require('./dto/character/characterSymbolEquipment.js');
28
+ var characterRingExchangeSkillEquipment = require('./dto/character/characterRingExchangeSkillEquipment.js');
29
+ var characterRingReserveSkillEquipment = require('./dto/character/characterRingReserveSkillEquipment.js');
28
30
  var characterVMatrix = require('./dto/character/characterVMatrix.js');
29
31
  var guild = require('./dto/guild/guild.js');
30
32
  var guildBasic = require('./dto/guild/guildBasic.js');
@@ -121,6 +123,8 @@ exports.CharacterFinalStatDto = characterStat.CharacterFinalStatDto;
121
123
  exports.CharacterStatDto = characterStat.CharacterStatDto;
122
124
  exports.CharacterSymbolEquipmentDto = characterSymbolEquipment.CharacterSymbolEquipmentDto;
123
125
  exports.CharacterSymbolEquipmentInfoDto = characterSymbolEquipment.CharacterSymbolEquipmentInfoDto;
126
+ exports.CharacterRingExchangeSkillEquipmentDto = characterRingExchangeSkillEquipment.CharacterRingExchangeSkillEquipmentDto;
127
+ exports.CharacterRingReserveSkillEquipmentDto = characterRingReserveSkillEquipment.CharacterRingReserveSkillEquipmentDto;
124
128
  exports.CharacterVMatrixCodeEquipmentDto = characterVMatrix.CharacterVMatrixCodeEquipmentDto;
125
129
  exports.CharacterVMatrixDto = characterVMatrix.CharacterVMatrixDto;
126
130
  exports.GuildDto = guild.GuildDto;
@@ -23,6 +23,7 @@ var characterPetEquipment = require('./dto/character/characterPetEquipment.js');
23
23
  var characterPopularity = require('./dto/character/characterPopularity.js');
24
24
  var characterPropensity = require('./dto/character/characterPropensity.js');
25
25
  var characterRingExchangeSkillEquipment = require('./dto/character/characterRingExchangeSkillEquipment.js');
26
+ var characterRingReserveSkillEquipment = require('./dto/character/characterRingReserveSkillEquipment.js');
26
27
  var characterSetEffect = require('./dto/character/characterSetEffect.js');
27
28
  var characterSkill = require('./dto/character/characterSkill.js');
28
29
  var characterStat = require('./dto/character/characterStat.js');
@@ -55,8 +56,8 @@ var unionRaider = require('./dto/union/unionRaider.js');
55
56
  var achievement = require('./dto/user/achievement.js');
56
57
  var characterList = require('./dto/user/characterList.js');
57
58
  var characterImage = require('../common/enum/characterImage.js');
58
- var mapleStoryApi = require('../common/mapleStoryApi.js');
59
59
  var lib = require('../common/lib.js');
60
+ var mapleStoryApi = require('../common/mapleStoryApi.js');
60
61
  var index = require('../../../_virtual/index.js_commonjs-exports.js');
61
62
 
62
63
  function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
@@ -827,7 +828,8 @@ class MapleStoryApi extends mapleStoryApi.MapleStoryApi {
827
828
  /**
828
829
  * 링 익스체인지 스킬 등록 장비를 조회합니다.
829
830
  * - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
830
- * - 2025년 8월 21 데이터부터 조회할 수 있습니다.
831
+ * - 2025년 08월 21일부터 2026년 3월 18일까지의 데이터를 조회할 수 있습니다.
832
+ * - 2026년 3월 19일부터는 예비 특수 반지 장착 정보 조회를 사용해주세요.
831
833
  * - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (8월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
832
834
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
833
835
  * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
@@ -856,6 +858,38 @@ class MapleStoryApi extends mapleStoryApi.MapleStoryApi {
856
858
  }
857
859
  return new characterRingExchangeSkillEquipment.CharacterRingExchangeSkillEquipmentDto(data);
858
860
  }
861
+ /**
862
+ * 예비 특수 반지 장착 정보를 조회합니다.
863
+ * - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
864
+ * - 2026년 3월 19일 데이터부터 조회할 수 있습니다.
865
+ * - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (3월 20일 데이터 조회 시, 20일 00시부터 21일 00시 사이 데이터가 조회 됩니다.)
866
+ * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
867
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
868
+ *
869
+ * @param ocid 캐릭터 식별자
870
+ * @param dateOptions 조회 기준일 (KST)
871
+ */
872
+ async getCharacterRingReserveSkillEquipment(ocid, dateOptions) {
873
+ const path = `${this.subUrl}/v1/character/ring-reserve-skill-equipment`;
874
+ const date = dateOptions
875
+ ? this.toDateString(dateOptions, {
876
+ year: 2026,
877
+ month: 3,
878
+ day: 19,
879
+ })
880
+ : undefined;
881
+ const query = {
882
+ ocid: ocid,
883
+ date: date,
884
+ };
885
+ const { data } = await this.client.get(path, {
886
+ params: query,
887
+ });
888
+ if (this.isEmptyResponse(data)) {
889
+ return null;
890
+ }
891
+ return new characterRingReserveSkillEquipment.CharacterRingReserveSkillEquipmentDto(data);
892
+ }
859
893
  //#endregion
860
894
  //#region 유니온 정보 조회
861
895
  /**
@@ -1120,17 +1154,18 @@ class MapleStoryApi extends mapleStoryApi.MapleStoryApi {
1120
1154
  //#region 랭킹 정보 조회
1121
1155
  /**
1122
1156
  * 종합 랭킹 정보를 조회합니다.
1123
- * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
1124
- * - 오전 830분부터 오늘의 랭킹 정보를 조회할 수 있습니다.
1157
+ * - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
1158
+ * - 오늘의 랭킹 정보는 오전 9경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
1125
1159
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
1160
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
1126
1161
  *
1127
1162
  * @param filterOptions 검색 기준
1128
1163
  * @param dateOptions 조회 기준일 (KST).
1129
1164
  *
1130
1165
  */
1131
1166
  async getOverallRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
1132
- hour: 8,
1133
- minute: 30,
1167
+ hour: 9,
1168
+ minute: 0,
1134
1169
  dateOffset: 0,
1135
1170
  })) {
1136
1171
  const path = `${this.subUrl}/v1/ranking/overall`;
@@ -1157,15 +1192,16 @@ class MapleStoryApi extends mapleStoryApi.MapleStoryApi {
1157
1192
  /**
1158
1193
  * 유니온 랭킹 정보를 조회합니다.
1159
1194
  * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
1160
- * - 오전 830분부터 오늘의 랭킹 정보를 조회할 수 있습니다.
1195
+ * - 오늘의 랭킹 정보는 오전 9경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
1161
1196
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
1197
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
1162
1198
  *
1163
1199
  * @param filterOptions 검색 기준
1164
1200
  * @param dateOptions 조회 기준일 (KST)
1165
1201
  */
1166
1202
  async getUnionRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
1167
- hour: 8,
1168
- minute: 30,
1203
+ hour: 9,
1204
+ minute: 0,
1169
1205
  dateOffset: 0,
1170
1206
  })) {
1171
1207
  const path = `${this.subUrl}/v1/ranking/union`;
@@ -1190,15 +1226,16 @@ class MapleStoryApi extends mapleStoryApi.MapleStoryApi {
1190
1226
  /**
1191
1227
  * 길드 랭킹 정보를 조회합니다.
1192
1228
  * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
1193
- * - 오전 830분부터 오늘의 랭킹 정보를 조회할 수 있습니다.
1229
+ * - 오늘의 랭킹 정보는 오전 9경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
1194
1230
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
1231
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
1195
1232
  *
1196
1233
  * @param filterOptions 검색 기준
1197
1234
  * @param dateOptions 조회 기준일 (KST)
1198
1235
  */
1199
1236
  async getGuildRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
1200
- hour: 8,
1201
- minute: 30,
1237
+ hour: 9,
1238
+ minute: 0,
1202
1239
  dateOffset: 0,
1203
1240
  })) {
1204
1241
  const path = `${this.subUrl}/v1/ranking/guild`;
@@ -1225,15 +1262,16 @@ class MapleStoryApi extends mapleStoryApi.MapleStoryApi {
1225
1262
  /**
1226
1263
  * 무릉도장 랭킹 정보를 조회합니다.
1227
1264
  * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
1228
- * - 오전 830분부터 오늘의 랭킹 정보를 조회할 수 있습니다.
1265
+ * - 오늘의 랭킹 정보는 오전 9경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
1229
1266
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
1267
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
1230
1268
  *
1231
1269
  * @param filterOptions 검색 기준
1232
1270
  * @param dateOptions 조회 기준일 (KST)
1233
1271
  */
1234
1272
  async getDojangRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
1235
- hour: 8,
1236
- minute: 30,
1273
+ hour: 9,
1274
+ minute: 0,
1237
1275
  dateOffset: 0,
1238
1276
  })) {
1239
1277
  const path = `${this.subUrl}/v1/ranking/dojang`;
@@ -1261,15 +1299,16 @@ class MapleStoryApi extends mapleStoryApi.MapleStoryApi {
1261
1299
  /**
1262
1300
  * 더 시드 랭킹 정보를 조회합니다.
1263
1301
  * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
1264
- * - 오전 830분부터 오늘의 랭킹 정보를 조회할 수 있습니다.
1302
+ * - 오늘의 랭킹 정보는 오전 9경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
1265
1303
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
1304
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
1266
1305
  *
1267
1306
  * @param filterOptions 검색 기준
1268
1307
  * @param dateOptions 조회 기준일 (KST)
1269
1308
  */
1270
1309
  async getSeedRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
1271
- hour: 8,
1272
- minute: 30,
1310
+ hour: 9,
1311
+ minute: 0,
1273
1312
  dateOffset: 0,
1274
1313
  })) {
1275
1314
  const path = `${this.subUrl}/v1/ranking/theseed`;
@@ -1294,15 +1333,16 @@ class MapleStoryApi extends mapleStoryApi.MapleStoryApi {
1294
1333
  /**
1295
1334
  * 업적 랭킹 정보를 조회합니다.
1296
1335
  * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
1297
- * - 오전 830분부터 오늘의 랭킹 정보를 조회할 수 있습니다.
1336
+ * - 오늘의 랭킹 정보는 오전 9경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
1298
1337
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
1338
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
1299
1339
  *
1300
1340
  * @param filterOptions 검색 기준
1301
1341
  * @param dateOptions 조회 기준일 (KST)
1302
1342
  */
1303
1343
  async getAchievementRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
1304
- hour: 8,
1305
- minute: 30,
1344
+ hour: 9,
1345
+ minute: 0,
1306
1346
  dateOffset: 0,
1307
1347
  })) {
1308
1348
  const path = `${this.subUrl}/v1/ranking/achievement`;
@@ -308,9 +308,13 @@ class CharacterPetEquipmentItemDto extends CharacterPetEquipmentItemDto$1 {
308
308
  * 아이템 외형 아이콘
309
309
  */
310
310
  itemShapeIcon;
311
+ /**
312
+ * 아이템 만료시간 (KST, 분 단위는 일괄 0으로 표기, null:무제한, -1:미착용)
313
+ */
314
+ itemDateExpire;
311
315
  constructor(obj) {
312
316
  super();
313
- const { item_name, item_icon, item_description, item_option, scroll_upgrade, scroll_upgradable, item_shape, item_shape_icon, } = obj;
317
+ const { item_name, item_icon, item_description, item_option, scroll_upgrade, scroll_upgradable, item_shape, item_shape_icon, item_date_expire, } = obj;
314
318
  this.itemName = item_name;
315
319
  this.itemIcon = item_icon;
316
320
  this.itemDescription = item_description;
@@ -319,6 +323,7 @@ class CharacterPetEquipmentItemDto extends CharacterPetEquipmentItemDto$1 {
319
323
  this.scrollUpgradable = scroll_upgradable;
320
324
  this.itemShape = item_shape;
321
325
  this.itemShapeIcon = item_shape_icon;
326
+ this.itemDateExpire = item_date_expire ? new Date(item_date_expire) : null;
322
327
  }
323
328
  }
324
329
 
@@ -0,0 +1,40 @@
1
+ /**
2
+ * 캐릭터 예비 특수 반지 장착 정보
3
+ */
4
+ class CharacterRingReserveSkillEquipmentDto {
5
+ /**
6
+ * 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
7
+ */
8
+ date;
9
+ /**
10
+ * 캐릭터 직업
11
+ */
12
+ characterClass;
13
+ /**
14
+ * 예비 특수 반지 슬롯에 장착한 특수 반지
15
+ */
16
+ specialRingReserveName;
17
+ /**
18
+ * 예비 특수 반지 슬롯에 장착한 특수 반지 레벨
19
+ */
20
+ specialRingReserveLevel;
21
+ /**
22
+ * 예비 특수 반지 슬롯에 장착한 특수 반지 아이콘
23
+ */
24
+ specialRingReserveIcon;
25
+ /**
26
+ * 예비 특수 반지 슬롯에 장착한 특수 반지 설명
27
+ */
28
+ specialRingReserveDescription;
29
+ constructor(obj) {
30
+ const { date, character_class, special_ring_reserve_name, special_ring_reserve_level, special_ring_reserve_icon, special_ring_reserve_description, } = obj;
31
+ this.date = date ? new Date(date) : null;
32
+ this.characterClass = character_class;
33
+ this.specialRingReserveName = special_ring_reserve_name;
34
+ this.specialRingReserveLevel = special_ring_reserve_level;
35
+ this.specialRingReserveIcon = special_ring_reserve_icon;
36
+ this.specialRingReserveDescription = special_ring_reserve_description;
37
+ }
38
+ }
39
+
40
+ export { CharacterRingReserveSkillEquipmentDto };
@@ -21,6 +21,8 @@ export { CharacterSetEffectDto, CharacterSetEffectInfoDto, CharacterSetEffectOpt
21
21
  export { CharacterSkillDto, CharacterSkillInfoDto } from './dto/character/characterSkill.js';
22
22
  export { CharacterFinalStatDto, CharacterStatDto } from './dto/character/characterStat.js';
23
23
  export { CharacterSymbolEquipmentDto, CharacterSymbolEquipmentInfoDto } from './dto/character/characterSymbolEquipment.js';
24
+ export { CharacterRingExchangeSkillEquipmentDto } from './dto/character/characterRingExchangeSkillEquipment.js';
25
+ export { CharacterRingReserveSkillEquipmentDto } from './dto/character/characterRingReserveSkillEquipment.js';
24
26
  export { CharacterVMatrixCodeEquipmentDto, CharacterVMatrixDto } from './dto/character/characterVMatrix.js';
25
27
  export { GuildDto } from './dto/guild/guild.js';
26
28
  export { GuildBasicDto, GuildSkillDto } from './dto/guild/guildBasic.js';
@@ -19,6 +19,7 @@ import { CharacterPetEquipmentDto } from './dto/character/characterPetEquipment.
19
19
  import { CharacterPopularityDto } from './dto/character/characterPopularity.js';
20
20
  import { CharacterPropensityDto } from './dto/character/characterPropensity.js';
21
21
  import { CharacterRingExchangeSkillEquipmentDto } from './dto/character/characterRingExchangeSkillEquipment.js';
22
+ import { CharacterRingReserveSkillEquipmentDto } from './dto/character/characterRingReserveSkillEquipment.js';
22
23
  import { CharacterSetEffectDto } from './dto/character/characterSetEffect.js';
23
24
  import { CharacterSkillDto } from './dto/character/characterSkill.js';
24
25
  import { CharacterStatDto } from './dto/character/characterStat.js';
@@ -51,8 +52,8 @@ import { UnionRaiderDto } from './dto/union/unionRaider.js';
51
52
  import { AchievementDto } from './dto/user/achievement.js';
52
53
  import { CharacterListDto } from './dto/user/characterList.js';
53
54
  import { CharacterImageAction, CharacterImageEmotion, CharacterImageWeaponMotion } from '../common/enum/characterImage.js';
54
- import { MapleStoryApi as MapleStoryApi$1 } from '../common/mapleStoryApi.js';
55
55
  import { removeQuery } from '../common/lib.js';
56
+ import { MapleStoryApi as MapleStoryApi$1 } from '../common/mapleStoryApi.js';
56
57
  import { __exports as buffer } from '../../../_virtual/index.js_commonjs-exports.js';
57
58
 
58
59
  /**
@@ -818,7 +819,8 @@ class MapleStoryApi extends MapleStoryApi$1 {
818
819
  /**
819
820
  * 링 익스체인지 스킬 등록 장비를 조회합니다.
820
821
  * - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
821
- * - 2025년 8월 21 데이터부터 조회할 수 있습니다.
822
+ * - 2025년 08월 21일부터 2026년 3월 18일까지의 데이터를 조회할 수 있습니다.
823
+ * - 2026년 3월 19일부터는 예비 특수 반지 장착 정보 조회를 사용해주세요.
822
824
  * - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (8월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
823
825
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
824
826
  * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
@@ -847,6 +849,38 @@ class MapleStoryApi extends MapleStoryApi$1 {
847
849
  }
848
850
  return new CharacterRingExchangeSkillEquipmentDto(data);
849
851
  }
852
+ /**
853
+ * 예비 특수 반지 장착 정보를 조회합니다.
854
+ * - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
855
+ * - 2026년 3월 19일 데이터부터 조회할 수 있습니다.
856
+ * - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (3월 20일 데이터 조회 시, 20일 00시부터 21일 00시 사이 데이터가 조회 됩니다.)
857
+ * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
858
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
859
+ *
860
+ * @param ocid 캐릭터 식별자
861
+ * @param dateOptions 조회 기준일 (KST)
862
+ */
863
+ async getCharacterRingReserveSkillEquipment(ocid, dateOptions) {
864
+ const path = `${this.subUrl}/v1/character/ring-reserve-skill-equipment`;
865
+ const date = dateOptions
866
+ ? this.toDateString(dateOptions, {
867
+ year: 2026,
868
+ month: 3,
869
+ day: 19,
870
+ })
871
+ : undefined;
872
+ const query = {
873
+ ocid: ocid,
874
+ date: date,
875
+ };
876
+ const { data } = await this.client.get(path, {
877
+ params: query,
878
+ });
879
+ if (this.isEmptyResponse(data)) {
880
+ return null;
881
+ }
882
+ return new CharacterRingReserveSkillEquipmentDto(data);
883
+ }
850
884
  //#endregion
851
885
  //#region 유니온 정보 조회
852
886
  /**
@@ -1111,17 +1145,18 @@ class MapleStoryApi extends MapleStoryApi$1 {
1111
1145
  //#region 랭킹 정보 조회
1112
1146
  /**
1113
1147
  * 종합 랭킹 정보를 조회합니다.
1114
- * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
1115
- * - 오전 830분부터 오늘의 랭킹 정보를 조회할 수 있습니다.
1148
+ * - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
1149
+ * - 오늘의 랭킹 정보는 오전 9경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
1116
1150
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
1151
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
1117
1152
  *
1118
1153
  * @param filterOptions 검색 기준
1119
1154
  * @param dateOptions 조회 기준일 (KST).
1120
1155
  *
1121
1156
  */
1122
1157
  async getOverallRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
1123
- hour: 8,
1124
- minute: 30,
1158
+ hour: 9,
1159
+ minute: 0,
1125
1160
  dateOffset: 0,
1126
1161
  })) {
1127
1162
  const path = `${this.subUrl}/v1/ranking/overall`;
@@ -1148,15 +1183,16 @@ class MapleStoryApi extends MapleStoryApi$1 {
1148
1183
  /**
1149
1184
  * 유니온 랭킹 정보를 조회합니다.
1150
1185
  * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
1151
- * - 오전 830분부터 오늘의 랭킹 정보를 조회할 수 있습니다.
1186
+ * - 오늘의 랭킹 정보는 오전 9경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
1152
1187
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
1188
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
1153
1189
  *
1154
1190
  * @param filterOptions 검색 기준
1155
1191
  * @param dateOptions 조회 기준일 (KST)
1156
1192
  */
1157
1193
  async getUnionRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
1158
- hour: 8,
1159
- minute: 30,
1194
+ hour: 9,
1195
+ minute: 0,
1160
1196
  dateOffset: 0,
1161
1197
  })) {
1162
1198
  const path = `${this.subUrl}/v1/ranking/union`;
@@ -1181,15 +1217,16 @@ class MapleStoryApi extends MapleStoryApi$1 {
1181
1217
  /**
1182
1218
  * 길드 랭킹 정보를 조회합니다.
1183
1219
  * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
1184
- * - 오전 830분부터 오늘의 랭킹 정보를 조회할 수 있습니다.
1220
+ * - 오늘의 랭킹 정보는 오전 9경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
1185
1221
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
1222
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
1186
1223
  *
1187
1224
  * @param filterOptions 검색 기준
1188
1225
  * @param dateOptions 조회 기준일 (KST)
1189
1226
  */
1190
1227
  async getGuildRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
1191
- hour: 8,
1192
- minute: 30,
1228
+ hour: 9,
1229
+ minute: 0,
1193
1230
  dateOffset: 0,
1194
1231
  })) {
1195
1232
  const path = `${this.subUrl}/v1/ranking/guild`;
@@ -1216,15 +1253,16 @@ class MapleStoryApi extends MapleStoryApi$1 {
1216
1253
  /**
1217
1254
  * 무릉도장 랭킹 정보를 조회합니다.
1218
1255
  * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
1219
- * - 오전 830분부터 오늘의 랭킹 정보를 조회할 수 있습니다.
1256
+ * - 오늘의 랭킹 정보는 오전 9경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
1220
1257
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
1258
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
1221
1259
  *
1222
1260
  * @param filterOptions 검색 기준
1223
1261
  * @param dateOptions 조회 기준일 (KST)
1224
1262
  */
1225
1263
  async getDojangRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
1226
- hour: 8,
1227
- minute: 30,
1264
+ hour: 9,
1265
+ minute: 0,
1228
1266
  dateOffset: 0,
1229
1267
  })) {
1230
1268
  const path = `${this.subUrl}/v1/ranking/dojang`;
@@ -1252,15 +1290,16 @@ class MapleStoryApi extends MapleStoryApi$1 {
1252
1290
  /**
1253
1291
  * 더 시드 랭킹 정보를 조회합니다.
1254
1292
  * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
1255
- * - 오전 830분부터 오늘의 랭킹 정보를 조회할 수 있습니다.
1293
+ * - 오늘의 랭킹 정보는 오전 9경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
1256
1294
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
1295
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
1257
1296
  *
1258
1297
  * @param filterOptions 검색 기준
1259
1298
  * @param dateOptions 조회 기준일 (KST)
1260
1299
  */
1261
1300
  async getSeedRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
1262
- hour: 8,
1263
- minute: 30,
1301
+ hour: 9,
1302
+ minute: 0,
1264
1303
  dateOffset: 0,
1265
1304
  })) {
1266
1305
  const path = `${this.subUrl}/v1/ranking/theseed`;
@@ -1285,15 +1324,16 @@ class MapleStoryApi extends MapleStoryApi$1 {
1285
1324
  /**
1286
1325
  * 업적 랭킹 정보를 조회합니다.
1287
1326
  * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
1288
- * - 오전 830분부터 오늘의 랭킹 정보를 조회할 수 있습니다.
1327
+ * - 오늘의 랭킹 정보는 오전 9경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
1289
1328
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
1329
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
1290
1330
  *
1291
1331
  * @param filterOptions 검색 기준
1292
1332
  * @param dateOptions 조회 기준일 (KST)
1293
1333
  */
1294
1334
  async getAchievementRanking(filterOptions, dateOptions = this.getProperDefaultDateOptions({
1295
- hour: 8,
1296
- minute: 30,
1335
+ hour: 9,
1336
+ minute: 0,
1297
1337
  dateOffset: 0,
1298
1338
  })) {
1299
1339
  const path = `${this.subUrl}/v1/ranking/achievement`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "maplestory-openapi",
3
- "version": "3.8.0",
3
+ "version": "3.9.0",
4
4
  "description": "This JavaScript library enables the use of the MapleStory OpenAPI of Nexon.",
5
5
  "keywords": [
6
6
  "maplestory",
@@ -226,5 +226,9 @@ export declare class CharacterPetEquipmentItemDto extends base.CharacterPetEquip
226
226
  * 아이템 외형 아이콘
227
227
  */
228
228
  itemShapeIcon: string | null;
229
+ /**
230
+ * 아이템 만료시간 (KST, 분 단위는 일괄 0으로 표기, null:무제한, -1:미착용)
231
+ */
232
+ itemDateExpire: Date | null;
229
233
  constructor(obj: CharacterPetEquipmentItemBody);
230
234
  }
@@ -0,0 +1,31 @@
1
+ import { CharacterRingReserveSkillEquipmentBody } from '../../response/character/characterRingReserveSkillEquipmentBody';
2
+ /**
3
+ * 캐릭터 예비 특수 반지 장착 정보
4
+ */
5
+ export declare class CharacterRingReserveSkillEquipmentDto {
6
+ /**
7
+ * 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
8
+ */
9
+ date: Date | null;
10
+ /**
11
+ * 캐릭터 직업
12
+ */
13
+ characterClass: string;
14
+ /**
15
+ * 예비 특수 반지 슬롯에 장착한 특수 반지
16
+ */
17
+ specialRingReserveName: string | null;
18
+ /**
19
+ * 예비 특수 반지 슬롯에 장착한 특수 반지 레벨
20
+ */
21
+ specialRingReserveLevel: number | null;
22
+ /**
23
+ * 예비 특수 반지 슬롯에 장착한 특수 반지 아이콘
24
+ */
25
+ specialRingReserveIcon: string | null;
26
+ /**
27
+ * 예비 특수 반지 슬롯에 장착한 특수 반지 설명
28
+ */
29
+ specialRingReserveDescription: string | null;
30
+ constructor(obj: CharacterRingReserveSkillEquipmentBody);
31
+ }
@@ -22,7 +22,7 @@ export declare class StarforceHistoryDto {
22
22
  /**
23
23
  * 스타 캐치
24
24
  */
25
- starCatchResult: string;
25
+ starCatchResult: string | null;
26
26
  /**
27
27
  * 슈페리얼 장비
28
28
  */
@@ -21,6 +21,8 @@ export * from './dto/character/characterSetEffect';
21
21
  export * from './dto/character/characterSkill';
22
22
  export * from './dto/character/characterStat';
23
23
  export * from './dto/character/characterSymbolEquipment';
24
+ export * from './dto/character/characterRingExchangeSkillEquipment';
25
+ export * from './dto/character/characterRingReserveSkillEquipment';
24
26
  export * from './dto/character/characterVMatrix';
25
27
  export * from './dto/guild/guild';
26
28
  export * from './dto/guild/guildBasic';
@@ -16,6 +16,7 @@ import { CharacterPetEquipmentDto } from './dto/character/characterPetEquipment'
16
16
  import { CharacterPopularityDto } from './dto/character/characterPopularity';
17
17
  import { CharacterPropensityDto } from './dto/character/characterPropensity';
18
18
  import { CharacterRingExchangeSkillEquipmentDto } from './dto/character/characterRingExchangeSkillEquipment';
19
+ import { CharacterRingReserveSkillEquipmentDto } from './dto/character/characterRingReserveSkillEquipment';
19
20
  import { CharacterSetEffectDto } from './dto/character/characterSetEffect';
20
21
  import { CharacterSkillDto } from './dto/character/characterSkill';
21
22
  import { CharacterStatDto } from './dto/character/characterStat';
@@ -342,7 +343,8 @@ export declare class MapleStoryApi extends base.MapleStoryApi {
342
343
  /**
343
344
  * 링 익스체인지 스킬 등록 장비를 조회합니다.
344
345
  * - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
345
- * - 2025년 8월 21 데이터부터 조회할 수 있습니다.
346
+ * - 2025년 08월 21일부터 2026년 3월 18일까지의 데이터를 조회할 수 있습니다.
347
+ * - 2026년 3월 19일부터는 예비 특수 반지 장착 정보 조회를 사용해주세요.
346
348
  * - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (8월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.)
347
349
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
348
350
  * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
@@ -351,6 +353,18 @@ export declare class MapleStoryApi extends base.MapleStoryApi {
351
353
  * @param dateOptions 조회 기준일 (KST)
352
354
  */
353
355
  getCharacterRingExchangeSkillEquipment(ocid: string, dateOptions?: DateOptions): Promise<CharacterRingExchangeSkillEquipmentDto | null>;
356
+ /**
357
+ * 예비 특수 반지 장착 정보를 조회합니다.
358
+ * - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
359
+ * - 2026년 3월 19일 데이터부터 조회할 수 있습니다.
360
+ * - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (3월 20일 데이터 조회 시, 20일 00시부터 21일 00시 사이 데이터가 조회 됩니다.)
361
+ * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
362
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
363
+ *
364
+ * @param ocid 캐릭터 식별자
365
+ * @param dateOptions 조회 기준일 (KST)
366
+ */
367
+ getCharacterRingReserveSkillEquipment(ocid: string, dateOptions?: DateOptions): Promise<CharacterRingReserveSkillEquipmentDto | null>;
354
368
  /**
355
369
  * 유니온 정보를 조회합니다.
356
370
  * - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다.
@@ -504,9 +518,10 @@ export declare class MapleStoryApi extends base.MapleStoryApi {
504
518
  getPotentialHistory(count: number, cursor: string): Promise<PotentialHistoryResponseDto>;
505
519
  /**
506
520
  * 종합 랭킹 정보를 조회합니다.
507
- * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
508
- * - 오전 830분부터 오늘의 랭킹 정보를 조회할 수 있습니다.
521
+ * - 2023년 12월 21일 데이터부터 조회할 수 있습니다.
522
+ * - 오늘의 랭킹 정보는 오전 9경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
509
523
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
524
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
510
525
  *
511
526
  * @param filterOptions 검색 기준
512
527
  * @param dateOptions 조회 기준일 (KST).
@@ -516,8 +531,9 @@ export declare class MapleStoryApi extends base.MapleStoryApi {
516
531
  /**
517
532
  * 유니온 랭킹 정보를 조회합니다.
518
533
  * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
519
- * - 오전 830분부터 오늘의 랭킹 정보를 조회할 수 있습니다.
534
+ * - 오늘의 랭킹 정보는 오전 9경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
520
535
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
536
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
521
537
  *
522
538
  * @param filterOptions 검색 기준
523
539
  * @param dateOptions 조회 기준일 (KST)
@@ -526,8 +542,9 @@ export declare class MapleStoryApi extends base.MapleStoryApi {
526
542
  /**
527
543
  * 길드 랭킹 정보를 조회합니다.
528
544
  * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
529
- * - 오전 830분부터 오늘의 랭킹 정보를 조회할 수 있습니다.
545
+ * - 오늘의 랭킹 정보는 오전 9경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
530
546
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
547
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
531
548
  *
532
549
  * @param filterOptions 검색 기준
533
550
  * @param dateOptions 조회 기준일 (KST)
@@ -536,8 +553,9 @@ export declare class MapleStoryApi extends base.MapleStoryApi {
536
553
  /**
537
554
  * 무릉도장 랭킹 정보를 조회합니다.
538
555
  * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
539
- * - 오전 830분부터 오늘의 랭킹 정보를 조회할 수 있습니다.
556
+ * - 오늘의 랭킹 정보는 오전 9경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
540
557
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
558
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
541
559
  *
542
560
  * @param filterOptions 검색 기준
543
561
  * @param dateOptions 조회 기준일 (KST)
@@ -546,8 +564,9 @@ export declare class MapleStoryApi extends base.MapleStoryApi {
546
564
  /**
547
565
  * 더 시드 랭킹 정보를 조회합니다.
548
566
  * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
549
- * - 오전 830분부터 오늘의 랭킹 정보를 조회할 수 있습니다.
567
+ * - 오늘의 랭킹 정보는 오전 9경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
550
568
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
569
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
551
570
  *
552
571
  * @param filterOptions 검색 기준
553
572
  * @param dateOptions 조회 기준일 (KST)
@@ -556,8 +575,9 @@ export declare class MapleStoryApi extends base.MapleStoryApi {
556
575
  /**
557
576
  * 업적 랭킹 정보를 조회합니다.
558
577
  * - 2023년 12월 22일 데이터부터 조회할 수 있습니다.
559
- * - 오전 830분부터 오늘의 랭킹 정보를 조회할 수 있습니다.
578
+ * - 오늘의 랭킹 정보는 오전 9경부터 조회가 가능합니다. 상황에 따라 시간이 더 소요될 수 있습니다.
560
579
  * - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다.
580
+ * - 해당 API는 메이플스토리 한국의 데이터가 제공됩니다.
561
581
  *
562
582
  * @param filterOptions 검색 기준
563
583
  * @param dateOptions 조회 기준일 (KST)
@@ -43,6 +43,7 @@ export type CharacterPetEquipmentItemBody = {
43
43
  scroll_upgradable: number;
44
44
  item_shape: string | null;
45
45
  item_shape_icon: string | null;
46
+ item_date_expire: string | null;
46
47
  };
47
48
  export type CharacterPetEquipmentItemOptionBody = {
48
49
  option_type: string;
@@ -0,0 +1,8 @@
1
+ export type CharacterRingReserveSkillEquipmentBody = {
2
+ date: string | null;
3
+ character_class: string;
4
+ special_ring_reserve_name: string | null;
5
+ special_ring_reserve_level: number | null;
6
+ special_ring_reserve_icon: string | null;
7
+ special_ring_reserve_description: string | null;
8
+ };
@@ -10,7 +10,7 @@ export type StarforceHistoryBody = {
10
10
  item_upgrade_result: string;
11
11
  before_starforce_count: number;
12
12
  after_starforce_count: number;
13
- starcatch_result: string;
13
+ starcatch_result: string | null;
14
14
  superior_item_flag: string;
15
15
  destroy_defence: string;
16
16
  chance_time: string;