@barchart/portfolio-client-js 1.5.0 → 1.5.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.
@@ -2070,7 +2070,7 @@ module.exports = (() => {
2070
2070
  });
2071
2071
  const responseInterceptorForVersion = ResponseInterceptor.fromDelegate((response, ignored) => {
2072
2072
  try {
2073
- return JSON.parse(response.data).version;
2073
+ return JSON.parse(response.data);
2074
2074
  } catch (e) {
2075
2075
  console.error('Error deserializing data', e);
2076
2076
  }
@@ -2496,7 +2496,7 @@ module.exports = (() => {
2496
2496
  return {
2497
2497
  JwtGateway: JwtGateway,
2498
2498
  PortfolioGateway: PortfolioGateway,
2499
- version: '1.5.0'
2499
+ version: '1.5.1'
2500
2500
  };
2501
2501
  })();
2502
2502
 
@@ -1353,7 +1353,7 @@ module.exports = (() => {
1353
1353
 
1354
1354
  const responseInterceptorForVersion = ResponseInterceptor.fromDelegate((response, ignored) => {
1355
1355
  try {
1356
- return JSON.parse(response.data).version;
1356
+ return JSON.parse(response.data);
1357
1357
  } catch (e) {
1358
1358
  console.error('Error deserializing data', e);
1359
1359
  }
package/lib/index.js CHANGED
@@ -7,6 +7,6 @@ module.exports = (() => {
7
7
  return {
8
8
  JwtGateway: JwtGateway,
9
9
  PortfolioGateway: PortfolioGateway,
10
- version: '1.5.0'
10
+ version: '1.5.1'
11
11
  };
12
12
  })();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@barchart/portfolio-client-js",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "JavaScript library for interfacing with Barchart's Portfolio API",
5
5
  "author": {
6
6
  "name": "Bryan Ingle",