rest-client-sdk
Advanced tools
Changelog
7.0.0
[Breaking] If unitOfWork is disabled in the global configuration, then it will be disabled for all call to getRepository. #111. Waiting to resolve issue with create
and update
to bump 7.0.0
version.
Start implementing a logger. You need to enable it with config.loggerEnabled
if you want to log request:
A possible interesting configuration is to activate the logger on dev environment.
const sdk = new TicketingSdk(tokenStorage, {
path: process.env.API_DOMAIN,
scheme: 'https',
loggerEnabled: process.env.NODE_ENV === 'development',
});