(sourceId: string)
| 132 | } |
| 133 | |
| 134 | async releaseImportSource(sourceId: string): Promise<void> { |
| 135 | await fetchWithAuth(`${getBaseUrl()}/import-sources/${encodeURIComponent(sourceId)}`, { |
| 136 | method: 'DELETE', |
| 137 | }) |
| 138 | } |
| 139 | |
| 140 | getSupportedFormats(): Promise<FormatInfo[]> { |
| 141 | return get('/supported-formats') |
nothing calls this directly
no test coverage detected