maplestory-openapi
Advanced tools
Comparing version 2.7.3 to 2.8.0
{ | ||
"name": "maplestory-openapi", | ||
"version": "2.7.3", | ||
"version": "2.8.0", | ||
"description": "This JavaScript library enables the use of the MapleStory OpenAPI of Nexon.", | ||
@@ -61,2 +61,3 @@ "keywords": [ | ||
"@typescript-eslint/parser": "^6.15.0", | ||
"buffer": "^6.0.3", | ||
"eslint-import-resolver-typescript": "^3.6.1", | ||
@@ -63,0 +64,0 @@ "eslint": "^8.56.0", |
@@ -11,2 +11,3 @@ import { CharacterAbilityDto } from './dto/character/characterAbilityDto'; | ||
import { CharacterHyperStatDto } from './dto/character/characterHyperStatDto'; | ||
import { CharacterImageAction, CharacterImageDto, CharacterImageEmotion, CharacterImageWeaponMotion } from './dto/character/characterImageDto'; | ||
import { CharacterItemEquipmentDto } from './dto/character/characterItemEquipmentDto'; | ||
@@ -88,2 +89,14 @@ import { CharacterLinkSkillDto } from './dto/character/characterLinkSkillDto'; | ||
/** | ||
* 캐릭터 외형 이미지 정보를 조회합니다. | ||
* - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다. | ||
* - 2023년 12월 21일 데이터부터 조회할 수 있습니다. | ||
* - 과거 데이터는 원하는 일자를 입력해 조회할 수 있으며, 전일 데이터는 다음날 오전 2시부터 확인할 수 있습니다. (12월 22일 데이터 조회 시, 22일 00시부터 23일 00시 사이 데이터가 조회 됩니다.) | ||
* - 게임 콘텐츠 변경으로 ocid가 변경될 수 있습니다. ocid 기반 서비스 갱신 시 유의해 주시길 바랍니다. | ||
* | ||
* @param ocid 캐릭터 식별자 | ||
* @param imageOptions 캐릭터 외형 파라미터 | ||
* @param dateOptions 조회 기준일 (KST) | ||
*/ | ||
getCharacterImage(ocid: string, imageOptions?: CharacterImageOptions, dateOptions?: DateOptions): Promise<CharacterImageDto>; | ||
/** | ||
* 인기도 정보를 조회합니다. | ||
@@ -578,2 +591,32 @@ * - 메이플스토리 게임 데이터는 평균 15분 후 확인 가능합니다. | ||
} | ||
type CharacterImageOptions = { | ||
/** | ||
* 캐릭터 액션 | ||
*/ | ||
action?: CharacterImageAction; | ||
/** | ||
* 캐릭터 감정표현 | ||
*/ | ||
emotion?: CharacterImageEmotion; | ||
/** | ||
* 캐릭터 무기 모션 | ||
*/ | ||
wmotion?: CharacterImageWeaponMotion; | ||
/** | ||
* 가로 길이. 배경 크기에 해당함, 96 (default) ~ 1000 | ||
*/ | ||
width?: number; | ||
/** | ||
* 세로 길이. 배경 크기에 해당함, 96 (default) ~ 1000 | ||
*/ | ||
height?: number; | ||
/** | ||
* 캐릭터의 가로 좌표 | ||
*/ | ||
x?: number; | ||
/** | ||
* 캐릭터의 세로 좌표. | ||
*/ | ||
y?: number; | ||
}; | ||
type OverallRankingApiFilterOptions = { | ||
@@ -580,0 +623,0 @@ /** |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
812257
168
23187
22