@edifice.io/edifice-ent-client 1.0.1-develop.20250604172233 → 1.0.1-develop.20250605172233

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.
package/dist/index.js CHANGED
@@ -10671,6 +10671,14 @@ let Bp = class {
10671
10671
  throw new Error("No reply received");
10672
10672
  return JSON.parse(n);
10673
10673
  }
10674
+ async getUsersByIds(e) {
10675
+ const r = "directory.users.get.byids";
10676
+ console.debug("Sending request to NATS subject, " + r);
10677
+ const n = await ce(this.natsClient.send(r, e));
10678
+ if (!n)
10679
+ throw new Error("No reply received");
10680
+ return JSON.parse(n);
10681
+ }
10674
10682
  async registerApp(e) {
10675
10683
  const r = "ent.appregistry.app.register";
10676
10684
  console.debug("Sending request to NATS subject, " + r);