render_workflows 0.1.0
render_workflows: ^0.1.0 copied to clipboard
Unofficial Dart client for Render Workflows: start, watch and cancel task runs. Not affiliated with or endorsed by Render.
0.1.0 #
Initial release.
- Start, watch, list and cancel Render Workflows task runs.
- Method names mirror Render's official TypeScript SDK —
startTask,runTask,getTaskRun,cancelTaskRun,listTaskRuns,taskRunEvents— so its documentation carries over. waitForpolls a run's own terminal status, which is what makes it correct: an attempt reaches a terminal state before the run does.listTaskRunsStreamwalks cursors for you.- Render's 4 MB input limit is checked locally, so an oversized payload fails by name rather than as a generic rejection.
TaskRunStatustreats terminality as data, because the API defines bothcompletedandsucceeded.- Builds on
package:render_apirather than duplicating transport, errors and pagination.