Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
Add username to monthly statistics
Browse files Browse the repository at this point in the history
  • Loading branch information
UCDFiddes committed Jul 4, 2024
1 parent 560d9b8 commit f807644
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hive-bedrock-data",
"version": "1.2.2",
"version": "1.2.3",
"description": "A repo to store and calculate data and type definitions from The Hive: Bedrock Edition server.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
1 change: 1 addition & 0 deletions src/types/api/games/bridge.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ interface Statistics_BRIDGE_Monthly

index: number;
human_index: number;
username: string;
uncapped_xp?: number;
}

Expand Down
1 change: 1 addition & 0 deletions src/types/api/games/build.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ interface Statistics_BUILD_AllTime extends Statistics_BUILD {
interface Statistics_BUILD_Monthly extends Statistics_BUILD {
index: number;
human_index: number;
username: string;
uncapped_xp?: number;
}

Expand Down
1 change: 1 addition & 0 deletions src/types/api/games/ctf.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ interface Statistics_CTF_AllTime extends Statistics_CTF {
interface Statistics_CTF_Monthly extends Statistics_CTF {
index: number;
human_index: number;
username: string;
uncapped_xp?: number;
}

Expand Down
1 change: 1 addition & 0 deletions src/types/api/games/dr.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ interface Statistics_DR_AllTime extends Statistics_DR {
interface Statistics_DR_Monthly extends Statistics_DR {
index: number;
human_index: number;
username: string;
uncapped_xp?: number;
}

Expand Down
1 change: 1 addition & 0 deletions src/types/api/games/drop.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ interface Statistics_DROP_AllTime extends Statistics_DROP {
interface Statistics_DROP_Monthly extends Statistics_DROP {
index: number;
human_index: number;
username: string;
uncapped_xp?: number;
}

Expand Down
1 change: 1 addition & 0 deletions src/types/api/games/grav.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ interface Statistics_GRAV_AllTime extends Statistics_GRAV {
interface Statistics_GRAV_Monthly extends Statistics_GRAV {
index: number;
human_index: number;
username: string;
uncapped_xp?: number;
}

Expand Down
1 change: 1 addition & 0 deletions src/types/api/games/ground.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ interface Statistics_GROUND_AllTime extends Statistics_GROUND {
interface Statistics_GROUND_Monthly extends Statistics_GROUND {
index: number;
human_index: number;
username: string;
uncapped_xp?: number;
}

Expand Down
1 change: 1 addition & 0 deletions src/types/api/games/hide.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ interface Statistics_HIDE_AllTime extends Statistics_HIDE {
interface Statistics_HIDE_Monthly extends Statistics_HIDE {
index: number;
human_index: number;
username: string;
uncapped_xp?: number;
}

Expand Down
1 change: 1 addition & 0 deletions src/types/api/games/murder.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ interface Statistics_MURDER_AllTime extends Statistics_MURDER {
interface Statistics_MURDER_Monthly extends Statistics_MURDER {
index: number;
human_index: number;
username: string;
uncapped_xp?: number;
}

Expand Down
1 change: 1 addition & 0 deletions src/types/api/games/party.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ interface Statistics_PARTY_AllTime extends Statistics_PARTY {
interface Statistics_PARTY_Monthly extends Statistics_PARTY {
index: number;
human_index: number;
username: string;
uncapped_xp?: number;
}

Expand Down
1 change: 1 addition & 0 deletions src/types/api/games/sg.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ interface Statistics_SG_AllTime extends Statistics_SG {
interface Statistics_SG_Monthly extends Statistics_SG {
index: number;
human_index: number;
username: string;
uncapped_xp?: number;
}

Expand Down
1 change: 1 addition & 0 deletions src/types/api/games/sky.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ interface Statistics_SKY_AllTime extends Statistics_SKY {
interface Statistics_SKY_Monthly extends Statistics_SKY {
index: number;
human_index: number;
username: string;
uncapped_xp?: number;
}

Expand Down
1 change: 1 addition & 0 deletions src/types/api/games/wars.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ interface Statistics_WARS_AllTime extends Statistics_WARS {
interface Statistics_WARS_Monthly extends Statistics_WARS {
index: number;
human_index: number;
username: string;
uncapped_xp?: number;
}

Expand Down

0 comments on commit f807644

Please sign in to comment.