diff --git a/packages/types/src/user.ts b/packages/types/src/user.ts index ba8e32a3d469..f559c5029825 100644 --- a/packages/types/src/user.ts +++ b/packages/types/src/user.ts @@ -7,4 +7,11 @@ export interface User { ip_address?: string; email?: string; username?: string; + geo?: GeoLocation; +} + +export interface GeoLocation { + country_code?: string; + region?: string; + city?: string; }