@calimero-network/mero-js 2.1.0 → 2.2.0

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.cjs CHANGED
@@ -1098,6 +1098,14 @@ var AdminApiClient = class {
1098
1098
  await this.httpClient.post("/admin-api/groups/join", request)
1099
1099
  );
1100
1100
  }
1101
+ async joinSubgroupInheritance(groupId) {
1102
+ return unwrap(
1103
+ await this.httpClient.post(
1104
+ `/admin-api/groups/${groupId}/join-via-inheritance`,
1105
+ {}
1106
+ )
1107
+ );
1108
+ }
1101
1109
  // ---- TEE ----
1102
1110
  async getTeeInfo() {
1103
1111
  return unwrap(await this.httpClient.get("/admin-api/tee/info"));