@sendly/node 3.13.2 → 3.15.2
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 +5 -0
- package/dist/index.d.ts +5 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -328,6 +328,11 @@ interface BatchMessageItem {
|
|
|
328
328
|
* Message content
|
|
329
329
|
*/
|
|
330
330
|
text: string;
|
|
331
|
+
/**
|
|
332
|
+
* Custom JSON metadata for this message (max 4KB).
|
|
333
|
+
* Merged with batch-level metadata, with per-message metadata taking priority.
|
|
334
|
+
*/
|
|
335
|
+
metadata?: Record<string, any>;
|
|
331
336
|
}
|
|
332
337
|
/**
|
|
333
338
|
* Request payload for sending batch messages
|
package/dist/index.d.ts
CHANGED
|
@@ -328,6 +328,11 @@ interface BatchMessageItem {
|
|
|
328
328
|
* Message content
|
|
329
329
|
*/
|
|
330
330
|
text: string;
|
|
331
|
+
/**
|
|
332
|
+
* Custom JSON metadata for this message (max 4KB).
|
|
333
|
+
* Merged with batch-level metadata, with per-message metadata taking priority.
|
|
334
|
+
*/
|
|
335
|
+
metadata?: Record<string, any>;
|
|
331
336
|
}
|
|
332
337
|
/**
|
|
333
338
|
* Request payload for sending batch messages
|