Deletes the session plan file from the workspace.
(self, *, timeout: float | None = None)
| 25741 | await self._client.request("session.plan.update", params_dict, **_timeout_kwargs(timeout)) |
| 25742 | |
| 25743 | async def delete(self, *, timeout: float | None = None) -> None: |
| 25744 | "Deletes the session plan file from the workspace." |
| 25745 | await self._client.request("session.plan.delete", {"sessionId": self._session_id}, **_timeout_kwargs(timeout)) |
| 25746 | |
| 25747 | async def read_sql_todos(self, *, timeout: float | None = None) -> PlanReadSQLTodosResult: |
| 25748 | "Reads todo rows from the session SQL database for plan rendering.\n\nReturns:\n Todo rows read from the session SQL database. Empty when no session database is available." |