@@ -20,10 +20,10 @@ class StartPanelRequest(google.protobuf.message.Message):
2020    PANEL_ID_FIELD_NUMBER : builtins .int 
2121    PANEL_CONFIGURATION_FIELD_NUMBER : builtins .int 
2222    panel_id : builtins .str 
23-     """Unique ID of the panel""" 
23+     """Unique ID of the panel. Only alphanumeric characters and underscores are allowed. """ 
2424    @property  
2525    def  panel_configuration (self ) ->  google .protobuf .any_pb2 .Any :
26-         """Configuration for the panel, packed as Any""" 
26+         """Configuration for the panel, packed as a google.protobuf. Any""" 
2727
2828    def  __init__ (
2929        self ,
@@ -40,15 +40,15 @@ global___StartPanelRequest = StartPanelRequest
4040class  StartPanelResponse (google .protobuf .message .Message ):
4141    DESCRIPTOR : google .protobuf .descriptor .Descriptor 
4242
43-     PANEL_URI_FIELD_NUMBER : builtins .int 
44-     panel_uri : builtins .str 
43+     PANEL_URL_FIELD_NUMBER : builtins .int 
44+     panel_url : builtins .str 
4545    """Location of the panel""" 
4646    def  __init__ (
4747        self ,
4848        * ,
49-         panel_uri : builtins .str  =  ...,
49+         panel_url : builtins .str  =  ...,
5050    ) ->  None : ...
51-     def  ClearField (self , field_name : typing .Literal ["panel_uri " , b"panel_uri " ]) ->  None : ...
51+     def  ClearField (self , field_name : typing .Literal ["panel_url " , b"panel_url " ]) ->  None : ...
5252
5353global___StartPanelResponse  =  StartPanelResponse 
5454
@@ -59,7 +59,7 @@ class StopPanelRequest(google.protobuf.message.Message):
5959    PANEL_ID_FIELD_NUMBER : builtins .int 
6060    RESET_FIELD_NUMBER : builtins .int 
6161    panel_id : builtins .str 
62-     """Unique ID of the panel""" 
62+     """Unique ID of the panel. Only alphanumeric characters and underscores are allowed. """ 
6363    reset : builtins .bool 
6464    """Reset all storage associated with panel""" 
6565    def  __init__ (
@@ -97,11 +97,11 @@ class PanelInformation(google.protobuf.message.Message):
9797    DESCRIPTOR : google .protobuf .descriptor .Descriptor 
9898
9999    PANEL_ID_FIELD_NUMBER : builtins .int 
100-     PANEL_URI_FIELD_NUMBER : builtins .int 
100+     PANEL_URL_FIELD_NUMBER : builtins .int 
101101    VALUE_IDS_FIELD_NUMBER : builtins .int 
102102    panel_id : builtins .str 
103103    """Unique ID of the panel""" 
104-     panel_uri : builtins .str 
104+     panel_url : builtins .str 
105105    """Location of the panel""" 
106106    @property  
107107    def  value_ids (self ) ->  google .protobuf .internal .containers .RepeatedScalarFieldContainer [builtins .str ]:
@@ -111,10 +111,10 @@ class PanelInformation(google.protobuf.message.Message):
111111        self ,
112112        * ,
113113        panel_id : builtins .str  =  ...,
114-         panel_uri : builtins .str  =  ...,
114+         panel_url : builtins .str  =  ...,
115115        value_ids : collections .abc .Iterable [builtins .str ] |  None  =  ...,
116116    ) ->  None : ...
117-     def  ClearField (self , field_name : typing .Literal ["panel_id" , b"panel_id" , "panel_uri " , b"panel_uri " , "value_ids" , b"value_ids" ]) ->  None : ...
117+     def  ClearField (self , field_name : typing .Literal ["panel_id" , b"panel_id" , "panel_url " , b"panel_url " , "value_ids" , b"value_ids" ]) ->  None : ...
118118
119119global___PanelInformation  =  PanelInformation 
120120
@@ -143,9 +143,9 @@ class GetValueRequest(google.protobuf.message.Message):
143143    PANEL_ID_FIELD_NUMBER : builtins .int 
144144    VALUE_ID_FIELD_NUMBER : builtins .int 
145145    panel_id : builtins .str 
146-     """Unique ID of the panel""" 
146+     """Unique ID of the panel. Only alphanumeric characters and underscores are allowed. """ 
147147    value_id : builtins .str 
148-     """Unique ID of value""" 
148+     """Unique ID of value. Only alphanumeric characters and underscores are allowed. """ 
149149    def  __init__ (
150150        self ,
151151        * ,
@@ -163,7 +163,9 @@ class GetValueResponse(google.protobuf.message.Message):
163163    VALUE_FIELD_NUMBER : builtins .int 
164164    @property  
165165    def  value (self ) ->  google .protobuf .any_pb2 .Any :
166-         """The value""" 
166+         """The value, packed as a google.protobuf.Any. 
167+         Only types from google/protobuf/wrappers.proto and the ni.protobuf.types package are allowed. 
168+         """ 
167169
168170    def  __init__ (
169171        self ,
@@ -182,9 +184,9 @@ class TryGetValueRequest(google.protobuf.message.Message):
182184    PANEL_ID_FIELD_NUMBER : builtins .int 
183185    VALUE_ID_FIELD_NUMBER : builtins .int 
184186    panel_id : builtins .str 
185-     """Unique ID of the panel""" 
187+     """Unique ID of the panel. Only alphanumeric characters and underscores are allowed. """ 
186188    value_id : builtins .str 
187-     """Unique ID of value""" 
189+     """Unique ID of value. Only alphanumeric characters and underscores are allowed. """ 
188190    def  __init__ (
189191        self ,
190192        * ,
@@ -202,16 +204,17 @@ class TryGetValueResponse(google.protobuf.message.Message):
202204    VALUE_FIELD_NUMBER : builtins .int 
203205    @property  
204206    def  value (self ) ->  google .protobuf .any_pb2 .Any :
205-         """The value, if it was found""" 
207+         """The value (if it was found), packed as a google.protobuf.Any. 
208+         Only types from google/protobuf/wrappers.proto and the ni.protobuf.types package are allowed. 
209+         """ 
206210
207211    def  __init__ (
208212        self ,
209213        * ,
210214        value : google .protobuf .any_pb2 .Any  |  None  =  ...,
211215    ) ->  None : ...
212-     def  HasField (self , field_name : typing .Literal ["_value" , b"_value" , "value" , b"value" ]) ->  builtins .bool : ...
213-     def  ClearField (self , field_name : typing .Literal ["_value" , b"_value" , "value" , b"value" ]) ->  None : ...
214-     def  WhichOneof (self , oneof_group : typing .Literal ["_value" , b"_value" ]) ->  typing .Literal ["value" ] |  None : ...
216+     def  HasField (self , field_name : typing .Literal ["value" , b"value" ]) ->  builtins .bool : ...
217+     def  ClearField (self , field_name : typing .Literal ["value" , b"value" ]) ->  None : ...
215218
216219global___TryGetValueResponse  =  TryGetValueResponse 
217220
@@ -224,14 +227,16 @@ class SetValueRequest(google.protobuf.message.Message):
224227    VALUE_FIELD_NUMBER : builtins .int 
225228    NOTIFY_FIELD_NUMBER : builtins .int 
226229    panel_id : builtins .str 
227-     """Unique ID of the panel""" 
230+     """Unique ID of the panel. Only alphanumeric characters and underscores are allowed. """ 
228231    value_id : builtins .str 
229-     """Unique ID of the value""" 
232+     """Unique ID of the value. Only alphanumeric characters and underscores are allowed. """ 
230233    notify : builtins .bool 
231234    """Notify other clients of this new value""" 
232235    @property  
233236    def  value (self ) ->  google .protobuf .any_pb2 .Any :
234-         """The value""" 
237+         """The value, packed as a google.protobuf.Any. 
238+         Only types from google/protobuf/wrappers.proto and the ni.protobuf.types package are allowed. 
239+         """ 
235240
236241    def  __init__ (
237242        self ,
0 commit comments