From 7a7688514a2ef463734773598b124d6d27d1301b Mon Sep 17 00:00:00 2001 From: M1nd3r Date: Tue, 8 Oct 2024 23:19:55 +0200 Subject: [PATCH] chore(core): add internal_only option for protobug messages [no changelog] --- common/protob/messages.proto | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/common/protob/messages.proto b/common/protob/messages.proto index 8f00d40f6f..8156bc119c 100644 --- a/common/protob/messages.proto +++ b/common/protob/messages.proto @@ -54,8 +54,9 @@ extend google.protobuf.EnumOptions { /** Options for tagging message types */ extend google.protobuf.MessageOptions { - optional bool experimental_message = 52001; // indicate that a message is intended for development and beta testing only and its definition may change at any time - optional uint32 wire_type = 52002; // override wire type specified in the MessageType enum + optional bool experimental_message = 52001; // indicate that a message is intended for development and beta testing only and its definition may change at any time + optional uint32 wire_type = 52002; // override wire type specified in the MessageType enum + optional bool internal_only = 52003; // indicate that a message is intended for internal use only and should not be transmitted via the wire } /** Options for tagging field types */