Skip to content

Commit 7120780

Browse files
committed
fix(search): added missing search indexes
1 parent d8ac8a0 commit 7120780

File tree

1 file changed

+20
-12
lines changed

1 file changed

+20
-12
lines changed

src/model/search-index.ts

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,37 @@
33
*/
44
export enum SearchIndex {
55
ACHIEVEMENT = 'achievement',
6+
TITLE = 'title',
67
ACTION = 'action',
8+
CRAFT_ACTION = 'craftaction',
9+
TRAIT = 'trait',
10+
PVP_ACTION = 'PvPAction',
11+
PVP_TRAIT = 'PvPTrait',
12+
STATUS = 'status',
713
/**
814
* Enemies index.
915
*/
1016
BNPCNAME = 'bnpcname',
11-
/**
12-
* Minions index.
13-
*/
14-
COMPANION = 'companion',
1517
/**
1618
* NPCs index.
1719
*/
1820
ENPCRESIDENT = 'enpcresident',
21+
/**
22+
* Minions index.
23+
*/
24+
COMPANION = 'companion',
25+
MOUNT = 'mount',
26+
LEVE = 'leve',
1927
EMOTE = 'emote',
20-
FATE = 'fate',
2128
INSTANCECONTENT = 'instancecontent',
2229
ITEM = 'item',
23-
LEVE = 'leve',
24-
MOUNT = 'mount',
25-
PLACENAME = 'placename',
26-
QUEST = 'quest',
2730
RECIPE = 'recipe',
28-
STATUS = 'status',
29-
TITLE = 'title',
30-
WEATHER = 'weather'
31+
FATE = 'fate',
32+
QUEST = 'quest',
33+
BALLOON = 'balloon',
34+
BUDDY_EQUIP = 'buddyequip',
35+
ORCHESTRION = 'orchestrion',
36+
PLACENAME = 'placename',
37+
WEATHER = 'weather',
38+
WORLD = 'world'
3139
}

0 commit comments

Comments
 (0)