dnf-api 0.6.4 → 1.0.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.
@@ -1,29 +1,29 @@
1
- import { Static } from "../util";
1
+ import { staticUtil } from "../util";
2
2
  /**
3
3
  * 아이템 및 장비를 통한 스킬 강화 제외 입니다.
4
4
  *
5
- * @param {Static.Server} serverId 캐릭터가 존재하는 서버의 이름입니다.
5
+ * @param {staticUtil.server} serverId 캐릭터가 존재하는 서버의 이름입니다.
6
6
  * @param {string} characterId 검색할 캐릭터의 ID입니다.
7
7
  */
8
- export declare const style: (serverId: Static.Server, characterId: string) => Promise<import("../model").DnfResponse<unknown>>;
8
+ export declare const style: (serverId: staticUtil.server, characterId: string) => Promise<import("../model").IDnfResponse<unknown>>;
9
9
  /**
10
10
  * 캐릭터 '버프 스킬 강화 장착 장비'(스위칭) 를 조회합니다.
11
11
  *
12
- * @param {Static.Server} serverId 캐릭터가 존재하는 서버의 이름입니다.
12
+ * @param {staticUtil.server} serverId 캐릭터가 존재하는 서버의 이름입니다.
13
13
  * @param {string} characterId 검색할 캐릭터의 ID입니다.
14
14
  */
15
- export declare const equipment: (serverId: Static.Server, characterId: string) => Promise<import("../model").DnfResponse<unknown>>;
15
+ export declare const equipment: (serverId: staticUtil.server, characterId: string) => Promise<import("../model").IDnfResponse<unknown>>;
16
16
  /**
17
17
  * 캐릭터 '버프 스킬 강화 장착 아바타'(스위칭) 를 조회합니다.
18
18
  *
19
- * @param {Static.Server} serverId 캐릭터가 존재하는 서버의 이름입니다.
19
+ * @param {staticUtil.server} serverId 캐릭터가 존재하는 서버의 이름입니다.
20
20
  * @param {string} characterId 검색할 캐릭터의 ID입니다.
21
21
  */
22
- export declare const avatar: (serverId: Static.Server, characterId: string) => Promise<import("../model").DnfResponse<unknown>>;
22
+ export declare const avatar: (serverId: staticUtil.server, characterId: string) => Promise<import("../model").IDnfResponse<unknown>>;
23
23
  /**
24
24
  * 캐릭터 '버프 스킬 강화 장착 크리쳐'(스위칭) 를 조회합니다.
25
25
  *
26
- * @param {Static.Server} serverId 캐릭터가 존재하는 서버의 이름입니다.
26
+ * @param {staticUtil.server} serverId 캐릭터가 존재하는 서버의 이름입니다.
27
27
  * @param {string} characterId 검색할 캐릭터의 ID입니다.
28
28
  */
29
- export declare const creature: (serverId: Static.Server, characterId: string) => Promise<import("../model").DnfResponse<unknown>>;
29
+ export declare const creature: (serverId: staticUtil.server, characterId: string) => Promise<import("../model").IDnfResponse<unknown>>;
@@ -1,8 +1,9 @@
1
- import * as Action from "./auction";
2
- import * as Characters from "./characters";
3
- import * as Equip from "./characters.equip";
4
- import * as Skill from "./characters.skill";
5
- import * as Item from "./items";
6
- import * as Server from "./server";
7
- import * as SetItem from "./setitems";
8
- export { Action, Equip, Skill, Characters, Item, SetItem, Server };
1
+ import * as action from "./auction";
2
+ import * as characters from "./characters";
3
+ import * as equip from "./characters.equip";
4
+ import * as skill from "./characters.skill";
5
+ import * as item from "./items";
6
+ import * as multi from "./multi";
7
+ import * as server from "./server";
8
+ import * as setItem from "./setitems";
9
+ export { action, equip, skill, characters, item, setItem, server, multi };
@@ -1,18 +1,18 @@
1
- import type * as Model from "../model";
2
- import { type Params } from "../util";
1
+ import type * as model from "../model";
2
+ import { type params } from "../util";
3
3
  /**
4
4
  * 현재 인게임에서 획득 가능한 아이템의 경우만 검색 가능합니다.
5
5
  *
6
6
  * @param {string} itemName 검색할 아이템의 명칭
7
7
  * @param {string} params 선택적 요청변수의 Object입니다.
8
8
  */
