- Add "Prefer" "return=representation" header to delete requests. This resolves an issue where defaultSelect was specified with customEndpoint and postgrest wouldn't accept select as a parameter.
- Add support for
cs
andcd
operators.
- Change ilike and like parameters to not be quoted. (Otherwise it wouldn't work with 5.2.0) Previously it would look like
ilike."value*"
but now it'silike.value*
.
- Adjust BadStatus type to include body string. This will be useful if postgrest responses change over time or if an HTTP service proxies to postgrest for the success case but returns a custom error response for the failure case.
- Initial fork from alex-tan/postgrest-queries with new features to create HTTP requests.