@@ -14,44 +14,62 @@ import typing
1414DESCRIPTOR : google .protobuf .descriptor .FileDescriptor 
1515
1616@typing .final  
17- class  StartStreamlitPanelRequest (google .protobuf .message .Message ):
17+ class  StreamlitPanelConfiguration (google .protobuf .message .Message ):
1818    DESCRIPTOR : google .protobuf .descriptor .Descriptor 
1919
20-     PANEL_ID_FIELD_NUMBER : builtins .int 
2120    PANEL_SCRIPT_PATH_FIELD_NUMBER : builtins .int 
2221    PYTHON_PATH_FIELD_NUMBER : builtins .int 
23-     panel_id : builtins .str 
24-     """Unique ID of the panel""" 
2522    panel_script_path : builtins .str 
26-     """Absolute path of the streamlit script file on disk, or network path to the file""" 
23+     """Absolute path of the streamlit script file on disk, or network path to the file. This must end in ".py". """ 
2724    python_path : builtins .str 
2825    """Path to the python interpreter to use for running the streamlit script.""" 
2926    def  __init__ (
3027        self ,
3128        * ,
32-         panel_id : builtins .str  =  ...,
3329        panel_script_path : builtins .str  =  ...,
3430        python_path : builtins .str  =  ...,
3531    ) ->  None : ...
36-     def  ClearField (self , field_name : typing .Literal ["panel_id" , b"panel_id" , "panel_script_path" , b"panel_script_path" , "python_path" , b"python_path" ]) ->  None : ...
32+     def  ClearField (self , field_name : typing .Literal ["panel_script_path" , b"panel_script_path" , "python_path" , b"python_path" ]) ->  None : ...
33+ 
34+ global___StreamlitPanelConfiguration  =  StreamlitPanelConfiguration 
35+ 
36+ @typing .final  
37+ class  StartPanelRequest (google .protobuf .message .Message ):
38+     DESCRIPTOR : google .protobuf .descriptor .Descriptor 
39+ 
40+     PANEL_ID_FIELD_NUMBER : builtins .int 
41+     STREAMLIT_PANEL_CONFIGURATION_FIELD_NUMBER : builtins .int 
42+     panel_id : builtins .str 
43+     """Unique ID of the panel""" 
44+     @property  
45+     def  streamlit_panel_configuration (self ) ->  global___StreamlitPanelConfiguration : ...
46+     def  __init__ (
47+         self ,
48+         * ,
49+         panel_id : builtins .str  =  ...,
50+         streamlit_panel_configuration : global___StreamlitPanelConfiguration  |  None  =  ...,
51+     ) ->  None : ...
52+     def  HasField (self , field_name : typing .Literal ["panel_configuration" , b"panel_configuration" , "streamlit_panel_configuration" , b"streamlit_panel_configuration" ]) ->  builtins .bool : ...
53+     def  ClearField (self , field_name : typing .Literal ["panel_configuration" , b"panel_configuration" , "panel_id" , b"panel_id" , "streamlit_panel_configuration" , b"streamlit_panel_configuration" ]) ->  None : ...
54+     def  WhichOneof (self , oneof_group : typing .Literal ["panel_configuration" , b"panel_configuration" ]) ->  typing .Literal ["streamlit_panel_configuration" ] |  None : ...
3755
38- global___StartStreamlitPanelRequest  =  StartStreamlitPanelRequest 
56+ global___StartPanelRequest  =  StartPanelRequest 
3957
4058@typing .final  
41- class  StartStreamlitPanelResponse (google .protobuf .message .Message ):
59+ class  StartPanelResponse (google .protobuf .message .Message ):
4260    DESCRIPTOR : google .protobuf .descriptor .Descriptor 
4361
44-     PANEL_URL_FIELD_NUMBER : builtins .int 
45-     panel_url : builtins .str 
46-     """Location of the panel's webpage """ 
62+     PANEL_URI_FIELD_NUMBER : builtins .int 
63+     panel_uri : builtins .str 
64+     """Location of the panel""" 
4765    def  __init__ (
4866        self ,
4967        * ,
50-         panel_url : builtins .str  =  ...,
68+         panel_uri : builtins .str  =  ...,
5169    ) ->  None : ...
52-     def  ClearField (self , field_name : typing .Literal ["panel_url " , b"panel_url " ]) ->  None : ...
70+     def  ClearField (self , field_name : typing .Literal ["panel_uri " , b"panel_uri " ]) ->  None : ...
5371
54- global___StartStreamlitPanelResponse  =  StartStreamlitPanelResponse 
72+ global___StartPanelResponse  =  StartPanelResponse 
5573
5674@typing .final  
5775class  StopPanelRequest (google .protobuf .message .Message ):
@@ -98,12 +116,12 @@ class PanelInformation(google.protobuf.message.Message):
98116    DESCRIPTOR : google .protobuf .descriptor .Descriptor 
99117
100118    PANEL_ID_FIELD_NUMBER : builtins .int 
101-     PANEL_URL_FIELD_NUMBER : builtins .int 
119+     PANEL_URI_FIELD_NUMBER : builtins .int 
102120    VALUE_IDS_FIELD_NUMBER : builtins .int 
103121    panel_id : builtins .str 
104122    """Unique ID of the panel""" 
105-     panel_url : builtins .str 
106-     """Location of the panel's webpage """ 
123+     panel_uri : builtins .str 
124+     """Location of the panel""" 
107125    @property  
108126    def  value_ids (self ) ->  google .protobuf .internal .containers .RepeatedScalarFieldContainer [builtins .str ]:
109127        """IDs of all of the values associated with the panel""" 
@@ -112,10 +130,10 @@ class PanelInformation(google.protobuf.message.Message):
112130        self ,
113131        * ,
114132        panel_id : builtins .str  =  ...,
115-         panel_url : builtins .str  =  ...,
133+         panel_uri : builtins .str  =  ...,
116134        value_ids : collections .abc .Iterable [builtins .str ] |  None  =  ...,
117135    ) ->  None : ...
118-     def  ClearField (self , field_name : typing .Literal ["panel_id" , b"panel_id" , "panel_url " , b"panel_url " , "value_ids" , b"value_ids" ]) ->  None : ...
136+     def  ClearField (self , field_name : typing .Literal ["panel_id" , b"panel_id" , "panel_uri " , b"panel_uri " , "value_ids" , b"value_ids" ]) ->  None : ...
119137
120138global___PanelInformation  =  PanelInformation 
121139
0 commit comments