hof 21.0.4-axios-beta → 21.0.5-axios-beta

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.
@@ -4,7 +4,6 @@ const url = require('url');
4
4
  module.exports = (settings, body) => {
5
5
  return Object.assign({}, settings, {
6
6
  'url' : settings.uri || settings.url || url.format(settings),
7
- 'data': settings.body || body || settings.data,
8
- 'responseType': 'arraybuffer'
7
+ 'data': settings.body || body || settings.data
9
8
  });
10
9
  }
@@ -9,7 +9,8 @@ module.exports = class PDFModel extends Model {
9
9
  const settings = super.requestConfig(options);
10
10
  settings.encoding = null;
11
11
  settings.rejectUnauthorized = false;
12
- console.log("settings---------------: ", settings);
12
+ settings.responseType = 'arraybuffer';
13
+ console.log("settings------+_+_+_+_---------: ", settings);
13
14
  return settings;
14
15
  }
15
16
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "hof",
3
3
  "description": "A bootstrap for HOF projects",
4
- "version": "21.0.4-axios-beta",
4
+ "version": "21.0.5-axios-beta",
5
5
  "license": "MIT",
6
6
  "main": "index.js",
7
7
  "author": "HomeOffice",