@wenlarge/ostrol-communication 0.6.0 → 0.6.1
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/kafka/payloads.d.ts +3 -0
- package/package.json +1 -1
package/dist/kafka/payloads.d.ts
CHANGED
|
@@ -50,7 +50,10 @@ export interface NotificationPushPayload {
|
|
|
50
50
|
email: string;
|
|
51
51
|
type: string;
|
|
52
52
|
subject: string;
|
|
53
|
+
/** Plain-text part (also what the notification service persists/retries with). */
|
|
53
54
|
body: string;
|
|
55
|
+
/** Optional rich HTML part — when present the mailer sends multipart text+html. */
|
|
56
|
+
html?: string;
|
|
54
57
|
referenceId?: string;
|
|
55
58
|
dedupKey: string;
|
|
56
59
|
}
|
package/package.json
CHANGED