@@ -150,7 +150,7 @@ class InstanceNamespace(APINamespace):
150150 self , service : LoggingService , / , * , days : int = 30 , date : Optional [str ] = ..., max_lines : Optional [int ] = ...
151151 ) -> str :
152152 """
153- Gets cryosparc service logs, filterable by date, name, function, and level
153+ Gets cryosparc service logs, filterable by date. Only lines with a date are counted for max_lines.
154154 """
155155 ...
156156 def get_runtime_diagnostics (self ) -> RuntimeDiagnostics :
@@ -1315,19 +1315,6 @@ class SessionsNamespace(APINamespace):
13151315 Updates a session's params. Updates each exposure inside the session with the new stage to start processing at (if there is one).
13161316 """
13171317 ...
1318- def update_session_picker (
1319- self ,
1320- project_uid : str ,
1321- session_uid : str ,
1322- / ,
1323- * ,
1324- activate_picker_type : Literal ["blob" , "template" , "deep" ],
1325- use_thresholds : bool = True ,
1326- ) -> Session :
1327- """
1328- Updates a session's picker.
1329- """
1330- ...
13311318 def update_attribute_threshold (
13321319 self ,
13331320 project_uid : str ,
@@ -1581,7 +1568,7 @@ class SessionsNamespace(APINamespace):
15811568 Updates parameters for a streaming Homogenous Refinement job for a session
15821569 """
15831570 ...
1584- def create_and_enqueue_dump_particles (
1571+ def create_and_enqueue_export_particles (
15851572 self ,
15861573 project_uid : str ,
15871574 session_uid : str ,
@@ -1593,14 +1580,14 @@ class SessionsNamespace(APINamespace):
15931580 test_only : bool = False ,
15941581 ) -> Job :
15951582 """
1596- Creates and enqueues a dump particles job for a session
1583+ Creates and enqueues a Live Particle Export job for a session
15971584 """
15981585 ...
1599- def create_and_enqueue_dump_exposures (
1586+ def create_and_enqueue_export_exposures (
16001587 self , project_uid : str , session_uid : str , / , * , export_ignored : bool = False
16011588 ) -> Job :
16021589 """
1603- Creates and enqueues a dump exposures job for a session
1590+ Creates and enqueues a Live Exposure Export job for a session
16041591 """
16051592 ...
16061593 def get_data_management_stats (self , project_uid : str , / ) -> Dict [str , DataManagementStats ]:
0 commit comments