mftsccs-browser 1.1.56-beta → 1.1.57-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.
@@ -16378,6 +16378,10 @@ function FormatConceptsAndConnectionsNormalList(connections_1, compositionData_1
16378
16378
  let key = (_d = (_c = ofTheConcept.type) === null || _c === void 0 ? void 0 : _c.characterValue) !== null && _d !== void 0 ? _d : "self";
16379
16379
  if (connections[i].ofTheConceptId in compositionData) {
16380
16380
  newData = compositionData[connections[i].ofTheConceptId];
16381
+ let newType = typeof newData[key];
16382
+ if (newType == "string") {
16383
+ newData[key] = {};
16384
+ }
16381
16385
  }
16382
16386
  else {
16383
16387
  newData = {};
@@ -16462,6 +16466,10 @@ function FormatFromConnectionsAlteredArrayExternal(connections_1, compositionDat
16462
16466
  }
16463
16467
  if (connections[i].toTheConceptId in compositionData) {
16464
16468
  newData = compositionData[connections[i].toTheConceptId];
16469
+ let newType = typeof newData[key];
16470
+ if (newType == "string") {
16471
+ newData[key] = {};
16472
+ }
16465
16473
  }
16466
16474
  else {
16467
16475
  newData = {};
@@ -16508,6 +16516,10 @@ function FormatFromConnectionsAlteredArrayExternal(connections_1, compositionDat
16508
16516
  }
16509
16517
  if (connections[i].ofTheConceptId in compositionData) {
16510
16518
  newData = compositionData[connections[i].ofTheConceptId];
16519
+ let newType = typeof newData[key];
16520
+ if (newType == "string") {
16521
+ newData[key] = {};
16522
+ }
16511
16523
  }
16512
16524
  else {
16513
16525
  newData = {};
@@ -17648,6 +17660,7 @@ function formatConnectionsDataId(linkers, conceptIds, mainCompositionIds, revers
17648
17660
  let newCompositionData = [];
17649
17661
  compositionData = yield (0,_FormatData__WEBPACK_IMPORTED_MODULE_2__.FormatFunctionData)(prefetchConnections, compositionData, reverse);
17650
17662
  compositionData = yield (0,_FormatData__WEBPACK_IMPORTED_MODULE_2__.FormatFunctionDataForData)(prefetchConnections, compositionData, reverse);
17663
+ console.log("this is the composition data", compositionData);
17651
17664
  let output = yield (0,_FormatData__WEBPACK_IMPORTED_MODULE_2__.FormatFromConnectionsAlteredArrayExternal)(prefetchConnections, compositionData, newCompositionData, mainCompositionIds, reverse);
17652
17665
  return output;
17653
17666
  });