ti2-ventrata 1.0.25 → 1.0.26

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.
Files changed (2) hide show
  1. package/index.js +2 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -37,8 +37,9 @@ const getHeaders = ({
37
37
 
38
38
  const axiosSafeRequest = R.pick(['headers', 'method', 'url', 'data']);
39
39
  const axiosSafeResponse = response => {
40
- const retVal = R.pick(['data', 'status', 'statusText', 'headers', 'request'], response);
40
+ const retVal = R.pick(['data', 'status', 'statusText', 'headers', 'request', 'config'], response);
41
41
  retVal.request = axiosSafeRequest(retVal.request);
42
+ retVal.config = axiosSafeRequest(retVal.config);
42
43
  return retVal;
43
44
  };
44
45
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ti2-ventrata",
3
- "version": "1.0.25",
3
+ "version": "1.0.26",
4
4
  "description": "Ventrata's TI2 Plugin",
5
5
  "main": "index.js",
6
6
  "scripts": {