(path: string, options?: RequestOptions)
| 478 | }, |
| 479 | |
| 480 | delete<T>(path: string, options?: RequestOptions): Promise<ApiResponse<T>> { |
| 481 | return request<T>('DELETE', path, undefined, options) |
| 482 | }, |
| 483 | |
| 484 | // ============================================================================ |
| 485 | // Type-safe endpoint methods |