@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.
- package/example/example.js +2 -2
- package/lib/gateway/PortfolioGateway.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/example/example.js
CHANGED
|
@@ -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)
|
|
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.
|
|
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)
|
|
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