emailr 1.3.3 → 1.3.4

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 CHANGED
@@ -322,6 +322,8 @@ interface Broadcast {
322
322
  subject: string;
323
323
  from_email: string;
324
324
  from_name: string | null;
325
+ reply_to: string | null;
326
+ preview_text: string | null;
325
327
  template_id: string | null;
326
328
  segment_id: string | null;
327
329
  status: string;
@@ -343,6 +345,8 @@ interface CreateBroadcastRequest {
343
345
  subject: string;
344
346
  from_email: string;
345
347
  from_name?: string;
348
+ reply_to?: string;
349
+ preview_text?: string;
346
350
  template_id?: string;
347
351
  segment_id?: string;
348
352
  html_content?: string;
@@ -355,6 +359,8 @@ interface UpdateBroadcastRequest {
355
359
  subject?: string;
356
360
  from_email?: string;
357
361
  from_name?: string;
362
+ reply_to?: string;
363
+ preview_text?: string;
358
364
  template_id?: string;
359
365
  segment_id?: string;
360
366
  html_content?: string;
package/dist/index.d.ts CHANGED
@@ -322,6 +322,8 @@ interface Broadcast {
322
322
  subject: string;
323
323
  from_email: string;
324
324
  from_name: string | null;
325
+ reply_to: string | null;
326
+ preview_text: string | null;
325
327
  template_id: string | null;
326
328
  segment_id: string | null;
327
329
  status: string;
@@ -343,6 +345,8 @@ interface CreateBroadcastRequest {
343
345
  subject: string;
344
346
  from_email: string;
345
347
  from_name?: string;
348
+ reply_to?: string;
349
+ preview_text?: string;
346
350
  template_id?: string;
347
351
  segment_id?: string;
348
352
  html_content?: string;
@@ -355,6 +359,8 @@ interface UpdateBroadcastRequest {
355
359
  subject?: string;
356
360
  from_email?: string;
357
361
  from_name?: string;
362
+ reply_to?: string;
363
+ preview_text?: string;
358
364
  template_id?: string;
359
365
  segment_id?: string;
360
366
  html_content?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "emailr",
3
- "version": "1.3.3",
3
+ "version": "1.3.4",
4
4
  "description": "Official Emailr API SDK for TypeScript/JavaScript",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",