From 5c742cc9aa2a966bf4d675ecf1c3a7973a0a36a7 Mon Sep 17 00:00:00 2001 From: Nico Date: Fri, 1 May 2026 00:45:39 +0200 Subject: [PATCH] refactor(domain): migrate football_nation to nationality_code + competitive_region Rename football_nation field to nationality_code across all domain structs (Player, Team, Manager, Staff) and add competitive_region field for LoL regional classification. Closes #49 --- src/store/types.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/store/types.ts b/src/store/types.ts index ebc080680..b8007e4c5 100644 --- a/src/store/types.ts +++ b/src/store/types.ts @@ -298,7 +298,8 @@ export interface PlayerData { full_name: string; date_of_birth: string; nationality: string; - football_nation?: string; + nationality_code?: string; + competitive_region?: string; birth_country?: string | null; profile_image_url?: string | null; position: string;