9
- export declare const item: (itemName: string, params?: Params.IItem) => Promise<Model.DnfResponse<Model.Rows<Model.Item.Item>>>;
9
+ export declare const item: (itemName: string, params?: params.IItem) => Promise<model.IDnfResponse<model.IDnfResponse<model.item.IItem>>>;
10
10
  /**
11
11
  * 해당하는 아이템의 상세정보를 요청합니다.
12
12
  *
13
13
  * @param {string} itemId 검색할 아이템의 ID
14
14
  */
15
- export declare const detail: (itemId: string) => Promise<Model.DnfResponse<Model.Item.Detail>>;
15
+ export declare const detail: (itemId: string) => Promise<model.IDnfResponse<model.IDnfResponse<model.item.IDetail>>>;
16
16
  /**
17
17
  * 26. 아이템 상점 판매 정보 조회
18
18
  * 인게임 백과사전 기준의 상점 판매 95레벨 에픽, 100레벨 이상 유니크, 레전더리, 에픽 장비가 조회 가능 합니다.
@@ -0,0 +1,7 @@
1
+ import type * as Model from "../model";
2
+ /**
3
+ * 해당하는 아이템의 상세정보를 요청합니다.
4
+ *
5
+ * @param {string} itemId 검색할 아이템의 ID
6
+ */
7
+ export declare const items: (itemIdList: string[]) => Promise<Model.IDnfResponse<Model.item.IDetail[]>>;
@@ -1,2 +1,2 @@
1
1
  import type * as Model from "../model";
2
- export declare const List: () => Promise<Model.DnfResponse<Model.Server[]>>;
2
+ export declare const List: () => Promise<Model.IDnfResponse<Model.IServer[]>>;
@@ -1,15 +1,15 @@
1
1
  import type * as Model from "../model";
2
- import { type Params } from "../util";
2
+ import { type params } from "../util";
3
3
  /**
4
4
  * 세트 아이템 정보를 세트의 이름으로 검색합니다.
5
5
  *
6
6
  * @param {string} setItemName 세트 아이템의 이름입니다.
7
7
  * @param {object} params 선택적 요청변수의 Object입니다.
8
8
  */
9
- export declare const setitem: (setItemName: string, params?: Params.ISetItem) => Promise<Model.DnfResponse<Model.SetItem.SetItem[]>>;
9
+ export declare const setitem: (setItemName: string, params?: params.ISetItem) => Promise<Model.IDnfResponse<Model.setItem.ISetItem[]>>;
10
10
  /**
11
11
  * 세트 ID로 세트 아이템 정보를 받아옵니다.
12
12
  *
13
13
  * @param {string} setItemId 세트 아이템의 ID입니다.
14
14
  */
