(path: string, body?: Body)
| 70 | } |
| 71 | |
| 72 | async put<T>(path: string, body?: Body): Promise<ApiResult<T>> { |
| 73 | return await this.do("PUT", path, body); |
| 74 | } |
| 75 | |
| 76 | async patch<T>(path: string, body?: Body): Promise<ApiResult<T>> { |
| 77 | return await this.do("PATCH", path, body); |
no test coverage detected