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 +2 -1
- package/dist/index.cjs +1 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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.
|
|
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",
|