(id: string)
| 123 | } |
| 124 | |
| 125 | async deleteWorkflow(id: string) { |
| 126 | return this.client.DELETE('/api/v1/workflows/{id}', { |
| 127 | params: { path: { id } }, |
| 128 | }); |
| 129 | } |
| 130 | |
| 131 | async commitWorkflow(id: string) { |
| 132 | return this.client.POST('/api/v1/workflows/{id}/commit', { |