@translated/lara 2.0.0-beta.0 → 2.0.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/Translator.js CHANGED
@@ -29,7 +29,6 @@ export class Translator {
29
29
  }, Promise.reject);
30
30
  // Intercepts errors to handle authentication errors
31
31
  this.client.interceptors.response.use((response) => {
32
- response.data && console.log(response.data);
33
32
  // Convert payload in camel case if needed
34
33
  if (response.data && typeof response.data === 'object') {
35
34
  response.data = toCamelCase(response.data);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@translated/lara",
3
- "version": "2.0.0-beta.0",
3
+ "version": "2.0.0-beta.1",
4
4
  "main": "./lib/index.js",
5
5
  "types": "./lib/index.d.ts",
6
6
  "engines": {