pauseRun gracefully pauses an active run: it stops scheduling new tasks,
lets in-flight tasks finish, then parks the run in the resumable paused
status. Unlike cancelRun, it never aborts running tasks. Resume with
resumeRun (or bunx smthrs up --resume).
- Method:
pauseRun - Scope:
run:write - Transports: HTTP RPC, WebSocket RPC
- Request:
{ runId } - Response:
{ runId, status: "pausing" }
v1 and include InvalidRequest, Unauthorized, Forbidden, RunNotFound, RUN_NOT_ACTIVE, and Internal. RUN_NOT_ACTIVE: the run isn’t currently running (only a live run can be paused). Forbidden: the caller lacks run:write scope.