@barchart/portfolio-client-js 1.2.17 → 1.2.18
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 +6 -1
- package/lib/gateway/PortfolioGateway.js +4 -0
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/example/example.js
CHANGED
|
@@ -768,6 +768,11 @@ module.exports = function () {
|
|
|
768
768
|
return Gateway.invoke(_this17._readTransactionsReportEndpoint, payload);
|
|
769
769
|
});
|
|
770
770
|
}
|
|
771
|
+
}, {
|
|
772
|
+
key: 'readTransactionsFormattedPage',
|
|
773
|
+
value: function readTransactionsFormattedPage(portfolio, position, start, count) {
|
|
774
|
+
return Promise.resolve([]);
|
|
775
|
+
}
|
|
771
776
|
|
|
772
777
|
/**
|
|
773
778
|
* Creates and starts a new {@link PortfolioGateway} for use in the development environment.
|
|
@@ -1356,7 +1361,7 @@ module.exports = function () {
|
|
|
1356
1361
|
return {
|
|
1357
1362
|
JwtGateway: JwtGateway,
|
|
1358
1363
|
PortfolioGateway: PortfolioGateway,
|
|
1359
|
-
version: '1.2.
|
|
1364
|
+
version: '1.2.18'
|
|
1360
1365
|
};
|
|
1361
1366
|
}();
|
|
1362
1367
|
|
|
@@ -753,6 +753,10 @@ module.exports = (() => {
|
|
|
753
753
|
});
|
|
754
754
|
}
|
|
755
755
|
|
|
756
|
+
readTransactionsFormattedPage(portfolio, position, start, count) {
|
|
757
|
+
return Promise.resolve([ ]);
|
|
758
|
+
}
|
|
759
|
+
|
|
756
760
|
/**
|
|
757
761
|
* Creates and starts a new {@link PortfolioGateway} for use in the development environment.
|
|
758
762
|
*
|
package/lib/index.js
CHANGED