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