From 71b1ed94060017488109c8ff3b8406cfdfe80e0c Mon Sep 17 00:00:00 2001 From: Anatolii Kurotych Date: Fri, 1 Aug 2025 06:53:50 +0300 Subject: [PATCH] Add num_location_asserts to gateway_info_v3 --- src/service/mobile_config.proto | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/service/mobile_config.proto b/src/service/mobile_config.proto index 631aeab5..44e3dced 100644 --- a/src/service/mobile_config.proto +++ b/src/service/mobile_config.proto @@ -116,7 +116,7 @@ message gateway_info_v3 { bytes address = 1; // The gateway metadata gateway_metadata_v3 metadata = 2; - // the asserted device type of the gateway + // The asserted device type of the gateway device_type_v2 device_type = 3; // The Unix epoch timestamp (in seconds) when the gateway was first added to // the database @@ -124,6 +124,8 @@ message gateway_info_v3 { // The Unix epoch timestamp (in seconds) when the gateway parameters were last // updated. NOTE: This field is also updated when the location changes. uint64 updated_at = 5; + // Count of hotspot location changes + uint64 num_location_asserts = 6; } message gateway_info_req_v1 {