@@ -36,6 +36,7 @@ def _type_to_message_type():
3636 field ,
3737 fields_container ,
3838 property_field ,
39+ data_sources ,
3940 generic_data_container ,
4041 string_field ,
4142 scoping ,
@@ -62,6 +63,7 @@ def _type_to_message_type():
6263 (collection_base .CollectionBase , base_pb2 .Type .COLLECTION , base_pb2 .Type .ANY ),
6364 (dpf_vector .DPFVectorInt , base_pb2 .Type .COLLECTION , base_pb2 .Type .INT ),
6465 (dpf_operator .Operator , base_pb2 .Type .OPERATOR ),
66+ (data_sources .DataSources , base_pb2 .Type .DATA_SOURCES ),
6567 ]
6668
6769 @staticmethod
@@ -137,6 +139,10 @@ def any_get_as_generic_data_container(any):
137139 def any_get_as_scoping (any ):
138140 return AnyGRPCAPI ._get_as (any ).scoping
139141
142+ @staticmethod
143+ def any_get_as_data_sources (any ):
144+ return AnyGRPCAPI ._get_as (any ).data_sources
145+
140146 @staticmethod
141147 def any_get_as_data_tree (any ):
142148 return AnyGRPCAPI ._get_as (any ).data_tree
@@ -239,6 +245,10 @@ def any_new_from_generic_data_container(any):
239245 def any_new_from_scoping (any ):
240246 return AnyGRPCAPI ._new_from (any , any ._server )
241247
248+ @staticmethod
249+ def any_new_from_data_sources (any ):
250+ return AnyGRPCAPI ._new_from (any , any ._server )
251+
242252 @staticmethod
243253 def any_new_from_data_tree (any ):
244254 return AnyGRPCAPI ._new_from (any , any ._server )
0 commit comments