@seamapi/http 0.17.1 → 0.18.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
@@ -3088,6 +3088,13 @@ var SeamHttpPhones = class _SeamHttpPhones {
3088
3088
  const clientSessions = SeamHttpClientSessions.fromClient(this.client);
3089
3089
  await clientSessions.get();
3090
3090
  }
3091
+ async deactivate(body) {
3092
+ await this.client.request({
3093
+ url: "/phones/deactivate",
3094
+ method: "post",
3095
+ data: body
3096
+ });
3097
+ }
3091
3098
  async list(body) {
3092
3099
  const { data } = await this.client.request({
3093
3100
  url: "/phones/list",