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.
@@ -24052,6 +24052,7 @@ class DependencyObserver {
24052
24052
  * @param id this is the type id which needs to be tracked
24053
24053
  */
24054
24054
  listenToEventType(id) {
24055
+ console.log("listening to the id event type", id);
24055
24056
  window.addEventListener(`${id}`, (event) => {
24056
24057
  console.log("this is the event for type", id, event);
24057
24058
  if (!this.isUpdating) {
@@ -24105,6 +24106,7 @@ class DependencyObserver {
24105
24106
  * @param id Of the concept id that needs to be listened.
24106
24107
  */
24107
24108
  listenToEvent(id) {
24109
+ console.log("listening to the id event", id);
24108
24110
  window.addEventListener(`${id}`, (event) => {
24109
24111
  console.log("this is the event for id", id, event);
24110
24112
  if (!this.isUpdating) {
@@ -24130,9 +24132,9 @@ class DependencyObserver {
24130
24132
  }
24131
24133
  if (!that.compositionIds.includes(conn.ofTheConceptId)) {
24132
24134
  that.compositionIds.push(conn.ofTheConceptId);
24133
- }
24134
- if (!that.newIds.includes(conn.ofTheConceptId)) {
24135
- that.newIds.push(conn.ofTheConceptId);
24135
+ if (!that.newIds.includes(conn.ofTheConceptId)) {
24136
+ that.newIds.push(conn.ofTheConceptId);
24137
+ }
24136
24138
  }
24137
24139
  });
24138
24140
  }