You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Add HTTPClient.patch() for sending PATCH requests (#15)
`PATCH` is a commonly supported verb in RESTful APIs. Although it is
already possible to send a PATCH request via the `HTTPClient.execute()`
API this commit adds an explicit `patch()` API for consistency.
This gives us explicit APIs for `GET`, `POST`, `PUT`, `PATCH` and
`DELETE`.
0 commit comments