@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 +8 -0
- package/dist/index.umd.cjs +5 -5
- package/dist/nats/client.d.ts +2 -1
- package/dist/nats/client.d.ts.map +1 -1
- package/dist/nats/types.d.ts +14 -0
- package/dist/nats/types.d.ts.map +1 -1
- package/package.json +1 -1
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);
|