(path, body, options = {})
| 409 | } |
| 410 | |
| 411 | post(path, body, options = {}) { |
| 412 | return this.request(path, { ...options, method: 'POST', body }); |
| 413 | } |
| 414 | |
| 415 | put(path, body, options = {}) { |
| 416 | return this.request(path, { ...options, method: 'PUT', body }); |
no test coverage detected