bruce-models 1.4.0 → 1.4.1

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
  }