shipmail 0.4.20 → 0.4.21

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/index.d.cts CHANGED
@@ -1532,12 +1532,12 @@ type NewsletterButtonAlign = "left" | "center" | "right";
1532
1532
  type NewsletterDomain = {
1533
1533
  readonly object: "newsletter_domain";
1534
1534
  readonly id: string;
1535
- readonly root_domain_id: string;
1535
+ readonly root_domain_name: string;
1536
1536
  readonly domain_name: string;
1537
1537
  readonly from_local_part: string;
1538
1538
  readonly from_address: string;
1539
1539
  readonly mail_from_domain: string;
1540
- readonly reply_to_mailbox_id: string | null;
1540
+ readonly reply_to_address: string | null;
1541
1541
  readonly status: NewsletterDomainStatus;
1542
1542
  readonly dkim_status: NewsletterDomainRecordStatus;
1543
1543
  readonly mail_from_status: NewsletterDomainRecordStatus;
@@ -1565,9 +1565,8 @@ type Newsletter = {
1565
1565
  readonly object: "newsletter";
1566
1566
  readonly id: string;
1567
1567
  readonly audience_id: string | null;
1568
- readonly sender_identity_id: string;
1569
- readonly newsletter_domain_id: string;
1570
- readonly reply_to_mailbox_id: string | null;
1568
+ readonly sender_identity_id: string | null;
1569
+ readonly newsletter_domain_id: string | null;
1571
1570
  readonly name: string;
1572
1571
  readonly subject: string | null;
1573
1572
  readonly preview_text: string | null;
package/dist/index.d.ts CHANGED
@@ -1532,12 +1532,12 @@ type NewsletterButtonAlign = "left" | "center" | "right";
1532
1532
  type NewsletterDomain = {
1533
1533
  readonly object: "newsletter_domain";
1534
1534
  readonly id: string;
1535
- readonly root_domain_id: string;
1535
+ readonly root_domain_name: string;
1536
1536
  readonly domain_name: string;
1537
1537
  readonly from_local_part: string;
1538
1538
  readonly from_address: string;
1539
1539
  readonly mail_from_domain: string;
1540
- readonly reply_to_mailbox_id: string | null;
1540
+ readonly reply_to_address: string | null;
1541
1541
  readonly status: NewsletterDomainStatus;
1542
1542
  readonly dkim_status: NewsletterDomainRecordStatus;
1543
1543
  readonly mail_from_status: NewsletterDomainRecordStatus;
@@ -1565,9 +1565,8 @@ type Newsletter = {
1565
1565
  readonly object: "newsletter";
1566
1566
  readonly id: string;
1567
1567
  readonly audience_id: string | null;
1568
- readonly sender_identity_id: string;
1569
- readonly newsletter_domain_id: string;
1570
- readonly reply_to_mailbox_id: string | null;
1568
+ readonly sender_identity_id: string | null;
1569
+ readonly newsletter_domain_id: string | null;
1571
1570
  readonly name: string;
1572
1571
  readonly subject: string | null;
1573
1572
  readonly preview_text: string | null;
package/dist/index.js CHANGED
@@ -1647,7 +1647,7 @@ var Webhooks = class extends ApiResource {
1647
1647
  };
1648
1648
 
1649
1649
  // src/version.ts
1650
- var VERSION = "0.4.20";
1650
+ var VERSION = "0.4.21";
1651
1651
 
1652
1652
  // src/client.ts
1653
1653
  var DEFAULT_BASE_URL = "https://shipmail.to/api/v1";