(path, body, options = {})
| 413 | } |
| 414 | |
| 415 | put(path, body, options = {}) { |
| 416 | return this.request(path, { ...options, method: 'PUT', body }); |
| 417 | } |
| 418 | |
| 419 | patch(path, body, options = {}) { |
| 420 | return this.request(path, { ...options, method: 'PATCH', body }); |