dymo-api 1.0.46 → 1.0.47
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/cjs/dymo-api.js
CHANGED
|
@@ -172,6 +172,7 @@ class DymoAPI {
|
|
|
172
172
|
* @param {string} [data.html] - The HTML content of the email.
|
|
173
173
|
* @param {React.ReactElement} [data.react] - The React component to be rendered as the email content.
|
|
174
174
|
* @param {Object} [data.options] - Content configuration options.
|
|
175
|
+
* @param {"high" | "normal" | "low" | undefined} [data.options.priority="normal"] - Email priority (default: normal).
|
|
175
176
|
* @param {boolean} [data.options.composeTailwindClasses] - Whether to compose tailwind classes.
|
|
176
177
|
* @returns {Promise<Object>} A promise that resolves to the response from the server.
|
|
177
178
|
* @throws Will throw an error if there is an issue with the email sending process.
|
package/dist/esm/dymo-api.js
CHANGED
|
@@ -172,6 +172,7 @@ class DymoAPI {
|
|
|
172
172
|
* @param {string} [data.html] - The HTML content of the email.
|
|
173
173
|
* @param {React.ReactElement} [data.react] - The React component to be rendered as the email content.
|
|
174
174
|
* @param {Object} [data.options] - Content configuration options.
|
|
175
|
+
* @param {"high" | "normal" | "low" | undefined} [data.options.priority="normal"] - Email priority (default: normal).
|
|
175
176
|
* @param {boolean} [data.options.composeTailwindClasses] - Whether to compose tailwind classes.
|
|
176
177
|
* @returns {Promise<Object>} A promise that resolves to the response from the server.
|
|
177
178
|
* @throws Will throw an error if there is an issue with the email sending process.
|
package/dist/types/dymo-api.d.ts
CHANGED
|
@@ -103,6 +103,7 @@ declare class DymoAPI {
|
|
|
103
103
|
* @param {string} [data.html] - The HTML content of the email.
|
|
104
104
|
* @param {React.ReactElement} [data.react] - The React component to be rendered as the email content.
|
|
105
105
|
* @param {Object} [data.options] - Content configuration options.
|
|
106
|
+
* @param {"high" | "normal" | "low" | undefined} [data.options.priority="normal"] - Email priority (default: normal).
|
|
106
107
|
* @param {boolean} [data.options.composeTailwindClasses] - Whether to compose tailwind classes.
|
|
107
108
|
* @returns {Promise<Object>} A promise that resolves to the response from the server.
|
|
108
109
|
* @throws Will throw an error if there is an issue with the email sending process.
|