shipmail 0.4.6 → 0.4.8

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
@@ -372,7 +372,6 @@ message.sent
372
372
  message.delivered
373
373
  message.bounced
374
374
  message.complained
375
- thread.needs_reply
376
375
  mailbox.rule_matched
377
376
  domain.verified
378
377
  domain.verification_failed
@@ -414,6 +413,8 @@ await shipmail.audiences.subscribers.add(audience.id, {
414
413
  await shipmail.audiences.feeds.update(audience.id, {
415
414
  enabled: true,
416
415
  title: "Release notes",
416
+ canonical_url: "https://example.com/feed.xml",
417
+ entry_limit: 25,
417
418
  });
418
419
  // Graceful migration: the current URL redirects to the replacement.
419
420
  await shipmail.audiences.feeds.rotate(audience.id);
package/dist/index.cjs CHANGED
@@ -1539,7 +1539,7 @@ var Webhooks = class extends ApiResource {
1539
1539
  };
1540
1540
 
1541
1541
  // src/version.ts
1542
- var VERSION = "0.4.6";
1542
+ var VERSION = "0.4.8";
1543
1543
 
1544
1544
  // src/client.ts
1545
1545
  var DEFAULT_BASE_URL = "https://shipmail.to/api/v1";
@@ -1713,7 +1713,6 @@ var WEBHOOK_EVENT_TYPES = [
1713
1713
  "message.delivered",
1714
1714
  "message.bounced",
1715
1715
  "message.complained",
1716
- "thread.needs_reply",
1717
1716
  "mailbox.rule_matched",
1718
1717
  "domain.verified",
1719
1718
  "domain.verification_failed",