temp commit

This commit is contained in:
Justin Visser 2026-02-26 12:54:19 +01:00
parent 8760f27b51
commit 0e9e49df16
193 changed files with 23228 additions and 935 deletions

View file

@ -145,6 +145,13 @@ export async function triggerManualRun(): Promise<{
return response.data;
}
export async function cancelRun(runId: number): Promise<RunDetail> {
const response = await apiRequest<RunDetail>(`/runs/${runId}/cancel`, {
method: "POST",
});
return response.data;
}
export async function listQueueItems(limit = 200): Promise<QueueItem[]> {
const response = await apiRequest<QueueListData>(`/runs/queue/items?limit=${limit}`, {
method: "GET",