shipmail 0.4.23 → 0.4.24

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
@@ -1350,6 +1350,7 @@ type MailboxForwarding = {
1350
1350
  readonly id: string;
1351
1351
  readonly mailbox_id: string;
1352
1352
  readonly destination: string;
1353
+ readonly sender: string | null;
1353
1354
  readonly status: "pending" | "active";
1354
1355
  readonly verification_sent_at: string | null;
1355
1356
  readonly verified_at: string | null;
@@ -1363,6 +1364,7 @@ type MailboxForwardingList = {
1363
1364
  };
1364
1365
  type CreateMailboxForwardingParams = {
1365
1366
  readonly destination: string;
1367
+ readonly sender?: string | null | undefined;
1366
1368
  };
1367
1369
  type CreateMailboxBaseParams = {
1368
1370
  readonly domain_id: string;
package/dist/index.d.ts CHANGED
@@ -1350,6 +1350,7 @@ type MailboxForwarding = {
1350
1350
  readonly id: string;
1351
1351
  readonly mailbox_id: string;
1352
1352
  readonly destination: string;
1353
+ readonly sender: string | null;
1353
1354
  readonly status: "pending" | "active";
1354
1355
  readonly verification_sent_at: string | null;
1355
1356
  readonly verified_at: string | null;
@@ -1363,6 +1364,7 @@ type MailboxForwardingList = {
1363
1364
  };
1364
1365
  type CreateMailboxForwardingParams = {
1365
1366
  readonly destination: string;
1367
+ readonly sender?: string | null | undefined;
1366
1368
  };
1367
1369
  type CreateMailboxBaseParams = {
1368
1370
  readonly domain_id: string;
package/dist/index.js CHANGED
@@ -1689,7 +1689,7 @@ var Webhooks = class extends ApiResource {
1689
1689
  };
1690
1690
 
1691
1691
  // src/version.ts
1692
- var VERSION = "0.4.23";
1692
+ var VERSION = "0.4.24";
1693
1693
 
1694
1694
  // src/client.ts
1695
1695
  var DEFAULT_BASE_URL = "https://shipmail.to/api/v1";