hive-bedrock-api 2.0.0 → 2.0.2

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.
@@ -34,6 +34,7 @@ export interface AllStatistics<T extends Timeframe> {
34
34
  [Game.SurvivalGames]: BaseStatistics<Game.SurvivalGames, T> & PvPAdditions;
35
35
  [Game.TheBridge]: BaseStatistics<Game.TheBridge, T> & PvPAdditions;
36
36
  [Game.TreasureWars]: BaseStatistics<Game.TreasureWars, T> & PvPAdditions;
37
+ [Game.BedWars]: BaseStatistics<Game.BedWars, T> & PvPAdditions;
37
38
  }
38
39
  interface CommonLeaderboard {
39
40
  id: Game;
@@ -60,6 +61,7 @@ export interface AllLeaderboards<T extends Timeframe> {
60
61
  [Game.SurvivalGames]: BaseLeaderboard<Game.SurvivalGames, T>[];
61
62
  [Game.TheBridge]: BaseLeaderboard<Game.TheBridge, T>[];
62
63
  [Game.TreasureWars]: BaseLeaderboard<Game.TreasureWars, T>[];
64
+ [Game.BedWars]: BaseLeaderboard<Game.BedWars, T>[];
63
65
  }
64
66
  export type AllGameStatistics<T extends Timeframe> = {
65
67
  [key in Game]: BaseStatistics<key, T> | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hive-bedrock-api",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "description": "An API wrapper for the Hive Minecraft Bedrock Edition server.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -11,7 +11,7 @@
11
11
  "license": "MIT",
12
12
  "author": "Cubeedge Studios",
13
13
  "dependencies": {
14
- "hive-bedrock-data": "^1.1.7"
14
+ "hive-bedrock-data": "1.1.9"
15
15
  },
16
16
  "scripts": {
17
17
  "prepack": "yarn build",