@barchart/portfolio-client-js 1.3.18 → 1.3.19
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 -6
- package/example/js/startup.js +0 -3
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/example/example.js
CHANGED
|
@@ -17,10 +17,6 @@ const JwtGateway = require('./../../lib/gateway/jwt/JwtGateway');
|
|
|
17
17
|
|
|
18
18
|
const PortfolioGateway = require('./../../lib/gateway/PortfolioGateway');
|
|
19
19
|
|
|
20
|
-
const Gateway = require('@barchart/common-js/api/http/Gateway');
|
|
21
|
-
|
|
22
|
-
const RequestInterceptor = require('@barchart/common-js/api/http/interceptors/RequestInterceptor');
|
|
23
|
-
|
|
24
20
|
module.exports = (() => {
|
|
25
21
|
'use strict';
|
|
26
22
|
|
|
@@ -950,7 +946,7 @@ module.exports = (() => {
|
|
|
950
946
|
});
|
|
951
947
|
})();
|
|
952
948
|
|
|
953
|
-
},{"./../../lib/gateway/PortfolioGateway":3,"./../../lib/gateway/jwt/JwtGateway":4,"./../../lib/index":5,"@barchart/common-js/
|
|
949
|
+
},{"./../../lib/gateway/PortfolioGateway":3,"./../../lib/gateway/jwt/JwtGateway":4,"./../../lib/index":5,"@barchart/common-js/lang/Currency":30,"@barchart/common-js/lang/Day":31,"@barchart/common-js/lang/Decimal":32,"@barchart/common-js/lang/Timezones":37,"@barchart/portfolio-api-common/lib/data/TransactionType":56,"@barchart/portfolio-api-common/lib/data/ValuationType":57}],2:[function(require,module,exports){
|
|
954
950
|
module.exports = (() => {
|
|
955
951
|
'use strict';
|
|
956
952
|
/**
|
|
@@ -2323,7 +2319,7 @@ module.exports = (() => {
|
|
|
2323
2319
|
return {
|
|
2324
2320
|
JwtGateway: JwtGateway,
|
|
2325
2321
|
PortfolioGateway: PortfolioGateway,
|
|
2326
|
-
version: '1.3.
|
|
2322
|
+
version: '1.3.19'
|
|
2327
2323
|
};
|
|
2328
2324
|
})();
|
|
2329
2325
|
|
package/example/js/startup.js
CHANGED
|
@@ -11,9 +11,6 @@ const ValuationType = require('@barchart/portfolio-api-common/lib/data/Valuation
|
|
|
11
11
|
const JwtGateway = require('./../../lib/gateway/jwt/JwtGateway');
|
|
12
12
|
const PortfolioGateway = require('./../../lib/gateway/PortfolioGateway');
|
|
13
13
|
|
|
14
|
-
const Gateway = require('@barchart/common-js/api/http/Gateway');
|
|
15
|
-
const RequestInterceptor = require('@barchart/common-js/api/http/interceptors/RequestInterceptor');
|
|
16
|
-
|
|
17
14
|
module.exports = (() => {
|
|
18
15
|
'use strict';
|
|
19
16
|
|
package/lib/index.js
CHANGED