shipmail 0.5.5 → 0.5.6
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 +1 -0
- package/dist/index.d.ts +1 -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
|
@@ -882,6 +882,7 @@ type OutboundHeader = {
|
|
|
882
882
|
type MessageMetadata = Readonly<Record<string, string | number | boolean | null>>;
|
|
883
883
|
type SendMessageParams = {
|
|
884
884
|
readonly mailbox_id?: string | undefined;
|
|
885
|
+
/** Sending mailbox: `hello@example.com` or `Acme Support <hello@example.com>`. */
|
|
885
886
|
readonly from?: string | undefined;
|
|
886
887
|
readonly to: readonly EmailRecipientInput[];
|
|
887
888
|
readonly cc?: readonly EmailRecipientInput[] | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -882,6 +882,7 @@ type OutboundHeader = {
|
|
|
882
882
|
type MessageMetadata = Readonly<Record<string, string | number | boolean | null>>;
|
|
883
883
|
type SendMessageParams = {
|
|
884
884
|
readonly mailbox_id?: string | undefined;
|
|
885
|
+
/** Sending mailbox: `hello@example.com` or `Acme Support <hello@example.com>`. */
|
|
885
886
|
readonly from?: string | undefined;
|
|
886
887
|
readonly to: readonly EmailRecipientInput[];
|
|
887
888
|
readonly cc?: readonly EmailRecipientInput[] | undefined;
|
package/dist/index.js
CHANGED