@@ -14,23 +14,24 @@ class _ExportAsync(_ExportExecutor[ConnectionAsync]):
1414 @overload
1515 async def create (
1616 self ,
17+ * ,
1718 export_id : str ,
1819 backend : ExportStorage ,
1920 file_format : ExportFileFormat ,
2021 include_collections : Union [List [str ], str , None ] = None ,
2122 exclude_collections : Union [List [str ], str , None ] = None ,
22- * ,
2323 wait_for_completion : Literal [True ],
2424 ) -> ExportStatusReturn : ...
2525 @overload
2626 async def create (
2727 self ,
28+ * ,
2829 export_id : str ,
2930 backend : ExportStorage ,
3031 file_format : ExportFileFormat ,
3132 include_collections : Union [List [str ], str , None ] = None ,
3233 exclude_collections : Union [List [str ], str , None ] = None ,
3334 wait_for_completion : Literal [False ] = False ,
3435 ) -> ExportCreateReturn : ...
35- async def get_status (self , export_id : str , backend : ExportStorage ) -> ExportStatusReturn : ...
36- async def cancel (self , export_id : str , backend : ExportStorage ) -> bool : ...
36+ async def get_status (self , * , export_id : str , backend : ExportStorage ) -> ExportStatusReturn : ...
37+ async def cancel (self , * , export_id : str , backend : ExportStorage ) -> bool : ...
0 commit comments