feat: enhance player model with organizationId and update related API handling

This commit is contained in:
Lars Behrends
2025-12-29 11:22:44 +01:00
parent 5fe6724663
commit 5fcd5dbdcb
4 changed files with 30 additions and 72 deletions

View File

@@ -35,7 +35,6 @@ export interface PlayerStats {
playtimeHours: number;
level: number;
role: string;
organizationId?: string;
}
export interface Player {
@@ -48,6 +47,7 @@ export interface Player {
storyMarkdown: string;
tags: string[];
isOnline: boolean;
organizationId?: string;
}
export interface CityStats {