From 8bd6cf672727ac04a254ad2958b6dab5998cd27b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Engelmann?= Date: Mon, 30 Sep 2024 15:55:33 +0200 Subject: [PATCH] added the sequenceId to the Response. --- src/t2iapi/device/device_responses.proto | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/t2iapi/device/device_responses.proto b/src/t2iapi/device/device_responses.proto index 300333a..c65f926 100644 --- a/src/t2iapi/device/device_responses.proto +++ b/src/t2iapi/device/device_responses.proto @@ -87,5 +87,6 @@ Response containing the mdib version from which on the requested change will be */ message MdibVersionResponse { BasicResponse status = 1; // status of the rpc - int64 mdib_version = 2; // Mdib Version from which on the change will be effective. + string sequenceId = 2; // SequenceId of MdibVersion. + int64 mdib_version = 3; // Mdib Version from which on the change will be effective. }