(id: string)
| 129 | return response.status === 204 ? { success: true } : response.json(); |
| 130 | }, |
| 131 | async execute(id: string) { |
| 132 | const response = await fetch(`${baseUrl}/v1/workflows/${id}/execute`, { |
| 133 | method: "POST", |
| 134 | headers: buildHeaders(), |
| 135 | }); |
| 136 | return response.json(); |
| 137 | }, |
| 138 | }, |
| 139 | rooms: { |
| 140 | async list() { |
nothing calls this directly
no test coverage detected