shipmail 0.4.23 → 0.5.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/README.md CHANGED
@@ -176,7 +176,6 @@ const updatedRules = await shipmail.mailboxes.updateRules("mbx_...", {
176
176
  },
177
177
  ],
178
178
  });
179
- await shipmail.mailboxes.updateSpamFilter("mbx_...", { threshold: 8 });
180
179
  await shipmail.mailboxes.delete("mbx_...");
181
180
 
182
181
  await shipmail.mailboxes.updateAutoReply("mbx_...", {
package/dist/index.cjs CHANGED
@@ -1020,14 +1020,6 @@ var Mailboxes = class extends ApiResource {
1020
1020
  methodOptions: options
1021
1021
  });
1022
1022
  }
1023
- updateSpamFilter(id, params, options) {
1024
- return this.client.request({
1025
- method: "PATCH",
1026
- path: `/mailboxes/${encodeURIComponent(id)}/spam-filter`,
1027
- body: params,
1028
- methodOptions: options
1029
- });
1030
- }
1031
1023
  createImport(id, params, options) {
1032
1024
  return this.client.request({
1033
1025
  method: "POST",
@@ -1693,7 +1685,7 @@ var Webhooks = class extends ApiResource {
1693
1685
  };
1694
1686
 
1695
1687
  // src/version.ts
1696
- var VERSION = "0.4.23";
1688
+ var VERSION = "0.5.0";
1697
1689
 
1698
1690
  // src/client.ts
1699
1691
  var DEFAULT_BASE_URL = "https://shipmail.to/api/v1";