osrs-json-hiscores 2.21.1 → 2.23.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.
package/README.md CHANGED
@@ -137,6 +137,7 @@ Activities consist of all levels of clue scrolls as well as minigames and bosses
137
137
  | Dagannoth Rex | `dagannothRex` |
138
138
  | Dagannoth Supreme | `dagannothSupreme` |
139
139
  | Deranged Archaeologist | `derangedArchaeologist` |
140
+ | Doom of Mokhaiotl | `doomOfMokhaiotl` |
140
141
  | Duke Sucellus | `dukeSucellus` |
141
142
  | General Graardor | `generalGraardor` |
142
143
  | Giant Mole | `giantMole` |
@@ -179,6 +180,7 @@ Activities consist of all levels of clue scrolls as well as minigames and bosses
179
180
  | Vetion | `vetion` |
180
181
  | Vorkath | `vorkath` |
181
182
  | Wintertodt | `wintertodt` |
183
+ | Yama | `yama` |
182
184
  | Zalcano | `zalcano` |
183
185
  | Zulrah | `zulrah` |
184
186
 
package/lib/types.d.ts CHANGED
@@ -21,7 +21,7 @@ export type BHType = 'rogue' | 'hunter' | 'rogueV2' | 'hunterV2';
21
21
  export type BH = {
22
22
  [Type in BHType]: Activity;
23
23
  };
24
- export type Boss = 'abyssalSire' | 'alchemicalHydra' | 'amoxliatl' | 'araxxor' | 'artio' | 'barrows' | 'bryophyta' | 'callisto' | 'calvarion' | 'cerberus' | 'chambersOfXeric' | 'chambersOfXericChallengeMode' | 'chaosElemental' | 'chaosFanatic' | 'commanderZilyana' | 'corporealBeast' | 'crazyArchaeologist' | 'dagannothPrime' | 'dagannothRex' | 'dagannothSupreme' | 'derangedArchaeologist' | 'dukeSucellus' | 'generalGraardor' | 'giantMole' | 'grotesqueGuardians' | 'hespori' | 'kalphiteQueen' | 'kingBlackDragon' | 'kraken' | 'kreeArra' | 'krilTsutsaroth' | 'lunarChests' | 'mimic' | 'nex' | 'nightmare' | 'phosanisNightmare' | 'obor' | 'phantomMuspah' | 'sarachnis' | 'scorpia' | 'scurrius' | 'skotizo' | 'solHeredit' | 'spindel' | 'tempoross' | 'gauntlet' | 'corruptedGauntlet' | 'hueycoatl' | 'leviathan' | 'royalTitans' | 'whisperer' | 'theatreOfBlood' | 'theatreOfBloodHardMode' | 'thermonuclearSmokeDevil' | 'tombsOfAmascut' | 'tombsOfAmascutExpertMode' | 'tzKalZuk' | 'tzTokJad' | 'vardorvis' | 'venenatis' | 'vetion' | 'vorkath' | 'wintertodt' | 'zalcano' | 'zulrah';
24
+ export type Boss = 'abyssalSire' | 'alchemicalHydra' | 'amoxliatl' | 'araxxor' | 'artio' | 'barrows' | 'bryophyta' | 'callisto' | 'calvarion' | 'cerberus' | 'chambersOfXeric' | 'chambersOfXericChallengeMode' | 'chaosElemental' | 'chaosFanatic' | 'commanderZilyana' | 'corporealBeast' | 'crazyArchaeologist' | 'dagannothPrime' | 'dagannothRex' | 'dagannothSupreme' | 'derangedArchaeologist' | 'doomOfMokhaiotl' | 'dukeSucellus' | 'generalGraardor' | 'giantMole' | 'grotesqueGuardians' | 'hespori' | 'kalphiteQueen' | 'kingBlackDragon' | 'kraken' | 'kreeArra' | 'krilTsutsaroth' | 'lunarChests' | 'mimic' | 'nex' | 'nightmare' | 'phosanisNightmare' | 'obor' | 'phantomMuspah' | 'sarachnis' | 'scorpia' | 'scurrius' | 'skotizo' | 'solHeredit' | 'spindel' | 'tempoross' | 'gauntlet' | 'corruptedGauntlet' | 'hueycoatl' | 'leviathan' | 'royalTitans' | 'whisperer' | 'theatreOfBlood' | 'theatreOfBloodHardMode' | 'thermonuclearSmokeDevil' | 'tombsOfAmascut' | 'tombsOfAmascutExpertMode' | 'tzKalZuk' | 'tzTokJad' | 'vardorvis' | 'venenatis' | 'vetion' | 'vorkath' | 'wintertodt' | 'yama' | 'zalcano' | 'zulrah';
25
25
  export type Bosses = {
26
26
  [Type in Boss]: Activity;
27
27
  };
@@ -108,6 +108,7 @@ exports.BOSSES = [
108
108
  'dagannothRex',
109
109
  'dagannothSupreme',
110
110
  'derangedArchaeologist',
111
+ 'doomOfMokhaiotl',
111
112
  'dukeSucellus',
112
113
  'generalGraardor',
113
114
  'giantMole',
@@ -150,6 +151,7 @@ exports.BOSSES = [
150
151
  'vetion',
151
152
  'vorkath',
152
153
  'wintertodt',
154
+ 'yama',
153
155
  'zalcano',
154
156
  'zulrah'
155
157
  ];
@@ -196,6 +198,7 @@ exports.FORMATTED_BOSS_NAMES = {
196
198
  dagannothRex: 'Dagannoth Rex',
197
199
  dagannothSupreme: 'Dagannoth Supreme',
198
200
  derangedArchaeologist: 'Deranged Archaeologist',
201
+ doomOfMokhaiotl: 'Doom of Mokhaiotl',
199
202
  dukeSucellus: 'Duke Sucellus',
200
203
  generalGraardor: 'General Graardor',
201
204
  giantMole: 'Giant Mole',
@@ -238,6 +241,7 @@ exports.FORMATTED_BOSS_NAMES = {
238
241
  vetion: "Vet'ion",
239
242
  vorkath: 'Vorkath',
240
243
  wintertodt: 'Wintertodt',
244
+ yama: 'Yama',
241
245
  zalcano: 'Zalcano',
242
246
  zulrah: 'Zulrah'
243
247
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "osrs-json-hiscores",
3
- "version": "2.21.1",
3
+ "version": "2.23.0",
4
4
  "description": "The Old School Runescape API wrapper that does more!",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",