15
- export declare const detail: (setItemId: string) => Promise<Model.DnfResponse<Model.SetItem.Detail>>;
15
+ export declare const detail: (setItemId: string) => Promise<Model.IDnfResponse<Model.setItem.IDetail>>;
@@ -1,14 +1,21 @@
1
- import * as Request from "./api";
2
- import * as Model from "./model/index";
3
- import * as Util from "./util";
4
- import Config from "./util/config";
5
- import * as Params from "./util/params";
6
- import * as Query from "./util/query";
7
- import * as Static from "./util/static";
8
- export default class DnfApi {
9
- static Util: typeof Util;
10
- static Request: typeof Request;
11
- }
12
- declare const ServerNames: typeof Util.Static.Server;
13
- declare const RarityNames: typeof Util.Static.Rarity;
14
- export { Request as Api, Request, Config, Static, ServerNames, RarityNames, Query, Params, Model, };
1
+ import * as request from "./api";
2
+ import * as model from "./model/index";
3
+ import config from "./util/config";
4
+ import * as params from "./util/params";
5
+ import * as query from "./util/query";
6
+ import * as staticUtil from "./util/static";
7
+ declare const serverNames: typeof staticUtil.server;
8
+ declare const rarityNames: typeof staticUtil.rarity;
9
+ declare const dnf: {
10
+ api: typeof request;
11
+ request: typeof request;
12
+ config: import("./util/config").IConfig;
13
+ staticUtil: typeof staticUtil;
14
+ serverNames: typeof staticUtil.server;
15
+ rarityNames: typeof staticUtil.rarity;
16
+ query: typeof query;
17
+ params: typeof params;
18
+ model: typeof model;
19
+ };
20
+ export { request as api, request, config, staticUtil, serverNames, rarityNames, query, params, model, };
21
+ export default dnf;
@@ -1,7 +1,8 @@
1
- import type { Static } from "../util";
2
- import type { NameValue } from "./";
3
- export type Character = {
4
- serverId: Static.Server;
1
+ import type { staticUtil } from "../util";
2
+ import type { INameValue } from "./";
3
+ /** 캐릭터 정보 인터페이스 */
4
+ export interface ICharacter {
5
+ serverId: staticUtil.server;
5
6
  characterId: string;
6
7
  characterName: string;
7
8
  level: number;
@@ -10,9 +11,10 @@ export type Character = {
10
11
  jobName: string;
11
12
  jobGrowName: string;
12
13
  fame: number;
13
- };
14
- export type Info = {
15
- serverId: Static.Server;
14
+ }
15
+ /** 캐릭터 상세 정보 인터페이스 */
16
+ export interface IInfo {
17
+ serverId: staticUtil.server;
16
18
  characterId: string;
17
19
  characterName: string;
18
20
  level: number;
@@ -24,9 +26,10 @@ export type Info = {
24
26
  adventureName: string;
25
27
  guildId: string | null;
26
28
  guildName: string | null;
27
- };
28
- export type Timeline = {
29
- serverId: Static.Server;
29
+ }
30
+ /** 캐릭터 타임라인 인터페이스 */
31
+ export interface ITimeline {
32
+ serverId: staticUtil.server;
30
33
  characterId: string;
31
34
  characterName: string;
32
35
  level: number;
@@ -43,26 +46,29 @@ export type Timeline = {
43
46
  end: Date;
44
47
  };
45
48
  next: string;
46
- rows: TimeLineRow[];
49
+ rows: ITimeLineRow[];
47
50
  };
48
- };
49
- export type TimeLineRow = {
51
+ }
52
+ /** 타임라인 인터페이스 */
53
+ export interface ITimeLineRow {
50
54
  code: number;
51
55
  name: string;
52
56
  date: string;
53
- data: TimeLineRowData;
54
- };
55
- export type TimeLineRowData = {
57
+ data: ITimeLineRowData;
58
+ }
59
+ /** 타임라인 데이터 인터페이스 */
60
+ export interface ITimeLineRowData {
56
61
  itemId: string;
57
62
  itemName: string;
58
- itemRarity: Static.Rarity;
63
+ itemRarity: staticUtil.rarity;
59
64
  channelName: string;
60
65
  channelNo: number;
61
66
  dungeonName: string;
62
67
  mistGear: boolean;
63
- };
64
- export type CharacterStatus = {
65
- serverId: Static.Server;
68
+ }
69
+ /** 캐릭터 상태 인터페이스 */
70
+ export interface ICharacterStatus {
71
+ serverId: staticUtil.server;
66
72
  characterId: string;
67
73
  characterName: string;
68
74
  level: number;
@@ -74,11 +80,12 @@ export type CharacterStatus = {
74
80
  adventureName: string;
75
81
  guildId: string | null;
76
82
  guildName: string | null;
77
- buff: Buff[];
78
- status: NameValue[];
79
- };
80
- export type Buff = {
83
+ buff: IBuff[];
84
+ status: INameValue[];
85
+ }
86
+ /** 버프 정보 인터페이스 */
87
+ export interface IBuff {
81
88
  name: string;
82
89
  level?: number;
83
- status: NameValue[];
84
- };
90
+ status: INameValue[];
91
+ }
@@ -1,24 +1,29 @@
1
- import * as Char from "./character";
2
- import * as Item from "./item";
3
- import * as SetItem from "./setitem";
4
- export { Char, Item, SetItem };
5
- export type DnfErrorResponse = {
1
+ import * as char from "./character";
2
+ import * as item from "./item";
3
+ import * as setItem from "./setitem";
4
+ export { char, item, setItem };
5
+ /** 에러 응답 인터페이스 */
6
+ export interface IDnfErrorResponse {
6
7
  url: string;
7
8
  status: number;
8
9
  statusText: string;
9
10
  code: string;
10
11
  message: string;
11
- };
12
- export type DnfSuccess<T> = {
12
+ }
13
+ /** 성공 응답 인터페이스 */
14
+ export interface IDnfSuccess<T> {
13
15
  data: T;
14
16
  error?: never;
15
- };
16
- export type DnfError = {
17
+ }
18
+ /** 에러 정보 인터페이스 */
19
+ export interface IDnfError {
17
20
  data?: never;
18
- error: DnfErrorResponse;
19
- };
20
- export type DnfResponse<T> = DnfSuccess<T> | DnfError;
21
- export type Auction = {
21
+ error: IDnfErrorResponse;
22
+ }
23
+ /** 응답 타입(합성 타입) */
24
+ export type IDnfResponse<T> = IDnfSuccess<T> | IDnfError;
25
+ /** 경매장 아이템 인터페이스 */
26
+ export interface IAuction {
22
27
  auctionNo: number;
23
28
  regDate: Date;
24
29
  expireDate: Date;
@@ -42,8 +47,9 @@ export type Auction = {
42
47
  averagePrice: number;
43
48
  upgrade?: number;
44
49
  upgradeMax?: number;
45
- };
46
- export type AuctionSolid = {
50
+ }
51
+ /** 판매 완료 아이템 인터페이스 */
52
+ export interface IAuctionSolid {
47
53
  soldDate: string;
48
54
  itemId: string;
49
55
  itemName: string;
@@ -62,15 +68,18 @@ export type AuctionSolid = {
62
68
  unitPrice: number;
63
69
  upgrade?: number;
64
70
  upgradeMax?: number;
65
- };
66
- export type Rows<T> = {
71
+ }
72
+ /** 배열 인터페이스 */
73
+ export interface IRows<T> {
67
74
  rows: T[];
68
- };
69
- export type Server = {
75
+ }
76
+ /** 서버 정보 인터페이스 */
77
+ export interface IServer {
70
78
  serverId: string;
71
79
  serverName: string;
72
- };
73
- export type NameValue = {
80
+ }
81
+ /** 이름-값 인터페이스 */
82
+ export interface INameValue {
74
83
  name: string;
75
84
  value: string | number;
76
- };
85
+ }
@@ -1,19 +1,22 @@
1
1
  import type * as Static from "../util/static";
2
- import type { NameValue } from "./";
2
+ import type { INameValue } from "./";
3
3
  export declare enum ItemDetailKind {
4
4
  Material = "material",
5
5
  Equip = "equip"
6
6
  }
7
- export type Item = {
7
+ /** 아이템 인터페이스 */
8
+ export interface IItem {
8
9
  itemId: string;
9
10
  itemName: string;
10
- itemRarity: Static.Rarity;
11
+ itemRarity: Static.rarity;
11
12
  itemType: string;
12
13
  itemTypeDetail: string;
13
14
  itemAvailableLevel: number;
14
- };
15
- export type Detail = MaterialDetail | EquipDetail;
16
- export type MaterialDetail = {
15
+ }
16
+ /** 아이템 상세 인터페이스(합성 타입) */
17
+ export type IDetail = IMaterialDetail | IEquipDetail;
18
+ /** 재료 아이템 상세 인터페이스 */
19
+ export interface IMaterialDetail {
17
20
  kind: ItemDetailKind.Material;
18
21
  itemId: string;
19
22
  itemName: string;
@@ -29,9 +32,10 @@ export type MaterialDetail = {
29
32
  fame: number;
30
33
  setItemId: string | null;
31
34
  setItemName: string | null;
32
- obtainInfo: ObtainInfo;
33
- };
34
- export type EquipDetail = {
35
+ obtainInfo: IObtainInfo;
36
+ }
37
+ /** 장비 아이템 상세 인터페이스 */
38
+ export interface IEquipDetail {
35
39
  kind: ItemDetailKind.Equip;
36
40
  itemId: string;
37
41
  itemName: string;
@@ -47,44 +51,53 @@ export type EquipDetail = {
47
51
  fame: number;
48
52
  setItemId: string | null;
49
53
  setItemName: string | null;
50
- itemStatus: NameValue[];
51
- tune: Tune;
52
- itemBuff: ItemBuff;
54
+ itemStatus: INameValue[];
55
+ tune: ITune;
56
+ itemBuff: IItemBuff;
53
57
  hashtag: string[];
54
- obtainInfo: ObtainInfoDetail;
55
- };
56
- export type Tune = {
58
+ obtainInfo: IObtainInfoDetail;
59
+ }
60
+ /** 정보 인터페이스 */
61
+ export interface ITune {
57
62
  level: number;
58
63
  setPoint: number;
59
- };
60
- export type ItemBuff = {
64
+ }
65
+ /** 아이템 버프 인터페이스 */
66
+ export interface IItemBuff {
61
67
  explain: string;
62
68
  explainDetail: string;
63
69
  reinforceSkill: any[];
64
70
  status: any | null;
65
- };
66
- export type ObtainInfo = {
71
+ }
72
+ /** 획득 정보 인터페이스 */
73
+ export interface IObtainInfo {
67
74
  dungeon: string | null;
68
- shop: ShopInfo[];
69
- };
70
- export type ObtainInfoDetail = {
71
- dungeon: Dungeon[];
72
- shop: ShopDetail[];
73
- };
74
- export type Dungeon = {
75
+ shop: IShopInfo[];
76
+ }
77
+ /** 획득 상세 정보 인터페이스 */
78
+ export interface IObtainInfoDetail {
79
+ dungeon: IDungeon[];
80
+ shop: IShopDetail[];
81
+ }
82
+ /** 던전 정보 인터페이스 */
83
+ export interface IDungeon {
75
84
  type: string;
76
- rows: DungeonRow[];
77
- };
78
- export type DungeonRow = {
85
+ rows: IDungeonRow[];
86
+ }
87
+ /** 던전 인터페이스 */
88
+ export interface IDungeonRow {
79
89
  name: string;
80
- };
81
- export type ShopInfo = {
90
+ }
91
+ /** 상점 정보 인터페이스 */
92
+ export interface IShopInfo {
82
93
  type: string;
83
- };
84
- export type ShopDetail = {
85
- rows: ShopRow[];
86
- };
87
- export type ShopRow = {
94
+ }
95
+ /** 상점 상세 정보 인터페이스 */
96
+ export interface IShopDetail {
97
+ rows: IShopRow[];
98
+ }
99
+ /** 상점 행 인터페이스 */
100
+ export interface IShopRow {
88
101
  name: string;
89
102
  details: string[];
90
- };
103
+ }
@@ -1,8 +1,10 @@
1
- export type SetItem = {
1
+ /** 세트 아이템 인터페이스 */
2
+ export interface ISetItem {
2
3
  setItemId: string;
3
4
  setItemName: string;
4
- };
5
- export type Detail = {
5
+ }
6
+ /** 세트 아이템 상세 인터페이스 */
7
+ export interface IDetail {
6
8
  setItemId: string;
7
9
  setItemName: string;
8
10
  setItems: [
@@ -27,4 +29,4 @@ export type Detail = {
27
29
  ];
28
30
  }
29
31
  ];
30
- };
32
+ }
@@ -1,5 +1,5 @@
1
- import Config from "./config";
2
- import * as Params from "./params";
3
- import Query from "./query";
4
- import * as Static from "./static";
5
- export { Config, Query, Static, Params };
1
+ import config from "./config";
2
+ import * as params from "./params";
3
+ import query from "./query";
4
+ import * as staticUtil from "./static";
5
+ export { config, query, staticUtil, params };
@@ -1,4 +1,4 @@
1
- import type * as Static from "./static";
1
+ import type * as staticUtil from "./static";
2
2
  export interface QueryOptions<T = any> {
3
3
  base: string;
4
4
  params?: T;
@@ -8,11 +8,11 @@ export interface ICharParams {
8
8
  jobId?: string;
9
9
  jobGrowId?: string;
10
10
  isAllJobGrow?: boolean;
11
- wordType?: Static.CharactersWordType;
11
+ wordType?: staticUtil.charactersWordType;
12
12
  limit?: number;
13
13
  }
14
14
  export interface ITimeLine {
15
- serverId?: Static.Server;
15
+ serverId?: staticUtil.server;
16
16
  characterId?: string;
17
17
  startDate?: Date;
18
18
  endDate?: Date;
@@ -25,20 +25,20 @@ export interface IAuction {
25
25
  sort?: IAuctionSort;
26
26
  itemId?: string;
27
27
  itemName?: string;
28
- wordType?: Static.AuctionWordType;
28
+ wordType?: staticUtil.auctionWordType;
29
29
  wordShort?: boolean;
30
30
  q?: IAuctionQuery;
31
31
  }
32
32
  export interface IAuctionSort {
33
- unitPrice?: Static.Sort;
34
- reinforce?: Static.Sort;
35
- auctionNo?: Static.Sort;
33
+ unitPrice?: staticUtil.sort;
34
+ reinforce?: staticUtil.sort;
35
+ auctionNo?: staticUtil.sort;
36
36
  }
37
37
  export interface IAuctionQuery {
38
38
  minLevel?: number;
39
39
  maxLevel?: number;
40
- raity?: Static.Rarity;
41
- reinforceTypeId: Static.reinforceType;
40
+ raity?: staticUtil.rarity;
41
+ reinforceTypeId: staticUtil.reinforceType;
42
42
  minReinforce?: number;
43
43
  maxReinforce?: number;
44
44
  minRefine?: number;
@@ -48,7 +48,7 @@ export interface IAuctionQuery {
48
48
  }
49
49
  export interface IActionSoldOption {
50
50
  limit?: number;
51
- wordType?: Static.AuctionWordType;
51
+ wordType?: staticUtil.auctionWordType;
52
52
  wordShort?: boolean;
53
53
  itemId?: string;
54
54
  itemName?: string;
@@ -57,18 +57,18 @@ export interface IItem {
57
57
  limit?: number;
58
58
  itemName?: string;
59
59
  hashtag?: string[];
60
- wordType?: Static.AuctionWordType;
60
+ wordType?: staticUtil.auctionWordType;
61
61
  q?: IItemQuery;
62
62
  }
63
63
  export interface IItemQuery {
64
64
  minLevel?: number;
65
65
  maxLevel?: number;
66
- rarity?: Static.Rarity;
66
+ rarity?: staticUtil.rarity;
67
67
  }
68
68
  export interface ISetItem {
69
69
  setItemName?: string;
70
70
  limit?: number;
71
- wordType?: Static.AuctionWordType;
71
+ wordType?: staticUtil.auctionWordType;
72
72
  }
73
73
  export interface ISkill {
74
74
  jobGrowId: string;
@@ -1,4 +1,4 @@
1
- import type * as Model from "../model";
1
+ import type * as model from "../model";
2
2
  export default class Request {
3
3
  static UriBuilder(...args: any[]): string;
4
4
  static QueryBuilder(query: string[] | number[]): string;
@@ -9,6 +9,6 @@ export default class Request {
9
9
  * @param {object} opt (요청을 보낼 Parameter값)
10
10
  * @returns
11
11
  */
12
- static Request<T>(opt?: any, method?: "GET" | "POST"): Promise<Model.DnfResponse<T>>;
12
+ static Request<T>(opt?: any, method?: "GET" | "POST"): Promise<model.IDnfResponse<T>>;
13
13
  static makeItemQuery(query: any): string;
14
14
  }
@@ -1,4 +1,4 @@
1
- export declare enum Server {
1
+ export declare enum server {
2
2
  Cain = "cain",
3
3
  Diregie = "diregie",
4
4
  Siroco = "siroco",
@@ -8,11 +8,11 @@ export declare enum Server {
8
8
  Anton = "anton",
9
9
  Bakal = "bakal"
10
10
  }
11
- export declare enum Sort {
11
+ export declare enum sort {
12
12
  Asc = "asc",
13
13
  Desc = "desc"
14
14
  }
15
- export declare enum Rarity {
15
+ export declare enum rarity {
16
16
  Common = "\uCEE4\uBA3C",
17
17
  Uncommon = "\uC5B8\uCEE4\uBA3C",
18
18
  Rare = "\uB808\uC5B4",
@@ -21,26 +21,27 @@ export declare enum Rarity {
21
21
  Chronicle = "\uD06C\uB85C\uB2C8\uD074",
22
22
  Legendary = "\uB808\uC804\uB354\uB9AC"
23
23
  }
24
- export declare enum AuctionWordType {
24
+ export declare enum auctionWordType {
25
25
  Match = "match",
26
26
  Front = "front",
27
27
  Full = "full"
28
28
  }
29
- export declare enum WordType {
29
+ export declare enum wordType {
30
30
  Match = "match",
31
31
  Front = "front",
32
32
  Full = "full"
33
33
  }
34
- export declare enum CharactersWordType {
34
+ export declare enum charactersWordType {
35
35
  Match = "match",
36
36
  Full = "full"
37
37
  }
38
- export declare enum BaseUri {
38
+ export declare enum baseUri {
39
39
  Servers = "df/servers",
40
40
  Auction = "df/auction",
41
41
  AuctionSold = "df/auction-sold",
42
42
  Item = "df/items",
43
- SetItem = "df/setitems"
43
+ SetItem = "df/setitems",
44
+ Multi = "df/multi"
44
45
  }
45
46
  export declare enum reinforceType {
46
47
  reinforce = "\uAC15\uD654",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dnf-api",
3
- "version": "0.6.4",
3
+ "version": "1.0.0",
4
4
  "description": "던전 앤 파이터 API",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/src/index.d.ts",
@@ -27,7 +27,9 @@
27
27
  "type": "git",
28
28
  "url": "git+https://github.com/k22pr/dnf-api.git"
29
29
  },
30
- "keywords": ["dnf"],
30
+ "keywords": [
31
+ "dnf"
32
+ ],
31
33
  "author": "서버지기",
32
34
  "license": "MIT",
33
35
  "bugs": {