@seamapi/http 0.14.1 → 0.16.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
@@ -1438,6 +1438,14 @@ var SeamHttpAcsEntrances = class _SeamHttpAcsEntrances {
1438
1438
  });
1439
1439
  return data.acs_entrances;
1440
1440
  }
1441
+ async listCredentialsWithAccess(body) {
1442
+ const { data } = await this.client.request({
1443
+ url: "/acs/entrances/list_credentials_with_access",
1444
+ method: "post",
1445
+ data: body
1446
+ });
1447
+ return data.acs_credentials;
1448
+ }
1441
1449
  };
1442
1450
 
1443
1451
  // src/lib/seam/connect/routes/acs-systems.ts
@@ -1618,6 +1626,14 @@ var SeamHttpAcsUsers = class _SeamHttpAcsUsers {
1618
1626
  });
1619
1627
  return data.acs_users;
1620
1628
  }
1629
+ async listAccessibleEntrances(body) {
1630
+ const { data } = await this.client.request({
1631
+ url: "/acs/users/list_accessible_entrances",
1632
+ method: "post",
1633
+ data: body
1634
+ });
1635
+ return data.acs_entrances;
1636
+ }
1621
1637
  async removeFromAccessGroup(body) {
1622
1638
  await this.client.request({
1623
1639
  url: "/acs/users/remove_from_access_group",
@@ -3148,6 +3164,13 @@ var SeamHttpUserIdentities = class _SeamHttpUserIdentities {
3148
3164
  });
3149
3165
  return data.user_identity;
3150
3166
  }
3167
+ async delete(body) {
3168
+ await this.client.request({
3169
+ url: "/user_identities/delete",
3170
+ method: "post",
3171
+ data: body
3172
+ });
3173
+ }
3151
3174
  async get(body) {
3152
3175
  const { data } = await this.client.request({
3153
3176
  url: "/user_identities/get",