@barchart/portfolio-api-common 1.0.137 → 1.0.138

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.
@@ -172,7 +172,7 @@ module.exports = (() => {
172
172
  setPositionFundamentalData(data) {
173
173
  assert.argumentIsRequired(data, 'data', Object);
174
174
 
175
- this._fundamentalDataChangeEvent(this._data.fundamental = data);
175
+ this._fundamentalDataChangeEvent.fire(this._data.fundamental = data);
176
176
  }
177
177
 
178
178
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@barchart/portfolio-api-common",
3
- "version": "1.0.137",
3
+ "version": "1.0.138",
4
4
  "description": "Common classes used by the Portfolio system",
5
5
  "author": {
6
6
  "name": "Bryan Ingle",
@@ -1899,7 +1899,7 @@ module.exports = (() => {
1899
1899
  setPositionFundamentalData(data) {
1900
1900
  assert.argumentIsRequired(data, 'data', Object);
1901
1901
 
1902
- this._fundamentalDataChangeEvent(this._data.fundamental = data);
1902
+ this._fundamentalDataChangeEvent.fire(this._data.fundamental = data);
1903
1903
  }
1904
1904
 
1905
1905
  /**