@barchart/portfolio-api-common 1.0.41 → 1.0.42

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.
@@ -10,20 +10,20 @@ module.exports = (() => {
10
10
  * @public
11
11
  * @extends {Enum}
12
12
  * @param {String} description
13
- * @param {String} groupDescription
13
+ * @param {String} alternateDescription
14
14
  * @param {String} code
15
15
  * @param {Boolean} canReinvest
16
16
  */
17
17
  class InstrumentType extends Enum {
18
- constructor(code, description, groupDescription, canReinvest) {
18
+ constructor(code, description, alternateDescription, canReinvest) {
19
19
  super(code, description);
20
20
 
21
- this._groupDescription = groupDescription;
21
+ this._alternateDescription = alternateDescription;
22
22
  this._canReinvest = canReinvest;
23
23
  }
24
24
 
25
- get groupDescription() {
26
- return this._groupDescription;
25
+ get alternateDescription() {
26
+ return this._alternateDescription;
27
27
  }
28
28
 
29
29
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@barchart/portfolio-api-common",
3
- "version": "1.0.41",
3
+ "version": "1.0.42",
4
4
  "description": "Common classes used by the Portfolio system",
5
5
  "author": {
6
6
  "name": "Bryan Ingle",