mftsccs-browser 3.2.10-beta → 3.2.11-beta

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.
@@ -25002,6 +25002,7 @@ class DependencyObserver {
25002
25002
  * @param id this is the type id which needs to be tracked
25003
25003
  */
25004
25004
  listenToEventType(id) {
25005
+ console.log("listening to the id event type", id);
25005
25006
  window.addEventListener(`${id}`, (event) => {
25006
25007
  console.log("this is the event for type", id, event);
25007
25008
  if (!this.isUpdating) {
@@ -25055,6 +25056,7 @@ class DependencyObserver {
25055
25056
  * @param id Of the concept id that needs to be listened.
25056
25057
  */
25057
25058
  listenToEvent(id) {
25059
+ console.log("listening to the id event", id);
25058
25060
  window.addEventListener(`${id}`, (event) => {
25059
25061
  console.log("this is the event for id", id, event);
25060
25062
  if (!this.isUpdating) {
@@ -25080,9 +25082,9 @@ class DependencyObserver {
25080
25082
  }
25081
25083
  if (!that.compositionIds.includes(conn.ofTheConceptId)) {
25082
25084
  that.compositionIds.push(conn.ofTheConceptId);
25083
- }
25084
- if (!that.newIds.includes(conn.ofTheConceptId)) {
25085
- that.newIds.push(conn.ofTheConceptId);
25085
+ if (!that.newIds.includes(conn.ofTheConceptId)) {
25086
+ that.newIds.push(conn.ofTheConceptId);
25087
+ }
25086
25088
  }
25087
25089
  });
25088
25090
  }