diff --git a/core/proxy.proto b/core/proxy.proto index ef3a265..87091a1 100644 --- a/core/proxy.proto +++ b/core/proxy.proto @@ -219,10 +219,22 @@ message ClientMfaOidcAuthenticateRequest { string nonce = 4; } +message ClientPlatformInfo { + string os_family = 1; + string os_type = 2; + string version = 3; + optional string edition = 4; + optional string codename = 5; + optional string bitness = 6; + optional string architecture = 7; +} + // Common client info message DeviceInfo { string ip_address = 1; optional string user_agent = 2; + optional string version = 3; + optional string platform = 4; } message RegisterMobileAuthRequest {