New features
- Support custom API proxy #6
- Your proxy server will still need to send the correct authorization credentials to Redivis
- To use your own API proxy and bypass the standard authorization flow, configure as follows:
redivis.setApiProxy({
// Whatever the base forwarding URL is on the proxy
baseUrl: 'https://your-server.com/redivis_proxy',
// Can provide any header here, will be passed to the proxy directly
headers: {
authorization: 'my-auth-string',
},
});
Fixes
- Results from
listRows()
should now be properly typed.
Internal changes
- Changed listRows() methods to use Arrow, rather than Avro, encoding
- Build system updates and improvements