hive-bedrock-api 1.0.8 → 1.0.10
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/lib/types/GAMES.d.ts +2 -2
- package/lib/types/GAME_INFO.js +1 -1
- package/package.json +1 -1
package/lib/types/GAMES.d.ts
CHANGED
|
@@ -37,7 +37,7 @@ export interface BASE_GAME_ALL extends Omit<API_BASE_GAME_ALL, "first_played"> {
|
|
|
37
37
|
id: GAME;
|
|
38
38
|
level: number;
|
|
39
39
|
losses: number;
|
|
40
|
-
first_played:
|
|
40
|
+
first_played: number;
|
|
41
41
|
win_percentage: number;
|
|
42
42
|
}
|
|
43
43
|
export interface BASE_GAME_MONTHLY extends API_BASE_GAME_MONTHLY {
|
|
@@ -47,7 +47,7 @@ export interface BASE_GAME_MONTHLY extends API_BASE_GAME_MONTHLY {
|
|
|
47
47
|
win_percentage: number;
|
|
48
48
|
}
|
|
49
49
|
export interface USER_MAIN extends Omit<API_USER_MAIN, "first_played"> {
|
|
50
|
-
first_played:
|
|
50
|
+
first_played: number;
|
|
51
51
|
}
|
|
52
52
|
export interface GAME_HIDE extends API_GAME_HIDE {
|
|
53
53
|
}
|
package/lib/types/GAME_INFO.js
CHANGED