From a967ea82d462c3cc40b32946ddce3cd1e77318e9 Mon Sep 17 00:00:00 2001 From: Volodymyr Babak Date: Thu, 4 Aug 2022 14:13:53 +0300 Subject: [PATCH] firmware id optional --- common/edge-api/src/main/proto/edge.proto | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/edge-api/src/main/proto/edge.proto b/common/edge-api/src/main/proto/edge.proto index 7e18abcaec..f7ecbfcb8d 100644 --- a/common/edge-api/src/main/proto/edge.proto +++ b/common/edge-api/src/main/proto/edge.proto @@ -198,8 +198,8 @@ message DeviceUpdateMsg { optional string label = 10; optional string additionalInfo = 11; optional string conflictName = 12; - int64 firmwareIdMSB = 13; - int64 firmwareIdLSB = 14; + optional int64 firmwareIdMSB = 13; + optional int64 firmwareIdLSB = 14; } message DeviceProfileUpdateMsg { @@ -218,8 +218,8 @@ message DeviceProfileUpdateMsg { bytes profileDataBytes = 13; optional string provisionDeviceKey = 14; optional bytes image = 15; - int64 firmwareIdMSB = 16; - int64 firmwareIdLSB = 17; + optional int64 firmwareIdMSB = 16; + optional int64 firmwareIdLSB = 17; } message DeviceCredentialsUpdateMsg {