@sendly/node 3.11.0 → 3.12.0
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.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -59,7 +59,7 @@ interface SendMessageRequest {
|
|
|
59
59
|
* Message status values
|
|
60
60
|
* Note: "sending" was removed as it doesn't exist in the database
|
|
61
61
|
*/
|
|
62
|
-
type MessageStatus = "queued" | "sent" | "delivered" | "failed";
|
|
62
|
+
type MessageStatus = "queued" | "sent" | "delivered" | "failed" | "bounced";
|
|
63
63
|
/**
|
|
64
64
|
* How the message was sent
|
|
65
65
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -59,7 +59,7 @@ interface SendMessageRequest {
|
|
|
59
59
|
* Message status values
|
|
60
60
|
* Note: "sending" was removed as it doesn't exist in the database
|
|
61
61
|
*/
|
|
62
|
-
type MessageStatus = "queued" | "sent" | "delivered" | "failed";
|
|
62
|
+
type MessageStatus = "queued" | "sent" | "delivered" | "failed" | "bounced";
|
|
63
63
|
/**
|
|
64
64
|
* How the message was sent
|
|
65
65
|
*/
|