@seamapi/http 0.17.0 → 0.17.1

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
@@ -1793,6 +1793,13 @@ var SeamHttpAcsUsers = class _SeamHttpAcsUsers {
1793
1793
  data: body
1794
1794
  });
1795
1795
  }
1796
+ async revokeAccessToAllEntrances(body) {
1797
+ await this.client.request({
1798
+ url: "/acs/users/revoke_access_to_all_entrances",
1799
+ method: "post",
1800
+ data: body
1801
+ });
1802
+ }
1796
1803
  async suspend(body) {
1797
1804
  await this.client.request({
1798
1805
  url: "/acs/users/suspend",
@@ -3750,6 +3757,13 @@ var SeamHttpWebhooks = class _SeamHttpWebhooks {
3750
3757
  });
3751
3758
  return data.webhooks;
3752
3759
  }
3760
+ async update(body) {
3761
+ await this.client.request({
3762
+ url: "/webhooks/update",
3763
+ method: "post",
3764
+ data: body
3765
+ });
3766
+ }
3753
3767
  };
3754
3768
 
3755
3769
  // src/lib/seam/connect/routes/workspaces.ts