(path, body, options = {})
| 417 | } |
| 418 | |
| 419 | patch(path, body, options = {}) { |
| 420 | return this.request(path, { ...options, method: 'PATCH', body }); |
| 421 | } |
| 422 | |
| 423 | delete(path, options = {}) { |
| 424 | return this.request(path, { ...options, method: 'DELETE' }); |
no test coverage detected