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.
@@ -3457,7 +3457,9 @@
3457
3457
  try {
3458
3458
  const tags = yield prom;
3459
3459
  const tag = tags.find((t) => t.ID === id);
3460
- res(tag);
3460
+ res({
3461
+ tag: tag
3462
+ });
3461
3463
  }
3462
3464
  catch (e) {
3463
3465
  rej(e);
@@ -3468,7 +3470,7 @@
3468
3470
  }
3469
3471
  }
3470
3472
  return {
3471
- tags: (yield Promise.all(reqs)).filter(x => !!x)
3473
+ tags: (yield Promise.all(reqs)).map(x => x === null || x === void 0 ? void 0 : x.tag).filter(x => !!x)
3472
3474
  };
3473
3475
  });
3474
3476
  }