(
path: string,
body?: Record<string, unknown>,
options?: RequestOptions,
)
| 470 | }, |
| 471 | |
| 472 | patch<T>( |
| 473 | path: string, |
| 474 | body?: Record<string, unknown>, |
| 475 | options?: RequestOptions, |
| 476 | ): Promise<ApiResponse<T>> { |
| 477 | return request<T>('PATCH', path, body, options) |
| 478 | }, |
| 479 | |
| 480 | delete<T>(path: string, options?: RequestOptions): Promise<ApiResponse<T>> { |
| 481 | return request<T>('DELETE', path, undefined, options) |