bruce-models 1.4.0 → 1.4.2

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.
@@ -3556,7 +3556,9 @@ var EntityTag;
3556
3556
  try {
3557
3557
  const tags = yield prom;
3558
3558
  const tag = tags.find((t) => t.ID === id);
3559
- res(tag);
3559
+ res({
3560
+ tag: tag
3561
+ });
3560
3562
  }
3561
3563
  catch (e) {
3562
3564
  rej(e);
@@ -3567,7 +3569,7 @@ var EntityTag;
3567
3569
  }
3568
3570
  }
3569
3571
  return {
3570
- tags: (yield Promise.all(reqs)).filter(x => !!x)
3572
+ tags: (yield Promise.all(reqs)).map(x => x === null || x === void 0 ? void 0 : x.tag).filter(x => !!x)
3571
3573
  };
3572
3574
  });
3573
3575
  }
@@ -6779,6 +6781,8 @@ var Markup;
6779
6781
  // Embed, assume content is html.
6780
6782
  // Make it take over the whole cell instead of padding it and such.
6781
6783
  EItemType["Embed"] = "EMBED";
6784
+ // Content is expected to be an SVG or font-awesome icon.
6785
+ EItemType["Icon"] = "ICON";
6782
6786
  })(EItemType = Div.EItemType || (Div.EItemType = {}));
6783
6787
  let ItemAction;
6784
6788
  (function (ItemAction) {