@seamapi/http 0.14.1 → 0.15.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/connect.cjs CHANGED
@@ -1618,6 +1618,14 @@ var SeamHttpAcsUsers = class _SeamHttpAcsUsers {
1618
1618
  });
1619
1619
  return data.acs_users;
1620
1620
  }
1621
+ async listAccessibleEntrances(body) {
1622
+ const { data } = await this.client.request({
1623
+ url: "/acs/users/list_accessible_entrances",
1624
+ method: "post",
1625
+ data: body
1626
+ });
1627
+ return data.acs_entrances;
1628
+ }
1621
1629
  async removeFromAccessGroup(body) {
1622
1630
  await this.client.request({
1623
1631
  url: "/acs/users/remove_from_access_group",